@cesdk/engine 1.65.0-nightly.20251112 → 1.65.0-nightly.20251113
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.65.0-nightly.20251112-CF3IFZ6W.wasm → cesdk-v1.65.0-nightly.20251113-S6A2W2ON.wasm} +0 -0
- package/assets/core/{worker-host-v1.65.0-nightly.20251112.js → worker-host-v1.65.0-nightly.20251113.js} +1 -1
- package/index.d.ts +18 -0
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.65.0-nightly.20251112-44YCFRT6.data → cesdk-v1.65.0-nightly.20251113-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -7356,6 +7356,14 @@ export declare type ExportOptions = {
|
|
|
7356
7356
|
* The adjustment in size of the shape of the underlayer.
|
|
7357
7357
|
*/
|
|
7358
7358
|
underlayerOffset?: number;
|
|
7359
|
+
/**
|
|
7360
|
+
* If true, the export will include text bounding boxes that account for glyph overhangs.
|
|
7361
|
+
* When enabled, text blocks with glyphs that extend beyond their frame (e.g., decorative fonts with swashes)
|
|
7362
|
+
* will be exported with the full glyph bounds visible, preventing text clipping.
|
|
7363
|
+
*
|
|
7364
|
+
* @defaultValue false
|
|
7365
|
+
*/
|
|
7366
|
+
allowTextOverhang?: boolean;
|
|
7359
7367
|
/**
|
|
7360
7368
|
* An abortsignal that can be used to cancel the export.
|
|
7361
7369
|
*/
|
|
@@ -9360,6 +9368,7 @@ export declare interface _UBQExportOptions {
|
|
|
9360
9368
|
exportPdfWithUnderlayer: boolean;
|
|
9361
9369
|
underlayerSpotColorName: string;
|
|
9362
9370
|
underlayerOffset: number;
|
|
9371
|
+
allowTextOverhang: boolean;
|
|
9363
9372
|
}
|
|
9364
9373
|
|
|
9365
9374
|
/**
|
|
@@ -9382,6 +9391,7 @@ export declare interface _UBQExportVideoOptions {
|
|
|
9382
9391
|
useTargetSize: boolean;
|
|
9383
9392
|
targetWidth: number;
|
|
9384
9393
|
targetHeight: number;
|
|
9394
|
+
allowTextOverhang: boolean;
|
|
9385
9395
|
}
|
|
9386
9396
|
|
|
9387
9397
|
/**
|
|
@@ -9560,6 +9570,14 @@ export declare type VideoExportOptions = {
|
|
|
9560
9570
|
* size entirely while maintaining its aspect ratio.
|
|
9561
9571
|
*/
|
|
9562
9572
|
targetHeight?: number;
|
|
9573
|
+
/**
|
|
9574
|
+
* If true, the export will include text bounding boxes that account for glyph overhangs.
|
|
9575
|
+
* When enabled, text blocks with glyphs that extend beyond their frame (e.g., decorative fonts with swashes)
|
|
9576
|
+
* will be exported with the full glyph bounds visible, preventing text clipping.
|
|
9577
|
+
*
|
|
9578
|
+
* @defaultValue false
|
|
9579
|
+
*/
|
|
9580
|
+
allowTextOverhang?: boolean;
|
|
9563
9581
|
/**
|
|
9564
9582
|
* An abortsignal that can be used to cancel the export.
|
|
9565
9583
|
*/
|