exodeui 2.6.16 → 2.6.18

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/types.d.ts CHANGED
@@ -213,6 +213,10 @@ export interface Constraint {
213
213
  };
214
214
  distance?: number;
215
215
  mode?: 'clamped' | 'exact' | 'minimum' | 'maximum';
216
+ useSpring?: boolean;
217
+ stiffness?: number;
218
+ damping?: number;
219
+ mass?: number;
216
220
  }
217
221
  export interface ShapeObject {
218
222
  type: 'Shape' | 'Group' | 'Component' | 'Frame' | 'Button' | 'Bone';
@@ -8,4 +8,5 @@ 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
+ updateConstraint: (objectId: string, index: number, properties: any) => void;
11
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exodeui",
3
- "version": "2.6.16",
3
+ "version": "2.6.18",
4
4
  "description": "React Runtime for ExodeUI Animation Engine",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",