exodeui 2.6.26 → 2.6.27
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/index.js +4 -4
- package/dist/index.mjs +1585 -1555
- package/dist/types.d.ts +10 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -177,6 +177,12 @@ export type Geometry = {
|
|
|
177
177
|
type: 'Frame';
|
|
178
178
|
width: number;
|
|
179
179
|
height: number;
|
|
180
|
+
} | {
|
|
181
|
+
type: 'Path';
|
|
182
|
+
points: any[];
|
|
183
|
+
isMask?: boolean;
|
|
184
|
+
isClosed?: boolean;
|
|
185
|
+
is_closed?: boolean;
|
|
180
186
|
};
|
|
181
187
|
export interface Trigger {
|
|
182
188
|
id: string;
|
|
@@ -362,6 +368,7 @@ export interface StateMachine {
|
|
|
362
368
|
logicNodes?: LogicNode[];
|
|
363
369
|
}
|
|
364
370
|
export interface Artboard {
|
|
371
|
+
id?: string;
|
|
365
372
|
name: string;
|
|
366
373
|
width: number;
|
|
367
374
|
height: number;
|
|
@@ -369,6 +376,9 @@ export interface Artboard {
|
|
|
369
376
|
backgroundVisible?: boolean;
|
|
370
377
|
backgroundImage?: string;
|
|
371
378
|
backgroundOpacity?: number;
|
|
379
|
+
opacity?: number;
|
|
380
|
+
x?: number;
|
|
381
|
+
y?: number;
|
|
372
382
|
objects: ShapeObject[];
|
|
373
383
|
animations: Animation[];
|
|
374
384
|
stateMachine?: StateMachine;
|