@cesdk/cesdk-js 1.62.0-nightly.20251008 → 1.62.0-nightly.20251010
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.62.0-nightly.20251008-YG677TVR.wasm → cesdk-v1.62.0-nightly.20251010-KKZN7A5B.wasm} +0 -0
- package/assets/core/{worker-host-v1.62.0-nightly.20251008.js → worker-host-v1.62.0-nightly.20251010.js} +1 -1
- package/assets/ui/stylesheets/cesdk-themes.css +20 -20
- package/assets/ui/stylesheets/cesdk.css +31 -6
- package/cesdk.umd.js +1 -1
- package/index.d.ts +9 -1
- package/index.js +1 -1
- package/package.json +2 -2
- /package/assets/core/{cesdk-v1.62.0-nightly.20251008-44YCFRT6.data → cesdk-v1.62.0-nightly.20251010-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { AnimationType } from '@cesdk/engine';
|
|
|
9
9
|
import { AnimationTypeLonghand } from '@cesdk/engine';
|
|
10
10
|
import { AnimationTypeShorthand } from '@cesdk/engine';
|
|
11
11
|
import { ApplicationMimeType } from '@cesdk/engine';
|
|
12
|
+
import { ApplyAssetOptions } from '@cesdk/engine';
|
|
12
13
|
import { Asset } from '@cesdk/engine';
|
|
13
14
|
import { AssetAPI } from '@cesdk/engine';
|
|
14
15
|
import { AssetBooleanProperty } from '@cesdk/engine';
|
|
@@ -298,6 +299,8 @@ export { AnimationTypeShorthand }
|
|
|
298
299
|
|
|
299
300
|
export { ApplicationMimeType }
|
|
300
301
|
|
|
302
|
+
export { ApplyAssetOptions }
|
|
303
|
+
|
|
301
304
|
export { Asset }
|
|
302
305
|
|
|
303
306
|
export { AssetAPI }
|
|
@@ -546,13 +549,18 @@ declare interface AssetLibraryEntryView {
|
|
|
546
549
|
|
|
547
550
|
/**
|
|
548
551
|
* Represents the payload for the asset library panel in the Creative Editor SDK.
|
|
549
|
-
* This interface defines the title and
|
|
552
|
+
* This interface defines the title, entries, and placement options for the asset library panel.
|
|
550
553
|
*
|
|
551
554
|
* @public
|
|
552
555
|
*/
|
|
553
556
|
export declare type AssetLibraryPanelPayload = {
|
|
554
557
|
title?: string | string[];
|
|
555
558
|
entries?: string[];
|
|
559
|
+
/**
|
|
560
|
+
* Context for asset application.
|
|
561
|
+
* Passed directly to engine.asset.apply() when an asset is selected.
|
|
562
|
+
*/
|
|
563
|
+
applyAssetContext?: ApplyAssetOptions;
|
|
556
564
|
};
|
|
557
565
|
|
|
558
566
|
export { AssetMetaData }
|