@cesdk/engine 1.41.1 → 1.42.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/index.d.ts CHANGED
@@ -1527,7 +1527,7 @@ export declare class BlockAPI {
1527
1527
  * Set the crop translation in x direction of the given design block.
1528
1528
  * Required scope: 'layer/crop'
1529
1529
  * @param id - The block whose crop should be set.
1530
- * @param translationY - The translation in y direction.
1530
+ * @param translationX - The translation in x direction.
1531
1531
  */
1532
1532
  setCropTranslationX(id: DesignBlockId, translationX: number): void;
1533
1533
  /**
@@ -1539,7 +1539,7 @@ export declare class BlockAPI {
1539
1539
  setCropTranslationY(id: DesignBlockId, translationY: number): void;
1540
1540
  /**
1541
1541
  * Resets the manually set crop of the given design block.
1542
- * The block's content fill mode is set to 'Cover'.
1542
+ * The block's content fill mode is set to 'cover'.
1543
1543
  * If the block has a fill, the crop values are updated so that it covers the block.
1544
1544
  * Required scope: 'layer/crop'
1545
1545
  * @param id - The block whose crop should be reset.