@shotstack/shotstack-studio 2.0.0-beta.27 → 2.0.0-beta.28
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 +23 -20
- package/dist/internal.es.js +2773 -2766
- package/dist/internal.umd.js +12 -12
- package/dist/schema/index.cjs +1 -1
- package/dist/schema/index.d.ts +23 -20
- package/dist/schema/index.mjs +253 -246
- package/dist/shotstack-studio.es.js +5126 -4635
- package/dist/shotstack-studio.umd.js +119 -86
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1048,25 +1048,8 @@ export declare class RichTextToolbar extends BaseToolbar {
|
|
|
1048
1048
|
private autocompleteFilter;
|
|
1049
1049
|
private autocompleteStartPos;
|
|
1050
1050
|
private selectedAutocompleteIndex;
|
|
1051
|
-
private borderPopup;
|
|
1052
|
-
private borderWidthSlider;
|
|
1053
|
-
private borderWidthValue;
|
|
1054
|
-
private borderColorInput;
|
|
1055
|
-
private borderOpacitySlider;
|
|
1056
|
-
private borderOpacityValue;
|
|
1057
|
-
private borderRadiusSlider;
|
|
1058
|
-
private borderRadiusValue;
|
|
1059
1051
|
private backgroundPopup;
|
|
1060
1052
|
private backgroundColorPicker;
|
|
1061
|
-
private paddingPopup;
|
|
1062
|
-
private paddingTopSlider;
|
|
1063
|
-
private paddingTopValue;
|
|
1064
|
-
private paddingRightSlider;
|
|
1065
|
-
private paddingRightValue;
|
|
1066
|
-
private paddingBottomSlider;
|
|
1067
|
-
private paddingBottomValue;
|
|
1068
|
-
private paddingLeftSlider;
|
|
1069
|
-
private paddingLeftValue;
|
|
1070
1053
|
private fontColorPopup;
|
|
1071
1054
|
private fontColorPicker;
|
|
1072
1055
|
private colorDisplay;
|
|
@@ -1075,8 +1058,12 @@ export declare class RichTextToolbar extends BaseToolbar {
|
|
|
1075
1058
|
private animationDurationValue;
|
|
1076
1059
|
private animationStyleSection;
|
|
1077
1060
|
private animationDirectionSection;
|
|
1078
|
-
|
|
1079
|
-
|
|
1061
|
+
/**
|
|
1062
|
+
* Per-control drag state manager.
|
|
1063
|
+
*/
|
|
1064
|
+
private dragManager;
|
|
1065
|
+
private lastSyncedClipId;
|
|
1066
|
+
private currentAnimationDuration;
|
|
1080
1067
|
private transitionPopup;
|
|
1081
1068
|
private transitionPanel;
|
|
1082
1069
|
private effectPopup;
|
|
@@ -1122,6 +1109,17 @@ export declare class RichTextToolbar extends BaseToolbar {
|
|
|
1122
1109
|
private getFilteredFieldCount;
|
|
1123
1110
|
private buildFontPicker;
|
|
1124
1111
|
private getDisplayName;
|
|
1112
|
+
/**
|
|
1113
|
+
* Live update animation property during drag.
|
|
1114
|
+
*/
|
|
1115
|
+
private updateAnimationLive;
|
|
1116
|
+
/**
|
|
1117
|
+
* Capture current clip state for two-phase drag pattern (Phase 1).
|
|
1118
|
+
* Creates a deep clone of the clip's current state to enable command rollback on drag end.
|
|
1119
|
+
*
|
|
1120
|
+
* @returns Object with clipId and cloned initial state, or null if no clip selected
|
|
1121
|
+
*/
|
|
1122
|
+
private captureClipState;
|
|
1125
1123
|
private selectFont;
|
|
1126
1124
|
private updateVerticalAlign;
|
|
1127
1125
|
private cycleAlignment;
|
|
@@ -1135,6 +1133,10 @@ export declare class RichTextToolbar extends BaseToolbar {
|
|
|
1135
1133
|
private updateAnimationProperty;
|
|
1136
1134
|
private updateAnimationSections;
|
|
1137
1135
|
private updateBackgroundProperty;
|
|
1136
|
+
/**
|
|
1137
|
+
* Remove background property entirely (sets to undefined).
|
|
1138
|
+
*/
|
|
1139
|
+
private removeBackgroundProperty;
|
|
1138
1140
|
private updatePaddingProperty;
|
|
1139
1141
|
private updateFontColorProperty;
|
|
1140
1142
|
private updateClipProperty;
|
|
@@ -1182,6 +1184,7 @@ export declare class SelectionHandles implements CanvasOverlayRegistration {
|
|
|
1182
1184
|
private initialRotation;
|
|
1183
1185
|
private rotationCorner;
|
|
1184
1186
|
private initialClipConfiguration;
|
|
1187
|
+
private finalDragState;
|
|
1185
1188
|
private onClipSelectedBound;
|
|
1186
1189
|
private onSelectionClearedBound;
|
|
1187
1190
|
private onPointerDownBound;
|
|
@@ -1216,7 +1219,7 @@ export declare class SelectionHandles implements CanvasOverlayRegistration {
|
|
|
1216
1219
|
private getCornerResizeCursor;
|
|
1217
1220
|
private updateHoverState;
|
|
1218
1221
|
private resetDragState;
|
|
1219
|
-
private
|
|
1222
|
+
private updateSvgViewBox;
|
|
1220
1223
|
}
|
|
1221
1224
|
|
|
1222
1225
|
export declare type ShapeAsset = components["schemas"]["ShapeAsset"];
|