@cesdk/node 1.58.0-nightly.20250807 → 1.58.0-nightly.20250808

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
@@ -5577,12 +5577,15 @@ export declare class EditorAPI {
5577
5577
  *
5578
5578
  * ```javascript
5579
5579
  * engine.editor.setEditMode('Crop');
5580
+ * // With a base mode
5581
+ * engine.editor.setEditMode('CustomMode', 'Crop');
5580
5582
  * ```
5581
5583
  *
5582
5584
  * @category Edit Mode Management
5583
5585
  * @param mode - "Transform", "Crop", "Text", "Playback", "Trim" or a custom value.
5586
+ * @param baseMode - Optional base mode from which the custom mode will inherit the settings.
5584
5587
  */
5585
- setEditMode(mode: EditMode): void;
5588
+ setEditMode(mode: EditMode, baseMode?: string): void;
5586
5589
  /**
5587
5590
  * Get the editor's current edit mode.
5588
5591
  *
@@ -7618,7 +7621,7 @@ export declare type Scope = 'text/edit' | 'text/character' | 'fill/change' | 'fi
7618
7621
  *
7619
7622
  * @public
7620
7623
  */
7621
- export declare type SettingsBool = 'controlGizmo/showCropHandles' | 'controlGizmo/showCropScaleHandles' | 'controlGizmo/showMoveHandles' | 'controlGizmo/showResizeHandles' | 'controlGizmo/showRotateHandles' | 'controlGizmo/showScaleHandles' | 'doubleClickToCropEnabled' | 'features/singlePageModeEnabled' | 'features/pageCarouselEnabled' | 'features/transformEditsRetainCoverMode' | 'mouse/enableScroll' | 'mouse/enableZoom' | 'page/allowCropInteraction' | 'page/allowMoveInteraction' | 'page/allowResizeInteraction' | 'page/allowRotateInteraction' | 'page/dimOutOfPageAreas' | 'page/restrictResizeInteractionToFixedAspectRatio' | 'page/moveChildrenWhenCroppingFill' | 'page/selectWhenNoBlocksSelected' | 'page/title/appendPageName' | 'page/title/show' | 'page/title/showOnSinglePage' | 'page/title/showPageTitleTemplate' | 'placeholderControls/showButton' | 'placeholderControls/showOverlay' | 'blockAnimations/enabled' | 'showBuildVersion' | 'touch/dragStartCanSelect' | 'touch/singlePointPanning' | 'useSystemFontFallback' | 'forceSystemEmojis';
7624
+ export declare type SettingsBool = 'controlGizmo/showCropHandles' | 'controlGizmo/showCropScaleHandles' | 'controlGizmo/showMoveHandles' | 'controlGizmo/showResizeHandles' | 'controlGizmo/showRotateHandles' | 'controlGizmo/showScaleHandles' | 'doubleClickToCropEnabled' | 'features/singlePageModeEnabled' | 'features/pageCarouselEnabled' | 'features/transformEditsRetainCoverMode' | 'mouse/enableScroll' | 'mouse/enableZoom' | 'page/allowCropInteraction' | 'page/allowMoveInteraction' | 'page/allowResizeInteraction' | 'page/allowRotateInteraction' | 'page/dimOutOfPageAreas' | 'page/restrictResizeInteractionToFixedAspectRatio' | 'page/moveChildrenWhenCroppingFill' | 'page/title/appendPageName' | 'page/title/show' | 'page/title/showOnSinglePage' | 'page/title/showPageTitleTemplate' | 'placeholderControls/showButton' | 'placeholderControls/showOverlay' | 'blockAnimations/enabled' | 'showBuildVersion' | 'touch/dragStartCanSelect' | 'touch/singlePointPanning' | 'useSystemFontFallback' | 'forceSystemEmojis';
7622
7625
 
7623
7626
  /**
7624
7627
  * Represents the color settings available in the editor.