exodeui 2.6.21 → 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.
package/dist/types.d.ts CHANGED
@@ -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.21",
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",