@cesdk/node 1.62.0-nightly.20251006 → 1.62.0-nightly.20251008
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.20251006-Q7LUFLGN.wasm → cesdk-v1.62.0-nightly.20251008-RQBRB223.wasm} +0 -0
- package/index.d.ts +5 -1
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.62.0-nightly.20251006-44YCFRT6.data → cesdk-v1.62.0-nightly.20251008-44YCFRT6.data} +0 -0
|
Binary file
|
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.
|