@cesdk/engine 1.68.0-rc.1 → 1.69.0-nightly.20260128

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
@@ -4490,16 +4490,6 @@ export declare class BlockAPI {
4490
4490
  * @returns The text content of the line.
4491
4491
  */
4492
4492
  getTextVisibleLineContent(id: DesignBlockId, lineIndex: number): string;
4493
- /**
4494
- * Gets the effective horizontal alignment of a text block.
4495
- * If the alignment is set to Auto, this returns the resolved alignment (Left or Right)
4496
- * based on the text direction of the first logical run. This never returns 'Auto'.
4497
- *
4498
- * @category Block Text
4499
- * @param id - The text block whose effective alignment should be returned.
4500
- * @returns The effective alignment ('Left', 'Right', or 'Center').
4501
- */
4502
- getTextEffectiveHorizontalAlignment(id: DesignBlockId): 'Left' | 'Right' | 'Center';
4503
4493
  /**
4504
4494
  * Checks if a block has fill properties.
4505
4495
  *
@@ -5656,7 +5646,7 @@ export declare type Canvas = HTMLCanvasElement | OffscreenCanvas_2;
5656
5646
  export declare type CaptionHorizontalAlignment = (typeof CaptionHorizontalAlignmentValues)[number];
5657
5647
 
5658
5648
  /** @public */
5659
- export declare const CaptionHorizontalAlignmentValues: readonly ["Left", "Right", "Center", "Auto"];
5649
+ export declare const CaptionHorizontalAlignmentValues: readonly ["Left", "Right", "Center"];
5660
5650
 
5661
5651
  /** @public */
5662
5652
  export declare type CaptionVerticalAlignment = (typeof CaptionVerticalAlignmentValues)[number];
@@ -9305,7 +9295,7 @@ export { TextHorizontalAlignment as HorizontalTextAlignment }
9305
9295
  export { TextHorizontalAlignment }
9306
9296
 
9307
9297
  /** @public */
9308
- export declare const TextHorizontalAlignmentValues: readonly ["Left", "Right", "Center", "Auto"];
9298
+ export declare const TextHorizontalAlignmentValues: readonly ["Left", "Right", "Center"];
9309
9299
 
9310
9300
  /** @public */
9311
9301
  declare type TextVerticalAlignment = (typeof TextVerticalAlignmentValues)[number];