@linker-design-plus/timeline-track 2.0.18 → 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.
- 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/tracks/timelineTrackBridge.d.ts +2 -2
- package/dist/index.cjs.js +30 -36
- package/dist/index.es.js +819 -815
- package/dist/utils/rendering/clipCoverRenderer.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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