@linker-design-plus/timeline-track 2.0.18 → 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.
- package/dist/components/panel/ClipConfigPanel.d.ts +1 -0
- package/dist/components/panel/ClipConfigPanelRenderer.d.ts +1 -0
- package/dist/components/track/Track.d.ts +2 -1
- package/dist/core/facade/timelineManager.d.ts +0 -2
- package/dist/core/tracks/timelineTrackBridge.d.ts +2 -2
- package/dist/index.cjs.js +29 -36
- package/dist/index.es.js +989 -1037
- package/dist/utils/diagnostics/index.d.ts +0 -1
- package/dist/utils/diagnostics/types.d.ts +0 -1
- package/dist/utils/rendering/clipCoverRenderer.d.ts +4 -0
- package/package.json +1 -1
- package/dist/utils/diagnostics/DiagnosticsPanel.d.ts +0 -13
|
@@ -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,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,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
|
-
}
|