@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/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.