@linker-design-plus/timeline-track 2.0.17 → 2.0.18
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/core/facade/timelineManager.d.ts +4 -0
- package/dist/core/presentation/timelinePresentationAdapter.d.ts +1 -1
- package/dist/index.cjs.js +17 -17
- package/dist/index.es.js +1078 -1000
- package/dist/utils/diagnostics/DiagnosticsCenter.d.ts +3 -0
- package/dist/utils/diagnostics/types.d.ts +1 -0
- package/package.json +2 -1
|
@@ -78,6 +78,8 @@ export declare class TimelineManager {
|
|
|
78
78
|
private previewActiveClipIds;
|
|
79
79
|
private playbackAttemptId;
|
|
80
80
|
private lastPreviewSyncedPlayState;
|
|
81
|
+
private lastPreviewSyncSignature;
|
|
82
|
+
private lastSteadyPlaybackPreviewSyncAt;
|
|
81
83
|
private previewSyncInteractionMode;
|
|
82
84
|
private readonly resourceCacheManager;
|
|
83
85
|
constructor(config?: Partial<TimelineConfig>);
|
|
@@ -158,6 +160,8 @@ export declare class TimelineManager {
|
|
|
158
160
|
private getNextPreviewAutoAspectRatioOrder;
|
|
159
161
|
private getAutoAspectRatioClip;
|
|
160
162
|
private registerPreviewAutoAspectRatioClip;
|
|
163
|
+
private buildPreviewSyncSignature;
|
|
164
|
+
private shouldSkipSteadyPlaybackPreviewSync;
|
|
161
165
|
private syncPreviewSession;
|
|
162
166
|
private syncPreviewPlaybackStateIfNeeded;
|
|
163
167
|
private beginPendingPreview;
|
|
@@ -13,7 +13,7 @@ export interface TimelineVerticalScrollView {
|
|
|
13
13
|
setScrollTop(scrollTop: number): void;
|
|
14
14
|
}
|
|
15
15
|
export declare class TimelinePresentationAdapter {
|
|
16
|
-
syncCurrentTime(timeline: TimelineTimeView | null, playhead: TimelineTimeView | null,
|
|
16
|
+
syncCurrentTime(timeline: TimelineTimeView | null, playhead: TimelineTimeView | null, _tracks: TimelineTrackCollection, time: TimeMs): void;
|
|
17
17
|
syncZoom(timeline: TimelineZoomView | null, playhead: TimelineZoomView | null, tracks: TimelineTrackCollection, zoom: number): void;
|
|
18
18
|
syncScrollLeft(playhead: TimelineScrollView | null, tracks: TimelineTrackCollection, scrollLeft: number): void;
|
|
19
19
|
syncScrollTop(panel: TimelineVerticalScrollView | null, scrollbar: TimelineVerticalScrollView | null, scrollTop: number): void;
|