@shotstack/shotstack-studio 1.4.0 → 1.4.1
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/{src/core/schemas/edit.d.ts → index.d.ts} +5030 -4061
- package/package.json +4 -3
- package/dist/src/components/canvas/index.d.ts +0 -14
- package/dist/src/components/canvas/players/audio-player.d.ts +0 -17
- package/dist/src/components/canvas/players/html-player.d.ts +0 -17
- package/dist/src/components/canvas/players/image-player.d.ts +0 -15
- package/dist/src/components/canvas/players/luma-player.d.ts +0 -18
- package/dist/src/components/canvas/players/player.d.ts +0 -76
- package/dist/src/components/canvas/players/shape-player.d.ts +0 -15
- package/dist/src/components/canvas/players/text-player.d.ts +0 -19
- package/dist/src/components/canvas/players/video-player.d.ts +0 -22
- package/dist/src/components/canvas/shotstack-canvas.d.ts +0 -25
- package/dist/src/components/canvas/system/inspector.d.ts +0 -18
- package/dist/src/components/canvas/text/text-cursor.d.ts +0 -47
- package/dist/src/components/canvas/text/text-editor.d.ts +0 -43
- package/dist/src/components/canvas/text/text-input-handler.d.ts +0 -54
- package/dist/src/core/animations/curve-interpolator.d.ts +0 -6
- package/dist/src/core/animations/effect-preset-builder.d.ts +0 -18
- package/dist/src/core/animations/keyframe-builder.d.ts +0 -12
- package/dist/src/core/animations/transition-preset-builder.d.ts +0 -20
- package/dist/src/core/commands/add-clip-command.d.ts +0 -14
- package/dist/src/core/commands/add-track-command.d.ts +0 -8
- package/dist/src/core/commands/delete-clip-command.d.ts +0 -10
- package/dist/src/core/commands/delete-track-command.d.ts +0 -9
- package/dist/src/core/commands/set-updated-clip-command.d.ts +0 -17
- package/dist/src/core/commands/types.d.ts +0 -25
- package/dist/src/core/commands/update-text-content-command.d.ts +0 -16
- package/dist/src/core/edit.d.ts +0 -52
- package/dist/src/core/events/asset-load-tracker.d.ts +0 -16
- package/dist/src/core/events/event-emitter.d.ts +0 -10
- package/dist/src/core/export/video-exporter.d.ts +0 -17
- package/dist/src/core/inputs/controls.d.ts +0 -11
- package/dist/src/core/inputs/pointer.d.ts +0 -4
- package/dist/src/core/layouts/geometry.d.ts +0 -8
- package/dist/src/core/layouts/position-builder.d.ts +0 -8
- package/dist/src/core/loaders/asset-loader.d.ts +0 -17
- package/dist/src/core/loaders/audio-load-parser.d.ts +0 -11
- package/dist/src/core/loaders/font-load-parser.d.ts +0 -13
- package/dist/src/core/schemas/asset.d.ts +0 -648
- package/dist/src/core/schemas/audio-asset.d.ts +0 -82
- package/dist/src/core/schemas/clip.d.ts +0 -1185
- package/dist/src/core/schemas/html-asset.d.ts +0 -27
- package/dist/src/core/schemas/image-asset.d.ts +0 -57
- package/dist/src/core/schemas/keyframe.d.ts +0 -26
- package/dist/src/core/schemas/luma-asset.d.ts +0 -13
- package/dist/src/core/schemas/shape-asset.d.ts +0 -199
- package/dist/src/core/schemas/text-asset.d.ts +0 -155
- package/dist/src/core/schemas/track.d.ts +0 -1491
- package/dist/src/core/schemas/video-asset.d.ts +0 -126
- package/dist/src/core/shared/entity.d.ts +0 -5
- package/dist/src/index.d.ts +0 -4
- package/dist/src/main.d.ts +0 -1
- package/dist/vite.config.d.ts +0 -2
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
import * as zod from "zod";
|
|
2
|
-
export declare const VideoAssetUrlSchema: zod.ZodString;
|
|
3
|
-
export declare const VideoAssetCropSchema: zod.ZodObject<{
|
|
4
|
-
top: zod.ZodOptional<zod.ZodNumber>;
|
|
5
|
-
right: zod.ZodOptional<zod.ZodNumber>;
|
|
6
|
-
bottom: zod.ZodOptional<zod.ZodNumber>;
|
|
7
|
-
left: zod.ZodOptional<zod.ZodNumber>;
|
|
8
|
-
}, "strip", zod.ZodTypeAny, {
|
|
9
|
-
top?: number | undefined;
|
|
10
|
-
right?: number | undefined;
|
|
11
|
-
bottom?: number | undefined;
|
|
12
|
-
left?: number | undefined;
|
|
13
|
-
}, {
|
|
14
|
-
top?: number | undefined;
|
|
15
|
-
right?: number | undefined;
|
|
16
|
-
bottom?: number | undefined;
|
|
17
|
-
left?: number | undefined;
|
|
18
|
-
}>;
|
|
19
|
-
export declare const VideoAssetVolumeSchema: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
20
|
-
from: zod.ZodNumber;
|
|
21
|
-
to: zod.ZodNumber;
|
|
22
|
-
start: zod.ZodNumber;
|
|
23
|
-
length: zod.ZodNumber;
|
|
24
|
-
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
25
|
-
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
26
|
-
}, {
|
|
27
|
-
from: zod.ZodNumber;
|
|
28
|
-
to: zod.ZodNumber;
|
|
29
|
-
}>, "strip", zod.ZodTypeAny, {
|
|
30
|
-
from: number;
|
|
31
|
-
to: number;
|
|
32
|
-
start: number;
|
|
33
|
-
length: number;
|
|
34
|
-
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
35
|
-
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
36
|
-
}, {
|
|
37
|
-
from: number;
|
|
38
|
-
to: number;
|
|
39
|
-
start: number;
|
|
40
|
-
length: number;
|
|
41
|
-
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
42
|
-
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
43
|
-
}>, "many">, zod.ZodNumber]>;
|
|
44
|
-
export declare const VideoAssetSchema: zod.ZodObject<{
|
|
45
|
-
type: zod.ZodLiteral<"video">;
|
|
46
|
-
src: zod.ZodString;
|
|
47
|
-
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
48
|
-
crop: zod.ZodOptional<zod.ZodObject<{
|
|
49
|
-
top: zod.ZodOptional<zod.ZodNumber>;
|
|
50
|
-
right: zod.ZodOptional<zod.ZodNumber>;
|
|
51
|
-
bottom: zod.ZodOptional<zod.ZodNumber>;
|
|
52
|
-
left: zod.ZodOptional<zod.ZodNumber>;
|
|
53
|
-
}, "strip", zod.ZodTypeAny, {
|
|
54
|
-
top?: number | undefined;
|
|
55
|
-
right?: number | undefined;
|
|
56
|
-
bottom?: number | undefined;
|
|
57
|
-
left?: number | undefined;
|
|
58
|
-
}, {
|
|
59
|
-
top?: number | undefined;
|
|
60
|
-
right?: number | undefined;
|
|
61
|
-
bottom?: number | undefined;
|
|
62
|
-
left?: number | undefined;
|
|
63
|
-
}>>;
|
|
64
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
65
|
-
from: zod.ZodNumber;
|
|
66
|
-
to: zod.ZodNumber;
|
|
67
|
-
start: zod.ZodNumber;
|
|
68
|
-
length: zod.ZodNumber;
|
|
69
|
-
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
70
|
-
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
71
|
-
}, {
|
|
72
|
-
from: zod.ZodNumber;
|
|
73
|
-
to: zod.ZodNumber;
|
|
74
|
-
}>, "strip", zod.ZodTypeAny, {
|
|
75
|
-
from: number;
|
|
76
|
-
to: number;
|
|
77
|
-
start: number;
|
|
78
|
-
length: number;
|
|
79
|
-
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
80
|
-
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
81
|
-
}, {
|
|
82
|
-
from: number;
|
|
83
|
-
to: number;
|
|
84
|
-
start: number;
|
|
85
|
-
length: number;
|
|
86
|
-
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
87
|
-
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
88
|
-
}>, "many">, zod.ZodNumber]>>;
|
|
89
|
-
}, "strip", zod.ZodTypeAny, {
|
|
90
|
-
type: "video";
|
|
91
|
-
src: string;
|
|
92
|
-
trim?: number | undefined;
|
|
93
|
-
volume?: number | {
|
|
94
|
-
from: number;
|
|
95
|
-
to: number;
|
|
96
|
-
start: number;
|
|
97
|
-
length: number;
|
|
98
|
-
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
99
|
-
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
100
|
-
}[] | undefined;
|
|
101
|
-
crop?: {
|
|
102
|
-
top?: number | undefined;
|
|
103
|
-
right?: number | undefined;
|
|
104
|
-
bottom?: number | undefined;
|
|
105
|
-
left?: number | undefined;
|
|
106
|
-
} | undefined;
|
|
107
|
-
}, {
|
|
108
|
-
type: "video";
|
|
109
|
-
src: string;
|
|
110
|
-
trim?: number | undefined;
|
|
111
|
-
volume?: number | {
|
|
112
|
-
from: number;
|
|
113
|
-
to: number;
|
|
114
|
-
start: number;
|
|
115
|
-
length: number;
|
|
116
|
-
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
117
|
-
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
118
|
-
}[] | undefined;
|
|
119
|
-
crop?: {
|
|
120
|
-
top?: number | undefined;
|
|
121
|
-
right?: number | undefined;
|
|
122
|
-
bottom?: number | undefined;
|
|
123
|
-
left?: number | undefined;
|
|
124
|
-
} | undefined;
|
|
125
|
-
}>;
|
|
126
|
-
export type VideoAsset = zod.infer<typeof VideoAssetSchema>;
|
package/dist/src/index.d.ts
DELETED
package/dist/src/main.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/vite.config.d.ts
DELETED