@cesdk/engine 1.35.0 → 1.36.0-rc.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.35.0-PCEVZVGD.wasm → cesdk-v1.36.0-rc.0-PZLWQWXV.wasm} +0 -0
- package/assets/core/{cesdk-v1.35.0-46BMFTP2.data → cesdk-v1.36.0-rc.0-XHZXX7DG.data} +0 -0
- package/assets/core/{worker-host-v1.35.0.js → worker-host-v1.36.0-rc.0.js} +1 -1
- package/index.d.ts +6 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3218,6 +3218,7 @@ export declare class EditorAPI {
|
|
|
3218
3218
|
|
|
3219
3219
|
|
|
3220
3220
|
|
|
3221
|
+
|
|
3221
3222
|
/**
|
|
3222
3223
|
* Subscribe to changes to the editor state.
|
|
3223
3224
|
* @param callback - This function is called at the end of the engine update, if the editor state has changed.
|
|
@@ -3237,6 +3238,11 @@ export declare class EditorAPI {
|
|
|
3237
3238
|
* @returns "Transform", "Crop", "Text", "Playback", "Trim" or a custom value.
|
|
3238
3239
|
*/
|
|
3239
3240
|
getEditMode(): EditMode;
|
|
3241
|
+
/**
|
|
3242
|
+
* If an user interaction is happening, e.g., a resize edit with a drag handle or a touch gesture.
|
|
3243
|
+
* @returns True if an interaction is happening.
|
|
3244
|
+
*/
|
|
3245
|
+
unstable_isInteractionHappening(): boolean;
|
|
3240
3246
|
/**
|
|
3241
3247
|
* Get the type of cursor that should be displayed by the application.
|
|
3242
3248
|
* @returns The cursor type.
|