@cesdk/node 1.20.0-rc.0 → 1.20.0-rc.1

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
@@ -3025,6 +3025,7 @@ export declare class EditorAPI {
3025
3025
  setSettingEnum<T extends keyof SettingsEnum>(keypath: T, value: SettingsEnum[T]): void;
3026
3026
  /** @deprecated Support for `ubq://` prefixed keypaths will be removed in a future release. */
3027
3027
  setSettingEnum<T extends keyof SettingsEnum>(keypath: `ubq://${T}`, value: SettingsEnum[T]): void;
3028
+
3028
3029
  /**
3029
3030
  * Get an enum setting.
3030
3031
  * @param keypath - The settings keypath, e.g. `role`.
@@ -3033,6 +3034,7 @@ export declare class EditorAPI {
3033
3034
  getSettingEnum<T extends keyof SettingsEnum>(keypath: T): SettingsEnum[T];
3034
3035
  /** @deprecated Support for `ubq://` prefixed keypaths will be removed in a future release. */
3035
3036
  getSettingEnum<T extends keyof SettingsEnum>(keypath: `ubq://${T}`): SettingsEnum[T];
3037
+
3036
3038
  /**
3037
3039
  * Get the possible enum options for a given enum setting.
3038
3040
  * @param keypath - The settings keypath, e.g. `role`.
@@ -3766,11 +3768,11 @@ export declare type SceneLayout = 'Free' | 'VerticalStack' | 'HorizontalStack' |
3766
3768
  export declare type SceneMode = 'Design' | 'Video';
3767
3769
 
3768
3770
  /** @public */
3769
- export declare type SettingsBool = 'doubleClickToCropEnabled' | 'features/singlePageModeEnabled' | 'mouse/enableZoom' | 'mouse/enableScroll' | 'page/dimOutOfPageAreas' | 'page/title/show' | 'page/title/showPageTitleTemplate' | 'page/title/appendPageName' | 'page/title/showOnSinglePage' | 'placeholderControls/showButton' | 'placeholderControls/showOverlay' | 'showBuildVersion' | 'touch/dragStartCanSelect' | 'touch/singlePointPanning';
3771
+ export declare type SettingsBool = 'controlGizmo/showCropHandles' | 'controlGizmo/showCropScaleHandles' | 'controlGizmo/showResizeHandles' | 'controlGizmo/showRotateHandles' | 'controlGizmo/showScaleHandles' | 'doubleClickToCropEnabled' | 'features/singlePageModeEnabled' | 'mouse/enableScroll' | 'mouse/enableZoom' | 'page/dimOutOfPageAreas' | 'page/title/appendPageName' | 'page/title/show' | 'page/title/showOnSinglePage' | 'page/title/showPageTitleTemplate' | 'placeholderControls/showButton' | 'placeholderControls/showOverlay' | 'showBuildVersion' | 'touch/dragStartCanSelect' | 'touch/singlePointPanning';
3770
3772
 
3771
3773
  /** @public
3772
3774
  */
3773
- declare type SettingsColor = 'clearColor' | 'errorStateColor' | 'highlightColor' | 'page/title/color' | 'placeholderHighlightColor' | 'progressColor';
3775
+ declare type SettingsColor = 'borderOutlineColor' | 'clearColor' | 'colorMaskingSettings/maskColor' | 'cropOverlayColor' | 'errorStateColor' | 'highlightColor' | 'page/innerBorderColor' | 'page/marginFillColor' | 'page/marginFrameColor' | 'page/outerBorderColor' | 'page/title/color' | 'placeholderHighlightColor' | 'progressColor' | 'rotationSnappingGuideColor' | 'snappingGuideColor' | 'textVariableHighlightColor';
3774
3776
 
3775
3777
  /** @public
3776
3778
  * @deprecated Use SettingsColor instead.
@@ -3786,10 +3788,10 @@ export declare type SettingsEnum = {
3786
3788
  };
3787
3789
 
3788
3790
  /** @public */
3789
- export declare type SettingsFloat = 'positionSnappingThreshold';
3791
+ export declare type SettingsFloat = 'positionSnappingThreshold' | 'rotationSnappingThreshold';
3790
3792
 
3791
3793
  /** @public */
3792
- export declare type SettingsString = 'basePath' | 'license' | 'page/title/separator' | 'page/title/fontFileUri' | 'defaultEmojiFontFileUri';
3794
+ export declare type SettingsString = 'basePath' | 'defaultEmojiFontFileUri' | 'license' | 'page/title/fontFileUri' | 'page/title/separator';
3793
3795
 
3794
3796
  /** @public */
3795
3797
  export declare type SettingType = 'Bool' | 'Int' | 'Float' | 'String' | 'Color' | 'Enum';