@cesdk/node 1.65.0-nightly.20251114 → 1.65.0-nightly.20251115
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.65.0-nightly.20251114-JXYRAFD7.wasm → cesdk-v1.65.0-nightly.20251115-O5KUFKJR.wasm} +0 -0
- package/index.d.ts +5 -1
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.65.0-nightly.20251114-44YCFRT6.data → cesdk-v1.65.0-nightly.20251115-44YCFRT6.data} +0 -0
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -8207,7 +8207,7 @@ export declare type Scope = 'text/edit' | 'text/character' | 'fill/change' | 'fi
|
|
|
8207
8207
|
export declare type SettingBoolPropertyName = 'alwaysHighlightPlaceholders' | 'doubleClickToCropEnabled' | 'showBuildVersion' | 'placeholderControls/showButton' | 'placeholderControls/showOverlay' | 'blockAnimations/enabled' | 'renderTextCursorAndSelectionInEngine' | 'touch/dragStartCanSelect' | 'touch/singlePointPanning' | 'mouse/enableZoom' | 'mouse/enableScroll' | 'controlGizmo/showCropHandles' | 'controlGizmo/showMoveHandles' | 'controlGizmo/showResizeHandles' | 'controlGizmo/showScaleHandles' | 'controlGizmo/showRotateHandles' | 'controlGizmo/showCropScaleHandles' | 'page/title/show' | 'page/title/showPageTitleTemplate' | 'page/title/appendPageName' | 'page/title/showOnSinglePage' | 'page/dimOutOfPageAreas' | 'page/allowCropInteraction' | 'page/allowResizeInteraction' | 'page/restrictResizeInteractionToFixedAspectRatio' | 'page/allowRotateInteraction' | 'page/allowMoveInteraction' | 'page/moveChildrenWhenCroppingFill' | 'page/selectWhenNoBlocksSelected' | 'colorMaskingSettings/secondPass' | 'clampThumbnailTextureSizes' | 'useSystemFontFallback' | 'forceSystemEmojis' | (string & {});
|
|
8208
8208
|
|
|
8209
8209
|
/** @public */
|
|
8210
|
-
export declare type SettingColorPropertyName = 'clearColor' | 'handleFillColor' | 'highlightColor' | 'placeholderHighlightColor' | 'snappingGuideColor' | 'rotationSnappingGuideColor' | 'cropOverlayColor' | 'textVariableHighlightColor' | 'borderOutlineColor' | 'progressColor' | 'errorStateColor' | 'page/title/color' | 'page/marginFillColor' | 'page/marginFrameColor' | 'page/innerBorderColor' | 'page/outerBorderColor' | 'colorMaskingSettings/maskColor' | (string & {});
|
|
8210
|
+
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 & {});
|
|
8211
8211
|
|
|
8212
8212
|
/** @public */
|
|
8213
8213
|
export declare type SettingEnumPropertyName = 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode' | 'doubleClickSelectionMode' | (string & {});
|
|
@@ -8372,6 +8372,8 @@ export declare interface Settings {
|
|
|
8372
8372
|
'page/outerBorderColor': Color;
|
|
8373
8373
|
/** The color of page titles visible in preview mode. */
|
|
8374
8374
|
'page/title/color': Color;
|
|
8375
|
+
/** Color of the outline of each page */
|
|
8376
|
+
pageHighlightColor: Color;
|
|
8375
8377
|
/** The highlight color for placeholder elements. */
|
|
8376
8378
|
placeholderHighlightColor: Color;
|
|
8377
8379
|
/** The color indicating progress or loading states. */
|
|
@@ -8439,6 +8441,7 @@ export declare type SettingsBool = SettingBoolPropertyName;
|
|
|
8439
8441
|
* - 'page/marginFrameColor': The color of the margin frame.
|
|
8440
8442
|
* - 'page/outerBorderColor': The color of the outer border of the page.
|
|
8441
8443
|
* - 'page/title/color': The color of the page title.
|
|
8444
|
+
* - 'pageHighlightColor': Color of the outline of each page.
|
|
8442
8445
|
* - 'placeholderHighlightColor': The highlight color for placeholders.
|
|
8443
8446
|
* - 'progressColor': The color indicating progress.
|
|
8444
8447
|
* - 'rotationSnappingGuideColor': The color of the rotation snapping guide.
|
|
@@ -8466,6 +8469,7 @@ export declare type SettingsColor = SettingColorPropertyName;
|
|
|
8466
8469
|
* - 'page/marginFrameColor': The color of the margin frame.
|
|
8467
8470
|
* - 'page/outerBorderColor': The color of the outer border of the page.
|
|
8468
8471
|
* - 'page/title/color': The color of the page title.
|
|
8472
|
+
* - 'pageHighlightColor': Color of the outline of each page.
|
|
8469
8473
|
* - 'placeholderHighlightColor': The highlight color for placeholders.
|
|
8470
8474
|
* - 'progressColor': The color indicating progress.
|
|
8471
8475
|
* - 'rotationSnappingGuideColor': The color of the rotation snapping guide.
|