@cesdk/node 1.55.0-nightly.20250626 → 1.55.0-nightly.20250627

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
@@ -634,7 +634,7 @@ export declare type AudioMimeType = Extract<MimeType_2, 'audio/wav'>;
634
634
  /**
635
635
  * @public
636
636
  */
637
- export declare type BlendMode = 'PassThrough' | 'Normal' | 'Darken' | 'Multiply' | 'ColorBurn' | 'Lighten' | 'Screen' | 'ColorDodge' | 'Overlay' | 'SoftLight' | 'HardLight' | 'Difference' | 'Exclusion' | 'Hue' | 'Saturation' | 'Color' | 'Luminosity';
637
+ export declare type BlendMode = 'PassThrough' | 'Normal' | 'Darken' | 'Multiply' | 'ColorBurn' | 'LinearBurn' | 'DarkenColor' | 'Lighten' | 'Screen' | 'ColorDodge' | 'LinearDodge' | 'LightenColor' | 'Overlay' | 'SoftLight' | 'HardLight' | 'VividLight' | 'LinearLight' | 'PinLight' | 'HardMix' | 'Difference' | 'Exclusion' | 'Subtract' | 'Divide' | 'Hue' | 'Saturation' | 'Color' | 'Luminosity';
638
638
 
639
639
  /**
640
640
  * @public
@@ -3965,6 +3965,18 @@ export declare class EditorAPI {
3965
3965
  * @param relocatedURL - The new URL of the resource.
3966
3966
  */
3967
3967
  relocateResource(currentUrl: string, relocatedUrl: string): void;
3968
+ /**
3969
+ * Checks wether the block has selection and hover highlighting enabled or disabled.
3970
+ * @param id - The block to query.
3971
+ * @returns True if highlighting is enabled, false otherwise.
3972
+ */
3973
+ isHighlightingEnabled(id: DesignBlockId): boolean;
3974
+ /**
3975
+ * Enable or disable selection and hover highlighting for a block.
3976
+ * @param id - The block to update.
3977
+ * @param enabled - Whether or not the block should show highlighting when selected or hovered.
3978
+ */
3979
+ setHighlightingEnabled(id: DesignBlockId, enabled: boolean): void;
3968
3980
  }
3969
3981
 
3970
3982
  /**