feat(dees-button-group): add new button group component with demo and styling

fix(dees-chart-area): improve real-time updates and chart element handling
fix(dees-chart-log): refactor demo to store log element reference
chore: update dependencies in package.json and pnpm-lock.yaml
This commit is contained in:
Juergen Kunz
2025-06-16 14:37:09 +00:00
parent 346abfa685
commit 48fbeb397d
10 changed files with 334 additions and 87 deletions

View File

@ -46,7 +46,7 @@ export class DeesChartLog extends DeesElement {
constructor() {
super();
domtools.elementBasic.setup();
}
public static styles = [
@ -274,11 +274,6 @@ export class DeesChartLog extends DeesElement {
this.logEntries = demoLogs;
this.scrollToBottom();
// For demo purposes, store reference globally
if ((window as any).__demoLogElement === undefined) {
(window as any).__demoLogElement = this;
}
}
public async updateLog(entries?: ILogEntry[]) {