exodeui 2.6.20 → 2.6.23

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.
@@ -12,7 +12,7 @@ export declare class RapierPhysics implements PhysicsEngine {
12
12
  destroy(): void;
13
13
  createBody(options: BodyOptions): void;
14
14
  removeBody(id: string): void;
15
- step(dt: number): void;
15
+ step(_dt: number): void;
16
16
  getPosition(id: string): {
17
17
  x: number;
18
18
  y: number;
package/dist/types.d.ts CHANGED
@@ -219,7 +219,7 @@ export interface Constraint {
219
219
  mass?: number;
220
220
  }
221
221
  export interface ShapeObject {
222
- type: 'Shape' | 'Group' | 'Component' | 'Frame' | 'Button' | 'Bone';
222
+ type: 'Shape' | 'Group' | 'Component' | 'Frame' | 'Button' | 'Bone' | 'Toggle' | 'Slider' | 'Dropdown' | 'ListView';
223
223
  id: string;
224
224
  name: string;
225
225
  transform: Transform;
@@ -238,6 +238,7 @@ export interface ShapeObject {
238
238
  blendMode?: string;
239
239
  compositeOperation?: string;
240
240
  options?: any;
241
+ inputId?: string;
241
242
  }
242
243
  export interface Keyframe {
243
244
  time: number;
@@ -8,5 +8,7 @@ export declare function useExodeUI(): {
8
8
  fireTrigger: (name: string) => void;
9
9
  setInputText: (name: string, value: string) => void;
10
10
  setInputNumberArray: (name: string, value: number[]) => void;
11
+ setInputStringArray: (name: string, value: string[]) => void;
11
12
  updateConstraint: (objectId: string, index: number, properties: any) => void;
13
+ updateObjectOptions: (objectId: string, options: any) => void;
12
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exodeui",
3
- "version": "2.6.20",
3
+ "version": "2.6.23",
4
4
  "description": "React Runtime for ExodeUI Animation Engine",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",