@pixi-ui-editor/schema 0.8.0 → 0.9.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/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: 35;
3
+ export declare const CURRENT_SCHEMA_VERSION: 36;
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">]>;
@@ -416,6 +416,80 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
416
416
  }>;
417
417
  type: import("@sinclair/typebox").TLiteral<"opacity-group">;
418
418
  visible: import("@sinclair/typebox").TBoolean;
419
+ }>, import("@sinclair/typebox").TObject<{
420
+ bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
421
+ children: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
422
+ editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
423
+ id: import("@sinclair/typebox").TString;
424
+ items: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>>;
425
+ layoutItem: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
426
+ flexGrow: import("@sinclair/typebox").TNumber;
427
+ flexShrink: import("@sinclair/typebox").TNumber;
428
+ flexBasis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
429
+ 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">]>>;
430
+ }>>;
431
+ layoutOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
432
+ desktop: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
433
+ visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
434
+ transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
435
+ x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
436
+ y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
437
+ width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
438
+ height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
439
+ scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
440
+ scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
441
+ rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
442
+ pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
443
+ pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
444
+ anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
445
+ anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
446
+ anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
447
+ anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
448
+ }>>;
449
+ }>>;
450
+ mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
451
+ visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
452
+ transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
453
+ x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
454
+ y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
455
+ width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
456
+ height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
457
+ scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
458
+ scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
459
+ rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
460
+ pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
461
+ pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
462
+ anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
463
+ anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
464
+ anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
465
+ anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
466
+ }>>;
467
+ }>>;
468
+ }>>;
469
+ locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
470
+ name: import("@sinclair/typebox").TString;
471
+ parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
472
+ transform: import("@sinclair/typebox").TObject<{
473
+ x: import("@sinclair/typebox").TNumber;
474
+ y: import("@sinclair/typebox").TNumber;
475
+ width: import("@sinclair/typebox").TNumber;
476
+ height: import("@sinclair/typebox").TNumber;
477
+ scaleX: import("@sinclair/typebox").TNumber;
478
+ scaleY: import("@sinclair/typebox").TNumber;
479
+ rotation: import("@sinclair/typebox").TNumber;
480
+ pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
481
+ pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
482
+ anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
483
+ anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
484
+ anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
485
+ anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
486
+ }>;
487
+ type: import("@sinclair/typebox").TLiteral<"item-table">;
488
+ visible: import("@sinclair/typebox").TBoolean;
489
+ visibleCount: import("@sinclair/typebox").TInteger;
490
+ visibleCountOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
491
+ mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
492
+ }>>;
419
493
  }>, import("@sinclair/typebox").TObject<{
420
494
  backgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
421
495
  bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
@@ -2077,6 +2151,7 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
2077
2151
  }>>;
2078
2152
  locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
2079
2153
  name: import("@sinclair/typebox").TString;
2154
+ nextButtonNodeId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>;
2080
2155
  numberActiveBackgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
2081
2156
  numberActiveColor: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
2082
2157
  numberActiveNineSlice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
@@ -2105,6 +2180,7 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
2105
2180
  }>>;
2106
2181
  pageCount: import("@sinclair/typebox").TInteger;
2107
2182
  parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
2183
+ prevButtonNodeId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>;
2108
2184
  spacing: import("@sinclair/typebox").TNumber;
2109
2185
  style: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"dots">, import("@sinclair/typebox").TLiteral<"numbers">]>;
2110
2186
  transform: import("@sinclair/typebox").TObject<{
@@ -2124,6 +2200,7 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
2124
2200
  }>;
2125
2201
  type: import("@sinclair/typebox").TLiteral<"pagination">;
2126
2202
  visible: import("@sinclair/typebox").TBoolean;
2203
+ visiblePageCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
2127
2204
  }>]>>;
2128
2205
  export type UINode = Static<typeof UINodeSchema>;
2129
2206
  /** Исторический псевдоним: локальное добавление больше ничем не ограничено по сравнению с узлом сцены. */
@@ -2335,6 +2412,80 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
2335
2412
  }>;
2336
2413
  type: import("@sinclair/typebox").TLiteral<"opacity-group">;
2337
2414
  visible: import("@sinclair/typebox").TBoolean;
2415
+ }>, import("@sinclair/typebox").TObject<{
2416
+ bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
2417
+ children: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
2418
+ editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
2419
+ id: import("@sinclair/typebox").TString;
2420
+ items: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>>;
2421
+ layoutItem: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
2422
+ flexGrow: import("@sinclair/typebox").TNumber;
2423
+ flexShrink: import("@sinclair/typebox").TNumber;
2424
+ flexBasis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2425
+ 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">]>>;
2426
+ }>>;
2427
+ layoutOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
2428
+ desktop: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
2429
+ visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
2430
+ transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
2431
+ x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2432
+ y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2433
+ width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2434
+ height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2435
+ scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2436
+ scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2437
+ rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2438
+ pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2439
+ pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2440
+ anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2441
+ anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2442
+ anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2443
+ anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2444
+ }>>;
2445
+ }>>;
2446
+ mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
2447
+ visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
2448
+ transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
2449
+ x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2450
+ y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2451
+ width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2452
+ height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2453
+ scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2454
+ scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2455
+ rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2456
+ pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2457
+ pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2458
+ anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2459
+ anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2460
+ anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2461
+ anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2462
+ }>>;
2463
+ }>>;
2464
+ }>>;
2465
+ locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
2466
+ name: import("@sinclair/typebox").TString;
2467
+ parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
2468
+ transform: import("@sinclair/typebox").TObject<{
2469
+ x: import("@sinclair/typebox").TNumber;
2470
+ y: import("@sinclair/typebox").TNumber;
2471
+ width: import("@sinclair/typebox").TNumber;
2472
+ height: import("@sinclair/typebox").TNumber;
2473
+ scaleX: import("@sinclair/typebox").TNumber;
2474
+ scaleY: import("@sinclair/typebox").TNumber;
2475
+ rotation: import("@sinclair/typebox").TNumber;
2476
+ pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2477
+ pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2478
+ anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2479
+ anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2480
+ anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2481
+ anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
2482
+ }>;
2483
+ type: import("@sinclair/typebox").TLiteral<"item-table">;
2484
+ visible: import("@sinclair/typebox").TBoolean;
2485
+ visibleCount: import("@sinclair/typebox").TInteger;
2486
+ visibleCountOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
2487
+ mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
2488
+ }>>;
2338
2489
  }>, import("@sinclair/typebox").TObject<{
2339
2490
  backgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
2340
2491
  bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
@@ -3996,6 +4147,7 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
3996
4147
  }>>;
3997
4148
  locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
3998
4149
  name: import("@sinclair/typebox").TString;
4150
+ nextButtonNodeId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>;
3999
4151
  numberActiveBackgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
4000
4152
  numberActiveColor: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
4001
4153
  numberActiveNineSlice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
@@ -4024,6 +4176,7 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
4024
4176
  }>>;
4025
4177
  pageCount: import("@sinclair/typebox").TInteger;
4026
4178
  parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
4179
+ prevButtonNodeId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>>;
4027
4180
  spacing: import("@sinclair/typebox").TNumber;
4028
4181
  style: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"dots">, import("@sinclair/typebox").TLiteral<"numbers">]>;
4029
4182
  transform: import("@sinclair/typebox").TObject<{
@@ -4043,6 +4196,7 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
4043
4196
  }>;
4044
4197
  type: import("@sinclair/typebox").TLiteral<"pagination">;
4045
4198
  visible: import("@sinclair/typebox").TBoolean;
4199
+ visiblePageCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
4046
4200
  }>]>>;
4047
4201
  export type LocallyAddedNode = UINode;
4048
4202
  export type LayoutGroupNode = Extract<UINode, {
@@ -4092,6 +4246,15 @@ export type ProgressBarNode = Extract<UINode, {
4092
4246
  export type PaginationNode = Extract<UINode, {
4093
4247
  type: "pagination";
4094
4248
  }>;
4249
+ export type ItemTableNode = Extract<UINode, {
4250
+ type: "item-table";
4251
+ }>;
4252
+ export declare function isItemTable(node: UINode): node is ItemTableNode;
4253
+ /**
4254
+ * Сколько первых детей таблица показывает в этом профиле. Единственная реализация для валидации,
4255
+ * runtime-вида и Inspector; `undefined` в override означает «наследовать base», а не ноль.
4256
+ */
4257
+ export declare function resolveItemTableVisibleCount(node: Pick<ItemTableNode, "visibleCount" | "visibleCountOverrides">, profile: LayoutProfileId): number;
4095
4258
  export type ParticleEmitterNode = Extract<UINode, {
4096
4259
  type: "particle-emitter";
4097
4260
  }>;
@@ -4311,6 +4474,80 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
4311
4474
  };
4312
4475
  type: "opacity-group";
4313
4476
  visible: boolean;
4477
+ } | {
4478
+ bindingKey?: string | undefined;
4479
+ children: string[];
4480
+ editorOnly?: boolean | undefined;
4481
+ id: string;
4482
+ items?: string[] | undefined;
4483
+ layoutItem?: {
4484
+ flexGrow: number;
4485
+ flexShrink: number;
4486
+ flexBasis?: number | undefined;
4487
+ alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
4488
+ } | undefined;
4489
+ layoutOverrides?: {
4490
+ desktop?: {
4491
+ visible?: boolean | undefined;
4492
+ transform?: {
4493
+ x?: number | undefined;
4494
+ y?: number | undefined;
4495
+ width?: number | undefined;
4496
+ height?: number | undefined;
4497
+ scaleX?: number | undefined;
4498
+ scaleY?: number | undefined;
4499
+ rotation?: number | undefined;
4500
+ pivotX?: number | undefined;
4501
+ pivotY?: number | undefined;
4502
+ anchorMinX?: number | undefined;
4503
+ anchorMinY?: number | undefined;
4504
+ anchorMaxX?: number | undefined;
4505
+ anchorMaxY?: number | undefined;
4506
+ } | undefined;
4507
+ } | undefined;
4508
+ mobile?: {
4509
+ visible?: boolean | undefined;
4510
+ transform?: {
4511
+ x?: number | undefined;
4512
+ y?: number | undefined;
4513
+ width?: number | undefined;
4514
+ height?: number | undefined;
4515
+ scaleX?: number | undefined;
4516
+ scaleY?: number | undefined;
4517
+ rotation?: number | undefined;
4518
+ pivotX?: number | undefined;
4519
+ pivotY?: number | undefined;
4520
+ anchorMinX?: number | undefined;
4521
+ anchorMinY?: number | undefined;
4522
+ anchorMaxX?: number | undefined;
4523
+ anchorMaxY?: number | undefined;
4524
+ } | undefined;
4525
+ } | undefined;
4526
+ } | undefined;
4527
+ locked?: boolean | undefined;
4528
+ name: string;
4529
+ parentId: string | null;
4530
+ transform: {
4531
+ x: number;
4532
+ y: number;
4533
+ width: number;
4534
+ height: number;
4535
+ scaleX: number;
4536
+ scaleY: number;
4537
+ rotation: number;
4538
+ pivotX?: number | undefined;
4539
+ pivotY?: number | undefined;
4540
+ anchorMinX?: number | undefined;
4541
+ anchorMinY?: number | undefined;
4542
+ anchorMaxX?: number | undefined;
4543
+ anchorMaxY?: number | undefined;
4544
+ };
4545
+ type: "item-table";
4546
+ visible: boolean;
4547
+ visibleCount: number;
4548
+ visibleCountOverrides?: {
4549
+ mobile?: number | undefined;
4550
+ } | undefined;
4314
4551
  } | {
4315
4552
  backgroundAssetId?: string | undefined;
4316
4553
  bindingKey?: string | undefined;
@@ -5584,6 +5821,80 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
5584
5821
  };
5585
5822
  type: "opacity-group";
5586
5823
  visible: boolean;
5824
+ } | {
5825
+ bindingKey?: string | undefined;
5826
+ children: string[];
5827
+ editorOnly?: boolean | undefined;
5828
+ id: string;
5829
+ items?: string[] | undefined;
5830
+ layoutItem?: {
5831
+ flexGrow: number;
5832
+ flexShrink: number;
5833
+ flexBasis?: number | undefined;
5834
+ alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
5835
+ } | undefined;
5836
+ layoutOverrides?: {
5837
+ desktop?: {
5838
+ visible?: boolean | undefined;
5839
+ transform?: {
5840
+ x?: number | undefined;
5841
+ y?: number | undefined;
5842
+ width?: number | undefined;
5843
+ height?: number | undefined;
5844
+ scaleX?: number | undefined;
5845
+ scaleY?: number | undefined;
5846
+ rotation?: number | undefined;
5847
+ pivotX?: number | undefined;
5848
+ pivotY?: number | undefined;
5849
+ anchorMinX?: number | undefined;
5850
+ anchorMinY?: number | undefined;
5851
+ anchorMaxX?: number | undefined;
5852
+ anchorMaxY?: number | undefined;
5853
+ } | undefined;
5854
+ } | undefined;
5855
+ mobile?: {
5856
+ visible?: boolean | undefined;
5857
+ transform?: {
5858
+ x?: number | undefined;
5859
+ y?: number | undefined;
5860
+ width?: number | undefined;
5861
+ height?: number | undefined;
5862
+ scaleX?: number | undefined;
5863
+ scaleY?: number | undefined;
5864
+ rotation?: number | undefined;
5865
+ pivotX?: number | undefined;
5866
+ pivotY?: number | undefined;
5867
+ anchorMinX?: number | undefined;
5868
+ anchorMinY?: number | undefined;
5869
+ anchorMaxX?: number | undefined;
5870
+ anchorMaxY?: number | undefined;
5871
+ } | undefined;
5872
+ } | undefined;
5873
+ } | undefined;
5874
+ locked?: boolean | undefined;
5875
+ name: string;
5876
+ parentId: string | null;
5877
+ transform: {
5878
+ x: number;
5879
+ y: number;
5880
+ width: number;
5881
+ height: number;
5882
+ scaleX: number;
5883
+ scaleY: number;
5884
+ rotation: number;
5885
+ pivotX?: number | undefined;
5886
+ pivotY?: number | undefined;
5887
+ anchorMinX?: number | undefined;
5888
+ anchorMinY?: number | undefined;
5889
+ anchorMaxX?: number | undefined;
5890
+ anchorMaxY?: number | undefined;
5891
+ };
5892
+ type: "item-table";
5893
+ visible: boolean;
5894
+ visibleCount: number;
5895
+ visibleCountOverrides?: {
5896
+ mobile?: number | undefined;
5897
+ } | undefined;
5587
5898
  } | {
5588
5899
  backgroundAssetId?: string | undefined;
5589
5900
  bindingKey?: string | undefined;
@@ -7165,6 +7476,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
7165
7476
  } | undefined;
7166
7477
  locked?: boolean | undefined;
7167
7478
  name: string;
7479
+ nextButtonNodeId?: string | undefined;
7168
7480
  numberActiveBackgroundAssetId?: string | undefined;
7169
7481
  numberActiveColor?: string | undefined;
7170
7482
  numberActiveNineSlice?: {
@@ -7193,6 +7505,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
7193
7505
  } | undefined;
7194
7506
  pageCount: number;
7195
7507
  parentId: string | null;
7508
+ prevButtonNodeId?: string | undefined;
7196
7509
  spacing: number;
7197
7510
  style: "dots" | "numbers";
7198
7511
  transform: {
@@ -7212,6 +7525,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
7212
7525
  };
7213
7526
  type: "pagination";
7214
7527
  visible: boolean;
7528
+ visiblePageCount?: number | undefined;
7215
7529
  })[] | undefined;
7216
7530
  locked?: boolean | undefined;
7217
7531
  name: string;
@@ -7805,6 +8119,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
7805
8119
  } | undefined;
7806
8120
  locked?: boolean | undefined;
7807
8121
  name: string;
8122
+ nextButtonNodeId?: string | undefined;
7808
8123
  numberActiveBackgroundAssetId?: string | undefined;
7809
8124
  numberActiveColor?: string | undefined;
7810
8125
  numberActiveNineSlice?: {
@@ -7833,6 +8148,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
7833
8148
  } | undefined;
7834
8149
  pageCount: number;
7835
8150
  parentId: string | null;
8151
+ prevButtonNodeId?: string | undefined;
7836
8152
  spacing: number;
7837
8153
  style: "dots" | "numbers";
7838
8154
  transform: {
@@ -7852,6 +8168,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
7852
8168
  };
7853
8169
  type: "pagination";
7854
8170
  visible: boolean;
8171
+ visiblePageCount?: number | undefined;
7855
8172
  }>>;
7856
8173
  layout: import("@sinclair/typebox").TObject<{
7857
8174
  referenceViewports: import("@sinclair/typebox").TObject<{
@@ -8199,6 +8516,80 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
8199
8516
  };
8200
8517
  type: "opacity-group";
8201
8518
  visible: boolean;
8519
+ } | {
8520
+ bindingKey?: string | undefined;
8521
+ children: string[];
8522
+ editorOnly?: boolean | undefined;
8523
+ id: string;
8524
+ items?: string[] | undefined;
8525
+ layoutItem?: {
8526
+ flexGrow: number;
8527
+ flexShrink: number;
8528
+ flexBasis?: number | undefined;
8529
+ alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
8530
+ } | undefined;
8531
+ layoutOverrides?: {
8532
+ desktop?: {
8533
+ visible?: boolean | undefined;
8534
+ transform?: {
8535
+ x?: number | undefined;
8536
+ y?: number | undefined;
8537
+ width?: number | undefined;
8538
+ height?: number | undefined;
8539
+ scaleX?: number | undefined;
8540
+ scaleY?: number | undefined;
8541
+ rotation?: number | undefined;
8542
+ pivotX?: number | undefined;
8543
+ pivotY?: number | undefined;
8544
+ anchorMinX?: number | undefined;
8545
+ anchorMinY?: number | undefined;
8546
+ anchorMaxX?: number | undefined;
8547
+ anchorMaxY?: number | undefined;
8548
+ } | undefined;
8549
+ } | undefined;
8550
+ mobile?: {
8551
+ visible?: boolean | undefined;
8552
+ transform?: {
8553
+ x?: number | undefined;
8554
+ y?: number | undefined;
8555
+ width?: number | undefined;
8556
+ height?: number | undefined;
8557
+ scaleX?: number | undefined;
8558
+ scaleY?: number | undefined;
8559
+ rotation?: number | undefined;
8560
+ pivotX?: number | undefined;
8561
+ pivotY?: number | undefined;
8562
+ anchorMinX?: number | undefined;
8563
+ anchorMinY?: number | undefined;
8564
+ anchorMaxX?: number | undefined;
8565
+ anchorMaxY?: number | undefined;
8566
+ } | undefined;
8567
+ } | undefined;
8568
+ } | undefined;
8569
+ locked?: boolean | undefined;
8570
+ name: string;
8571
+ parentId: string | null;
8572
+ transform: {
8573
+ x: number;
8574
+ y: number;
8575
+ width: number;
8576
+ height: number;
8577
+ scaleX: number;
8578
+ scaleY: number;
8579
+ rotation: number;
8580
+ pivotX?: number | undefined;
8581
+ pivotY?: number | undefined;
8582
+ anchorMinX?: number | undefined;
8583
+ anchorMinY?: number | undefined;
8584
+ anchorMaxX?: number | undefined;
8585
+ anchorMaxY?: number | undefined;
8586
+ };
8587
+ type: "item-table";
8588
+ visible: boolean;
8589
+ visibleCount: number;
8590
+ visibleCountOverrides?: {
8591
+ mobile?: number | undefined;
8592
+ } | undefined;
8202
8593
  } | {
8203
8594
  backgroundAssetId?: string | undefined;
8204
8595
  bindingKey?: string | undefined;
@@ -9472,6 +9863,80 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
9472
9863
  };
9473
9864
  type: "opacity-group";
9474
9865
  visible: boolean;
9866
+ } | {
9867
+ bindingKey?: string | undefined;
9868
+ children: string[];
9869
+ editorOnly?: boolean | undefined;
9870
+ id: string;
9871
+ items?: string[] | undefined;
9872
+ layoutItem?: {
9873
+ flexGrow: number;
9874
+ flexShrink: number;
9875
+ flexBasis?: number | undefined;
9876
+ alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
9877
+ } | undefined;
9878
+ layoutOverrides?: {
9879
+ desktop?: {
9880
+ visible?: boolean | undefined;
9881
+ transform?: {
9882
+ x?: number | undefined;
9883
+ y?: number | undefined;
9884
+ width?: number | undefined;
9885
+ height?: number | undefined;
9886
+ scaleX?: number | undefined;
9887
+ scaleY?: number | undefined;
9888
+ rotation?: number | undefined;
9889
+ pivotX?: number | undefined;
9890
+ pivotY?: number | undefined;
9891
+ anchorMinX?: number | undefined;
9892
+ anchorMinY?: number | undefined;
9893
+ anchorMaxX?: number | undefined;
9894
+ anchorMaxY?: number | undefined;
9895
+ } | undefined;
9896
+ } | undefined;
9897
+ mobile?: {
9898
+ visible?: boolean | undefined;
9899
+ transform?: {
9900
+ x?: number | undefined;
9901
+ y?: number | undefined;
9902
+ width?: number | undefined;
9903
+ height?: number | undefined;
9904
+ scaleX?: number | undefined;
9905
+ scaleY?: number | undefined;
9906
+ rotation?: number | undefined;
9907
+ pivotX?: number | undefined;
9908
+ pivotY?: number | undefined;
9909
+ anchorMinX?: number | undefined;
9910
+ anchorMinY?: number | undefined;
9911
+ anchorMaxX?: number | undefined;
9912
+ anchorMaxY?: number | undefined;
9913
+ } | undefined;
9914
+ } | undefined;
9915
+ } | undefined;
9916
+ locked?: boolean | undefined;
9917
+ name: string;
9918
+ parentId: string | null;
9919
+ transform: {
9920
+ x: number;
9921
+ y: number;
9922
+ width: number;
9923
+ height: number;
9924
+ scaleX: number;
9925
+ scaleY: number;
9926
+ rotation: number;
9927
+ pivotX?: number | undefined;
9928
+ pivotY?: number | undefined;
9929
+ anchorMinX?: number | undefined;
9930
+ anchorMinY?: number | undefined;
9931
+ anchorMaxX?: number | undefined;
9932
+ anchorMaxY?: number | undefined;
9933
+ };
9934
+ type: "item-table";
9935
+ visible: boolean;
9936
+ visibleCount: number;
9937
+ visibleCountOverrides?: {
9938
+ mobile?: number | undefined;
9939
+ } | undefined;
9475
9940
  } | {
9476
9941
  backgroundAssetId?: string | undefined;
9477
9942
  bindingKey?: string | undefined;
@@ -11053,6 +11518,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
11053
11518
  } | undefined;
11054
11519
  locked?: boolean | undefined;
11055
11520
  name: string;
11521
+ nextButtonNodeId?: string | undefined;
11056
11522
  numberActiveBackgroundAssetId?: string | undefined;
11057
11523
  numberActiveColor?: string | undefined;
11058
11524
  numberActiveNineSlice?: {
@@ -11081,6 +11547,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
11081
11547
  } | undefined;
11082
11548
  pageCount: number;
11083
11549
  parentId: string | null;
11550
+ prevButtonNodeId?: string | undefined;
11084
11551
  spacing: number;
11085
11552
  style: "dots" | "numbers";
11086
11553
  transform: {
@@ -11100,6 +11567,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
11100
11567
  };
11101
11568
  type: "pagination";
11102
11569
  visible: boolean;
11570
+ visiblePageCount?: number | undefined;
11103
11571
  })[] | undefined;
11104
11572
  locked?: boolean | undefined;
11105
11573
  name: string;
@@ -11693,6 +12161,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
11693
12161
  } | undefined;
11694
12162
  locked?: boolean | undefined;
11695
12163
  name: string;
12164
+ nextButtonNodeId?: string | undefined;
11696
12165
  numberActiveBackgroundAssetId?: string | undefined;
11697
12166
  numberActiveColor?: string | undefined;
11698
12167
  numberActiveNineSlice?: {
@@ -11721,6 +12190,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
11721
12190
  } | undefined;
11722
12191
  pageCount: number;
11723
12192
  parentId: string | null;
12193
+ prevButtonNodeId?: string | undefined;
11724
12194
  spacing: number;
11725
12195
  style: "dots" | "numbers";
11726
12196
  transform: {
@@ -11740,6 +12210,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
11740
12210
  };
11741
12211
  type: "pagination";
11742
12212
  visible: boolean;
12213
+ visiblePageCount?: number | undefined;
11743
12214
  }>>;
11744
12215
  exposedProperties: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
11745
12216
  name: import("@sinclair/typebox").TString;
@@ -11748,7 +12219,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
11748
12219
  }>;
11749
12220
  export type PrefabDefinition = Static<typeof PrefabDefinitionSchema>;
11750
12221
  export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<{
11751
- schemaVersion: import("@sinclair/typebox").TLiteral<35>;
12222
+ schemaVersion: import("@sinclair/typebox").TLiteral<36>;
11752
12223
  project: import("@sinclair/typebox").TObject<{
11753
12224
  id: import("@sinclair/typebox").TString;
11754
12225
  name: import("@sinclair/typebox").TString;
@@ -12011,7 +12482,76 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
12011
12482
  anchorMaxX?: number | undefined;
12012
12483
  anchorMaxY?: number | undefined;
12013
12484
  };
12014
- type: "container";
12485
+ type: "container";
12486
+ visible: boolean;
12487
+ } | {
12488
+ bindingKey?: string | undefined;
12489
+ children: string[];
12490
+ editorOnly?: boolean | undefined;
12491
+ id: string;
12492
+ layoutItem?: {
12493
+ flexGrow: number;
12494
+ flexShrink: number;
12495
+ flexBasis?: number | undefined;
12496
+ alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
12497
+ } | undefined;
12498
+ layoutOverrides?: {
12499
+ desktop?: {
12500
+ visible?: boolean | undefined;
12501
+ transform?: {
12502
+ x?: number | undefined;
12503
+ y?: number | undefined;
12504
+ width?: number | undefined;
12505
+ height?: number | undefined;
12506
+ scaleX?: number | undefined;
12507
+ scaleY?: number | undefined;
12508
+ rotation?: number | undefined;
12509
+ pivotX?: number | undefined;
12510
+ pivotY?: number | undefined;
12511
+ anchorMinX?: number | undefined;
12512
+ anchorMinY?: number | undefined;
12513
+ anchorMaxX?: number | undefined;
12514
+ anchorMaxY?: number | undefined;
12515
+ } | undefined;
12516
+ } | undefined;
12517
+ mobile?: {
12518
+ visible?: boolean | undefined;
12519
+ transform?: {
12520
+ x?: number | undefined;
12521
+ y?: number | undefined;
12522
+ width?: number | undefined;
12523
+ height?: number | undefined;
12524
+ scaleX?: number | undefined;
12525
+ scaleY?: number | undefined;
12526
+ rotation?: number | undefined;
12527
+ pivotX?: number | undefined;
12528
+ pivotY?: number | undefined;
12529
+ anchorMinX?: number | undefined;
12530
+ anchorMinY?: number | undefined;
12531
+ anchorMaxX?: number | undefined;
12532
+ anchorMaxY?: number | undefined;
12533
+ } | undefined;
12534
+ } | undefined;
12535
+ } | undefined;
12536
+ locked?: boolean | undefined;
12537
+ name: string;
12538
+ parentId: string | null;
12539
+ transform: {
12540
+ x: number;
12541
+ y: number;
12542
+ width: number;
12543
+ height: number;
12544
+ scaleX: number;
12545
+ scaleY: number;
12546
+ rotation: number;
12547
+ pivotX?: number | undefined;
12548
+ pivotY?: number | undefined;
12549
+ anchorMinX?: number | undefined;
12550
+ anchorMinY?: number | undefined;
12551
+ anchorMaxX?: number | undefined;
12552
+ anchorMaxY?: number | undefined;
12553
+ };
12554
+ type: "mask";
12015
12555
  visible: boolean;
12016
12556
  } | {
12017
12557
  bindingKey?: string | undefined;
@@ -12064,6 +12604,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
12064
12604
  } | undefined;
12065
12605
  locked?: boolean | undefined;
12066
12606
  name: string;
12607
+ opacity: number;
12067
12608
  parentId: string | null;
12068
12609
  transform: {
12069
12610
  x: number;
@@ -12080,13 +12621,14 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
12080
12621
  anchorMaxX?: number | undefined;
12081
12622
  anchorMaxY?: number | undefined;
12082
12623
  };
12083
- type: "mask";
12624
+ type: "opacity-group";
12084
12625
  visible: boolean;
12085
12626
  } | {
12086
12627
  bindingKey?: string | undefined;
12087
12628
  children: string[];
12088
12629
  editorOnly?: boolean | undefined;
12089
12630
  id: string;
12631
+ items?: string[] | undefined;
12090
12632
  layoutItem?: {
12091
12633
  flexGrow: number;
12092
12634
  flexShrink: number;
@@ -12133,7 +12675,6 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
12133
12675
  } | undefined;
12134
12676
  locked?: boolean | undefined;
12135
12677
  name: string;
12136
- opacity: number;
12137
12678
  parentId: string | null;
12138
12679
  transform: {
12139
12680
  x: number;
@@ -12150,8 +12691,12 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
12150
12691
  anchorMaxX?: number | undefined;
12151
12692
  anchorMaxY?: number | undefined;
12152
12693
  };
12153
- type: "opacity-group";
12694
+ type: "item-table";
12154
12695
  visible: boolean;
12696
+ visibleCount: number;
12697
+ visibleCountOverrides?: {
12698
+ mobile?: number | undefined;
12699
+ } | undefined;
12155
12700
  } | {
12156
12701
  backgroundAssetId?: string | undefined;
12157
12702
  bindingKey?: string | undefined;
@@ -13425,6 +13970,80 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
13425
13970
  };
13426
13971
  type: "opacity-group";
13427
13972
  visible: boolean;
13973
+ } | {
13974
+ bindingKey?: string | undefined;
13975
+ children: string[];
13976
+ editorOnly?: boolean | undefined;
13977
+ id: string;
13978
+ items?: string[] | undefined;
13979
+ layoutItem?: {
13980
+ flexGrow: number;
13981
+ flexShrink: number;
13982
+ flexBasis?: number | undefined;
13983
+ alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
13984
+ } | undefined;
13985
+ layoutOverrides?: {
13986
+ desktop?: {
13987
+ visible?: boolean | undefined;
13988
+ transform?: {
13989
+ x?: number | undefined;
13990
+ y?: number | undefined;
13991
+ width?: number | undefined;
13992
+ height?: number | undefined;
13993
+ scaleX?: number | undefined;
13994
+ scaleY?: number | undefined;
13995
+ rotation?: number | undefined;
13996
+ pivotX?: number | undefined;
13997
+ pivotY?: number | undefined;
13998
+ anchorMinX?: number | undefined;
13999
+ anchorMinY?: number | undefined;
14000
+ anchorMaxX?: number | undefined;
14001
+ anchorMaxY?: number | undefined;
14002
+ } | undefined;
14003
+ } | undefined;
14004
+ mobile?: {
14005
+ visible?: boolean | undefined;
14006
+ transform?: {
14007
+ x?: number | undefined;
14008
+ y?: number | undefined;
14009
+ width?: number | undefined;
14010
+ height?: number | undefined;
14011
+ scaleX?: number | undefined;
14012
+ scaleY?: number | undefined;
14013
+ rotation?: number | undefined;
14014
+ pivotX?: number | undefined;
14015
+ pivotY?: number | undefined;
14016
+ anchorMinX?: number | undefined;
14017
+ anchorMinY?: number | undefined;
14018
+ anchorMaxX?: number | undefined;
14019
+ anchorMaxY?: number | undefined;
14020
+ } | undefined;
14021
+ } | undefined;
14022
+ } | undefined;
14023
+ locked?: boolean | undefined;
14024
+ name: string;
14025
+ parentId: string | null;
14026
+ transform: {
14027
+ x: number;
14028
+ y: number;
14029
+ width: number;
14030
+ height: number;
14031
+ scaleX: number;
14032
+ scaleY: number;
14033
+ rotation: number;
14034
+ pivotX?: number | undefined;
14035
+ pivotY?: number | undefined;
14036
+ anchorMinX?: number | undefined;
14037
+ anchorMinY?: number | undefined;
14038
+ anchorMaxX?: number | undefined;
14039
+ anchorMaxY?: number | undefined;
14040
+ };
14041
+ type: "item-table";
14042
+ visible: boolean;
14043
+ visibleCount: number;
14044
+ visibleCountOverrides?: {
14045
+ mobile?: number | undefined;
14046
+ } | undefined;
13428
14047
  } | {
13429
14048
  backgroundAssetId?: string | undefined;
13430
14049
  bindingKey?: string | undefined;
@@ -15006,6 +15625,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
15006
15625
  } | undefined;
15007
15626
  locked?: boolean | undefined;
15008
15627
  name: string;
15628
+ nextButtonNodeId?: string | undefined;
15009
15629
  numberActiveBackgroundAssetId?: string | undefined;
15010
15630
  numberActiveColor?: string | undefined;
15011
15631
  numberActiveNineSlice?: {
@@ -15034,6 +15654,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
15034
15654
  } | undefined;
15035
15655
  pageCount: number;
15036
15656
  parentId: string | null;
15657
+ prevButtonNodeId?: string | undefined;
15037
15658
  spacing: number;
15038
15659
  style: "dots" | "numbers";
15039
15660
  transform: {
@@ -15053,6 +15674,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
15053
15674
  };
15054
15675
  type: "pagination";
15055
15676
  visible: boolean;
15677
+ visiblePageCount?: number | undefined;
15056
15678
  })[] | undefined;
15057
15679
  locked?: boolean | undefined;
15058
15680
  name: string;
@@ -15646,6 +16268,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
15646
16268
  } | undefined;
15647
16269
  locked?: boolean | undefined;
15648
16270
  name: string;
16271
+ nextButtonNodeId?: string | undefined;
15649
16272
  numberActiveBackgroundAssetId?: string | undefined;
15650
16273
  numberActiveColor?: string | undefined;
15651
16274
  numberActiveNineSlice?: {
@@ -15674,6 +16297,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
15674
16297
  } | undefined;
15675
16298
  pageCount: number;
15676
16299
  parentId: string | null;
16300
+ prevButtonNodeId?: string | undefined;
15677
16301
  spacing: number;
15678
16302
  style: "dots" | "numbers";
15679
16303
  transform: {
@@ -15693,6 +16317,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
15693
16317
  };
15694
16318
  type: "pagination";
15695
16319
  visible: boolean;
16320
+ visiblePageCount?: number | undefined;
15696
16321
  }>>;
15697
16322
  exposedProperties: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
15698
16323
  name: import("@sinclair/typebox").TString;
@@ -15911,6 +16536,80 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
15911
16536
  };
15912
16537
  type: "opacity-group";
15913
16538
  visible: boolean;
16539
+ } | {
16540
+ bindingKey?: string | undefined;
16541
+ children: string[];
16542
+ editorOnly?: boolean | undefined;
16543
+ id: string;
16544
+ items?: string[] | undefined;
16545
+ layoutItem?: {
16546
+ flexGrow: number;
16547
+ flexShrink: number;
16548
+ flexBasis?: number | undefined;
16549
+ alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
16550
+ } | undefined;
16551
+ layoutOverrides?: {
16552
+ desktop?: {
16553
+ visible?: boolean | undefined;
16554
+ transform?: {
16555
+ x?: number | undefined;
16556
+ y?: number | undefined;
16557
+ width?: number | undefined;
16558
+ height?: number | undefined;
16559
+ scaleX?: number | undefined;
16560
+ scaleY?: number | undefined;
16561
+ rotation?: number | undefined;
16562
+ pivotX?: number | undefined;
16563
+ pivotY?: number | undefined;
16564
+ anchorMinX?: number | undefined;
16565
+ anchorMinY?: number | undefined;
16566
+ anchorMaxX?: number | undefined;
16567
+ anchorMaxY?: number | undefined;
16568
+ } | undefined;
16569
+ } | undefined;
16570
+ mobile?: {
16571
+ visible?: boolean | undefined;
16572
+ transform?: {
16573
+ x?: number | undefined;
16574
+ y?: number | undefined;
16575
+ width?: number | undefined;
16576
+ height?: number | undefined;
16577
+ scaleX?: number | undefined;
16578
+ scaleY?: number | undefined;
16579
+ rotation?: number | undefined;
16580
+ pivotX?: number | undefined;
16581
+ pivotY?: number | undefined;
16582
+ anchorMinX?: number | undefined;
16583
+ anchorMinY?: number | undefined;
16584
+ anchorMaxX?: number | undefined;
16585
+ anchorMaxY?: number | undefined;
16586
+ } | undefined;
16587
+ } | undefined;
16588
+ } | undefined;
16589
+ locked?: boolean | undefined;
16590
+ name: string;
16591
+ parentId: string | null;
16592
+ transform: {
16593
+ x: number;
16594
+ y: number;
16595
+ width: number;
16596
+ height: number;
16597
+ scaleX: number;
16598
+ scaleY: number;
16599
+ rotation: number;
16600
+ pivotX?: number | undefined;
16601
+ pivotY?: number | undefined;
16602
+ anchorMinX?: number | undefined;
16603
+ anchorMinY?: number | undefined;
16604
+ anchorMaxX?: number | undefined;
16605
+ anchorMaxY?: number | undefined;
16606
+ };
16607
+ type: "item-table";
16608
+ visible: boolean;
16609
+ visibleCount: number;
16610
+ visibleCountOverrides?: {
16611
+ mobile?: number | undefined;
16612
+ } | undefined;
15914
16613
  } | {
15915
16614
  backgroundAssetId?: string | undefined;
15916
16615
  bindingKey?: string | undefined;
@@ -17184,6 +17883,80 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
17184
17883
  };
17185
17884
  type: "opacity-group";
17186
17885
  visible: boolean;
17886
+ } | {
17887
+ bindingKey?: string | undefined;
17888
+ children: string[];
17889
+ editorOnly?: boolean | undefined;
17890
+ id: string;
17891
+ items?: string[] | undefined;
17892
+ layoutItem?: {
17893
+ flexGrow: number;
17894
+ flexShrink: number;
17895
+ flexBasis?: number | undefined;
17896
+ alignSelf?: "auto" | "center" | "flex-end" | "flex-start" | "stretch" | undefined;
17897
+ } | undefined;
17898
+ layoutOverrides?: {
17899
+ desktop?: {
17900
+ visible?: boolean | undefined;
17901
+ transform?: {
17902
+ x?: number | undefined;
17903
+ y?: number | undefined;
17904
+ width?: number | undefined;
17905
+ height?: number | undefined;
17906
+ scaleX?: number | undefined;
17907
+ scaleY?: number | undefined;
17908
+ rotation?: number | undefined;
17909
+ pivotX?: number | undefined;
17910
+ pivotY?: number | undefined;
17911
+ anchorMinX?: number | undefined;
17912
+ anchorMinY?: number | undefined;
17913
+ anchorMaxX?: number | undefined;
17914
+ anchorMaxY?: number | undefined;
17915
+ } | undefined;
17916
+ } | undefined;
17917
+ mobile?: {
17918
+ visible?: boolean | undefined;
17919
+ transform?: {
17920
+ x?: number | undefined;
17921
+ y?: number | undefined;
17922
+ width?: number | undefined;
17923
+ height?: number | undefined;
17924
+ scaleX?: number | undefined;
17925
+ scaleY?: number | undefined;
17926
+ rotation?: number | undefined;
17927
+ pivotX?: number | undefined;
17928
+ pivotY?: number | undefined;
17929
+ anchorMinX?: number | undefined;
17930
+ anchorMinY?: number | undefined;
17931
+ anchorMaxX?: number | undefined;
17932
+ anchorMaxY?: number | undefined;
17933
+ } | undefined;
17934
+ } | undefined;
17935
+ } | undefined;
17936
+ locked?: boolean | undefined;
17937
+ name: string;
17938
+ parentId: string | null;
17939
+ transform: {
17940
+ x: number;
17941
+ y: number;
17942
+ width: number;
17943
+ height: number;
17944
+ scaleX: number;
17945
+ scaleY: number;
17946
+ rotation: number;
17947
+ pivotX?: number | undefined;
17948
+ pivotY?: number | undefined;
17949
+ anchorMinX?: number | undefined;
17950
+ anchorMinY?: number | undefined;
17951
+ anchorMaxX?: number | undefined;
17952
+ anchorMaxY?: number | undefined;
17953
+ };
17954
+ type: "item-table";
17955
+ visible: boolean;
17956
+ visibleCount: number;
17957
+ visibleCountOverrides?: {
17958
+ mobile?: number | undefined;
17959
+ } | undefined;
17187
17960
  } | {
17188
17961
  backgroundAssetId?: string | undefined;
17189
17962
  bindingKey?: string | undefined;
@@ -18765,6 +19538,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
18765
19538
  } | undefined;
18766
19539
  locked?: boolean | undefined;
18767
19540
  name: string;
19541
+ nextButtonNodeId?: string | undefined;
18768
19542
  numberActiveBackgroundAssetId?: string | undefined;
18769
19543
  numberActiveColor?: string | undefined;
18770
19544
  numberActiveNineSlice?: {
@@ -18793,6 +19567,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
18793
19567
  } | undefined;
18794
19568
  pageCount: number;
18795
19569
  parentId: string | null;
19570
+ prevButtonNodeId?: string | undefined;
18796
19571
  spacing: number;
18797
19572
  style: "dots" | "numbers";
18798
19573
  transform: {
@@ -18812,6 +19587,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
18812
19587
  };
18813
19588
  type: "pagination";
18814
19589
  visible: boolean;
19590
+ visiblePageCount?: number | undefined;
18815
19591
  })[] | undefined;
18816
19592
  locked?: boolean | undefined;
18817
19593
  name: string;
@@ -19405,6 +20181,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
19405
20181
  } | undefined;
19406
20182
  locked?: boolean | undefined;
19407
20183
  name: string;
20184
+ nextButtonNodeId?: string | undefined;
19408
20185
  numberActiveBackgroundAssetId?: string | undefined;
19409
20186
  numberActiveColor?: string | undefined;
19410
20187
  numberActiveNineSlice?: {
@@ -19433,6 +20210,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
19433
20210
  } | undefined;
19434
20211
  pageCount: number;
19435
20212
  parentId: string | null;
20213
+ prevButtonNodeId?: string | undefined;
19436
20214
  spacing: number;
19437
20215
  style: "dots" | "numbers";
19438
20216
  transform: {
@@ -19452,6 +20230,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
19452
20230
  };
19453
20231
  type: "pagination";
19454
20232
  visible: boolean;
20233
+ visiblePageCount?: number | undefined;
19455
20234
  }>>;
19456
20235
  layout: import("@sinclair/typebox").TObject<{
19457
20236
  referenceViewports: import("@sinclair/typebox").TObject<{