@cesdk/cesdk-js 1.66.0-nightly.20251201 → 1.66.0-nightly.20251202
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/assets/core/{cesdk-v1.66.0-nightly.20251201-7APRDI6U.wasm → cesdk-v1.66.0-nightly.20251202-NRLB6FLI.wasm} +0 -0
- package/assets/core/{worker-host-v1.66.0-nightly.20251201.js → worker-host-v1.66.0-nightly.20251202.js} +1 -1
- package/assets/ui/stylesheets/cesdk.css +4 -0
- package/cesdk.umd.js +1 -1
- package/index.d.ts +19 -1
- package/index.js +1 -1
- package/package.json +2 -2
- /package/assets/core/{cesdk-v1.66.0-nightly.20251201-44YCFRT6.data → cesdk-v1.66.0-nightly.20251202-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -92,7 +92,6 @@ import { HorizontalBlockAlignment } from '@cesdk/engine';
|
|
|
92
92
|
import { HTMLCreativeEngineCanvasElement } from '@cesdk/engine';
|
|
93
93
|
import type { i18n } from 'i18next';
|
|
94
94
|
import { ImageMimeType } from '@cesdk/engine';
|
|
95
|
-
import { _LegacyAPI } from '@cesdk/engine';
|
|
96
95
|
import { Logger } from '@cesdk/engine';
|
|
97
96
|
import { LogLevel } from '@cesdk/engine';
|
|
98
97
|
import { MimeType as MimeType_2 } from '@cesdk/engine';
|
|
@@ -4738,6 +4737,13 @@ export declare interface RegisteredActions {
|
|
|
4738
4737
|
'timeline.zoom.toLevel': TimelineZoomToLevelAction;
|
|
4739
4738
|
/** Action for resetting the video timeline zoom to default */
|
|
4740
4739
|
'timeline.zoom.reset': TimelineZoomResetAction;
|
|
4740
|
+
/**
|
|
4741
|
+
* Video timeline expand/collapse actions
|
|
4742
|
+
*/
|
|
4743
|
+
/** Action for expanding the video timeline */
|
|
4744
|
+
'timeline.expand': TimelineExpandAction;
|
|
4745
|
+
/** Action for collapsing the video timeline */
|
|
4746
|
+
'timeline.collapse': TimelineCollapseAction;
|
|
4741
4747
|
/**
|
|
4742
4748
|
* Clipboard actions
|
|
4743
4749
|
*/
|
|
@@ -5044,6 +5050,18 @@ declare type ThemeConfig = Theme | ThemeFn | 'system';
|
|
|
5044
5050
|
*/
|
|
5045
5051
|
declare type ThemeFn = () => Theme;
|
|
5046
5052
|
|
|
5053
|
+
/**
|
|
5054
|
+
* Action function for collapsing the video timeline
|
|
5055
|
+
* @public
|
|
5056
|
+
*/
|
|
5057
|
+
export declare type TimelineCollapseAction = () => void;
|
|
5058
|
+
|
|
5059
|
+
/**
|
|
5060
|
+
* Action function for expanding the video timeline
|
|
5061
|
+
* @public
|
|
5062
|
+
*/
|
|
5063
|
+
export declare type TimelineExpandAction = () => void;
|
|
5064
|
+
|
|
5047
5065
|
/**
|
|
5048
5066
|
* Video timeline zoom action types
|
|
5049
5067
|
*/
|