@pixi-ui-editor/schema 0.8.0 → 0.10.0
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/bindingKeys.js.map +1 -1
- package/dist/index.d.ts +905 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +90 -6
- package/dist/index.js.map +1 -1
- package/dist/prefabs.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Static } from "@sinclair/typebox";
|
|
2
2
|
export { collectBindingKeys, collectBindingKeyScopes, OWNER_BINDING_KEY_SCOPE } from "./bindingKeys.js";
|
|
3
|
-
export declare const CURRENT_SCHEMA_VERSION:
|
|
3
|
+
export declare const CURRENT_SCHEMA_VERSION: 37;
|
|
4
4
|
export declare const LayoutProfileIdSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"desktop">, import("@sinclair/typebox").TLiteral<"mobile">]>;
|
|
5
5
|
export type LayoutProfileId = Static<typeof LayoutProfileIdSchema>;
|
|
6
6
|
declare const Alignment: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"upper-left">, import("@sinclair/typebox").TLiteral<"upper-center">, import("@sinclair/typebox").TLiteral<"upper-right">, import("@sinclair/typebox").TLiteral<"middle-left">, import("@sinclair/typebox").TLiteral<"middle-center">, import("@sinclair/typebox").TLiteral<"middle-right">, import("@sinclair/typebox").TLiteral<"lower-left">, import("@sinclair/typebox").TLiteral<"lower-center">, import("@sinclair/typebox").TLiteral<"lower-right">]>;
|
|
@@ -77,8 +77,22 @@ export declare const SpineConnectorSchema: import("@sinclair/typebox").TObject<{
|
|
|
77
77
|
partType: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"bone">, import("@sinclair/typebox").TLiteral<"slot">]>;
|
|
78
78
|
partName: import("@sinclair/typebox").TString;
|
|
79
79
|
targetNodeId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>;
|
|
80
|
+
positionMultiplier: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
81
|
+
x: import("@sinclair/typebox").TNumber;
|
|
82
|
+
y: import("@sinclair/typebox").TNumber;
|
|
83
|
+
}>>;
|
|
84
|
+
positionMultiplierOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
85
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
86
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
87
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
88
|
+
}>>;
|
|
89
|
+
}>>;
|
|
80
90
|
}>;
|
|
81
91
|
export type SpineConnector = Static<typeof SpineConnectorSchema>;
|
|
92
|
+
export declare function resolveSpineConnectorPositionMultiplier(connector: Pick<SpineConnector, "positionMultiplier" | "positionMultiplierOverrides">, profile: LayoutProfileId): {
|
|
93
|
+
x: number;
|
|
94
|
+
y: number;
|
|
95
|
+
};
|
|
82
96
|
export declare const PrefabNodeOverrideSchema: import("@sinclair/typebox").TObject<{
|
|
83
97
|
/** Адрес переопределяемого узла внутри инстанса; для вложенных пресетов это путь. */
|
|
84
98
|
nodeId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>;
|
|
@@ -416,6 +430,80 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
416
430
|
}>;
|
|
417
431
|
type: import("@sinclair/typebox").TLiteral<"opacity-group">;
|
|
418
432
|
visible: import("@sinclair/typebox").TBoolean;
|
|
433
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
434
|
+
bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
435
|
+
children: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
|
436
|
+
editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
437
|
+
id: import("@sinclair/typebox").TString;
|
|
438
|
+
items: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>>;
|
|
439
|
+
layoutItem: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
440
|
+
flexGrow: import("@sinclair/typebox").TNumber;
|
|
441
|
+
flexShrink: import("@sinclair/typebox").TNumber;
|
|
442
|
+
flexBasis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
443
|
+
alignSelf: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"auto">, import("@sinclair/typebox").TLiteral<"flex-start">, import("@sinclair/typebox").TLiteral<"center">, import("@sinclair/typebox").TLiteral<"flex-end">, import("@sinclair/typebox").TLiteral<"stretch">]>>;
|
|
444
|
+
}>>;
|
|
445
|
+
layoutOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
446
|
+
desktop: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
447
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
448
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
449
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
450
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
451
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
452
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
453
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
454
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
455
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
456
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
457
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
458
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
459
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
460
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
461
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
462
|
+
}>>;
|
|
463
|
+
}>>;
|
|
464
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
465
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
466
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
467
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
468
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
469
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
470
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
471
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
472
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
473
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
474
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
475
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
476
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
477
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
478
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
479
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
480
|
+
}>>;
|
|
481
|
+
}>>;
|
|
482
|
+
}>>;
|
|
483
|
+
locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
484
|
+
name: import("@sinclair/typebox").TString;
|
|
485
|
+
parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
|
|
486
|
+
transform: import("@sinclair/typebox").TObject<{
|
|
487
|
+
x: import("@sinclair/typebox").TNumber;
|
|
488
|
+
y: import("@sinclair/typebox").TNumber;
|
|
489
|
+
width: import("@sinclair/typebox").TNumber;
|
|
490
|
+
height: import("@sinclair/typebox").TNumber;
|
|
491
|
+
scaleX: import("@sinclair/typebox").TNumber;
|
|
492
|
+
scaleY: import("@sinclair/typebox").TNumber;
|
|
493
|
+
rotation: import("@sinclair/typebox").TNumber;
|
|
494
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
495
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
496
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
497
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
498
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
499
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
500
|
+
}>;
|
|
501
|
+
type: import("@sinclair/typebox").TLiteral<"item-table">;
|
|
502
|
+
visible: import("@sinclair/typebox").TBoolean;
|
|
503
|
+
visibleCount: import("@sinclair/typebox").TInteger;
|
|
504
|
+
visibleCountOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
505
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
|
|
506
|
+
}>>;
|
|
419
507
|
}>, import("@sinclair/typebox").TObject<{
|
|
420
508
|
backgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
421
509
|
bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -1076,6 +1164,16 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
1076
1164
|
partType: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"bone">, import("@sinclair/typebox").TLiteral<"slot">]>;
|
|
1077
1165
|
partName: import("@sinclair/typebox").TString;
|
|
1078
1166
|
targetNodeId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>;
|
|
1167
|
+
positionMultiplier: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1168
|
+
x: import("@sinclair/typebox").TNumber;
|
|
1169
|
+
y: import("@sinclair/typebox").TNumber;
|
|
1170
|
+
}>>;
|
|
1171
|
+
positionMultiplierOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1172
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1173
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1174
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1175
|
+
}>>;
|
|
1176
|
+
}>>;
|
|
1079
1177
|
}>>>;
|
|
1080
1178
|
editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1081
1179
|
id: import("@sinclair/typebox").TString;
|
|
@@ -2077,6 +2175,7 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
2077
2175
|
}>>;
|
|
2078
2176
|
locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
2079
2177
|
name: import("@sinclair/typebox").TString;
|
|
2178
|
+
nextButtonNodeId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>;
|
|
2080
2179
|
numberActiveBackgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2081
2180
|
numberActiveColor: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2082
2181
|
numberActiveNineSlice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
@@ -2105,6 +2204,7 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
2105
2204
|
}>>;
|
|
2106
2205
|
pageCount: import("@sinclair/typebox").TInteger;
|
|
2107
2206
|
parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
|
|
2207
|
+
prevButtonNodeId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>;
|
|
2108
2208
|
spacing: import("@sinclair/typebox").TNumber;
|
|
2109
2209
|
style: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"dots">, import("@sinclair/typebox").TLiteral<"numbers">]>;
|
|
2110
2210
|
transform: import("@sinclair/typebox").TObject<{
|
|
@@ -2124,6 +2224,7 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
2124
2224
|
}>;
|
|
2125
2225
|
type: import("@sinclair/typebox").TLiteral<"pagination">;
|
|
2126
2226
|
visible: import("@sinclair/typebox").TBoolean;
|
|
2227
|
+
visiblePageCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
|
|
2127
2228
|
}>]>>;
|
|
2128
2229
|
export type UINode = Static<typeof UINodeSchema>;
|
|
2129
2230
|
/** Исторический псевдоним: локальное добавление больше ничем не ограничено по сравнению с узлом сцены. */
|
|
@@ -2335,6 +2436,80 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
2335
2436
|
}>;
|
|
2336
2437
|
type: import("@sinclair/typebox").TLiteral<"opacity-group">;
|
|
2337
2438
|
visible: import("@sinclair/typebox").TBoolean;
|
|
2439
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
2440
|
+
bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2441
|
+
children: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
|
2442
|
+
editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
2443
|
+
id: import("@sinclair/typebox").TString;
|
|
2444
|
+
items: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>>;
|
|
2445
|
+
layoutItem: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2446
|
+
flexGrow: import("@sinclair/typebox").TNumber;
|
|
2447
|
+
flexShrink: import("@sinclair/typebox").TNumber;
|
|
2448
|
+
flexBasis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2449
|
+
alignSelf: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"auto">, import("@sinclair/typebox").TLiteral<"flex-start">, import("@sinclair/typebox").TLiteral<"center">, import("@sinclair/typebox").TLiteral<"flex-end">, import("@sinclair/typebox").TLiteral<"stretch">]>>;
|
|
2450
|
+
}>>;
|
|
2451
|
+
layoutOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2452
|
+
desktop: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2453
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
2454
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2455
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2456
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2457
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2458
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2459
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2460
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2461
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2462
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2463
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2464
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2465
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2466
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2467
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2468
|
+
}>>;
|
|
2469
|
+
}>>;
|
|
2470
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2471
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
2472
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2473
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2474
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2475
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2476
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2477
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2478
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2479
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2480
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2481
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2482
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2483
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2484
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2485
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2486
|
+
}>>;
|
|
2487
|
+
}>>;
|
|
2488
|
+
}>>;
|
|
2489
|
+
locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
2490
|
+
name: import("@sinclair/typebox").TString;
|
|
2491
|
+
parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
|
|
2492
|
+
transform: import("@sinclair/typebox").TObject<{
|
|
2493
|
+
x: import("@sinclair/typebox").TNumber;
|
|
2494
|
+
y: import("@sinclair/typebox").TNumber;
|
|
2495
|
+
width: import("@sinclair/typebox").TNumber;
|
|
2496
|
+
height: import("@sinclair/typebox").TNumber;
|
|
2497
|
+
scaleX: import("@sinclair/typebox").TNumber;
|
|
2498
|
+
scaleY: import("@sinclair/typebox").TNumber;
|
|
2499
|
+
rotation: import("@sinclair/typebox").TNumber;
|
|
2500
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2501
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2502
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2503
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2504
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2505
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2506
|
+
}>;
|
|
2507
|
+
type: import("@sinclair/typebox").TLiteral<"item-table">;
|
|
2508
|
+
visible: import("@sinclair/typebox").TBoolean;
|
|
2509
|
+
visibleCount: import("@sinclair/typebox").TInteger;
|
|
2510
|
+
visibleCountOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2511
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
|
|
2512
|
+
}>>;
|
|
2338
2513
|
}>, import("@sinclair/typebox").TObject<{
|
|
2339
2514
|
backgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2340
2515
|
bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -2995,6 +3170,16 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
2995
3170
|
partType: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"bone">, import("@sinclair/typebox").TLiteral<"slot">]>;
|
|
2996
3171
|
partName: import("@sinclair/typebox").TString;
|
|
2997
3172
|
targetNodeId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>;
|
|
3173
|
+
positionMultiplier: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3174
|
+
x: import("@sinclair/typebox").TNumber;
|
|
3175
|
+
y: import("@sinclair/typebox").TNumber;
|
|
3176
|
+
}>>;
|
|
3177
|
+
positionMultiplierOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3178
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3179
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3180
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3181
|
+
}>>;
|
|
3182
|
+
}>>;
|
|
2998
3183
|
}>>>;
|
|
2999
3184
|
editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3000
3185
|
id: import("@sinclair/typebox").TString;
|
|
@@ -3996,6 +4181,7 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
3996
4181
|
}>>;
|
|
3997
4182
|
locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3998
4183
|
name: import("@sinclair/typebox").TString;
|
|
4184
|
+
nextButtonNodeId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>;
|
|
3999
4185
|
numberActiveBackgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
4000
4186
|
numberActiveColor: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
4001
4187
|
numberActiveNineSlice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
@@ -4024,6 +4210,7 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
4024
4210
|
}>>;
|
|
4025
4211
|
pageCount: import("@sinclair/typebox").TInteger;
|
|
4026
4212
|
parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
|
|
4213
|
+
prevButtonNodeId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>;
|
|
4027
4214
|
spacing: import("@sinclair/typebox").TNumber;
|
|
4028
4215
|
style: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"dots">, import("@sinclair/typebox").TLiteral<"numbers">]>;
|
|
4029
4216
|
transform: import("@sinclair/typebox").TObject<{
|
|
@@ -4043,6 +4230,7 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
4043
4230
|
}>;
|
|
4044
4231
|
type: import("@sinclair/typebox").TLiteral<"pagination">;
|
|
4045
4232
|
visible: import("@sinclair/typebox").TBoolean;
|
|
4233
|
+
visiblePageCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
|
|
4046
4234
|
}>]>>;
|
|
4047
4235
|
export type LocallyAddedNode = UINode;
|
|
4048
4236
|
export type LayoutGroupNode = Extract<UINode, {
|
|
@@ -4092,6 +4280,15 @@ export type ProgressBarNode = Extract<UINode, {
|
|
|
4092
4280
|
export type PaginationNode = Extract<UINode, {
|
|
4093
4281
|
type: "pagination";
|
|
4094
4282
|
}>;
|
|
4283
|
+
export type ItemTableNode = Extract<UINode, {
|
|
4284
|
+
type: "item-table";
|
|
4285
|
+
}>;
|
|
4286
|
+
export declare function isItemTable(node: UINode): node is ItemTableNode;
|
|
4287
|
+
/**
|
|
4288
|
+
* Сколько первых детей таблица показывает в этом профиле. Единственная реализация для валидации,
|
|
4289
|
+
* runtime-вида и Inspector; `undefined` в override означает «наследовать base», а не ноль.
|
|
4290
|
+
*/
|
|
4291
|
+
export declare function resolveItemTableVisibleCount(node: Pick<ItemTableNode, "visibleCount" | "visibleCountOverrides">, profile: LayoutProfileId): number;
|
|
4095
4292
|
export type ParticleEmitterNode = Extract<UINode, {
|
|
4096
4293
|
type: "particle-emitter";
|
|
4097
4294
|
}>;
|
|
@@ -4311,6 +4508,80 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
4311
4508
|
};
|
|
4312
4509
|
type: "opacity-group";
|
|
4313
4510
|
visible: boolean;
|
|
4511
|
+
} | {
|
|
4512
|
+
bindingKey?: string | undefined;
|
|
4513
|
+
children: string[];
|
|
4514
|
+
editorOnly?: boolean | undefined;
|
|
4515
|
+
id: string;
|
|
4516
|
+
items?: string[] | undefined;
|
|
4517
|
+
layoutItem?: {
|
|
4518
|
+
flexGrow: number;
|
|
4519
|
+
flexShrink: number;
|
|
4520
|
+
flexBasis?: number | undefined;
|
|
4521
|
+
alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
|
|
4522
|
+
} | undefined;
|
|
4523
|
+
layoutOverrides?: {
|
|
4524
|
+
desktop?: {
|
|
4525
|
+
visible?: boolean | undefined;
|
|
4526
|
+
transform?: {
|
|
4527
|
+
x?: number | undefined;
|
|
4528
|
+
y?: number | undefined;
|
|
4529
|
+
width?: number | undefined;
|
|
4530
|
+
height?: number | undefined;
|
|
4531
|
+
scaleX?: number | undefined;
|
|
4532
|
+
scaleY?: number | undefined;
|
|
4533
|
+
rotation?: number | undefined;
|
|
4534
|
+
pivotX?: number | undefined;
|
|
4535
|
+
pivotY?: number | undefined;
|
|
4536
|
+
anchorMinX?: number | undefined;
|
|
4537
|
+
anchorMinY?: number | undefined;
|
|
4538
|
+
anchorMaxX?: number | undefined;
|
|
4539
|
+
anchorMaxY?: number | undefined;
|
|
4540
|
+
} | undefined;
|
|
4541
|
+
} | undefined;
|
|
4542
|
+
mobile?: {
|
|
4543
|
+
visible?: boolean | undefined;
|
|
4544
|
+
transform?: {
|
|
4545
|
+
x?: number | undefined;
|
|
4546
|
+
y?: number | undefined;
|
|
4547
|
+
width?: number | undefined;
|
|
4548
|
+
height?: number | undefined;
|
|
4549
|
+
scaleX?: number | undefined;
|
|
4550
|
+
scaleY?: number | undefined;
|
|
4551
|
+
rotation?: number | undefined;
|
|
4552
|
+
pivotX?: number | undefined;
|
|
4553
|
+
pivotY?: number | undefined;
|
|
4554
|
+
anchorMinX?: number | undefined;
|
|
4555
|
+
anchorMinY?: number | undefined;
|
|
4556
|
+
anchorMaxX?: number | undefined;
|
|
4557
|
+
anchorMaxY?: number | undefined;
|
|
4558
|
+
} | undefined;
|
|
4559
|
+
} | undefined;
|
|
4560
|
+
} | undefined;
|
|
4561
|
+
locked?: boolean | undefined;
|
|
4562
|
+
name: string;
|
|
4563
|
+
parentId: string | null;
|
|
4564
|
+
transform: {
|
|
4565
|
+
x: number;
|
|
4566
|
+
y: number;
|
|
4567
|
+
width: number;
|
|
4568
|
+
height: number;
|
|
4569
|
+
scaleX: number;
|
|
4570
|
+
scaleY: number;
|
|
4571
|
+
rotation: number;
|
|
4572
|
+
pivotX?: number | undefined;
|
|
4573
|
+
pivotY?: number | undefined;
|
|
4574
|
+
anchorMinX?: number | undefined;
|
|
4575
|
+
anchorMinY?: number | undefined;
|
|
4576
|
+
anchorMaxX?: number | undefined;
|
|
4577
|
+
anchorMaxY?: number | undefined;
|
|
4578
|
+
};
|
|
4579
|
+
type: "item-table";
|
|
4580
|
+
visible: boolean;
|
|
4581
|
+
visibleCount: number;
|
|
4582
|
+
visibleCountOverrides?: {
|
|
4583
|
+
mobile?: number | undefined;
|
|
4584
|
+
} | undefined;
|
|
4314
4585
|
} | {
|
|
4315
4586
|
backgroundAssetId?: string | undefined;
|
|
4316
4587
|
bindingKey?: string | undefined;
|
|
@@ -4971,6 +5242,16 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
4971
5242
|
partType: "bone" | "slot";
|
|
4972
5243
|
partName: string;
|
|
4973
5244
|
targetNodeId: string;
|
|
5245
|
+
positionMultiplier?: {
|
|
5246
|
+
x: number;
|
|
5247
|
+
y: number;
|
|
5248
|
+
} | undefined;
|
|
5249
|
+
positionMultiplierOverrides?: {
|
|
5250
|
+
mobile?: {
|
|
5251
|
+
x?: number | undefined;
|
|
5252
|
+
y?: number | undefined;
|
|
5253
|
+
} | undefined;
|
|
5254
|
+
} | undefined;
|
|
4974
5255
|
}[] | undefined;
|
|
4975
5256
|
editorOnly?: boolean | undefined;
|
|
4976
5257
|
id: string;
|
|
@@ -5375,8 +5656,77 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
5375
5656
|
anchorMaxY?: number | undefined;
|
|
5376
5657
|
} | undefined;
|
|
5377
5658
|
} | undefined;
|
|
5378
|
-
} | undefined;
|
|
5379
|
-
locallyAddedNodes?: ({
|
|
5659
|
+
} | undefined;
|
|
5660
|
+
locallyAddedNodes?: ({
|
|
5661
|
+
bindingKey?: string | undefined;
|
|
5662
|
+
children: string[];
|
|
5663
|
+
editorOnly?: boolean | undefined;
|
|
5664
|
+
id: string;
|
|
5665
|
+
layoutItem?: {
|
|
5666
|
+
flexGrow: number;
|
|
5667
|
+
flexShrink: number;
|
|
5668
|
+
flexBasis?: number | undefined;
|
|
5669
|
+
alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
|
|
5670
|
+
} | undefined;
|
|
5671
|
+
layoutOverrides?: {
|
|
5672
|
+
desktop?: {
|
|
5673
|
+
visible?: boolean | undefined;
|
|
5674
|
+
transform?: {
|
|
5675
|
+
x?: number | undefined;
|
|
5676
|
+
y?: number | undefined;
|
|
5677
|
+
width?: number | undefined;
|
|
5678
|
+
height?: number | undefined;
|
|
5679
|
+
scaleX?: number | undefined;
|
|
5680
|
+
scaleY?: number | undefined;
|
|
5681
|
+
rotation?: number | undefined;
|
|
5682
|
+
pivotX?: number | undefined;
|
|
5683
|
+
pivotY?: number | undefined;
|
|
5684
|
+
anchorMinX?: number | undefined;
|
|
5685
|
+
anchorMinY?: number | undefined;
|
|
5686
|
+
anchorMaxX?: number | undefined;
|
|
5687
|
+
anchorMaxY?: number | undefined;
|
|
5688
|
+
} | undefined;
|
|
5689
|
+
} | undefined;
|
|
5690
|
+
mobile?: {
|
|
5691
|
+
visible?: boolean | undefined;
|
|
5692
|
+
transform?: {
|
|
5693
|
+
x?: number | undefined;
|
|
5694
|
+
y?: number | undefined;
|
|
5695
|
+
width?: number | undefined;
|
|
5696
|
+
height?: number | undefined;
|
|
5697
|
+
scaleX?: number | undefined;
|
|
5698
|
+
scaleY?: number | undefined;
|
|
5699
|
+
rotation?: number | undefined;
|
|
5700
|
+
pivotX?: number | undefined;
|
|
5701
|
+
pivotY?: number | undefined;
|
|
5702
|
+
anchorMinX?: number | undefined;
|
|
5703
|
+
anchorMinY?: number | undefined;
|
|
5704
|
+
anchorMaxX?: number | undefined;
|
|
5705
|
+
anchorMaxY?: number | undefined;
|
|
5706
|
+
} | undefined;
|
|
5707
|
+
} | undefined;
|
|
5708
|
+
} | undefined;
|
|
5709
|
+
locked?: boolean | undefined;
|
|
5710
|
+
name: string;
|
|
5711
|
+
parentId: string | null;
|
|
5712
|
+
transform: {
|
|
5713
|
+
x: number;
|
|
5714
|
+
y: number;
|
|
5715
|
+
width: number;
|
|
5716
|
+
height: number;
|
|
5717
|
+
scaleX: number;
|
|
5718
|
+
scaleY: number;
|
|
5719
|
+
rotation: number;
|
|
5720
|
+
pivotX?: number | undefined;
|
|
5721
|
+
pivotY?: number | undefined;
|
|
5722
|
+
anchorMinX?: number | undefined;
|
|
5723
|
+
anchorMinY?: number | undefined;
|
|
5724
|
+
anchorMaxX?: number | undefined;
|
|
5725
|
+
anchorMaxY?: number | undefined;
|
|
5726
|
+
};
|
|
5727
|
+
type: "container";
|
|
5728
|
+
visible: boolean;
|
|
5729
|
+
} | {
|
|
5380
5730
|
bindingKey?: string | undefined;
|
|
5381
5731
|
children: string[];
|
|
5382
5732
|
editorOnly?: boolean | undefined;
|
|
@@ -5443,7 +5793,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
5443
5793
|
anchorMaxX?: number | undefined;
|
|
5444
5794
|
anchorMaxY?: number | undefined;
|
|
5445
5795
|
};
|
|
5446
|
-
type: "
|
|
5796
|
+
type: "mask";
|
|
5447
5797
|
visible: boolean;
|
|
5448
5798
|
} | {
|
|
5449
5799
|
bindingKey?: string | undefined;
|
|
@@ -5496,6 +5846,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
5496
5846
|
} | undefined;
|
|
5497
5847
|
locked?: boolean | undefined;
|
|
5498
5848
|
name: string;
|
|
5849
|
+
opacity: number;
|
|
5499
5850
|
parentId: string | null;
|
|
5500
5851
|
transform: {
|
|
5501
5852
|
x: number;
|
|
@@ -5512,13 +5863,14 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
5512
5863
|
anchorMaxX?: number | undefined;
|
|
5513
5864
|
anchorMaxY?: number | undefined;
|
|
5514
5865
|
};
|
|
5515
|
-
type: "
|
|
5866
|
+
type: "opacity-group";
|
|
5516
5867
|
visible: boolean;
|
|
5517
5868
|
} | {
|
|
5518
5869
|
bindingKey?: string | undefined;
|
|
5519
5870
|
children: string[];
|
|
5520
5871
|
editorOnly?: boolean | undefined;
|
|
5521
5872
|
id: string;
|
|
5873
|
+
items?: string[] | undefined;
|
|
5522
5874
|
layoutItem?: {
|
|
5523
5875
|
flexGrow: number;
|
|
5524
5876
|
flexShrink: number;
|
|
@@ -5565,7 +5917,6 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
5565
5917
|
} | undefined;
|
|
5566
5918
|
locked?: boolean | undefined;
|
|
5567
5919
|
name: string;
|
|
5568
|
-
opacity: number;
|
|
5569
5920
|
parentId: string | null;
|
|
5570
5921
|
transform: {
|
|
5571
5922
|
x: number;
|
|
@@ -5582,8 +5933,12 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
5582
5933
|
anchorMaxX?: number | undefined;
|
|
5583
5934
|
anchorMaxY?: number | undefined;
|
|
5584
5935
|
};
|
|
5585
|
-
type: "
|
|
5936
|
+
type: "item-table";
|
|
5586
5937
|
visible: boolean;
|
|
5938
|
+
visibleCount: number;
|
|
5939
|
+
visibleCountOverrides?: {
|
|
5940
|
+
mobile?: number | undefined;
|
|
5941
|
+
} | undefined;
|
|
5587
5942
|
} | {
|
|
5588
5943
|
backgroundAssetId?: string | undefined;
|
|
5589
5944
|
bindingKey?: string | undefined;
|
|
@@ -6244,6 +6599,16 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
6244
6599
|
partType: "bone" | "slot";
|
|
6245
6600
|
partName: string;
|
|
6246
6601
|
targetNodeId: string;
|
|
6602
|
+
positionMultiplier?: {
|
|
6603
|
+
x: number;
|
|
6604
|
+
y: number;
|
|
6605
|
+
} | undefined;
|
|
6606
|
+
positionMultiplierOverrides?: {
|
|
6607
|
+
mobile?: {
|
|
6608
|
+
x?: number | undefined;
|
|
6609
|
+
y?: number | undefined;
|
|
6610
|
+
} | undefined;
|
|
6611
|
+
} | undefined;
|
|
6247
6612
|
}[] | undefined;
|
|
6248
6613
|
editorOnly?: boolean | undefined;
|
|
6249
6614
|
id: string;
|
|
@@ -7165,6 +7530,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
7165
7530
|
} | undefined;
|
|
7166
7531
|
locked?: boolean | undefined;
|
|
7167
7532
|
name: string;
|
|
7533
|
+
nextButtonNodeId?: string | undefined;
|
|
7168
7534
|
numberActiveBackgroundAssetId?: string | undefined;
|
|
7169
7535
|
numberActiveColor?: string | undefined;
|
|
7170
7536
|
numberActiveNineSlice?: {
|
|
@@ -7193,6 +7559,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
7193
7559
|
} | undefined;
|
|
7194
7560
|
pageCount: number;
|
|
7195
7561
|
parentId: string | null;
|
|
7562
|
+
prevButtonNodeId?: string | undefined;
|
|
7196
7563
|
spacing: number;
|
|
7197
7564
|
style: "dots" | "numbers";
|
|
7198
7565
|
transform: {
|
|
@@ -7212,6 +7579,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
7212
7579
|
};
|
|
7213
7580
|
type: "pagination";
|
|
7214
7581
|
visible: boolean;
|
|
7582
|
+
visiblePageCount?: number | undefined;
|
|
7215
7583
|
})[] | undefined;
|
|
7216
7584
|
locked?: boolean | undefined;
|
|
7217
7585
|
name: string;
|
|
@@ -7805,6 +8173,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
7805
8173
|
} | undefined;
|
|
7806
8174
|
locked?: boolean | undefined;
|
|
7807
8175
|
name: string;
|
|
8176
|
+
nextButtonNodeId?: string | undefined;
|
|
7808
8177
|
numberActiveBackgroundAssetId?: string | undefined;
|
|
7809
8178
|
numberActiveColor?: string | undefined;
|
|
7810
8179
|
numberActiveNineSlice?: {
|
|
@@ -7833,6 +8202,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
7833
8202
|
} | undefined;
|
|
7834
8203
|
pageCount: number;
|
|
7835
8204
|
parentId: string | null;
|
|
8205
|
+
prevButtonNodeId?: string | undefined;
|
|
7836
8206
|
spacing: number;
|
|
7837
8207
|
style: "dots" | "numbers";
|
|
7838
8208
|
transform: {
|
|
@@ -7852,6 +8222,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
7852
8222
|
};
|
|
7853
8223
|
type: "pagination";
|
|
7854
8224
|
visible: boolean;
|
|
8225
|
+
visiblePageCount?: number | undefined;
|
|
7855
8226
|
}>>;
|
|
7856
8227
|
layout: import("@sinclair/typebox").TObject<{
|
|
7857
8228
|
referenceViewports: import("@sinclair/typebox").TObject<{
|
|
@@ -8199,6 +8570,80 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
8199
8570
|
};
|
|
8200
8571
|
type: "opacity-group";
|
|
8201
8572
|
visible: boolean;
|
|
8573
|
+
} | {
|
|
8574
|
+
bindingKey?: string | undefined;
|
|
8575
|
+
children: string[];
|
|
8576
|
+
editorOnly?: boolean | undefined;
|
|
8577
|
+
id: string;
|
|
8578
|
+
items?: string[] | undefined;
|
|
8579
|
+
layoutItem?: {
|
|
8580
|
+
flexGrow: number;
|
|
8581
|
+
flexShrink: number;
|
|
8582
|
+
flexBasis?: number | undefined;
|
|
8583
|
+
alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
|
|
8584
|
+
} | undefined;
|
|
8585
|
+
layoutOverrides?: {
|
|
8586
|
+
desktop?: {
|
|
8587
|
+
visible?: boolean | undefined;
|
|
8588
|
+
transform?: {
|
|
8589
|
+
x?: number | undefined;
|
|
8590
|
+
y?: number | undefined;
|
|
8591
|
+
width?: number | undefined;
|
|
8592
|
+
height?: number | undefined;
|
|
8593
|
+
scaleX?: number | undefined;
|
|
8594
|
+
scaleY?: number | undefined;
|
|
8595
|
+
rotation?: number | undefined;
|
|
8596
|
+
pivotX?: number | undefined;
|
|
8597
|
+
pivotY?: number | undefined;
|
|
8598
|
+
anchorMinX?: number | undefined;
|
|
8599
|
+
anchorMinY?: number | undefined;
|
|
8600
|
+
anchorMaxX?: number | undefined;
|
|
8601
|
+
anchorMaxY?: number | undefined;
|
|
8602
|
+
} | undefined;
|
|
8603
|
+
} | undefined;
|
|
8604
|
+
mobile?: {
|
|
8605
|
+
visible?: boolean | undefined;
|
|
8606
|
+
transform?: {
|
|
8607
|
+
x?: number | undefined;
|
|
8608
|
+
y?: number | undefined;
|
|
8609
|
+
width?: number | undefined;
|
|
8610
|
+
height?: number | undefined;
|
|
8611
|
+
scaleX?: number | undefined;
|
|
8612
|
+
scaleY?: number | undefined;
|
|
8613
|
+
rotation?: number | undefined;
|
|
8614
|
+
pivotX?: number | undefined;
|
|
8615
|
+
pivotY?: number | undefined;
|
|
8616
|
+
anchorMinX?: number | undefined;
|
|
8617
|
+
anchorMinY?: number | undefined;
|
|
8618
|
+
anchorMaxX?: number | undefined;
|
|
8619
|
+
anchorMaxY?: number | undefined;
|
|
8620
|
+
} | undefined;
|
|
8621
|
+
} | undefined;
|
|
8622
|
+
} | undefined;
|
|
8623
|
+
locked?: boolean | undefined;
|
|
8624
|
+
name: string;
|
|
8625
|
+
parentId: string | null;
|
|
8626
|
+
transform: {
|
|
8627
|
+
x: number;
|
|
8628
|
+
y: number;
|
|
8629
|
+
width: number;
|
|
8630
|
+
height: number;
|
|
8631
|
+
scaleX: number;
|
|
8632
|
+
scaleY: number;
|
|
8633
|
+
rotation: number;
|
|
8634
|
+
pivotX?: number | undefined;
|
|
8635
|
+
pivotY?: number | undefined;
|
|
8636
|
+
anchorMinX?: number | undefined;
|
|
8637
|
+
anchorMinY?: number | undefined;
|
|
8638
|
+
anchorMaxX?: number | undefined;
|
|
8639
|
+
anchorMaxY?: number | undefined;
|
|
8640
|
+
};
|
|
8641
|
+
type: "item-table";
|
|
8642
|
+
visible: boolean;
|
|
8643
|
+
visibleCount: number;
|
|
8644
|
+
visibleCountOverrides?: {
|
|
8645
|
+
mobile?: number | undefined;
|
|
8646
|
+
} | undefined;
|
|
8202
8647
|
} | {
|
|
8203
8648
|
backgroundAssetId?: string | undefined;
|
|
8204
8649
|
bindingKey?: string | undefined;
|
|
@@ -8859,6 +9304,16 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
8859
9304
|
partType: "bone" | "slot";
|
|
8860
9305
|
partName: string;
|
|
8861
9306
|
targetNodeId: string;
|
|
9307
|
+
positionMultiplier?: {
|
|
9308
|
+
x: number;
|
|
9309
|
+
y: number;
|
|
9310
|
+
} | undefined;
|
|
9311
|
+
positionMultiplierOverrides?: {
|
|
9312
|
+
mobile?: {
|
|
9313
|
+
x?: number | undefined;
|
|
9314
|
+
y?: number | undefined;
|
|
9315
|
+
} | undefined;
|
|
9316
|
+
} | undefined;
|
|
8862
9317
|
}[] | undefined;
|
|
8863
9318
|
editorOnly?: boolean | undefined;
|
|
8864
9319
|
id: string;
|
|
@@ -9472,6 +9927,80 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
9472
9927
|
};
|
|
9473
9928
|
type: "opacity-group";
|
|
9474
9929
|
visible: boolean;
|
|
9930
|
+
} | {
|
|
9931
|
+
bindingKey?: string | undefined;
|
|
9932
|
+
children: string[];
|
|
9933
|
+
editorOnly?: boolean | undefined;
|
|
9934
|
+
id: string;
|
|
9935
|
+
items?: string[] | undefined;
|
|
9936
|
+
layoutItem?: {
|
|
9937
|
+
flexGrow: number;
|
|
9938
|
+
flexShrink: number;
|
|
9939
|
+
flexBasis?: number | undefined;
|
|
9940
|
+
alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
|
|
9941
|
+
} | undefined;
|
|
9942
|
+
layoutOverrides?: {
|
|
9943
|
+
desktop?: {
|
|
9944
|
+
visible?: boolean | undefined;
|
|
9945
|
+
transform?: {
|
|
9946
|
+
x?: number | undefined;
|
|
9947
|
+
y?: number | undefined;
|
|
9948
|
+
width?: number | undefined;
|
|
9949
|
+
height?: number | undefined;
|
|
9950
|
+
scaleX?: number | undefined;
|
|
9951
|
+
scaleY?: number | undefined;
|
|
9952
|
+
rotation?: number | undefined;
|
|
9953
|
+
pivotX?: number | undefined;
|
|
9954
|
+
pivotY?: number | undefined;
|
|
9955
|
+
anchorMinX?: number | undefined;
|
|
9956
|
+
anchorMinY?: number | undefined;
|
|
9957
|
+
anchorMaxX?: number | undefined;
|
|
9958
|
+
anchorMaxY?: number | undefined;
|
|
9959
|
+
} | undefined;
|
|
9960
|
+
} | undefined;
|
|
9961
|
+
mobile?: {
|
|
9962
|
+
visible?: boolean | undefined;
|
|
9963
|
+
transform?: {
|
|
9964
|
+
x?: number | undefined;
|
|
9965
|
+
y?: number | undefined;
|
|
9966
|
+
width?: number | undefined;
|
|
9967
|
+
height?: number | undefined;
|
|
9968
|
+
scaleX?: number | undefined;
|
|
9969
|
+
scaleY?: number | undefined;
|
|
9970
|
+
rotation?: number | undefined;
|
|
9971
|
+
pivotX?: number | undefined;
|
|
9972
|
+
pivotY?: number | undefined;
|
|
9973
|
+
anchorMinX?: number | undefined;
|
|
9974
|
+
anchorMinY?: number | undefined;
|
|
9975
|
+
anchorMaxX?: number | undefined;
|
|
9976
|
+
anchorMaxY?: number | undefined;
|
|
9977
|
+
} | undefined;
|
|
9978
|
+
} | undefined;
|
|
9979
|
+
} | undefined;
|
|
9980
|
+
locked?: boolean | undefined;
|
|
9981
|
+
name: string;
|
|
9982
|
+
parentId: string | null;
|
|
9983
|
+
transform: {
|
|
9984
|
+
x: number;
|
|
9985
|
+
y: number;
|
|
9986
|
+
width: number;
|
|
9987
|
+
height: number;
|
|
9988
|
+
scaleX: number;
|
|
9989
|
+
scaleY: number;
|
|
9990
|
+
rotation: number;
|
|
9991
|
+
pivotX?: number | undefined;
|
|
9992
|
+
pivotY?: number | undefined;
|
|
9993
|
+
anchorMinX?: number | undefined;
|
|
9994
|
+
anchorMinY?: number | undefined;
|
|
9995
|
+
anchorMaxX?: number | undefined;
|
|
9996
|
+
anchorMaxY?: number | undefined;
|
|
9997
|
+
};
|
|
9998
|
+
type: "item-table";
|
|
9999
|
+
visible: boolean;
|
|
10000
|
+
visibleCount: number;
|
|
10001
|
+
visibleCountOverrides?: {
|
|
10002
|
+
mobile?: number | undefined;
|
|
10003
|
+
} | undefined;
|
|
9475
10004
|
} | {
|
|
9476
10005
|
backgroundAssetId?: string | undefined;
|
|
9477
10006
|
bindingKey?: string | undefined;
|
|
@@ -10132,6 +10661,16 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
10132
10661
|
partType: "bone" | "slot";
|
|
10133
10662
|
partName: string;
|
|
10134
10663
|
targetNodeId: string;
|
|
10664
|
+
positionMultiplier?: {
|
|
10665
|
+
x: number;
|
|
10666
|
+
y: number;
|
|
10667
|
+
} | undefined;
|
|
10668
|
+
positionMultiplierOverrides?: {
|
|
10669
|
+
mobile?: {
|
|
10670
|
+
x?: number | undefined;
|
|
10671
|
+
y?: number | undefined;
|
|
10672
|
+
} | undefined;
|
|
10673
|
+
} | undefined;
|
|
10135
10674
|
}[] | undefined;
|
|
10136
10675
|
editorOnly?: boolean | undefined;
|
|
10137
10676
|
id: string;
|
|
@@ -11053,6 +11592,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
11053
11592
|
} | undefined;
|
|
11054
11593
|
locked?: boolean | undefined;
|
|
11055
11594
|
name: string;
|
|
11595
|
+
nextButtonNodeId?: string | undefined;
|
|
11056
11596
|
numberActiveBackgroundAssetId?: string | undefined;
|
|
11057
11597
|
numberActiveColor?: string | undefined;
|
|
11058
11598
|
numberActiveNineSlice?: {
|
|
@@ -11081,6 +11621,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
11081
11621
|
} | undefined;
|
|
11082
11622
|
pageCount: number;
|
|
11083
11623
|
parentId: string | null;
|
|
11624
|
+
prevButtonNodeId?: string | undefined;
|
|
11084
11625
|
spacing: number;
|
|
11085
11626
|
style: "dots" | "numbers";
|
|
11086
11627
|
transform: {
|
|
@@ -11100,6 +11641,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
11100
11641
|
};
|
|
11101
11642
|
type: "pagination";
|
|
11102
11643
|
visible: boolean;
|
|
11644
|
+
visiblePageCount?: number | undefined;
|
|
11103
11645
|
})[] | undefined;
|
|
11104
11646
|
locked?: boolean | undefined;
|
|
11105
11647
|
name: string;
|
|
@@ -11693,6 +12235,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
11693
12235
|
} | undefined;
|
|
11694
12236
|
locked?: boolean | undefined;
|
|
11695
12237
|
name: string;
|
|
12238
|
+
nextButtonNodeId?: string | undefined;
|
|
11696
12239
|
numberActiveBackgroundAssetId?: string | undefined;
|
|
11697
12240
|
numberActiveColor?: string | undefined;
|
|
11698
12241
|
numberActiveNineSlice?: {
|
|
@@ -11721,6 +12264,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
11721
12264
|
} | undefined;
|
|
11722
12265
|
pageCount: number;
|
|
11723
12266
|
parentId: string | null;
|
|
12267
|
+
prevButtonNodeId?: string | undefined;
|
|
11724
12268
|
spacing: number;
|
|
11725
12269
|
style: "dots" | "numbers";
|
|
11726
12270
|
transform: {
|
|
@@ -11740,6 +12284,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
11740
12284
|
};
|
|
11741
12285
|
type: "pagination";
|
|
11742
12286
|
visible: boolean;
|
|
12287
|
+
visiblePageCount?: number | undefined;
|
|
11743
12288
|
}>>;
|
|
11744
12289
|
exposedProperties: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
11745
12290
|
name: import("@sinclair/typebox").TString;
|
|
@@ -11748,7 +12293,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
11748
12293
|
}>;
|
|
11749
12294
|
export type PrefabDefinition = Static<typeof PrefabDefinitionSchema>;
|
|
11750
12295
|
export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<{
|
|
11751
|
-
schemaVersion: import("@sinclair/typebox").TLiteral<
|
|
12296
|
+
schemaVersion: import("@sinclair/typebox").TLiteral<37>;
|
|
11752
12297
|
project: import("@sinclair/typebox").TObject<{
|
|
11753
12298
|
id: import("@sinclair/typebox").TString;
|
|
11754
12299
|
name: import("@sinclair/typebox").TString;
|
|
@@ -12011,7 +12556,76 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12011
12556
|
anchorMaxX?: number | undefined;
|
|
12012
12557
|
anchorMaxY?: number | undefined;
|
|
12013
12558
|
};
|
|
12014
|
-
type: "container";
|
|
12559
|
+
type: "container";
|
|
12560
|
+
visible: boolean;
|
|
12561
|
+
} | {
|
|
12562
|
+
bindingKey?: string | undefined;
|
|
12563
|
+
children: string[];
|
|
12564
|
+
editorOnly?: boolean | undefined;
|
|
12565
|
+
id: string;
|
|
12566
|
+
layoutItem?: {
|
|
12567
|
+
flexGrow: number;
|
|
12568
|
+
flexShrink: number;
|
|
12569
|
+
flexBasis?: number | undefined;
|
|
12570
|
+
alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
|
|
12571
|
+
} | undefined;
|
|
12572
|
+
layoutOverrides?: {
|
|
12573
|
+
desktop?: {
|
|
12574
|
+
visible?: boolean | undefined;
|
|
12575
|
+
transform?: {
|
|
12576
|
+
x?: number | undefined;
|
|
12577
|
+
y?: number | undefined;
|
|
12578
|
+
width?: number | undefined;
|
|
12579
|
+
height?: number | undefined;
|
|
12580
|
+
scaleX?: number | undefined;
|
|
12581
|
+
scaleY?: number | undefined;
|
|
12582
|
+
rotation?: number | undefined;
|
|
12583
|
+
pivotX?: number | undefined;
|
|
12584
|
+
pivotY?: number | undefined;
|
|
12585
|
+
anchorMinX?: number | undefined;
|
|
12586
|
+
anchorMinY?: number | undefined;
|
|
12587
|
+
anchorMaxX?: number | undefined;
|
|
12588
|
+
anchorMaxY?: number | undefined;
|
|
12589
|
+
} | undefined;
|
|
12590
|
+
} | undefined;
|
|
12591
|
+
mobile?: {
|
|
12592
|
+
visible?: boolean | undefined;
|
|
12593
|
+
transform?: {
|
|
12594
|
+
x?: number | undefined;
|
|
12595
|
+
y?: number | undefined;
|
|
12596
|
+
width?: number | undefined;
|
|
12597
|
+
height?: number | undefined;
|
|
12598
|
+
scaleX?: number | undefined;
|
|
12599
|
+
scaleY?: number | undefined;
|
|
12600
|
+
rotation?: number | undefined;
|
|
12601
|
+
pivotX?: number | undefined;
|
|
12602
|
+
pivotY?: number | undefined;
|
|
12603
|
+
anchorMinX?: number | undefined;
|
|
12604
|
+
anchorMinY?: number | undefined;
|
|
12605
|
+
anchorMaxX?: number | undefined;
|
|
12606
|
+
anchorMaxY?: number | undefined;
|
|
12607
|
+
} | undefined;
|
|
12608
|
+
} | undefined;
|
|
12609
|
+
} | undefined;
|
|
12610
|
+
locked?: boolean | undefined;
|
|
12611
|
+
name: string;
|
|
12612
|
+
parentId: string | null;
|
|
12613
|
+
transform: {
|
|
12614
|
+
x: number;
|
|
12615
|
+
y: number;
|
|
12616
|
+
width: number;
|
|
12617
|
+
height: number;
|
|
12618
|
+
scaleX: number;
|
|
12619
|
+
scaleY: number;
|
|
12620
|
+
rotation: number;
|
|
12621
|
+
pivotX?: number | undefined;
|
|
12622
|
+
pivotY?: number | undefined;
|
|
12623
|
+
anchorMinX?: number | undefined;
|
|
12624
|
+
anchorMinY?: number | undefined;
|
|
12625
|
+
anchorMaxX?: number | undefined;
|
|
12626
|
+
anchorMaxY?: number | undefined;
|
|
12627
|
+
};
|
|
12628
|
+
type: "mask";
|
|
12015
12629
|
visible: boolean;
|
|
12016
12630
|
} | {
|
|
12017
12631
|
bindingKey?: string | undefined;
|
|
@@ -12064,6 +12678,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12064
12678
|
} | undefined;
|
|
12065
12679
|
locked?: boolean | undefined;
|
|
12066
12680
|
name: string;
|
|
12681
|
+
opacity: number;
|
|
12067
12682
|
parentId: string | null;
|
|
12068
12683
|
transform: {
|
|
12069
12684
|
x: number;
|
|
@@ -12080,13 +12695,14 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12080
12695
|
anchorMaxX?: number | undefined;
|
|
12081
12696
|
anchorMaxY?: number | undefined;
|
|
12082
12697
|
};
|
|
12083
|
-
type: "
|
|
12698
|
+
type: "opacity-group";
|
|
12084
12699
|
visible: boolean;
|
|
12085
12700
|
} | {
|
|
12086
12701
|
bindingKey?: string | undefined;
|
|
12087
12702
|
children: string[];
|
|
12088
12703
|
editorOnly?: boolean | undefined;
|
|
12089
12704
|
id: string;
|
|
12705
|
+
items?: string[] | undefined;
|
|
12090
12706
|
layoutItem?: {
|
|
12091
12707
|
flexGrow: number;
|
|
12092
12708
|
flexShrink: number;
|
|
@@ -12133,7 +12749,6 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12133
12749
|
} | undefined;
|
|
12134
12750
|
locked?: boolean | undefined;
|
|
12135
12751
|
name: string;
|
|
12136
|
-
opacity: number;
|
|
12137
12752
|
parentId: string | null;
|
|
12138
12753
|
transform: {
|
|
12139
12754
|
x: number;
|
|
@@ -12150,8 +12765,12 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12150
12765
|
anchorMaxX?: number | undefined;
|
|
12151
12766
|
anchorMaxY?: number | undefined;
|
|
12152
12767
|
};
|
|
12153
|
-
type: "
|
|
12768
|
+
type: "item-table";
|
|
12154
12769
|
visible: boolean;
|
|
12770
|
+
visibleCount: number;
|
|
12771
|
+
visibleCountOverrides?: {
|
|
12772
|
+
mobile?: number | undefined;
|
|
12773
|
+
} | undefined;
|
|
12155
12774
|
} | {
|
|
12156
12775
|
backgroundAssetId?: string | undefined;
|
|
12157
12776
|
bindingKey?: string | undefined;
|
|
@@ -12812,6 +13431,16 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12812
13431
|
partType: "bone" | "slot";
|
|
12813
13432
|
partName: string;
|
|
12814
13433
|
targetNodeId: string;
|
|
13434
|
+
positionMultiplier?: {
|
|
13435
|
+
x: number;
|
|
13436
|
+
y: number;
|
|
13437
|
+
} | undefined;
|
|
13438
|
+
positionMultiplierOverrides?: {
|
|
13439
|
+
mobile?: {
|
|
13440
|
+
x?: number | undefined;
|
|
13441
|
+
y?: number | undefined;
|
|
13442
|
+
} | undefined;
|
|
13443
|
+
} | undefined;
|
|
12815
13444
|
}[] | undefined;
|
|
12816
13445
|
editorOnly?: boolean | undefined;
|
|
12817
13446
|
id: string;
|
|
@@ -13425,6 +14054,80 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
13425
14054
|
};
|
|
13426
14055
|
type: "opacity-group";
|
|
13427
14056
|
visible: boolean;
|
|
14057
|
+
} | {
|
|
14058
|
+
bindingKey?: string | undefined;
|
|
14059
|
+
children: string[];
|
|
14060
|
+
editorOnly?: boolean | undefined;
|
|
14061
|
+
id: string;
|
|
14062
|
+
items?: string[] | undefined;
|
|
14063
|
+
layoutItem?: {
|
|
14064
|
+
flexGrow: number;
|
|
14065
|
+
flexShrink: number;
|
|
14066
|
+
flexBasis?: number | undefined;
|
|
14067
|
+
alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
|
|
14068
|
+
} | undefined;
|
|
14069
|
+
layoutOverrides?: {
|
|
14070
|
+
desktop?: {
|
|
14071
|
+
visible?: boolean | undefined;
|
|
14072
|
+
transform?: {
|
|
14073
|
+
x?: number | undefined;
|
|
14074
|
+
y?: number | undefined;
|
|
14075
|
+
width?: number | undefined;
|
|
14076
|
+
height?: number | undefined;
|
|
14077
|
+
scaleX?: number | undefined;
|
|
14078
|
+
scaleY?: number | undefined;
|
|
14079
|
+
rotation?: number | undefined;
|
|
14080
|
+
pivotX?: number | undefined;
|
|
14081
|
+
pivotY?: number | undefined;
|
|
14082
|
+
anchorMinX?: number | undefined;
|
|
14083
|
+
anchorMinY?: number | undefined;
|
|
14084
|
+
anchorMaxX?: number | undefined;
|
|
14085
|
+
anchorMaxY?: number | undefined;
|
|
14086
|
+
} | undefined;
|
|
14087
|
+
} | undefined;
|
|
14088
|
+
mobile?: {
|
|
14089
|
+
visible?: boolean | undefined;
|
|
14090
|
+
transform?: {
|
|
14091
|
+
x?: number | undefined;
|
|
14092
|
+
y?: number | undefined;
|
|
14093
|
+
width?: number | undefined;
|
|
14094
|
+
height?: number | undefined;
|
|
14095
|
+
scaleX?: number | undefined;
|
|
14096
|
+
scaleY?: number | undefined;
|
|
14097
|
+
rotation?: number | undefined;
|
|
14098
|
+
pivotX?: number | undefined;
|
|
14099
|
+
pivotY?: number | undefined;
|
|
14100
|
+
anchorMinX?: number | undefined;
|
|
14101
|
+
anchorMinY?: number | undefined;
|
|
14102
|
+
anchorMaxX?: number | undefined;
|
|
14103
|
+
anchorMaxY?: number | undefined;
|
|
14104
|
+
} | undefined;
|
|
14105
|
+
} | undefined;
|
|
14106
|
+
} | undefined;
|
|
14107
|
+
locked?: boolean | undefined;
|
|
14108
|
+
name: string;
|
|
14109
|
+
parentId: string | null;
|
|
14110
|
+
transform: {
|
|
14111
|
+
x: number;
|
|
14112
|
+
y: number;
|
|
14113
|
+
width: number;
|
|
14114
|
+
height: number;
|
|
14115
|
+
scaleX: number;
|
|
14116
|
+
scaleY: number;
|
|
14117
|
+
rotation: number;
|
|
14118
|
+
pivotX?: number | undefined;
|
|
14119
|
+
pivotY?: number | undefined;
|
|
14120
|
+
anchorMinX?: number | undefined;
|
|
14121
|
+
anchorMinY?: number | undefined;
|
|
14122
|
+
anchorMaxX?: number | undefined;
|
|
14123
|
+
anchorMaxY?: number | undefined;
|
|
14124
|
+
};
|
|
14125
|
+
type: "item-table";
|
|
14126
|
+
visible: boolean;
|
|
14127
|
+
visibleCount: number;
|
|
14128
|
+
visibleCountOverrides?: {
|
|
14129
|
+
mobile?: number | undefined;
|
|
14130
|
+
} | undefined;
|
|
13428
14131
|
} | {
|
|
13429
14132
|
backgroundAssetId?: string | undefined;
|
|
13430
14133
|
bindingKey?: string | undefined;
|
|
@@ -14085,6 +14788,16 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
14085
14788
|
partType: "bone" | "slot";
|
|
14086
14789
|
partName: string;
|
|
14087
14790
|
targetNodeId: string;
|
|
14791
|
+
positionMultiplier?: {
|
|
14792
|
+
x: number;
|
|
14793
|
+
y: number;
|
|
14794
|
+
} | undefined;
|
|
14795
|
+
positionMultiplierOverrides?: {
|
|
14796
|
+
mobile?: {
|
|
14797
|
+
x?: number | undefined;
|
|
14798
|
+
y?: number | undefined;
|
|
14799
|
+
} | undefined;
|
|
14800
|
+
} | undefined;
|
|
14088
14801
|
}[] | undefined;
|
|
14089
14802
|
editorOnly?: boolean | undefined;
|
|
14090
14803
|
id: string;
|
|
@@ -15006,6 +15719,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15006
15719
|
} | undefined;
|
|
15007
15720
|
locked?: boolean | undefined;
|
|
15008
15721
|
name: string;
|
|
15722
|
+
nextButtonNodeId?: string | undefined;
|
|
15009
15723
|
numberActiveBackgroundAssetId?: string | undefined;
|
|
15010
15724
|
numberActiveColor?: string | undefined;
|
|
15011
15725
|
numberActiveNineSlice?: {
|
|
@@ -15034,6 +15748,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15034
15748
|
} | undefined;
|
|
15035
15749
|
pageCount: number;
|
|
15036
15750
|
parentId: string | null;
|
|
15751
|
+
prevButtonNodeId?: string | undefined;
|
|
15037
15752
|
spacing: number;
|
|
15038
15753
|
style: "dots" | "numbers";
|
|
15039
15754
|
transform: {
|
|
@@ -15053,6 +15768,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15053
15768
|
};
|
|
15054
15769
|
type: "pagination";
|
|
15055
15770
|
visible: boolean;
|
|
15771
|
+
visiblePageCount?: number | undefined;
|
|
15056
15772
|
})[] | undefined;
|
|
15057
15773
|
locked?: boolean | undefined;
|
|
15058
15774
|
name: string;
|
|
@@ -15646,6 +16362,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15646
16362
|
} | undefined;
|
|
15647
16363
|
locked?: boolean | undefined;
|
|
15648
16364
|
name: string;
|
|
16365
|
+
nextButtonNodeId?: string | undefined;
|
|
15649
16366
|
numberActiveBackgroundAssetId?: string | undefined;
|
|
15650
16367
|
numberActiveColor?: string | undefined;
|
|
15651
16368
|
numberActiveNineSlice?: {
|
|
@@ -15674,6 +16391,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15674
16391
|
} | undefined;
|
|
15675
16392
|
pageCount: number;
|
|
15676
16393
|
parentId: string | null;
|
|
16394
|
+
prevButtonNodeId?: string | undefined;
|
|
15677
16395
|
spacing: number;
|
|
15678
16396
|
style: "dots" | "numbers";
|
|
15679
16397
|
transform: {
|
|
@@ -15693,6 +16411,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15693
16411
|
};
|
|
15694
16412
|
type: "pagination";
|
|
15695
16413
|
visible: boolean;
|
|
16414
|
+
visiblePageCount?: number | undefined;
|
|
15696
16415
|
}>>;
|
|
15697
16416
|
exposedProperties: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
15698
16417
|
name: import("@sinclair/typebox").TString;
|
|
@@ -15911,6 +16630,80 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15911
16630
|
};
|
|
15912
16631
|
type: "opacity-group";
|
|
15913
16632
|
visible: boolean;
|
|
16633
|
+
} | {
|
|
16634
|
+
bindingKey?: string | undefined;
|
|
16635
|
+
children: string[];
|
|
16636
|
+
editorOnly?: boolean | undefined;
|
|
16637
|
+
id: string;
|
|
16638
|
+
items?: string[] | undefined;
|
|
16639
|
+
layoutItem?: {
|
|
16640
|
+
flexGrow: number;
|
|
16641
|
+
flexShrink: number;
|
|
16642
|
+
flexBasis?: number | undefined;
|
|
16643
|
+
alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
|
|
16644
|
+
} | undefined;
|
|
16645
|
+
layoutOverrides?: {
|
|
16646
|
+
desktop?: {
|
|
16647
|
+
visible?: boolean | undefined;
|
|
16648
|
+
transform?: {
|
|
16649
|
+
x?: number | undefined;
|
|
16650
|
+
y?: number | undefined;
|
|
16651
|
+
width?: number | undefined;
|
|
16652
|
+
height?: number | undefined;
|
|
16653
|
+
scaleX?: number | undefined;
|
|
16654
|
+
scaleY?: number | undefined;
|
|
16655
|
+
rotation?: number | undefined;
|
|
16656
|
+
pivotX?: number | undefined;
|
|
16657
|
+
pivotY?: number | undefined;
|
|
16658
|
+
anchorMinX?: number | undefined;
|
|
16659
|
+
anchorMinY?: number | undefined;
|
|
16660
|
+
anchorMaxX?: number | undefined;
|
|
16661
|
+
anchorMaxY?: number | undefined;
|
|
16662
|
+
} | undefined;
|
|
16663
|
+
} | undefined;
|
|
16664
|
+
mobile?: {
|
|
16665
|
+
visible?: boolean | undefined;
|
|
16666
|
+
transform?: {
|
|
16667
|
+
x?: number | undefined;
|
|
16668
|
+
y?: number | undefined;
|
|
16669
|
+
width?: number | undefined;
|
|
16670
|
+
height?: number | undefined;
|
|
16671
|
+
scaleX?: number | undefined;
|
|
16672
|
+
scaleY?: number | undefined;
|
|
16673
|
+
rotation?: number | undefined;
|
|
16674
|
+
pivotX?: number | undefined;
|
|
16675
|
+
pivotY?: number | undefined;
|
|
16676
|
+
anchorMinX?: number | undefined;
|
|
16677
|
+
anchorMinY?: number | undefined;
|
|
16678
|
+
anchorMaxX?: number | undefined;
|
|
16679
|
+
anchorMaxY?: number | undefined;
|
|
16680
|
+
} | undefined;
|
|
16681
|
+
} | undefined;
|
|
16682
|
+
} | undefined;
|
|
16683
|
+
locked?: boolean | undefined;
|
|
16684
|
+
name: string;
|
|
16685
|
+
parentId: string | null;
|
|
16686
|
+
transform: {
|
|
16687
|
+
x: number;
|
|
16688
|
+
y: number;
|
|
16689
|
+
width: number;
|
|
16690
|
+
height: number;
|
|
16691
|
+
scaleX: number;
|
|
16692
|
+
scaleY: number;
|
|
16693
|
+
rotation: number;
|
|
16694
|
+
pivotX?: number | undefined;
|
|
16695
|
+
pivotY?: number | undefined;
|
|
16696
|
+
anchorMinX?: number | undefined;
|
|
16697
|
+
anchorMinY?: number | undefined;
|
|
16698
|
+
anchorMaxX?: number | undefined;
|
|
16699
|
+
anchorMaxY?: number | undefined;
|
|
16700
|
+
};
|
|
16701
|
+
type: "item-table";
|
|
16702
|
+
visible: boolean;
|
|
16703
|
+
visibleCount: number;
|
|
16704
|
+
visibleCountOverrides?: {
|
|
16705
|
+
mobile?: number | undefined;
|
|
16706
|
+
} | undefined;
|
|
15914
16707
|
} | {
|
|
15915
16708
|
backgroundAssetId?: string | undefined;
|
|
15916
16709
|
bindingKey?: string | undefined;
|
|
@@ -16571,6 +17364,16 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
16571
17364
|
partType: "bone" | "slot";
|
|
16572
17365
|
partName: string;
|
|
16573
17366
|
targetNodeId: string;
|
|
17367
|
+
positionMultiplier?: {
|
|
17368
|
+
x: number;
|
|
17369
|
+
y: number;
|
|
17370
|
+
} | undefined;
|
|
17371
|
+
positionMultiplierOverrides?: {
|
|
17372
|
+
mobile?: {
|
|
17373
|
+
x?: number | undefined;
|
|
17374
|
+
y?: number | undefined;
|
|
17375
|
+
} | undefined;
|
|
17376
|
+
} | undefined;
|
|
16574
17377
|
}[] | undefined;
|
|
16575
17378
|
editorOnly?: boolean | undefined;
|
|
16576
17379
|
id: string;
|
|
@@ -17184,6 +17987,80 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
17184
17987
|
};
|
|
17185
17988
|
type: "opacity-group";
|
|
17186
17989
|
visible: boolean;
|
|
17990
|
+
} | {
|
|
17991
|
+
bindingKey?: string | undefined;
|
|
17992
|
+
children: string[];
|
|
17993
|
+
editorOnly?: boolean | undefined;
|
|
17994
|
+
id: string;
|
|
17995
|
+
items?: string[] | undefined;
|
|
17996
|
+
layoutItem?: {
|
|
17997
|
+
flexGrow: number;
|
|
17998
|
+
flexShrink: number;
|
|
17999
|
+
flexBasis?: number | undefined;
|
|
18000
|
+
alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
|
|
18001
|
+
} | undefined;
|
|
18002
|
+
layoutOverrides?: {
|
|
18003
|
+
desktop?: {
|
|
18004
|
+
visible?: boolean | undefined;
|
|
18005
|
+
transform?: {
|
|
18006
|
+
x?: number | undefined;
|
|
18007
|
+
y?: number | undefined;
|
|
18008
|
+
width?: number | undefined;
|
|
18009
|
+
height?: number | undefined;
|
|
18010
|
+
scaleX?: number | undefined;
|
|
18011
|
+
scaleY?: number | undefined;
|
|
18012
|
+
rotation?: number | undefined;
|
|
18013
|
+
pivotX?: number | undefined;
|
|
18014
|
+
pivotY?: number | undefined;
|
|
18015
|
+
anchorMinX?: number | undefined;
|
|
18016
|
+
anchorMinY?: number | undefined;
|
|
18017
|
+
anchorMaxX?: number | undefined;
|
|
18018
|
+
anchorMaxY?: number | undefined;
|
|
18019
|
+
} | undefined;
|
|
18020
|
+
} | undefined;
|
|
18021
|
+
mobile?: {
|
|
18022
|
+
visible?: boolean | undefined;
|
|
18023
|
+
transform?: {
|
|
18024
|
+
x?: number | undefined;
|
|
18025
|
+
y?: number | undefined;
|
|
18026
|
+
width?: number | undefined;
|
|
18027
|
+
height?: number | undefined;
|
|
18028
|
+
scaleX?: number | undefined;
|
|
18029
|
+
scaleY?: number | undefined;
|
|
18030
|
+
rotation?: number | undefined;
|
|
18031
|
+
pivotX?: number | undefined;
|
|
18032
|
+
pivotY?: number | undefined;
|
|
18033
|
+
anchorMinX?: number | undefined;
|
|
18034
|
+
anchorMinY?: number | undefined;
|
|
18035
|
+
anchorMaxX?: number | undefined;
|
|
18036
|
+
anchorMaxY?: number | undefined;
|
|
18037
|
+
} | undefined;
|
|
18038
|
+
} | undefined;
|
|
18039
|
+
} | undefined;
|
|
18040
|
+
locked?: boolean | undefined;
|
|
18041
|
+
name: string;
|
|
18042
|
+
parentId: string | null;
|
|
18043
|
+
transform: {
|
|
18044
|
+
x: number;
|
|
18045
|
+
y: number;
|
|
18046
|
+
width: number;
|
|
18047
|
+
height: number;
|
|
18048
|
+
scaleX: number;
|
|
18049
|
+
scaleY: number;
|
|
18050
|
+
rotation: number;
|
|
18051
|
+
pivotX?: number | undefined;
|
|
18052
|
+
pivotY?: number | undefined;
|
|
18053
|
+
anchorMinX?: number | undefined;
|
|
18054
|
+
anchorMinY?: number | undefined;
|
|
18055
|
+
anchorMaxX?: number | undefined;
|
|
18056
|
+
anchorMaxY?: number | undefined;
|
|
18057
|
+
};
|
|
18058
|
+
type: "item-table";
|
|
18059
|
+
visible: boolean;
|
|
18060
|
+
visibleCount: number;
|
|
18061
|
+
visibleCountOverrides?: {
|
|
18062
|
+
mobile?: number | undefined;
|
|
18063
|
+
} | undefined;
|
|
17187
18064
|
} | {
|
|
17188
18065
|
backgroundAssetId?: string | undefined;
|
|
17189
18066
|
bindingKey?: string | undefined;
|
|
@@ -17844,6 +18721,16 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
17844
18721
|
partType: "bone" | "slot";
|
|
17845
18722
|
partName: string;
|
|
17846
18723
|
targetNodeId: string;
|
|
18724
|
+
positionMultiplier?: {
|
|
18725
|
+
x: number;
|
|
18726
|
+
y: number;
|
|
18727
|
+
} | undefined;
|
|
18728
|
+
positionMultiplierOverrides?: {
|
|
18729
|
+
mobile?: {
|
|
18730
|
+
x?: number | undefined;
|
|
18731
|
+
y?: number | undefined;
|
|
18732
|
+
} | undefined;
|
|
18733
|
+
} | undefined;
|
|
17847
18734
|
}[] | undefined;
|
|
17848
18735
|
editorOnly?: boolean | undefined;
|
|
17849
18736
|
id: string;
|
|
@@ -18765,6 +19652,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
18765
19652
|
} | undefined;
|
|
18766
19653
|
locked?: boolean | undefined;
|
|
18767
19654
|
name: string;
|
|
19655
|
+
nextButtonNodeId?: string | undefined;
|
|
18768
19656
|
numberActiveBackgroundAssetId?: string | undefined;
|
|
18769
19657
|
numberActiveColor?: string | undefined;
|
|
18770
19658
|
numberActiveNineSlice?: {
|
|
@@ -18793,6 +19681,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
18793
19681
|
} | undefined;
|
|
18794
19682
|
pageCount: number;
|
|
18795
19683
|
parentId: string | null;
|
|
19684
|
+
prevButtonNodeId?: string | undefined;
|
|
18796
19685
|
spacing: number;
|
|
18797
19686
|
style: "dots" | "numbers";
|
|
18798
19687
|
transform: {
|
|
@@ -18812,6 +19701,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
18812
19701
|
};
|
|
18813
19702
|
type: "pagination";
|
|
18814
19703
|
visible: boolean;
|
|
19704
|
+
visiblePageCount?: number | undefined;
|
|
18815
19705
|
})[] | undefined;
|
|
18816
19706
|
locked?: boolean | undefined;
|
|
18817
19707
|
name: string;
|
|
@@ -19405,6 +20295,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
19405
20295
|
} | undefined;
|
|
19406
20296
|
locked?: boolean | undefined;
|
|
19407
20297
|
name: string;
|
|
20298
|
+
nextButtonNodeId?: string | undefined;
|
|
19408
20299
|
numberActiveBackgroundAssetId?: string | undefined;
|
|
19409
20300
|
numberActiveColor?: string | undefined;
|
|
19410
20301
|
numberActiveNineSlice?: {
|
|
@@ -19433,6 +20324,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
19433
20324
|
} | undefined;
|
|
19434
20325
|
pageCount: number;
|
|
19435
20326
|
parentId: string | null;
|
|
20327
|
+
prevButtonNodeId?: string | undefined;
|
|
19436
20328
|
spacing: number;
|
|
19437
20329
|
style: "dots" | "numbers";
|
|
19438
20330
|
transform: {
|
|
@@ -19452,6 +20344,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
19452
20344
|
};
|
|
19453
20345
|
type: "pagination";
|
|
19454
20346
|
visible: boolean;
|
|
20347
|
+
visiblePageCount?: number | undefined;
|
|
19455
20348
|
}>>;
|
|
19456
20349
|
layout: import("@sinclair/typebox").TObject<{
|
|
19457
20350
|
referenceViewports: import("@sinclair/typebox").TObject<{
|