@cesdk/node 1.74.0-nightly.20260404 → 1.74.0-nightly.20260410

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
@@ -8918,8 +8918,8 @@ export declare interface Settings {
8918
8918
  'grid/color': Color;
8919
8919
  /** The selection mode for double-click: Direct selects the clicked element, Hierarchical traverses the hierarchy. */
8920
8920
  doubleClickSelectionMode: 'Direct' | 'Hierarchical';
8921
- /** The action performed for pinch gestures: None, Zoom, Scale, or Auto. */
8922
- 'touch/pinchAction': 'None' | 'Zoom' | 'Scale' | 'Auto';
8921
+ /** The action performed for pinch gestures: None, Zoom, Scale, Auto, or Dynamic. */
8922
+ 'touch/pinchAction': 'None' | 'Zoom' | 'Scale' | 'Auto' | 'Dynamic';
8923
8923
  /** The action performed for rotate gestures: None or Rotate. */
8924
8924
  'touch/rotateAction': 'None' | 'Rotate';
8925
8925
  /** Controls behavior when clamp area is smaller than viewport: Center or Reverse. */
@@ -9296,7 +9296,7 @@ export declare const TimelineTrackVisibilityValues: readonly ["all", "active"];
9296
9296
  export declare type TouchPinchAction = (typeof TouchPinchActionValues)[number];
9297
9297
 
9298
9298
  /** @public */
9299
- export declare const TouchPinchActionValues: readonly ["None", "Zoom", "Scale", "Auto"];
9299
+ export declare const TouchPinchActionValues: readonly ["None", "Zoom", "Scale", "Auto", "Dynamic"];
9300
9300
 
9301
9301
  /** @public */
9302
9302
  export declare type TouchRotateAction = (typeof TouchRotateActionValues)[number];