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

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.
@@ -9,6 +9,7 @@ export declare class DiagnosticsCenter {
9
9
  private activeFailureCapture;
10
10
  private notifyTimeoutId;
11
11
  private persistTimeoutId;
12
+ private readonly highFrequencyEventTimestamps;
12
13
  constructor(config?: DiagnosticsConfig);
13
14
  startSession(metadata?: DiagnosticSessionMetadata | null): DiagnosticSessionSnapshot;
14
15
  getCurrentSessionId(): string | null;
@@ -28,6 +29,8 @@ export declare class DiagnosticsCenter {
28
29
  private createEvent;
29
30
  private trimSessionEvents;
30
31
  private findCoalescedEvent;
32
+ private resolveHighFrequencyDecision;
33
+ private buildHighFrequencyKey;
31
34
  private buildEventIdentity;
32
35
  private areEventIdentitiesEqual;
33
36
  private updateCoalescedEvent;
@@ -9,6 +9,7 @@ export interface DiagnosticsConfig {
9
9
  includeFullSourceUrl?: boolean;
10
10
  enablePanel?: boolean;
11
11
  consoleSeverityThreshold?: DiagnosticSeverity;
12
+ highFrequencyEventThrottleMs?: number;
12
13
  }
13
14
  export interface DiagnosticMediaError {
14
15
  code: number | null;
@@ -7,6 +7,7 @@ export declare class ClipCoverRenderer {
7
7
  private static keyframeDimensionsCache;
8
8
  private static keyframeDimensionsPromiseCache;
9
9
  private static imageCache;
10
+ private static brokenImageUrls;
10
11
  static clearImageCache(): void;
11
12
  static renderClipCovers(coversGroup: Konva.Group, coverSource: string[], coverWidth: number, coverHeight: number, videoSrc?: string, deferInitialRender?: boolean): void;
12
13
  private static startRenderJob;
@@ -21,4 +22,7 @@ export declare class ClipCoverRenderer {
21
22
  private static getCachedImage;
22
23
  private static checkAndTrimCache;
23
24
  private static evictCacheKey;
25
+ private static bindCoverImageLifecycle;
26
+ private static isImageRenderable;
27
+ private static listenToImageEvent;
24
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linker-design-plus/timeline-track",
3
- "version": "2.0.17",
3
+ "version": "2.0.19",
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",
@@ -16,6 +16,7 @@
16
16
  "build": "vite build && tsc -p tsconfig.build.json",
17
17
  "build:types": "tsc -p tsconfig.build.json",
18
18
  "preview": "vite preview",
19
+ "typecheck": "tsc -p tsconfig.json --noEmit",
19
20
  "test": "vitest run"
20
21
  },
21
22
  "devDependencies": {