@rendley/sdk 1.11.15 → 1.11.17
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 +11 -3
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/clip/Clip.d.ts +9 -0
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +1 -0
- package/dist/modules/clip/clips/custom/CustomClip.d.ts +1 -0
- package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +1 -0
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +1 -0
- package/dist/modules/clip/clips/shape/ShapeClip.d.ts +1 -0
- package/dist/modules/clip/clips/text/TextClip.d.ts +1 -0
- package/dist/modules/clip/clips/video/VideoClip.d.ts +52 -21
- package/dist/modules/event-emitter/types/EventEmitter.types.d.ts +8 -0
- package/dist/modules/ffmpeg/FFmpeg.d.ts +2 -0
- package/dist/modules/filmstrip-extractor/FilmstripExtractor.d.ts +30 -0
- package/dist/modules/filmstrip-extractor/FilmstripExtractor.types.d.ts +34 -0
- package/dist/modules/filmstrip-extractor/FilmstripExtractorWorker.d.ts +5 -0
- package/dist/modules/library/Library.d.ts +13 -1
- package/dist/modules/library/MediaData.d.ts +32 -3
- package/dist/modules/settings/Settings.d.ts +56 -0
- package/dist/modules/storage/StorageProviderBase.d.ts +1 -0
- package/dist/modules/subtitles/SubtitleManager.d.ts +4 -4
- package/package.json +1 -1
- /package/dist/modules/background-timer/{background-timer.d.ts → BackgroundTimer.d.ts} +0 -0
- /package/dist/modules/background-timer/{backround-timer.types.d.ts → BackgroundTimer.types.d.ts} +0 -0
- /package/dist/modules/background-timer/{background-timer-worker.d.ts → BackgroundTimerWorker.d.ts} +0 -0
|
@@ -223,7 +223,7 @@ export declare const SubtitlesManagerSchema: z.ZodObject<{
|
|
|
223
223
|
scale: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
224
224
|
}, "strip", z.ZodTypeAny, {
|
|
225
225
|
scale: number;
|
|
226
|
-
textMode: "
|
|
226
|
+
textMode: "partial" | "full";
|
|
227
227
|
highlightAnimation: HighlightAnimationEnum;
|
|
228
228
|
highlightAnimationSpeed: number;
|
|
229
229
|
mainTextStyle: {
|
|
@@ -257,7 +257,7 @@ export declare const SubtitlesManagerSchema: z.ZodObject<{
|
|
|
257
257
|
};
|
|
258
258
|
position?: [number, number] | undefined;
|
|
259
259
|
}, {
|
|
260
|
-
textMode: "
|
|
260
|
+
textMode: "partial" | "full";
|
|
261
261
|
highlightAnimation: HighlightAnimationEnum;
|
|
262
262
|
highlightAnimationSpeed: number;
|
|
263
263
|
mainTextStyle: {
|
|
@@ -327,7 +327,7 @@ export declare class SubtitlesManager {
|
|
|
327
327
|
getScale(): number;
|
|
328
328
|
setTextMode(mode: TextModeType): void;
|
|
329
329
|
setMainTextStyle(style: Partial<MainTextStyle>, reset?: boolean): void;
|
|
330
|
-
getTextMode(): "
|
|
330
|
+
getTextMode(): "partial" | "full";
|
|
331
331
|
getMainTextStyle(): {
|
|
332
332
|
color: string;
|
|
333
333
|
strokeColor: string;
|
|
@@ -376,7 +376,7 @@ export declare class SubtitlesManager {
|
|
|
376
376
|
destroy(): void;
|
|
377
377
|
serialize(): {
|
|
378
378
|
scale: number;
|
|
379
|
-
textMode: "
|
|
379
|
+
textMode: "partial" | "full";
|
|
380
380
|
highlightAnimation: HighlightAnimationEnum;
|
|
381
381
|
highlightAnimationSpeed: number;
|
|
382
382
|
mainTextStyle: {
|
package/package.json
CHANGED
|
File without changes
|
/package/dist/modules/background-timer/{backround-timer.types.d.ts → BackgroundTimer.types.d.ts}
RENAMED
|
File without changes
|
/package/dist/modules/background-timer/{background-timer-worker.d.ts → BackgroundTimerWorker.d.ts}
RENAMED
|
File without changes
|