@cesdk/node 1.65.0-nightly.20251112 → 1.65.0-nightly.20251114
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-XP6HOM2J.wasm → cesdk-v1.65.0-nightly.20251114-JXYRAFD7.wasm} +0 -0
- 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.20251114-44YCFRT6.data} +0 -0
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -7084,6 +7084,14 @@ export declare type ExportOptions = {
|
|
|
7084
7084
|
* The adjustment in size of the shape of the underlayer.
|
|
7085
7085
|
*/
|
|
7086
7086
|
underlayerOffset?: number;
|
|
7087
|
+
/**
|
|
7088
|
+
* If true, the export will include text bounding boxes that account for glyph overhangs.
|
|
7089
|
+
* When enabled, text blocks with glyphs that extend beyond their frame (e.g., decorative fonts with swashes)
|
|
7090
|
+
* will be exported with the full glyph bounds visible, preventing text clipping.
|
|
7091
|
+
*
|
|
7092
|
+
* @defaultValue false
|
|
7093
|
+
*/
|
|
7094
|
+
allowTextOverhang?: boolean;
|
|
7087
7095
|
/**
|
|
7088
7096
|
* An abortsignal that can be used to cancel the export.
|
|
7089
7097
|
*/
|
|
@@ -8801,6 +8809,7 @@ declare interface UBQExportOptions {
|
|
|
8801
8809
|
exportPdfWithUnderlayer: boolean;
|
|
8802
8810
|
underlayerSpotColorName: string;
|
|
8803
8811
|
underlayerOffset: number;
|
|
8812
|
+
allowTextOverhang: boolean;
|
|
8804
8813
|
}
|
|
8805
8814
|
|
|
8806
8815
|
/**
|
|
@@ -8823,6 +8832,7 @@ declare interface UBQExportVideoOptions {
|
|
|
8823
8832
|
useTargetSize: boolean;
|
|
8824
8833
|
targetWidth: number;
|
|
8825
8834
|
targetHeight: number;
|
|
8835
|
+
allowTextOverhang: boolean;
|
|
8826
8836
|
}
|
|
8827
8837
|
|
|
8828
8838
|
/**
|
|
@@ -8995,6 +9005,14 @@ export declare type VideoExportOptions = {
|
|
|
8995
9005
|
* size entirely while maintaining its aspect ratio.
|
|
8996
9006
|
*/
|
|
8997
9007
|
targetHeight?: number;
|
|
9008
|
+
/**
|
|
9009
|
+
* If true, the export will include text bounding boxes that account for glyph overhangs.
|
|
9010
|
+
* When enabled, text blocks with glyphs that extend beyond their frame (e.g., decorative fonts with swashes)
|
|
9011
|
+
* will be exported with the full glyph bounds visible, preventing text clipping.
|
|
9012
|
+
*
|
|
9013
|
+
* @defaultValue false
|
|
9014
|
+
*/
|
|
9015
|
+
allowTextOverhang?: boolean;
|
|
8998
9016
|
/**
|
|
8999
9017
|
* An abortsignal that can be used to cancel the export.
|
|
9000
9018
|
*/
|