@cesdk/node 1.69.0-nightly.20260130 → 1.69.0-nightly.20260201

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
@@ -8455,8 +8455,8 @@ export declare interface Settings {
8455
8455
  handleFillColor: Color;
8456
8456
  /** The selection mode for double-click: Direct selects the clicked element, Hierarchical traverses the hierarchy. */
8457
8457
  doubleClickSelectionMode: 'Direct' | 'Hierarchical';
8458
- /** The action performed for pinch gestures: None, Zoom, or Scale. */
8459
- 'touch/pinchAction': 'None' | 'Zoom' | 'Scale';
8458
+ /** The action performed for pinch gestures: None, Zoom, Scale, or Auto. */
8459
+ 'touch/pinchAction': 'None' | 'Zoom' | 'Scale' | 'Auto';
8460
8460
  /** The action performed for rotate gestures: None or Rotate. */
8461
8461
  'touch/rotateAction': 'None' | 'Rotate';
8462
8462
  /** Controls behavior when clamp area is smaller than viewport: Center or Reverse. */
@@ -8762,7 +8762,7 @@ export declare const TextVerticalAlignmentValues: readonly ["Top", "Bottom", "Ce
8762
8762
  export declare type TouchPinchAction = (typeof TouchPinchActionValues)[number];
8763
8763
 
8764
8764
  /** @public */
8765
- export declare const TouchPinchActionValues: readonly ["None", "Zoom", "Scale"];
8765
+ export declare const TouchPinchActionValues: readonly ["None", "Zoom", "Scale", "Auto"];
8766
8766
 
8767
8767
  /** @public */
8768
8768
  export declare type TouchRotateAction = (typeof TouchRotateActionValues)[number];