@cesdk/node 1.70.0-nightly.20260218 → 1.70.0-nightly.20260219

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
@@ -5697,6 +5697,12 @@ export declare interface CMYKColor {
5697
5697
  */
5698
5698
  export declare type Color = RGBAColor | CMYKColor | SpotColor;
5699
5699
 
5700
+ /** @public */
5701
+ export declare type ColorPickerColorMode = (typeof ColorPickerColorModeValues)[number];
5702
+
5703
+ /** @public */
5704
+ export declare const ColorPickerColorModeValues: readonly ["RGB", "CMYK", "Any"];
5705
+
5700
5706
  /** @public */
5701
5707
  export declare type ColorPropertyName = 'dropShadow/color' | 'fill/solid/color' | 'stroke/color' | 'backgroundColor/color' | 'animation/block_swipe_text/blockColor' | 'effect/duotone_filter/darkColor' | 'effect/duotone_filter/lightColor' | 'effect/green_screen/fromColor' | 'effect/recolor/fromColor' | 'effect/recolor/toColor' | 'fill/color/value' | (string & {});
5702
5708
 
@@ -8271,7 +8277,7 @@ export declare type SettingBoolPropertyName = 'alwaysHighlightPlaceholders' | 'd
8271
8277
  export declare type SettingColorPropertyName = 'clearColor' | 'handleFillColor' | 'highlightColor' | 'pageHighlightColor' | 'placeholderHighlightColor' | 'snappingGuideColor' | 'rotationSnappingGuideColor' | 'cropOverlayColor' | 'textVariableHighlightColor' | 'borderOutlineColor' | 'progressColor' | 'errorStateColor' | 'page/title/color' | 'page/marginFillColor' | 'page/marginFrameColor' | 'page/innerBorderColor' | 'page/outerBorderColor' | 'colorMaskingSettings/maskColor' | (string & {});
8272
8278
 
8273
8279
  /** @public */
8274
- export declare type SettingEnumPropertyName = 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode' | 'doubleClickSelectionMode' | (string & {});
8280
+ export declare type SettingEnumPropertyName = 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode' | 'doubleClickSelectionMode' | 'colorPicker/colorMode' | (string & {});
8275
8281
 
8276
8282
  /** @public */
8277
8283
  export declare type SettingEnumType = {
@@ -8279,10 +8285,11 @@ export declare type SettingEnumType = {
8279
8285
  'touch/rotateAction': TouchRotateAction;
8280
8286
  'camera/clamping/overshootMode': CameraClampingOvershootMode;
8281
8287
  doubleClickSelectionMode: DoubleClickSelectionMode;
8288
+ 'colorPicker/colorMode': ColorPickerColorMode;
8282
8289
  };
8283
8290
 
8284
8291
  /** @public */
8285
- export declare type SettingEnumValues = TouchPinchAction | TouchRotateAction | CameraClampingOvershootMode | DoubleClickSelectionMode | (string & {});
8292
+ export declare type SettingEnumValues = TouchPinchAction | TouchRotateAction | CameraClampingOvershootMode | DoubleClickSelectionMode | ColorPickerColorMode | (string & {});
8286
8293
 
8287
8294
  /** @public */
8288
8295
  export declare type SettingFloatPropertyName = 'positionSnappingThreshold' | 'rotationSnappingThreshold' | 'controlGizmo/blockScaleDownLimit' | (string & {});
@@ -8333,6 +8340,8 @@ export declare interface Settings {
8333
8340
  'features/pageCarouselEnabled': boolean;
8334
8341
  /** Whether transform edits should retain the cover mode of the content. */
8335
8342
  'features/transformEditsRetainCoverMode': boolean;
8343
+ /** Whether auto-sized text blocks should be clamped to page boundaries during editing. */
8344
+ 'features/clampTextBlockWidthToPageDimensionsDuringEditing': boolean;
8336
8345
  /** Whether the engine processes mouse scroll events. */
8337
8346
  'mouse/enableScroll': boolean;
8338
8347
  /** Whether the engine processes mouse zoom events. */
@@ -8465,6 +8474,8 @@ export declare interface Settings {
8465
8474
  'camera/clamping/overshootMode': 'Center' | 'Reverse';
8466
8475
  /** Controls the icon size of the dock components */
8467
8476
  'dock/iconSize': 'normal' | 'large';
8477
+ /** Controls the color mode of the color picker. When set to 'RGB' or 'CMYK', only colors matching this mode are fully editable. Defaults to 'Any'. */
8478
+ 'colorPicker/colorMode': 'RGB' | 'CMYK' | 'Any';
8468
8479
 
8469
8480
 
8470
8481