@rendley/sdk 1.12.4 → 1.12.5
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 +2 -2
- package/dist/Engine.d.ts +2 -2
- package/dist/config/config.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/libs/ffmpeg/classes.d.ts +13 -0
- package/dist/libs/ffmpeg/const.d.ts +14 -1
- package/dist/libs/ffmpeg/types.d.ts +48 -2
- package/dist/modules/clip/clips/adjustment/AdjustmentClip.d.ts +2 -2
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +1 -1
- package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +7 -7
- package/dist/modules/clip/clips/index.d.ts +2 -0
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +1 -1
- package/dist/modules/clip/clips/svg/SvgClip.d.ts +119 -0
- package/dist/modules/clip/clips/text/TextClip.d.ts +3 -2
- package/dist/modules/clip/clips/video/VideoClip.d.ts +4 -2
- package/dist/modules/layer/Layer.d.ts +3 -1
- package/dist/modules/library/MediaData.d.ts +1 -0
- package/dist/modules/subtitles/SubtitleManager.d.ts +5 -5
- package/dist/modules/zip-archive/ZipArchive.d.ts +20 -0
- package/dist/modules/zip-archive/index.d.ts +1 -0
- package/dist/types/clip.types.d.ts +1 -0
- package/dist/utils/browser/isFirefox.d.ts +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,8 +24,8 @@ The package includes type definitions, so you don't need to worry about setting
|
|
|
24
24
|
|
|
25
25
|
## Getting Started
|
|
26
26
|
|
|
27
|
-
Check out the [documentation](https://docs.
|
|
27
|
+
Check out the [documentation](https://docs.rendleysdk.com) to learn more about how to get started creating compositions and building your own video editing software.
|
|
28
28
|
|
|
29
29
|
## Templates
|
|
30
30
|
|
|
31
|
-
To further simplify the process, we have [pre-built interfaces](https://docs.
|
|
31
|
+
To further simplify the process, we have [pre-built interfaces](https://docs.rendleysdk.com/video-editor-ui/overview.html) that allow you to embed our video editing capabilities onto your website with just a few lines of code.
|
package/dist/Engine.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ export declare class Engine {
|
|
|
123
123
|
callStaticCustomClipMethod(typeEnum: string, methodName: string, ...args: any[]): any;
|
|
124
124
|
createCustomClipInstance<T extends CustomClip = CustomClip>(typeEnum: string, ...args: any[]): T;
|
|
125
125
|
hasCustomClipType(typeEnum: string): boolean;
|
|
126
|
-
reset(): void
|
|
126
|
+
reset(): Promise<void>;
|
|
127
127
|
isReady(): boolean;
|
|
128
128
|
isSafeToSerialize(): boolean;
|
|
129
129
|
serialize(): {
|
|
@@ -243,9 +243,9 @@ export declare class Engine {
|
|
|
243
243
|
strokeColor: string;
|
|
244
244
|
strokeThickness: number;
|
|
245
245
|
wordWrapWidth: number;
|
|
246
|
+
wordWrap: boolean;
|
|
246
247
|
backgroundPadding: number;
|
|
247
248
|
backgroundCornerRadius: number;
|
|
248
|
-
wordWrap: boolean;
|
|
249
249
|
leading: number;
|
|
250
250
|
};
|
|
251
251
|
highlightTextStyle: {
|
package/dist/config/config.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ export declare const BACKGROUND_SPRITE_NAME = "CANVAS_BACKGROUND_SPRITE";
|
|
|
3
3
|
export declare const STAGE_CONTAINER_NAME = "STAGE_CONTAINER";
|
|
4
4
|
export declare const RENDLEY_CDN: any;
|
|
5
5
|
export declare const FFMPEG_CDN: string;
|
|
6
|
-
export declare const RENDLEY_API_BASE_URL = "https://api.
|
|
6
|
+
export declare const RENDLEY_API_BASE_URL = "https://api.rendleysdk.com/sdk/v1";
|
|
7
7
|
export declare const LICENSE_LOCAL_STORAGE_KEY = "license";
|
|
8
8
|
export declare const getLicenseEndpoint: (licenseName: string, isSublicense?: boolean) => string;
|