@cesdk/engine 1.43.0-rc.3 → 1.44.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.43.0-rc.3-IMRETHOR.wasm → cesdk-v1.44.0-rc.0-OIGKB6EW.wasm} +0 -0
- package/assets/core/{worker-host-v1.43.0-rc.3.js → worker-host-v1.44.0-rc.0.js} +1 -1
- package/index.d.ts +4 -0
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.43.0-rc.3-XHZXX7DG.data → cesdk-v1.44.0-rc.0-XHZXX7DG.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -954,6 +954,7 @@ export declare class BlockAPI {
|
|
|
954
954
|
* Updates the sorting order of this block and all of its superjacent siblings
|
|
955
955
|
* so that the given block has a higher sorting order than the next superjacent sibling.
|
|
956
956
|
* If the block is parented to a track, it is first moved up in the hierarchy.
|
|
957
|
+
* Empty tracks and empty groups are passed by.
|
|
957
958
|
* @param id - The id of the block to be given a higher sorting than the next superjacent sibling.
|
|
958
959
|
*/
|
|
959
960
|
bringForward(id: DesignBlockId): void;
|
|
@@ -961,6 +962,7 @@ export declare class BlockAPI {
|
|
|
961
962
|
* Updates the sorting order of this block and all of its manually created and subjacent siblings
|
|
962
963
|
* so that the given block will have a lower sorting order than the next subjacent sibling.
|
|
963
964
|
* If the block is parented to a track, it is first moved up in the hierarchy.
|
|
965
|
+
* Empty tracks and empty groups are passed by.
|
|
964
966
|
* @param id - The id of the block to be given a lower sorting order than the next subjacent sibling.
|
|
965
967
|
*/
|
|
966
968
|
sendBackward(id: DesignBlockId): void;
|
|
@@ -1118,6 +1120,8 @@ export declare class BlockAPI {
|
|
|
1118
1120
|
/**
|
|
1119
1121
|
* Duplicates a block including its children.
|
|
1120
1122
|
* Required scope: 'lifecycle/duplicate'
|
|
1123
|
+
* If the block is parented to a track that is set always-on-bottom, the duplicate is inserted in the same track
|
|
1124
|
+
* immediately after the block. Otherwise, the duplicate is moved up in the hierarchy.
|
|
1121
1125
|
* @param id - The block to duplicate.
|
|
1122
1126
|
* @returns The handle of the duplicate.
|
|
1123
1127
|
*/
|