@cesdk/engine 1.20.0-rc.0 → 1.20.0
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.20.0-rc.0-OXMA3Z6S.wasm → cesdk-v1.20.0-IO6Z2KDK.wasm} +0 -0
- package/assets/core/worker-host-v1.20.0-4JM2ZKB5.js +14 -0
- package/index.d.ts +6 -4
- package/index.js +1 -1
- package/integrations/react.js +1 -1
- package/package.json +1 -1
- package/assets/core/worker-host-v1.20.0-rc.0-GRE6CDSD.js +0 -14
- /package/assets/core/{cesdk-v1.20.0-rc.0-DTDUIA7U.data → cesdk-v1.20.0-DTDUIA7U.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -3140,6 +3140,7 @@ export declare class EditorAPI {
|
|
|
3140
3140
|
setSettingEnum<T extends keyof SettingsEnum>(keypath: T, value: SettingsEnum[T]): void;
|
|
3141
3141
|
/** @deprecated Support for `ubq://` prefixed keypaths will be removed in a future release. */
|
|
3142
3142
|
setSettingEnum<T extends keyof SettingsEnum>(keypath: `ubq://${T}`, value: SettingsEnum[T]): void;
|
|
3143
|
+
|
|
3143
3144
|
/**
|
|
3144
3145
|
* Get an enum setting.
|
|
3145
3146
|
* @param keypath - The settings keypath, e.g. `role`.
|
|
@@ -3148,6 +3149,7 @@ export declare class EditorAPI {
|
|
|
3148
3149
|
getSettingEnum<T extends keyof SettingsEnum>(keypath: T): SettingsEnum[T];
|
|
3149
3150
|
/** @deprecated Support for `ubq://` prefixed keypaths will be removed in a future release. */
|
|
3150
3151
|
getSettingEnum<T extends keyof SettingsEnum>(keypath: `ubq://${T}`): SettingsEnum[T];
|
|
3152
|
+
|
|
3151
3153
|
/**
|
|
3152
3154
|
* Get the possible enum options for a given enum setting.
|
|
3153
3155
|
* @param keypath - The settings keypath, e.g. `role`.
|
|
@@ -3996,11 +3998,11 @@ export declare type SceneLayout = 'Free' | 'VerticalStack' | 'HorizontalStack' |
|
|
|
3996
3998
|
export declare type SceneMode = 'Design' | 'Video';
|
|
3997
3999
|
|
|
3998
4000
|
/** @public */
|
|
3999
|
-
export declare type SettingsBool = 'doubleClickToCropEnabled' | 'features/singlePageModeEnabled' | 'mouse/
|
|
4001
|
+
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';
|
|
4000
4002
|
|
|
4001
4003
|
/** @public
|
|
4002
4004
|
*/
|
|
4003
|
-
declare type SettingsColor = 'clearColor' | 'errorStateColor' | 'highlightColor' | 'page/title/color' | 'placeholderHighlightColor' | 'progressColor';
|
|
4005
|
+
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';
|
|
4004
4006
|
|
|
4005
4007
|
/** @public
|
|
4006
4008
|
* @deprecated Use SettingsColor instead.
|
|
@@ -4016,10 +4018,10 @@ export declare type SettingsEnum = {
|
|
|
4016
4018
|
};
|
|
4017
4019
|
|
|
4018
4020
|
/** @public */
|
|
4019
|
-
export declare type SettingsFloat = 'positionSnappingThreshold';
|
|
4021
|
+
export declare type SettingsFloat = 'positionSnappingThreshold' | 'rotationSnappingThreshold';
|
|
4020
4022
|
|
|
4021
4023
|
/** @public */
|
|
4022
|
-
export declare type SettingsString = 'basePath' | '
|
|
4024
|
+
export declare type SettingsString = 'basePath' | 'defaultEmojiFontFileUri' | 'license' | 'page/title/fontFileUri' | 'page/title/separator';
|
|
4023
4025
|
|
|
4024
4026
|
/** @public */
|
|
4025
4027
|
export declare type SettingType = 'Bool' | 'Int' | 'Float' | 'String' | 'Color' | 'Enum';
|