@cesdk/cesdk-js 1.65.0-nightly.20251124 → 1.65.0-rc.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/assets/core/{cesdk-v1.65.0-nightly.20251124-MD7DVLKW.wasm → cesdk-v1.65.0-rc.1-MK4MJHO4.wasm} +0 -0
- package/assets/core/{worker-host-v1.65.0-nightly.20251124.js → worker-host-v1.65.0-rc.1.js} +1 -1
- package/assets/ui/stylesheets/cesdk.css +4 -0
- package/cesdk.umd.js +1 -1
- package/index.d.ts +19 -0
- package/index.js +1 -1
- package/package.json +2 -14
- package/configs/index.d.ts +0 -74
- package/configs/index.js +0 -1
- package/plugins/index.d.ts +0 -231
- package/plugins/index.js +0 -1
- /package/assets/core/{cesdk-v1.65.0-nightly.20251124-44YCFRT6.data → cesdk-v1.65.0-rc.1-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -4738,6 +4738,13 @@ export declare interface RegisteredActions {
|
|
|
4738
4738
|
'timeline.zoom.toLevel': TimelineZoomToLevelAction;
|
|
4739
4739
|
/** Action for resetting the video timeline zoom to default */
|
|
4740
4740
|
'timeline.zoom.reset': TimelineZoomResetAction;
|
|
4741
|
+
/**
|
|
4742
|
+
* Video timeline expand/collapse actions
|
|
4743
|
+
*/
|
|
4744
|
+
/** Action for expanding the video timeline */
|
|
4745
|
+
'timeline.expand': TimelineExpandAction;
|
|
4746
|
+
/** Action for collapsing the video timeline */
|
|
4747
|
+
'timeline.collapse': TimelineCollapseAction;
|
|
4741
4748
|
/**
|
|
4742
4749
|
* Clipboard actions
|
|
4743
4750
|
*/
|
|
@@ -5044,6 +5051,18 @@ declare type ThemeConfig = Theme | ThemeFn | 'system';
|
|
|
5044
5051
|
*/
|
|
5045
5052
|
declare type ThemeFn = () => Theme;
|
|
5046
5053
|
|
|
5054
|
+
/**
|
|
5055
|
+
* Action function for collapsing the video timeline
|
|
5056
|
+
* @public
|
|
5057
|
+
*/
|
|
5058
|
+
export declare type TimelineCollapseAction = () => void;
|
|
5059
|
+
|
|
5060
|
+
/**
|
|
5061
|
+
* Action function for expanding the video timeline
|
|
5062
|
+
* @public
|
|
5063
|
+
*/
|
|
5064
|
+
export declare type TimelineExpandAction = () => void;
|
|
5065
|
+
|
|
5047
5066
|
/**
|
|
5048
5067
|
* Video timeline zoom action types
|
|
5049
5068
|
*/
|