@cesdk/engine 1.55.0-nightly.20250625 → 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
@@ -4047,6 +4047,18 @@ export declare class EditorAPI {
4047
4047
  * @param relocatedURL - The new URL of the resource.
4048
4048
  */
4049
4049
  relocateResource(currentUrl: string, relocatedUrl: string): void;
4050
+ /**
4051
+ * Checks wether the block has selection and hover highlighting enabled or disabled.
4052
+ * @param id - The block to query.
4053
+ * @returns True if highlighting is enabled, false otherwise.
4054
+ */
4055
+ isHighlightingEnabled(id: DesignBlockId): boolean;
4056
+ /**
4057
+ * Enable or disable selection and hover highlighting for a block.
4058
+ * @param id - The block to update.
4059
+ * @param enabled - Whether or not the block should show highlighting when selected or hovered.
4060
+ */
4061
+ setHighlightingEnabled(id: DesignBlockId, enabled: boolean): void;
4050
4062
  }
4051
4063
 
4052
4064
  /**