@cesdk/node 1.62.0-nightly.20251006 → 1.62.0-nightly.20251007

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
@@ -7933,6 +7933,8 @@ export declare interface Settings {
7933
7933
  'page/selectWhenNoBlocksSelected': boolean;
7934
7934
  /** Clamp thumbnail texture sizes to the platform's GPU texture limit. */
7935
7935
  clampThumbnailTextureSizes: boolean;
7936
+ /** Toggle the dock components visibility */
7937
+ 'dock/hideLabels': boolean;
7936
7938
  /** The root directory used when resolving relative paths or accessing bundle:// URIs. */
7937
7939
  basePath: string;
7938
7940
  /** The URI for the default emoji font file. */
@@ -8001,6 +8003,8 @@ export declare interface Settings {
8001
8003
  'touch/rotateAction': 'None' | 'Rotate';
8002
8004
  /** Controls behavior when clamp area is smaller than viewport: Center or Reverse. */
8003
8005
  'camera/clamping/overshootMode': 'Center' | 'Reverse';
8006
+ /** Controls the icon size of the dock components */
8007
+ 'dock/iconSize': 'normal' | 'large';
8004
8008
 
8005
8009
 
8006
8010
 
@@ -8056,7 +8060,7 @@ export declare type SettingsColorRGBA = SettingsColor;
8056
8060
  * @deprecated Use keyof Settings or extract the enum keys from Settings instead.
8057
8061
  * @public
8058
8062
  */
8059
- export declare type SettingsEnum = Pick<Settings, 'doubleClickSelectionMode' | 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode'>;
8063
+ export declare type SettingsEnum = Pick<Settings, 'doubleClickSelectionMode' | 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode' | 'dock/iconSize'>;
8060
8064
 
8061
8065
  /**
8062
8066
  * Represents the float settings available in the editor.