@linker-design-plus/timeline-track 2.0.19 → 2.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,3 @@
1
1
  export { DiagnosticsCenter, mergeDiagnosticRuntimeState } from './DiagnosticsCenter';
2
- export { DiagnosticsPanel } from './DiagnosticsPanel';
3
2
  export { devConsole } from './devConsole';
4
3
  export type { DiagnosticCategory, DiagnosticEmitInput, DiagnosticEvent, DiagnosticExportPackage, DiagnosticHardwareInfo, DiagnosticLiveEvent, DiagnosticLiveSnapshot, DiagnosticMediaState, DiagnosticNetworkInfo, DiagnosticRuntimeState, DiagnosticsConfig, DiagnosticsListener, DiagnosticsLiveListener, DiagnosticSessionMetadata, DiagnosticSessionSnapshot, DiagnosticSessionSummary, DiagnosticSeverity } from './types';
@@ -7,7 +7,6 @@ export interface DiagnosticsConfig {
7
7
  maxSessions?: number;
8
8
  maxHotEvents?: number;
9
9
  includeFullSourceUrl?: boolean;
10
- enablePanel?: boolean;
11
10
  consoleSeverityThreshold?: DiagnosticSeverity;
12
11
  highFrequencyEventThrottleMs?: number;
13
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linker-design-plus/timeline-track",
3
- "version": "2.0.19",
3
+ "version": "2.0.20",
4
4
  "description": "A TypeScript-based video editing library with timeline and track functionality",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -1,13 +0,0 @@
1
- import type { DiagnosticsCenter } from './DiagnosticsCenter';
2
- export declare class DiagnosticsPanel {
3
- private readonly diagnostics;
4
- private container;
5
- private summaryElement;
6
- private failureElement;
7
- private eventListElement;
8
- private unsubscribe;
9
- constructor(diagnostics: DiagnosticsCenter);
10
- mount(host: HTMLElement): void;
11
- destroy(): void;
12
- private render;
13
- }