@cesdk/node 1.74.0-nightly.20260411 → 1.74.0-nightly.20260414

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
@@ -6368,6 +6368,20 @@ export declare class EditorAPI {
6368
6368
  * @category Vector Edit
6369
6369
  */
6370
6370
  deleteVectorNode(): void;
6371
+ /**
6372
+ * Check whether a vector control point handle is currently selected.
6373
+ *
6374
+ * @category Vector Edit
6375
+ */
6376
+ hasSelectedVectorControlPoint(): boolean;
6377
+ /**
6378
+ * Delete (reset) the currently selected vector control point handles.
6379
+ * Removes the bezier handle from the node, converting that side to a straight line.
6380
+ * If the node has two handles, only the selected one is removed.
6381
+ *
6382
+ * @category Vector Edit
6383
+ */
6384
+ deleteSelectedVectorControlPoints(): void;
6371
6385
  /**
6372
6386
  * Toggle the currently selected vector node between smooth (bezier handles)
6373
6387
  * and corner (no handles).
@@ -7471,6 +7485,15 @@ export declare type ExportOptions = {
7471
7485
  * @defaultValue false
7472
7486
  */
7473
7487
  allowTextOverhang?: boolean;
7488
+ /**
7489
+ * Export CMYK colors using their native color spaces in the PDF.
7490
+ * When enabled, direct CMYK colors are written as DeviceCMYK (k/K operators) and spot colors with CMYK values
7491
+ * (set via setSpotColorCMYK) are written as DeviceN with process CMYK components.
7492
+ * When disabled (default), all colors are exported as DeviceRGB.
7493
+ *
7494
+ * @defaultValue false
7495
+ */
7496
+ exportPdfWithDeviceCMYK?: boolean;
7474
7497
  /**
7475
7498
  * An abortsignal that can be used to cancel the export.
7476
7499
  */
@@ -9413,6 +9436,7 @@ declare interface UBQExportOptions {
9413
9436
  underlayerSpotColorName: string;
9414
9437
  underlayerOffset: number;
9415
9438
  allowTextOverhang: boolean;
9439
+ exportPdfWithDeviceCMYK: boolean;
9416
9440
  }
9417
9441
 
9418
9442
  /**