@cesdk/node 1.69.0-nightly.20260129 → 1.69.0-nightly.20260131
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.69.0-nightly.20260129-XAVYWA4A.wasm → cesdk-v1.69.0-nightly.20260131-4LMYS6LK.wasm} +0 -0
- package/index.d.ts +6 -4
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.69.0-nightly.20260129-MLEZSZ4D.data → cesdk-v1.69.0-nightly.20260131-MLEZSZ4D.data} +0 -0
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -8381,7 +8381,9 @@ export declare interface Settings {
|
|
|
8381
8381
|
clampThumbnailTextureSizes: boolean;
|
|
8382
8382
|
/** Toggle the dock components visibility */
|
|
8383
8383
|
'dock/hideLabels': boolean;
|
|
8384
|
-
/** The root directory
|
|
8384
|
+
/** The root directory for resolving relative paths and `bundle://` URIs.
|
|
8385
|
+
* Also used as the base URL for loading font fallback files and the default emoji font (when self-hosting assets).
|
|
8386
|
+
* If empty, defaults to `https://cdn.img.ly/assets/v4` for font/emoji assets. */
|
|
8385
8387
|
basePath: string;
|
|
8386
8388
|
/** The URI for the default emoji font file. */
|
|
8387
8389
|
defaultEmojiFontFileUri: string;
|
|
@@ -8453,8 +8455,8 @@ export declare interface Settings {
|
|
|
8453
8455
|
handleFillColor: Color;
|
|
8454
8456
|
/** The selection mode for double-click: Direct selects the clicked element, Hierarchical traverses the hierarchy. */
|
|
8455
8457
|
doubleClickSelectionMode: 'Direct' | 'Hierarchical';
|
|
8456
|
-
/** The action performed for pinch gestures: None, Zoom, or
|
|
8457
|
-
'touch/pinchAction': 'None' | 'Zoom' | 'Scale';
|
|
8458
|
+
/** The action performed for pinch gestures: None, Zoom, Scale, or Auto. */
|
|
8459
|
+
'touch/pinchAction': 'None' | 'Zoom' | 'Scale' | 'Auto';
|
|
8458
8460
|
/** The action performed for rotate gestures: None or Rotate. */
|
|
8459
8461
|
'touch/rotateAction': 'None' | 'Rotate';
|
|
8460
8462
|
/** Controls behavior when clamp area is smaller than viewport: Center or Reverse. */
|
|
@@ -8760,7 +8762,7 @@ export declare const TextVerticalAlignmentValues: readonly ["Top", "Bottom", "Ce
|
|
|
8760
8762
|
export declare type TouchPinchAction = (typeof TouchPinchActionValues)[number];
|
|
8761
8763
|
|
|
8762
8764
|
/** @public */
|
|
8763
|
-
export declare const TouchPinchActionValues: readonly ["None", "Zoom", "Scale"];
|
|
8765
|
+
export declare const TouchPinchActionValues: readonly ["None", "Zoom", "Scale", "Auto"];
|
|
8764
8766
|
|
|
8765
8767
|
/** @public */
|
|
8766
8768
|
export declare type TouchRotateAction = (typeof TouchRotateActionValues)[number];
|