@cesdk/cesdk-js 1.63.0-nightly.20251014 → 1.63.0-nightly.20251016
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.63.0-nightly.20251014-4H7QYOOP.wasm → cesdk-v1.63.0-nightly.20251016-76HKYHP2.wasm} +0 -0
- package/assets/core/{worker-host-v1.63.0-nightly.20251014.js → worker-host-v1.63.0-nightly.20251016.js} +1 -1
- package/assets/i18n/de.json +2 -0
- package/assets/i18n/en.json +2 -0
- package/assets/ui/stylesheets/cesdk-themes.css +49 -0
- package/assets/ui/stylesheets/cesdk.css +235 -48
- package/cesdk.umd.js +1 -1
- package/index.d.ts +5 -1
- package/index.js +1 -1
- package/package.json +2 -2
- /package/assets/core/{cesdk-v1.63.0-nightly.20251014-44YCFRT6.data → cesdk-v1.63.0-nightly.20251016-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -4197,9 +4197,13 @@ export declare type SaveSceneAction = () => void | Promise<void>;
|
|
|
4197
4197
|
* Represents the base scale values for the Creative Editor SDK.
|
|
4198
4198
|
* This type defines the concrete scales that can be rendered.
|
|
4199
4199
|
*
|
|
4200
|
+
* - `'normal'`: Standard UI scaling for desktop and larger screens
|
|
4201
|
+
* - `'large'`: Increased UI scaling for touch devices and accessibility
|
|
4202
|
+
* - `'modern'`: Modern theme with refined color palette and improved visual hierarchy
|
|
4203
|
+
*
|
|
4200
4204
|
* @public
|
|
4201
4205
|
*/
|
|
4202
|
-
declare type Scale = 'normal' | 'large';
|
|
4206
|
+
declare type Scale = 'normal' | 'large' | 'modern';
|
|
4203
4207
|
|
|
4204
4208
|
/**
|
|
4205
4209
|
* Represents the scale configuration for the Creative Editor SDK.
|