@rendley/sdk 1.12.17 → 1.12.19
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/Engine.d.ts +6 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/libs/ffmpeg/classes.d.ts +2 -0
- package/dist/libs/ffmpeg/const.d.ts +1 -0
- package/dist/libs/ffmpeg/types.d.ts +5 -0
- package/dist/modules/clip/Clip.d.ts +32 -27
- package/dist/modules/clip/ClipStyle.d.ts +3 -0
- package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +6 -6
- package/dist/modules/clip/clips/text/TextStyle.d.ts +16 -0
- package/dist/modules/clip/clips/video/VideoClip.d.ts +5 -4
- package/dist/modules/event-emitter/types/EventEmitter.types.d.ts +3 -0
- package/dist/modules/library/MediaData.d.ts +3 -3
- package/dist/modules/settings/Settings.d.ts +9 -0
- package/dist/modules/timeline/Timeline.d.ts +1 -0
- package/dist/modules/undo/UndoManager.types.d.ts +12 -0
- package/dist/types/hash.types.d.ts +4 -0
- package/dist/utils/animation/animation.d.ts +7 -6
- package/dist/utils/browser/isLocalNetworkHost.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare enum AnimationSpaceEnum {
|
|
3
|
-
ABSOLUTE = 0
|
|
4
|
-
RELATIVE_ADDITIVE = 1
|
|
5
|
-
RELATIVE_MULTIPLICATIVE = 2
|
|
6
|
-
PERCENTAGE = 3
|
|
3
|
+
ABSOLUTE = 0,// keyValue
|
|
4
|
+
RELATIVE_ADDITIVE = 1,// propertyValue + keyValue
|
|
5
|
+
RELATIVE_MULTIPLICATIVE = 2,// propertyValue * keyValue
|
|
6
|
+
PERCENTAGE = 3,// propertyValue * keyValue / 100
|
|
7
|
+
ADDITIVE_MULTIPLICATIVE_TO_RELATIVE = 4
|
|
7
8
|
}
|
|
8
9
|
export declare enum OutOfRangeEnum {
|
|
9
10
|
NONE = "none",
|
|
@@ -134,7 +135,7 @@ export declare const PropertyAnimationSchema: z.ZodObject<{
|
|
|
134
135
|
outOutOfRange?: OutOfRangeEnum | undefined;
|
|
135
136
|
}>;
|
|
136
137
|
export declare const AnimationDataSchema: z.ZodObject<{
|
|
137
|
-
name: z.ZodString
|
|
138
|
+
name: z.ZodDefault<z.ZodString>;
|
|
138
139
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
139
140
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
140
141
|
amplification: z.ZodOptional<z.ZodNumber>;
|
|
@@ -206,7 +207,6 @@ export declare const AnimationDataSchema: z.ZodObject<{
|
|
|
206
207
|
offset?: number | undefined;
|
|
207
208
|
amplification?: number | undefined;
|
|
208
209
|
}, {
|
|
209
|
-
name: string;
|
|
210
210
|
propertyAnimations: {
|
|
211
211
|
property: string;
|
|
212
212
|
keyframes: {
|
|
@@ -219,6 +219,7 @@ export declare const AnimationDataSchema: z.ZodObject<{
|
|
|
219
219
|
inOutOfRange?: OutOfRangeEnum | undefined;
|
|
220
220
|
outOutOfRange?: OutOfRangeEnum | undefined;
|
|
221
221
|
}[];
|
|
222
|
+
name?: string | undefined;
|
|
222
223
|
speed?: number | undefined;
|
|
223
224
|
offset?: number | undefined;
|
|
224
225
|
amplification?: number | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isLocalNetworkHost(): boolean;
|