@cesdk/cesdk-js 1.65.0-nightly.20251120 → 1.65.0-nightly.20251122
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.20251120-EVNA7RJL.wasm → cesdk-v1.65.0-nightly.20251122-6T4KTEQW.wasm} +0 -0
- package/assets/core/{worker-host-v1.65.0-nightly.20251120.js → worker-host-v1.65.0-nightly.20251122.js} +1 -1
- package/cesdk.umd.js +1 -1
- package/index.d.ts +18 -0
- package/index.js +1 -1
- package/package.json +2 -2
- /package/assets/core/{cesdk-v1.65.0-nightly.20251120-44YCFRT6.data → cesdk-v1.65.0-nightly.20251122-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -475,6 +475,13 @@ declare interface AssetLibraryEntryData {
|
|
|
475
475
|
*/
|
|
476
476
|
declare interface AssetLibraryEntryView {
|
|
477
477
|
showGroupOverview?: boolean;
|
|
478
|
+
/**
|
|
479
|
+
* Indicates whether this asset library entry supports searching.
|
|
480
|
+
* When set to false, this entry's assets cannot be searched.
|
|
481
|
+
* The search field in the panel will only be shown if at least one visible entry is searchable.
|
|
482
|
+
* Defaults to true (entry is searchable).
|
|
483
|
+
*/
|
|
484
|
+
isSearchable?: boolean;
|
|
478
485
|
/**
|
|
479
486
|
* Wether or not we need to show a confirmation dialog when an asset is selected.
|
|
480
487
|
*
|
|
@@ -4716,6 +4723,8 @@ export declare interface RegisteredActions {
|
|
|
4716
4723
|
*/
|
|
4717
4724
|
/** Action for scrolling to a specific page */
|
|
4718
4725
|
'scroll.toPage': ScrollToPageAction;
|
|
4726
|
+
/** Action for scrolling to a specific block */
|
|
4727
|
+
'scroll.toBlock': ScrollToBlockAction;
|
|
4719
4728
|
/**
|
|
4720
4729
|
* Video timeline zoom actions
|
|
4721
4730
|
*/
|
|
@@ -4806,6 +4815,15 @@ export { SceneMode }
|
|
|
4806
4815
|
|
|
4807
4816
|
export { Scope }
|
|
4808
4817
|
|
|
4818
|
+
/**
|
|
4819
|
+
* Action function for scrolling to a specific block
|
|
4820
|
+
* @public
|
|
4821
|
+
*/
|
|
4822
|
+
export declare type ScrollToBlockAction = (blockId: number, options?: {
|
|
4823
|
+
/** Whether to animate the scroll (default: false) */
|
|
4824
|
+
animate?: boolean;
|
|
4825
|
+
}) => Promise<void>;
|
|
4826
|
+
|
|
4809
4827
|
/**
|
|
4810
4828
|
* Action function for scrolling to a specific page
|
|
4811
4829
|
* @public
|