exodeui 6.0.30 → 6.0.32

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.
@@ -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
@@ -3,4 +3,4 @@ export * from './types';
3
3
  export * from './engine';
4
4
  export * from './useExodeUI';
5
5
  export * from './ExodeSEO';
6
- export declare const VERSION = "6.0.30";
6
+ export declare const VERSION = "6.0.32";