exodeui 6.3.42 → 6.3.44

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.
@@ -196,6 +196,11 @@ export declare class ExodeUIEngine {
196
196
  private applyArtEffectOverlay;
197
197
  /** Helper: shift the hue of a hex/hsl color by degrees, return as hsla */
198
198
  private _shiftHue;
199
+ /**
200
+ * Parse any CSS color string and return it with the alpha channel replaced by `opacity`.
201
+ * This lets us bake an opacity value into the color without double-multiplying via globalAlpha.
202
+ */
203
+ private _applyAlphaToColor;
199
204
  /**
200
205
  * Simulate CSS `backdrop-filter: blur()` + glass overlay on Canvas2D.
201
206
  * Since real backdrop-filter is not available in canvas, we:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exodeui",
3
- "version": "6.3.42",
3
+ "version": "6.3.44",
4
4
  "description": "React Runtime for ExodeUI Animation Engine",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",