@shotstack/shotstack-studio 2.0.0-beta.30 → 2.0.0-beta.32
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/index.d.ts +18 -0
- package/dist/internal.es.js +397 -380
- package/dist/internal.umd.js +10 -10
- package/dist/schema/index.d.ts +18 -0
- package/dist/shotstack-studio.es.js +6276 -5546
- package/dist/shotstack-studio.umd.js +291 -92
- package/package.json +1 -1
package/dist/schema/index.d.ts
CHANGED
|
@@ -892,6 +892,7 @@ export declare class MediaToolbar extends BaseToolbar {
|
|
|
892
892
|
private dynamicToggle;
|
|
893
893
|
private dynamicPanel;
|
|
894
894
|
private dynamicInput;
|
|
895
|
+
private dragManager;
|
|
895
896
|
private audioFadeEffect;
|
|
896
897
|
private isDynamicSource;
|
|
897
898
|
private dynamicFieldName;
|
|
@@ -907,6 +908,18 @@ export declare class MediaToolbar extends BaseToolbar {
|
|
|
907
908
|
protected closeAllPopups(): void;
|
|
908
909
|
protected getPopupList(): (HTMLElement | null)[];
|
|
909
910
|
protected syncState(): void;
|
|
911
|
+
/**
|
|
912
|
+
* Capture and deep-clone the current clip state for drag rollback.
|
|
913
|
+
*/
|
|
914
|
+
private captureClipState;
|
|
915
|
+
/**
|
|
916
|
+
* Start a drag session for a slider control.
|
|
917
|
+
*/
|
|
918
|
+
private startSliderDrag;
|
|
919
|
+
/**
|
|
920
|
+
* End a drag session and commit a single undo entry.
|
|
921
|
+
*/
|
|
922
|
+
private endSliderDrag;
|
|
910
923
|
private handleFitChange;
|
|
911
924
|
private handleOpacityChange;
|
|
912
925
|
private handleScaleChange;
|
|
@@ -1182,6 +1195,9 @@ export declare class SelectionHandles implements CanvasOverlayRegistration {
|
|
|
1182
1195
|
private edgeHandles;
|
|
1183
1196
|
private app;
|
|
1184
1197
|
private positionBuilder;
|
|
1198
|
+
private dimensionContainer;
|
|
1199
|
+
private dimensionBackground;
|
|
1200
|
+
private dimensionLabel;
|
|
1185
1201
|
private selectedPlayer;
|
|
1186
1202
|
private selectedClipId;
|
|
1187
1203
|
private selectedTrackIndex;
|
|
@@ -1227,6 +1243,8 @@ export declare class SelectionHandles implements CanvasOverlayRegistration {
|
|
|
1227
1243
|
private handleEdgeResize;
|
|
1228
1244
|
private startRotation;
|
|
1229
1245
|
private handleRotation;
|
|
1246
|
+
private showDimensionLabel;
|
|
1247
|
+
private hideDimensionLabel;
|
|
1230
1248
|
private captureOriginalDimensions;
|
|
1231
1249
|
private getContentCenter;
|
|
1232
1250
|
private getRotationCorner;
|