exodeui 6.3.43 → 6.3.45
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/dist/index.js +33 -33
- package/dist/index.mjs +2931 -2859
- package/dist/src/engine.d.ts +3 -5
- package/package.json +5 -5
package/dist/src/engine.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ export declare class ExodeUIEngine {
|
|
|
174
174
|
applyBlendState(state: any, time: number): void;
|
|
175
175
|
applyAnimation(anim: SDKAnimation, time: number, filterObjectId?: string | string[]): void;
|
|
176
176
|
private interpolate;
|
|
177
|
+
private interpolateValue;
|
|
177
178
|
private interpolateColor;
|
|
178
179
|
private interpolateStops;
|
|
179
180
|
private interpolateFill;
|
|
@@ -184,6 +185,7 @@ export declare class ExodeUIEngine {
|
|
|
184
185
|
private mapFontWeight;
|
|
185
186
|
private drawTextDecoration;
|
|
186
187
|
private renderObject;
|
|
188
|
+
private applyOuterGlowUnderlay;
|
|
187
189
|
private _renderText;
|
|
188
190
|
private applyStrokeAlignment;
|
|
189
191
|
private getPerimeter;
|
|
@@ -193,14 +195,10 @@ export declare class ExodeUIEngine {
|
|
|
193
195
|
private getBezierPointAndAngle;
|
|
194
196
|
private applyAbsoluteTransform;
|
|
195
197
|
private applyObjectTransform;
|
|
198
|
+
private applyInnerGlowOverlay;
|
|
196
199
|
private applyArtEffectOverlay;
|
|
197
200
|
/** Helper: shift the hue of a hex/hsl color by degrees, return as hsla */
|
|
198
201
|
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;
|
|
204
202
|
/**
|
|
205
203
|
* Simulate CSS `backdrop-filter: blur()` + glass overlay on Canvas2D.
|
|
206
204
|
* 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.
|
|
3
|
+
"version": "6.3.45",
|
|
4
4
|
"description": "React Runtime for ExodeUI Animation Engine",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^25.0.9",
|
|
36
|
-
"@types/react": "^
|
|
37
|
-
"@types/react-dom": "^
|
|
36
|
+
"@types/react": "^19.0.0",
|
|
37
|
+
"@types/react-dom": "^19.0.0",
|
|
38
38
|
"jsdom": "^27.4.0",
|
|
39
|
-
"react": "^
|
|
40
|
-
"react-dom": "^
|
|
39
|
+
"react": "^19.0.0",
|
|
40
|
+
"react-dom": "^19.0.0",
|
|
41
41
|
"typescript": "^5.0.0",
|
|
42
42
|
"vite": "^6.0.0",
|
|
43
43
|
"vite-plugin-dts": "^3.0.0",
|