@cesdk/cesdk-js 1.65.0-nightly.20251114 → 1.65.0-nightly.20251116
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.20251114-IKR6FRHF.wasm → cesdk-v1.65.0-nightly.20251116-UXZ2TOUN.wasm} +0 -0
- package/assets/core/{worker-host-v1.65.0-nightly.20251114.js → worker-host-v1.65.0-nightly.20251116.js} +1 -1
- package/cesdk.umd.js +1 -1
- package/index.d.ts +19 -0
- package/index.js +1 -1
- package/package.json +2 -2
- /package/assets/core/{cesdk-v1.65.0-nightly.20251114-44YCFRT6.data → cesdk-v1.65.0-nightly.20251116-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -2528,6 +2528,12 @@ export declare type Configuration = Partial<CombinedConfiguration>;
|
|
|
2528
2528
|
|
|
2529
2529
|
export { ContentFillMode }
|
|
2530
2530
|
|
|
2531
|
+
/**
|
|
2532
|
+
* Action function for copying selected blocks to the clipboard
|
|
2533
|
+
* @public
|
|
2534
|
+
*/
|
|
2535
|
+
export declare type CopyAction = () => void | Promise<void>;
|
|
2536
|
+
|
|
2531
2537
|
export { CreateSceneOptions }
|
|
2532
2538
|
|
|
2533
2539
|
/**
|
|
@@ -4589,6 +4595,12 @@ declare type PanelStates<T extends PanelId> = {
|
|
|
4589
4595
|
[key in T]?: PanelState<T>;
|
|
4590
4596
|
};
|
|
4591
4597
|
|
|
4598
|
+
/**
|
|
4599
|
+
* Action function for pasting blocks from the clipboard
|
|
4600
|
+
* @public
|
|
4601
|
+
*/
|
|
4602
|
+
export declare type PasteAction = () => void | Promise<void>;
|
|
4603
|
+
|
|
4592
4604
|
export { PositionMode }
|
|
4593
4605
|
|
|
4594
4606
|
/**
|
|
@@ -4692,6 +4704,13 @@ export declare interface RegisteredActions {
|
|
|
4692
4704
|
'timeline.zoom.toLevel': TimelineZoomToLevelAction;
|
|
4693
4705
|
/** Action for resetting the video timeline zoom to default */
|
|
4694
4706
|
'timeline.zoom.reset': TimelineZoomResetAction;
|
|
4707
|
+
/**
|
|
4708
|
+
* Clipboard actions
|
|
4709
|
+
*/
|
|
4710
|
+
/** Action for copying selected blocks to the clipboard */
|
|
4711
|
+
copy: CopyAction;
|
|
4712
|
+
/** Action for pasting blocks from the clipboard */
|
|
4713
|
+
paste: PasteAction;
|
|
4695
4714
|
}
|
|
4696
4715
|
|
|
4697
4716
|
/**
|