exodeui 6.0.29 → 6.0.31
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/ExodeUICanvas.d.ts +1 -0
- package/dist/engine.d.ts +2 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +11 -11
- package/dist/index.mjs +1847 -1794
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/ExodeUICanvas.d.ts
CHANGED
|
@@ -21,5 +21,6 @@ export interface ExodeUICanvasProps {
|
|
|
21
21
|
onInputFocus?: (name: string) => void;
|
|
22
22
|
onInputBlur?: (name: string) => void;
|
|
23
23
|
onLog?: (msg: string) => void;
|
|
24
|
+
currentTime?: number;
|
|
24
25
|
}
|
|
25
26
|
export declare const ExodeUICanvas: React.ForwardRefExoticComponent<ExodeUICanvasProps & React.RefAttributes<HTMLCanvasElement>>;
|
package/dist/engine.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export declare class ExodeUIEngine {
|
|
|
89
89
|
private checkConditions;
|
|
90
90
|
private evaluateLogicTree;
|
|
91
91
|
private activeTriggers;
|
|
92
|
+
seek(time: number): void;
|
|
92
93
|
advance(dt: number): void;
|
|
93
94
|
private solveConstraints;
|
|
94
95
|
private getGlobalTransform;
|
|
@@ -118,6 +119,7 @@ export declare class ExodeUIEngine {
|
|
|
118
119
|
private applyStrokeAlignment;
|
|
119
120
|
private getPerimeter;
|
|
120
121
|
private getBezierLength;
|
|
122
|
+
private getBezierTAtLength;
|
|
121
123
|
private getPointOnPath;
|
|
122
124
|
private getBezierPointAndAngle;
|
|
123
125
|
private applyAbsoluteTransform;
|
package/dist/index.d.ts
CHANGED