@linker-design-plus/timeline-track 2.1.5 → 2.2.0
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/README.md +1 -1
- package/dist/core/controllers/domPreviewBackend.d.ts +2 -2
- package/dist/core/controllers/index.d.ts +2 -1
- package/dist/core/controllers/previewBackend.d.ts +4 -0
- package/dist/core/controllers/previewTransformMath.d.ts +6 -0
- package/dist/core/controllers/previewTransformOverlay.d.ts +21 -0
- package/dist/core/facade/timelineManager.d.ts +1 -0
- package/dist/core/models/types.d.ts +6 -0
- package/dist/core/preview/index.d.ts +2 -0
- package/dist/core/preview/mediaHelpers.d.ts +24 -0
- package/dist/core/preview/previewClockAggregator.d.ts +19 -0
- package/dist/core/preview/previewDomCompositor.d.ts +47 -0
- package/dist/core/preview/previewEngine.d.ts +86 -0
- package/dist/core/preview/previewPlaybackSlot.d.ts +59 -0
- package/dist/core/preview/previewPrefetchPool.d.ts +11 -0
- package/dist/core/preview/previewRuntimePublisher.d.ts +20 -0
- package/dist/core/preview/previewSourceService.d.ts +25 -0
- package/dist/core/preview/previewSyncCoordinator.d.ts +34 -0
- package/dist/core/preview/previewTextLayer.d.ts +46 -0
- package/dist/core/preview/textPreviewLayout.d.ts +55 -0
- package/dist/core/preview/types.d.ts +64 -0
- package/dist/index.cjs.js +113 -112
- package/dist/index.es.js +6418 -6872
- package/package.json +1 -1
- package/dist/core/controllers/previewRecoveryExecution.d.ts +0 -25
- package/dist/core/controllers/previewSlotLifecycle.d.ts +0 -42
- package/dist/core/controllers/previewSlotPolicy.d.ts +0 -59
- package/dist/core/controllers/timelinePreviewSession.d.ts +0 -218
package/package.json
CHANGED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import type { ActiveClipPlaybackInfo } from '../models/types';
|
|
2
|
-
import { type PreviewSlotRecoveryReason } from './previewSlotPolicy';
|
|
3
|
-
export interface PreviewRecoveryAttemptInput {
|
|
4
|
-
entry: ActiveClipPlaybackInfo;
|
|
5
|
-
desiredSource: string;
|
|
6
|
-
reason: PreviewSlotRecoveryReason;
|
|
7
|
-
previousRecoveryKey: string | null;
|
|
8
|
-
previousRetryCount: number;
|
|
9
|
-
maxImmediateRecoveryRetries: number;
|
|
10
|
-
recoveryTimeBucketMs: number;
|
|
11
|
-
isBackgroundPreload: boolean;
|
|
12
|
-
}
|
|
13
|
-
export type PreviewRecoveryAttemptResult = {
|
|
14
|
-
status: 'continue';
|
|
15
|
-
recoveryKey: string;
|
|
16
|
-
retryCount: number;
|
|
17
|
-
} | {
|
|
18
|
-
status: 'park';
|
|
19
|
-
message: string;
|
|
20
|
-
parkReason: 'retries-exhausted';
|
|
21
|
-
} | {
|
|
22
|
-
status: 'fail';
|
|
23
|
-
message: string;
|
|
24
|
-
};
|
|
25
|
-
export declare function resolveRecoveryAttempt(input: PreviewRecoveryAttemptInput): PreviewRecoveryAttemptResult;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import type { PlayState } from '../models/types';
|
|
2
|
-
import type { PreviewSlotPhase } from './previewBackend';
|
|
3
|
-
export interface PreviewSlotRecoveryStateLike {
|
|
4
|
-
isActive: boolean;
|
|
5
|
-
phase: PreviewSlotPhase;
|
|
6
|
-
errorMessage: string | null;
|
|
7
|
-
retryCount: number;
|
|
8
|
-
recoveryKey: string | null;
|
|
9
|
-
forceRecover: boolean;
|
|
10
|
-
isLoading: boolean;
|
|
11
|
-
isResolvingSource: boolean;
|
|
12
|
-
isBuffering: boolean;
|
|
13
|
-
isSeeking: boolean;
|
|
14
|
-
consecutiveStalledCount: number;
|
|
15
|
-
expectedEmptiedEvents: number;
|
|
16
|
-
recoverableEventCount: number;
|
|
17
|
-
loadStartedSinceRecover: boolean;
|
|
18
|
-
}
|
|
19
|
-
export interface PreviewTrackedCurrentVideoSlotStatus {
|
|
20
|
-
failed: boolean;
|
|
21
|
-
resolving: boolean;
|
|
22
|
-
seeking: boolean;
|
|
23
|
-
mediaUnready: boolean;
|
|
24
|
-
ready: boolean;
|
|
25
|
-
}
|
|
26
|
-
export declare function clearSlotFailureForBoundClipChange(slot: PreviewSlotRecoveryStateLike): void;
|
|
27
|
-
export declare function resetSlotRecoveryTrackingState(slot: PreviewSlotRecoveryStateLike, forceRecover?: boolean): void;
|
|
28
|
-
export declare function clearSlotState(slot: PreviewSlotRecoveryStateLike): void;
|
|
29
|
-
export declare function parkPreloadSlotState(slot: PreviewSlotRecoveryStateLike): void;
|
|
30
|
-
export declare function settleResolvedSourceWithoutRecoveryState(slot: Pick<PreviewSlotRecoveryStateLike, 'isActive' | 'phase' | 'isResolvingSource' | 'isLoading' | 'isBuffering' | 'errorMessage'>): void;
|
|
31
|
-
export declare function finalizeAppliedSlotPhase(slot: Pick<PreviewSlotRecoveryStateLike, 'isActive' | 'isLoading' | 'isSeeking' | 'phase' | 'errorMessage'>): void;
|
|
32
|
-
export declare function beginDeferredPreloadState(slot: Pick<PreviewSlotRecoveryStateLike, 'phase' | 'forceRecover' | 'isLoading' | 'isResolvingSource' | 'isSeeking' | 'isBuffering' | 'errorMessage'>, hasAssignedSource: boolean): void;
|
|
33
|
-
export declare function reconcileTrackedCurrentVideoSlotState(slot: PreviewSlotRecoveryStateLike, input: {
|
|
34
|
-
hasDesiredSource: boolean;
|
|
35
|
-
sourceMatched: boolean;
|
|
36
|
-
withinSeekThreshold: boolean;
|
|
37
|
-
readyState: number;
|
|
38
|
-
haveCurrentDataState: number;
|
|
39
|
-
}): PreviewTrackedCurrentVideoSlotStatus;
|
|
40
|
-
export declare function failSlotState(slot: Pick<PreviewSlotRecoveryStateLike, 'phase' | 'isLoading' | 'isResolvingSource' | 'isSeeking' | 'isBuffering' | 'errorMessage' | 'forceRecover' | 'expectedEmptiedEvents'>, errorMessage: string): void;
|
|
41
|
-
export declare function beginPreloadPrimingState(slot: Pick<PreviewSlotRecoveryStateLike, 'isActive' | 'isBuffering' | 'isSeeking'>): void;
|
|
42
|
-
export declare function beginSlotRecoveryState(slot: PreviewSlotRecoveryStateLike, playState: PlayState): void;
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import type { ActiveClipPlaybackInfo, PlayState } from '../models/types';
|
|
2
|
-
import type { PreviewSlotPhase } from './previewBackend';
|
|
3
|
-
export type PreviewSlotRecoveryReason = 'reconcile' | 'stalled' | 'abort' | 'emptied' | 'error';
|
|
4
|
-
export interface ResolvedSlotSourceLike {
|
|
5
|
-
stableSourceUrl: string;
|
|
6
|
-
url: string;
|
|
7
|
-
objectUrl: string | null;
|
|
8
|
-
}
|
|
9
|
-
export interface ReusableBoundSlotSourceInput {
|
|
10
|
-
currentSourceKey: string;
|
|
11
|
-
nextSourceKey: string;
|
|
12
|
-
desiredSource: string | null;
|
|
13
|
-
stableSourceUrl: string | null;
|
|
14
|
-
objectUrl: string | null;
|
|
15
|
-
}
|
|
16
|
-
export interface PreviewSlotRecoveryNeedInput {
|
|
17
|
-
desiredSource: string;
|
|
18
|
-
configuredSource: string | null;
|
|
19
|
-
assignedSource: string | null;
|
|
20
|
-
forceRecover: boolean;
|
|
21
|
-
isActive: boolean;
|
|
22
|
-
isLoading: boolean;
|
|
23
|
-
isSeeking: boolean;
|
|
24
|
-
isBuffering: boolean;
|
|
25
|
-
phase: PreviewSlotPhase;
|
|
26
|
-
networkState: number | null;
|
|
27
|
-
readyState: number | null;
|
|
28
|
-
networkEmptyState: number;
|
|
29
|
-
haveCurrentDataState: number;
|
|
30
|
-
}
|
|
31
|
-
export interface PreviewSlotRecoveryNeedResult {
|
|
32
|
-
needsRecovery: boolean;
|
|
33
|
-
recoveryReason: string | null;
|
|
34
|
-
actualSource: string | null;
|
|
35
|
-
configuredSource: string | null;
|
|
36
|
-
shouldWarn: boolean;
|
|
37
|
-
}
|
|
38
|
-
export declare function buildRecoveryKey(entry: ActiveClipPlaybackInfo, desiredSource: string, reason: PreviewSlotRecoveryReason, recoveryTimeBucketMs: number): string;
|
|
39
|
-
export declare function getReusableBoundSlotSource(input: ReusableBoundSlotSourceInput): ResolvedSlotSourceLike | null;
|
|
40
|
-
export declare function doesSlotSourceMatchDesired(configuredSource: string | null, assignedSource: string | null, desiredSource: string | null): boolean;
|
|
41
|
-
export declare function evaluateSlotRecoveryNeed(input: PreviewSlotRecoveryNeedInput): PreviewSlotRecoveryNeedResult;
|
|
42
|
-
export declare function getSlotSeekThresholdSeconds(role: 'current' | 'preload', playbackRate: number): number;
|
|
43
|
-
export declare function shouldHardResetRecoveredSource(previousActualSource: string | null, reason: PreviewSlotRecoveryReason, retryCount: number): boolean;
|
|
44
|
-
export declare function buildCurrentSlotTarget(input: {
|
|
45
|
-
role: 'current' | 'preload';
|
|
46
|
-
entry: ActiveClipPlaybackInfo;
|
|
47
|
-
requestedPlayState: PlayState;
|
|
48
|
-
isActive: boolean;
|
|
49
|
-
playbackRate: number;
|
|
50
|
-
syncRequestId?: number;
|
|
51
|
-
}): {
|
|
52
|
-
role: 'current' | 'preload';
|
|
53
|
-
entry: ActiveClipPlaybackInfo;
|
|
54
|
-
playState: PlayState;
|
|
55
|
-
speed: number;
|
|
56
|
-
visible: boolean;
|
|
57
|
-
zIndex: number;
|
|
58
|
-
syncRequestId?: number;
|
|
59
|
-
};
|
|
@@ -1,218 +0,0 @@
|
|
|
1
|
-
import type { ActiveClipPlaybackInfo, ClipVisualTransform, PlayState, PreviewAspectRatio, PreviewSourceResolver, TextPreviewFontConfig, TimeMs, TrackType } from '../models/types';
|
|
2
|
-
import type { SourceMediaRegistry } from '../resources/sourceMediaRegistry';
|
|
3
|
-
import type { ResourceCacheManager } from '../resources/resourceCache';
|
|
4
|
-
import type { PreviewPendingState, PreviewRuntimeState } from './previewBackend';
|
|
5
|
-
import { type DiagnosticEmitInput, type DiagnosticsCenter } from '../../utils/diagnostics';
|
|
6
|
-
interface TimelinePreviewSessionCallbacks {
|
|
7
|
-
onSyncProcessed?: (syncRequestId?: number) => void;
|
|
8
|
-
onRuntimeStateChange?: (state: PreviewRuntimeState) => void;
|
|
9
|
-
onAspectRatioChange?: (aspectRatio: PreviewAspectRatio) => void;
|
|
10
|
-
onPreviewClipSelect?: (clipId: string) => void;
|
|
11
|
-
onVisualTransformCommit?: (clipId: string, visualTransform: ClipVisualTransform) => void;
|
|
12
|
-
onTextFontSizeCommit?: (clipId: string, fontSize: number) => void;
|
|
13
|
-
onTextRotationCommit?: (clipId: string, rotation: number) => void;
|
|
14
|
-
onPendingPreviewRetry?: () => void;
|
|
15
|
-
onPauseIfPlaying?: () => void;
|
|
16
|
-
}
|
|
17
|
-
interface TimelinePreviewSessionDependencies {
|
|
18
|
-
createMediaElement?: (kind: TrackType, role: 'current' | 'preload') => HTMLMediaElement;
|
|
19
|
-
createAspectRatioProbe?: () => HTMLVideoElement;
|
|
20
|
-
createAudioContext?: () => AudioContext | null;
|
|
21
|
-
diagnostics?: DiagnosticsCenter;
|
|
22
|
-
getDiagnosticsContext?: () => Partial<DiagnosticEmitInput>;
|
|
23
|
-
rootClassName?: string;
|
|
24
|
-
frameClassName?: string;
|
|
25
|
-
slotClassNamePrefix?: string;
|
|
26
|
-
previewSourceResolver?: PreviewSourceResolver;
|
|
27
|
-
textPreviewFont?: TextPreviewFontConfig | null;
|
|
28
|
-
sourceMediaRegistry?: SourceMediaRegistry;
|
|
29
|
-
resourceCacheManager?: ResourceCacheManager | null;
|
|
30
|
-
}
|
|
31
|
-
export interface TimelinePreviewSyncPayload {
|
|
32
|
-
activeClips: ActiveClipPlaybackInfo[];
|
|
33
|
-
nextClips: ActiveClipPlaybackInfo[];
|
|
34
|
-
firstVideoClip: ActiveClipPlaybackInfo | null;
|
|
35
|
-
autoAspectRatioClip: ActiveClipPlaybackInfo | null;
|
|
36
|
-
currentTime: TimeMs;
|
|
37
|
-
playState: PlayState;
|
|
38
|
-
requestedPlayState?: PlayState;
|
|
39
|
-
speed: number;
|
|
40
|
-
interactionMode?: 'steady' | 'seek' | 'scrub';
|
|
41
|
-
primarySelectedClipId?: string | null;
|
|
42
|
-
syncRequestId?: number;
|
|
43
|
-
}
|
|
44
|
-
export declare class TimelinePreviewSession {
|
|
45
|
-
private container;
|
|
46
|
-
private rootElement;
|
|
47
|
-
private frameElement;
|
|
48
|
-
private textOverlayRoot;
|
|
49
|
-
private pendingOverlayElement;
|
|
50
|
-
private readonly pendingOverlayRenderer;
|
|
51
|
-
private resizeObserver;
|
|
52
|
-
private readonly trackSlots;
|
|
53
|
-
private readonly textPreviewEntries;
|
|
54
|
-
private audioContext;
|
|
55
|
-
private masterGainNode;
|
|
56
|
-
private loadingProbeTimeoutId;
|
|
57
|
-
private clockProbeTimeoutId;
|
|
58
|
-
private playbackGroupSuspended;
|
|
59
|
-
private lastRuntimeSignature;
|
|
60
|
-
private lastRuntimeState;
|
|
61
|
-
private lastSettledSyncRequestId;
|
|
62
|
-
private primarySelectedClipId;
|
|
63
|
-
private transientVisualTransform;
|
|
64
|
-
private transientFontSize;
|
|
65
|
-
private transientRotation;
|
|
66
|
-
private textPreviewDragState;
|
|
67
|
-
private textPreviewFontStyleElement;
|
|
68
|
-
private textPreviewFontSignature;
|
|
69
|
-
private textPreviewFontLoadState;
|
|
70
|
-
private textPreviewFontLoadToken;
|
|
71
|
-
private readonly callbacks;
|
|
72
|
-
private readonly dependencies;
|
|
73
|
-
private readonly transformOverlay;
|
|
74
|
-
private readonly boundTextPreviewPointerMove;
|
|
75
|
-
private readonly boundTextPreviewPointerUp;
|
|
76
|
-
private readonly boundTextPreviewVisibilityChange;
|
|
77
|
-
private readonly boundTextPreviewWindowBlur;
|
|
78
|
-
private requestedAspectRatio;
|
|
79
|
-
private resolvedAutoAspectRatio;
|
|
80
|
-
private aspectRatioProbe;
|
|
81
|
-
private aspectRatioProbeSrc;
|
|
82
|
-
private aspectRatioProbeResolveToken;
|
|
83
|
-
private pendingState;
|
|
84
|
-
private activeSyncRequestId;
|
|
85
|
-
private isSyncProjecting;
|
|
86
|
-
private readonly deferredPreloadSlotKeys;
|
|
87
|
-
private deferredPreloadFlushScheduled;
|
|
88
|
-
private lastSyncedPlayState;
|
|
89
|
-
private pendingClockAlignmentTargetTime;
|
|
90
|
-
constructor(callbacks?: TimelinePreviewSessionCallbacks, dependencies?: TimelinePreviewSessionDependencies);
|
|
91
|
-
private requestPauseIfPlaying;
|
|
92
|
-
private emitDiagnostic;
|
|
93
|
-
private buildSlotTraceData;
|
|
94
|
-
hasPreview(): boolean;
|
|
95
|
-
attach(container: HTMLElement): void;
|
|
96
|
-
detach(): void;
|
|
97
|
-
setPendingState(state: PreviewPendingState | null): void;
|
|
98
|
-
sync(payload: TimelinePreviewSyncPayload): void;
|
|
99
|
-
applyAspectRatio(aspectRatio: PreviewAspectRatio): void;
|
|
100
|
-
getAspectRatio(): PreviewAspectRatio;
|
|
101
|
-
private createMediaElement;
|
|
102
|
-
private createSlot;
|
|
103
|
-
private resetSlotRecoveryTracking;
|
|
104
|
-
private destroySlot;
|
|
105
|
-
private releaseSlotObjectUrl;
|
|
106
|
-
private clearPendingRuntimeSource;
|
|
107
|
-
private rememberSlotObjectUrl;
|
|
108
|
-
private revokeResolvedObjectUrl;
|
|
109
|
-
private getTrackSlots;
|
|
110
|
-
private swapTrackSlots;
|
|
111
|
-
private applyTrackPlan;
|
|
112
|
-
private applySlotTarget;
|
|
113
|
-
private settleResolvedSourceWithoutRecovery;
|
|
114
|
-
private resolveDesiredSource;
|
|
115
|
-
private decorateSlotSourceUrl;
|
|
116
|
-
private resolvePlayableSlotSource;
|
|
117
|
-
private emitRuntimeSourceDiagnostic;
|
|
118
|
-
private getReusableResolvedSlotSource;
|
|
119
|
-
private getReusableBoundSlotSource;
|
|
120
|
-
private slotNeedsRecovery;
|
|
121
|
-
private recoverSlot;
|
|
122
|
-
private finishSlotRecovery;
|
|
123
|
-
private getSlotKey;
|
|
124
|
-
private isActiveCurrentSlot;
|
|
125
|
-
private isTrackedActiveCurrentVideoSlot;
|
|
126
|
-
private hasBlockingActiveCurrentSlot;
|
|
127
|
-
private shouldDeferPreloadTarget;
|
|
128
|
-
private shouldDeferPreloadRecovery;
|
|
129
|
-
private buildDeferredPreloadTarget;
|
|
130
|
-
private deferPreloadTarget;
|
|
131
|
-
private deferPreloadRecovery;
|
|
132
|
-
private scheduleDeferredPreloadFlush;
|
|
133
|
-
private flushDeferredPreloads;
|
|
134
|
-
private applyResolvedSlotState;
|
|
135
|
-
private buildCurrentTargetForSlot;
|
|
136
|
-
private isCurrentRequest;
|
|
137
|
-
private isCurrentSourceTarget;
|
|
138
|
-
private shouldIgnoreExpectedEmptied;
|
|
139
|
-
private shouldIgnoreExpectedAbort;
|
|
140
|
-
private shouldIgnoreClearedSlotRecoverableEvent;
|
|
141
|
-
private shouldSkipImmediatePreloadRecovery;
|
|
142
|
-
private isBackgroundPreloadSlot;
|
|
143
|
-
private parkPreloadSlot;
|
|
144
|
-
private failSlot;
|
|
145
|
-
private configureAudioRouting;
|
|
146
|
-
private syncCurrentSlot;
|
|
147
|
-
private resetSlotPlaybackProgressProbe;
|
|
148
|
-
private updateSlotPlaybackProgressState;
|
|
149
|
-
private maybeResumeRequestedPlayback;
|
|
150
|
-
private canRuntimeCheckRetryBufferedPlayback;
|
|
151
|
-
private shouldClearRecoveredBufferingSignal;
|
|
152
|
-
private preparePreloadSlot;
|
|
153
|
-
private setSlotVisible;
|
|
154
|
-
private getAudioContext;
|
|
155
|
-
private getMasterGainNode;
|
|
156
|
-
private resumeAudioContext;
|
|
157
|
-
private updateFrameLayout;
|
|
158
|
-
private maybeResolveAutoAspectRatio;
|
|
159
|
-
private resolveAspectRatioProbeSource;
|
|
160
|
-
private buildPreviewSourceCacheKey;
|
|
161
|
-
private getAspectRatioProbe;
|
|
162
|
-
private tryResolveAutoAspectRatioFromSlot;
|
|
163
|
-
private handleResolvedAutoAspectRatio;
|
|
164
|
-
private refreshRuntimeState;
|
|
165
|
-
private buildPreviewClockState;
|
|
166
|
-
private buildPreviewClockStateFromSlot;
|
|
167
|
-
private resolveClockBlockedReason;
|
|
168
|
-
private getPreviewClockSourceSlot;
|
|
169
|
-
private buildPreviewClockSourceCandidate;
|
|
170
|
-
private comparePreviewClockSourceCandidates;
|
|
171
|
-
private isPreviewClockCandidateAlignedToTarget;
|
|
172
|
-
private getPreviewClockTargetAlignmentThresholdMs;
|
|
173
|
-
private isPreviewClockSlotAlignedToPendingTarget;
|
|
174
|
-
private updatePendingClockAlignmentTarget;
|
|
175
|
-
private syncActivePlaybackGroupSuspension;
|
|
176
|
-
private getSlotMediaTimeMs;
|
|
177
|
-
private getSlotTimelineTime;
|
|
178
|
-
private refreshPendingOverlay;
|
|
179
|
-
private buildPreviewLoadingState;
|
|
180
|
-
private evaluateTrackedCurrentVideoSlot;
|
|
181
|
-
private failStalledMediaPendingSlotIfNeeded;
|
|
182
|
-
private resetSlotMediaPendingProbe;
|
|
183
|
-
private doesSlotSourceMatchDesired;
|
|
184
|
-
private getSlotSeekThresholdSeconds;
|
|
185
|
-
private finalizeSourceResolutionResult;
|
|
186
|
-
private syncLoadingProbe;
|
|
187
|
-
private syncClockProbe;
|
|
188
|
-
private clearLoadingProbe;
|
|
189
|
-
private clearClockProbe;
|
|
190
|
-
private handlePreviewTransformChange;
|
|
191
|
-
private refreshVisualLayout;
|
|
192
|
-
private syncTextPreviewEntries;
|
|
193
|
-
private clearTextPreviewEntries;
|
|
194
|
-
private removeTextPreviewEntry;
|
|
195
|
-
private applyTextPreviewEntry;
|
|
196
|
-
private refreshTextPreviewLayout;
|
|
197
|
-
private refreshTextPreviewEntries;
|
|
198
|
-
private createTextPreviewPointerDownHandler;
|
|
199
|
-
private bindTextPreviewDocumentListeners;
|
|
200
|
-
private unbindTextPreviewDocumentListeners;
|
|
201
|
-
private handleTextPreviewPointerMove;
|
|
202
|
-
private finishTextPreviewDrag;
|
|
203
|
-
private refreshTextPreviewInteractionState;
|
|
204
|
-
private getTextPreviewFontConfig;
|
|
205
|
-
private getTextPreviewFontFamily;
|
|
206
|
-
private ensureTextPreviewFontReady;
|
|
207
|
-
private resetTextPreviewFontState;
|
|
208
|
-
private refreshSlotVisualLayout;
|
|
209
|
-
private syncSlotFailureVisualState;
|
|
210
|
-
private buildSelectedOverlayState;
|
|
211
|
-
private getFrameSize;
|
|
212
|
-
private getDocument;
|
|
213
|
-
private toFrameLocalPoint;
|
|
214
|
-
private getTextPreviewBaselineMetrics;
|
|
215
|
-
private getMediaSize;
|
|
216
|
-
private getEffectiveVisualTransform;
|
|
217
|
-
}
|
|
218
|
-
export {};
|