exodeui 2.6.19 → 2.6.21

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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exodeui",
3
- "version": "2.6.19",
3
+ "version": "2.6.21",
4
4
  "description": "React Runtime for ExodeUI Animation Engine",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",