@pixi-ui-editor/schema 0.5.1 → 0.6.1
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 +1932 -81
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +217 -8
- package/dist/index.js.map +1 -1
- package/dist/prefabs.d.ts.map +1 -1
- package/dist/prefabs.js +37 -1
- package/dist/prefabs.js.map +1 -1
- package/package.json +4 -2
- package/dist/assetPaths.test.d.ts +0 -2
- package/dist/assetPaths.test.d.ts.map +0 -1
- package/dist/assetPaths.test.js +0 -26
- package/dist/assetPaths.test.js.map +0 -1
- package/dist/index.test-fixtures.d.ts +0 -20
- package/dist/index.test-fixtures.d.ts.map +0 -1
- package/dist/index.test-fixtures.js +0 -161
- package/dist/index.test-fixtures.js.map +0 -1
- package/dist/index.test.d.ts +0 -2
- package/dist/index.test.d.ts.map +0 -1
- package/dist/index.test.js +0 -458
- package/dist/index.test.js.map +0 -1
- package/dist/manifest.test.d.ts +0 -2
- package/dist/manifest.test.d.ts.map +0 -1
- package/dist/manifest.test.js +0 -35
- package/dist/manifest.test.js.map +0 -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: 33;
|
|
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">]>;
|
|
@@ -72,6 +72,13 @@ export declare const TextStyleDefinitionSchema: import("@sinclair/typebox").TObj
|
|
|
72
72
|
}>>;
|
|
73
73
|
}>;
|
|
74
74
|
export type TextStyleDefinition = Static<typeof TextStyleDefinitionSchema>;
|
|
75
|
+
/** A presentation-time mount point: game code decides when the target follows its Spine part. */
|
|
76
|
+
export declare const SpineConnectorSchema: import("@sinclair/typebox").TObject<{
|
|
77
|
+
partType: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"bone">, import("@sinclair/typebox").TLiteral<"slot">]>;
|
|
78
|
+
partName: import("@sinclair/typebox").TString;
|
|
79
|
+
targetNodeId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>;
|
|
80
|
+
}>;
|
|
81
|
+
export type SpineConnector = Static<typeof SpineConnectorSchema>;
|
|
75
82
|
export declare const PrefabNodeOverrideSchema: import("@sinclair/typebox").TObject<{
|
|
76
83
|
/** Адрес переопределяемого узла внутри инстанса; для вложенных пресетов это путь. */
|
|
77
84
|
nodeId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>;
|
|
@@ -106,6 +113,10 @@ declare const ScrollViewSettings: import("@sinclair/typebox").TObject<{
|
|
|
106
113
|
export type ScrollViewSettings = Static<typeof ScrollViewSettings>;
|
|
107
114
|
declare const InputAlign: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"left">, import("@sinclair/typebox").TLiteral<"center">, import("@sinclair/typebox").TLiteral<"right">]>;
|
|
108
115
|
export type InputAlign = Static<typeof InputAlign>;
|
|
116
|
+
declare const PaginationDirection: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"horizontal">, import("@sinclair/typebox").TLiteral<"vertical">]>;
|
|
117
|
+
export type PaginationDirection = Static<typeof PaginationDirection>;
|
|
118
|
+
declare const PaginationItemStyle: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"dots">, import("@sinclair/typebox").TLiteral<"numbers">]>;
|
|
119
|
+
export type PaginationItemStyle = Static<typeof PaginationItemStyle>;
|
|
109
120
|
export declare const EffectDefinitionSchema: import("@sinclair/typebox").TObject<{
|
|
110
121
|
id: import("@sinclair/typebox").TString;
|
|
111
122
|
name: import("@sinclair/typebox").TString;
|
|
@@ -764,6 +775,7 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
764
775
|
type: import("@sinclair/typebox").TLiteral<"image">;
|
|
765
776
|
assetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
766
777
|
opacity: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
778
|
+
tint: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
767
779
|
nineSlice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
768
780
|
left: import("@sinclair/typebox").TNumber;
|
|
769
781
|
right: import("@sinclair/typebox").TNumber;
|
|
@@ -1066,6 +1078,11 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
1066
1078
|
animationSpeed: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1067
1079
|
}>>;
|
|
1068
1080
|
}>>;
|
|
1081
|
+
connectors: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
1082
|
+
partType: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"bone">, import("@sinclair/typebox").TLiteral<"slot">]>;
|
|
1083
|
+
partName: import("@sinclair/typebox").TString;
|
|
1084
|
+
targetNodeId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>;
|
|
1085
|
+
}>>>;
|
|
1069
1086
|
}>, import("@sinclair/typebox").TObject<{
|
|
1070
1087
|
id: import("@sinclair/typebox").TString;
|
|
1071
1088
|
name: import("@sinclair/typebox").TString;
|
|
@@ -1503,6 +1520,76 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
1503
1520
|
easingEnabled: import("@sinclair/typebox").TBoolean;
|
|
1504
1521
|
shiftWheelHorizontal: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1505
1522
|
}>;
|
|
1523
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1524
|
+
id: import("@sinclair/typebox").TString;
|
|
1525
|
+
name: import("@sinclair/typebox").TString;
|
|
1526
|
+
parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
|
|
1527
|
+
children: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
|
1528
|
+
visible: import("@sinclair/typebox").TBoolean;
|
|
1529
|
+
editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1530
|
+
locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1531
|
+
transform: import("@sinclair/typebox").TObject<{
|
|
1532
|
+
x: import("@sinclair/typebox").TNumber;
|
|
1533
|
+
y: import("@sinclair/typebox").TNumber;
|
|
1534
|
+
width: import("@sinclair/typebox").TNumber;
|
|
1535
|
+
height: import("@sinclair/typebox").TNumber;
|
|
1536
|
+
scaleX: import("@sinclair/typebox").TNumber;
|
|
1537
|
+
scaleY: import("@sinclair/typebox").TNumber;
|
|
1538
|
+
rotation: import("@sinclair/typebox").TNumber;
|
|
1539
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1540
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1541
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1542
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1543
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1544
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1545
|
+
}>;
|
|
1546
|
+
layoutOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1547
|
+
desktop: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1548
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1549
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1550
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1551
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1552
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1553
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1554
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1555
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1556
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1557
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1558
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1559
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1560
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1561
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1562
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1563
|
+
}>>;
|
|
1564
|
+
}>>;
|
|
1565
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1566
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1567
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1568
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1569
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1570
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1571
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1572
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1573
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1574
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1575
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1576
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1577
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1578
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1579
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1580
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1581
|
+
}>>;
|
|
1582
|
+
}>>;
|
|
1583
|
+
}>>;
|
|
1584
|
+
layoutItem: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1585
|
+
flexGrow: import("@sinclair/typebox").TNumber;
|
|
1586
|
+
flexShrink: import("@sinclair/typebox").TNumber;
|
|
1587
|
+
flexBasis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1588
|
+
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">]>>;
|
|
1589
|
+
}>>;
|
|
1590
|
+
bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
1591
|
+
type: import("@sinclair/typebox").TLiteral<"page-group">;
|
|
1592
|
+
defaultPage: import("@sinclair/typebox").TInteger;
|
|
1506
1593
|
}>, import("@sinclair/typebox").TObject<{
|
|
1507
1594
|
id: import("@sinclair/typebox").TString;
|
|
1508
1595
|
name: import("@sinclair/typebox").TString;
|
|
@@ -1855,6 +1942,113 @@ export declare const UINodeSchema: import("@sinclair/typebox").TRecursive<import
|
|
|
1855
1942
|
autoplay: import("@sinclair/typebox").TBoolean;
|
|
1856
1943
|
effectId: import("@sinclair/typebox").TString;
|
|
1857
1944
|
simulationSpace: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"local">, import("@sinclair/typebox").TLiteral<"world">]>;
|
|
1945
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1946
|
+
id: import("@sinclair/typebox").TString;
|
|
1947
|
+
name: import("@sinclair/typebox").TString;
|
|
1948
|
+
parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
|
|
1949
|
+
children: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
|
1950
|
+
visible: import("@sinclair/typebox").TBoolean;
|
|
1951
|
+
editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1952
|
+
locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1953
|
+
transform: import("@sinclair/typebox").TObject<{
|
|
1954
|
+
x: import("@sinclair/typebox").TNumber;
|
|
1955
|
+
y: import("@sinclair/typebox").TNumber;
|
|
1956
|
+
width: import("@sinclair/typebox").TNumber;
|
|
1957
|
+
height: import("@sinclair/typebox").TNumber;
|
|
1958
|
+
scaleX: import("@sinclair/typebox").TNumber;
|
|
1959
|
+
scaleY: import("@sinclair/typebox").TNumber;
|
|
1960
|
+
rotation: import("@sinclair/typebox").TNumber;
|
|
1961
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1962
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1963
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1964
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1965
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1966
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1967
|
+
}>;
|
|
1968
|
+
layoutOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1969
|
+
desktop: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1970
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1971
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1972
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1973
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1974
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1975
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1976
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1977
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1978
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1979
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1980
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1981
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1982
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1983
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1984
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1985
|
+
}>>;
|
|
1986
|
+
}>>;
|
|
1987
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1988
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1989
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
1990
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1991
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1992
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1993
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1994
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1995
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1996
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1997
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1998
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1999
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2000
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2001
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2002
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2003
|
+
}>>;
|
|
2004
|
+
}>>;
|
|
2005
|
+
}>>;
|
|
2006
|
+
layoutItem: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2007
|
+
flexGrow: import("@sinclair/typebox").TNumber;
|
|
2008
|
+
flexShrink: import("@sinclair/typebox").TNumber;
|
|
2009
|
+
flexBasis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2010
|
+
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">]>>;
|
|
2011
|
+
}>>;
|
|
2012
|
+
bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2013
|
+
type: import("@sinclair/typebox").TLiteral<"pagination">;
|
|
2014
|
+
style: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"dots">, import("@sinclair/typebox").TLiteral<"numbers">]>;
|
|
2015
|
+
defaultPage: import("@sinclair/typebox").TInteger;
|
|
2016
|
+
spacing: import("@sinclair/typebox").TNumber;
|
|
2017
|
+
direction: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"horizontal">, import("@sinclair/typebox").TLiteral<"vertical">]>;
|
|
2018
|
+
activeAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2019
|
+
inactiveAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2020
|
+
numberStyle: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2021
|
+
fontAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2022
|
+
fontFamily: import("@sinclair/typebox").TString;
|
|
2023
|
+
fontSize: import("@sinclair/typebox").TNumber;
|
|
2024
|
+
fontWeight: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"300">, import("@sinclair/typebox").TLiteral<"normal">, import("@sinclair/typebox").TLiteral<"500">, import("@sinclair/typebox").TLiteral<"600">, import("@sinclair/typebox").TLiteral<"bold">, import("@sinclair/typebox").TLiteral<"800">]>;
|
|
2025
|
+
fontStyle: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"normal">, import("@sinclair/typebox").TLiteral<"italic">]>;
|
|
2026
|
+
fill: import("@sinclair/typebox").TString;
|
|
2027
|
+
align: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"left">, import("@sinclair/typebox").TLiteral<"center">, import("@sinclair/typebox").TLiteral<"right">, import("@sinclair/typebox").TLiteral<"justify">]>;
|
|
2028
|
+
verticalAlign: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"top">, import("@sinclair/typebox").TLiteral<"middle">, import("@sinclair/typebox").TLiteral<"bottom">]>;
|
|
2029
|
+
wordWrap: import("@sinclair/typebox").TBoolean;
|
|
2030
|
+
breakWords: import("@sinclair/typebox").TBoolean;
|
|
2031
|
+
lineHeight: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2032
|
+
letterSpacing: import("@sinclair/typebox").TNumber;
|
|
2033
|
+
stroke: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2034
|
+
color: import("@sinclair/typebox").TString;
|
|
2035
|
+
width: import("@sinclair/typebox").TNumber;
|
|
2036
|
+
}>>;
|
|
2037
|
+
}>>;
|
|
2038
|
+
numberActiveColor: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2039
|
+
numberActiveBackgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2040
|
+
numberActiveNineSlice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2041
|
+
left: import("@sinclair/typebox").TNumber;
|
|
2042
|
+
right: import("@sinclair/typebox").TNumber;
|
|
2043
|
+
top: import("@sinclair/typebox").TNumber;
|
|
2044
|
+
bottom: import("@sinclair/typebox").TNumber;
|
|
2045
|
+
}>>;
|
|
2046
|
+
pageCount: import("@sinclair/typebox").TInteger;
|
|
2047
|
+
dotSize: import("@sinclair/typebox").TObject<{
|
|
2048
|
+
width: import("@sinclair/typebox").TNumber;
|
|
2049
|
+
height: import("@sinclair/typebox").TNumber;
|
|
2050
|
+
}>;
|
|
2051
|
+
clickable: import("@sinclair/typebox").TBoolean;
|
|
1858
2052
|
}>]>>;
|
|
1859
2053
|
export type UINode = Static<typeof UINodeSchema>;
|
|
1860
2054
|
/** Исторический псевдоним: локальное добавление больше ничем не ограничено по сравнению с узлом сцены. */
|
|
@@ -2430,6 +2624,7 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
2430
2624
|
type: import("@sinclair/typebox").TLiteral<"image">;
|
|
2431
2625
|
assetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2432
2626
|
opacity: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2627
|
+
tint: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
2433
2628
|
nineSlice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
2434
2629
|
left: import("@sinclair/typebox").TNumber;
|
|
2435
2630
|
right: import("@sinclair/typebox").TNumber;
|
|
@@ -2732,6 +2927,11 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
2732
2927
|
animationSpeed: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
2733
2928
|
}>>;
|
|
2734
2929
|
}>>;
|
|
2930
|
+
connectors: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
2931
|
+
partType: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"bone">, import("@sinclair/typebox").TLiteral<"slot">]>;
|
|
2932
|
+
partName: import("@sinclair/typebox").TString;
|
|
2933
|
+
targetNodeId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>;
|
|
2934
|
+
}>>>;
|
|
2735
2935
|
}>, import("@sinclair/typebox").TObject<{
|
|
2736
2936
|
id: import("@sinclair/typebox").TString;
|
|
2737
2937
|
name: import("@sinclair/typebox").TString;
|
|
@@ -3169,6 +3369,76 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
3169
3369
|
easingEnabled: import("@sinclair/typebox").TBoolean;
|
|
3170
3370
|
shiftWheelHorizontal: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3171
3371
|
}>;
|
|
3372
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
3373
|
+
id: import("@sinclair/typebox").TString;
|
|
3374
|
+
name: import("@sinclair/typebox").TString;
|
|
3375
|
+
parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
|
|
3376
|
+
children: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
|
3377
|
+
visible: import("@sinclair/typebox").TBoolean;
|
|
3378
|
+
editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3379
|
+
locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3380
|
+
transform: import("@sinclair/typebox").TObject<{
|
|
3381
|
+
x: import("@sinclair/typebox").TNumber;
|
|
3382
|
+
y: import("@sinclair/typebox").TNumber;
|
|
3383
|
+
width: import("@sinclair/typebox").TNumber;
|
|
3384
|
+
height: import("@sinclair/typebox").TNumber;
|
|
3385
|
+
scaleX: import("@sinclair/typebox").TNumber;
|
|
3386
|
+
scaleY: import("@sinclair/typebox").TNumber;
|
|
3387
|
+
rotation: import("@sinclair/typebox").TNumber;
|
|
3388
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3389
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3390
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3391
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3392
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3393
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3394
|
+
}>;
|
|
3395
|
+
layoutOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3396
|
+
desktop: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3397
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3398
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3399
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3400
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3401
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3402
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3403
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3404
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3405
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3406
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3407
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3408
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3409
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3410
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3411
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3412
|
+
}>>;
|
|
3413
|
+
}>>;
|
|
3414
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3415
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3416
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3417
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3418
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3419
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3420
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3421
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3422
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3423
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3424
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3425
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3426
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3427
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3428
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3429
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3430
|
+
}>>;
|
|
3431
|
+
}>>;
|
|
3432
|
+
}>>;
|
|
3433
|
+
layoutItem: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3434
|
+
flexGrow: import("@sinclair/typebox").TNumber;
|
|
3435
|
+
flexShrink: import("@sinclair/typebox").TNumber;
|
|
3436
|
+
flexBasis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3437
|
+
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">]>>;
|
|
3438
|
+
}>>;
|
|
3439
|
+
bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3440
|
+
type: import("@sinclair/typebox").TLiteral<"page-group">;
|
|
3441
|
+
defaultPage: import("@sinclair/typebox").TInteger;
|
|
3172
3442
|
}>, import("@sinclair/typebox").TObject<{
|
|
3173
3443
|
id: import("@sinclair/typebox").TString;
|
|
3174
3444
|
name: import("@sinclair/typebox").TString;
|
|
@@ -3521,30 +3791,144 @@ export declare const LocallyAddedNodeSchema: import("@sinclair/typebox").TRecurs
|
|
|
3521
3791
|
autoplay: import("@sinclair/typebox").TBoolean;
|
|
3522
3792
|
effectId: import("@sinclair/typebox").TString;
|
|
3523
3793
|
simulationSpace: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"local">, import("@sinclair/typebox").TLiteral<"world">]>;
|
|
3524
|
-
}
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
}>;
|
|
3547
|
-
|
|
3794
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
3795
|
+
id: import("@sinclair/typebox").TString;
|
|
3796
|
+
name: import("@sinclair/typebox").TString;
|
|
3797
|
+
parentId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>, import("@sinclair/typebox").TNull]>;
|
|
3798
|
+
children: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
|
3799
|
+
visible: import("@sinclair/typebox").TBoolean;
|
|
3800
|
+
editorOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3801
|
+
locked: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3802
|
+
transform: import("@sinclair/typebox").TObject<{
|
|
3803
|
+
x: import("@sinclair/typebox").TNumber;
|
|
3804
|
+
y: import("@sinclair/typebox").TNumber;
|
|
3805
|
+
width: import("@sinclair/typebox").TNumber;
|
|
3806
|
+
height: import("@sinclair/typebox").TNumber;
|
|
3807
|
+
scaleX: import("@sinclair/typebox").TNumber;
|
|
3808
|
+
scaleY: import("@sinclair/typebox").TNumber;
|
|
3809
|
+
rotation: import("@sinclair/typebox").TNumber;
|
|
3810
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3811
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3812
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3813
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3814
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3815
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3816
|
+
}>;
|
|
3817
|
+
layoutOverrides: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3818
|
+
desktop: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3819
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3820
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3821
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3822
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3823
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3824
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3825
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3826
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3827
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3828
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3829
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3830
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3831
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3832
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3833
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3834
|
+
}>>;
|
|
3835
|
+
}>>;
|
|
3836
|
+
mobile: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3837
|
+
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
3838
|
+
transform: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3839
|
+
x: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3840
|
+
y: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3841
|
+
width: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3842
|
+
height: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3843
|
+
scaleX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3844
|
+
scaleY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3845
|
+
rotation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3846
|
+
pivotX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3847
|
+
pivotY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3848
|
+
anchorMinX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3849
|
+
anchorMinY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3850
|
+
anchorMaxX: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3851
|
+
anchorMaxY: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3852
|
+
}>>;
|
|
3853
|
+
}>>;
|
|
3854
|
+
}>>;
|
|
3855
|
+
layoutItem: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3856
|
+
flexGrow: import("@sinclair/typebox").TNumber;
|
|
3857
|
+
flexShrink: import("@sinclair/typebox").TNumber;
|
|
3858
|
+
flexBasis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3859
|
+
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">]>>;
|
|
3860
|
+
}>>;
|
|
3861
|
+
bindingKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3862
|
+
type: import("@sinclair/typebox").TLiteral<"pagination">;
|
|
3863
|
+
style: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"dots">, import("@sinclair/typebox").TLiteral<"numbers">]>;
|
|
3864
|
+
defaultPage: import("@sinclair/typebox").TInteger;
|
|
3865
|
+
spacing: import("@sinclair/typebox").TNumber;
|
|
3866
|
+
direction: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"horizontal">, import("@sinclair/typebox").TLiteral<"vertical">]>;
|
|
3867
|
+
activeAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3868
|
+
inactiveAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3869
|
+
numberStyle: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3870
|
+
fontAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3871
|
+
fontFamily: import("@sinclair/typebox").TString;
|
|
3872
|
+
fontSize: import("@sinclair/typebox").TNumber;
|
|
3873
|
+
fontWeight: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"300">, import("@sinclair/typebox").TLiteral<"normal">, import("@sinclair/typebox").TLiteral<"500">, import("@sinclair/typebox").TLiteral<"600">, import("@sinclair/typebox").TLiteral<"bold">, import("@sinclair/typebox").TLiteral<"800">]>;
|
|
3874
|
+
fontStyle: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"normal">, import("@sinclair/typebox").TLiteral<"italic">]>;
|
|
3875
|
+
fill: import("@sinclair/typebox").TString;
|
|
3876
|
+
align: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"left">, import("@sinclair/typebox").TLiteral<"center">, import("@sinclair/typebox").TLiteral<"right">, import("@sinclair/typebox").TLiteral<"justify">]>;
|
|
3877
|
+
verticalAlign: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"top">, import("@sinclair/typebox").TLiteral<"middle">, import("@sinclair/typebox").TLiteral<"bottom">]>;
|
|
3878
|
+
wordWrap: import("@sinclair/typebox").TBoolean;
|
|
3879
|
+
breakWords: import("@sinclair/typebox").TBoolean;
|
|
3880
|
+
lineHeight: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
3881
|
+
letterSpacing: import("@sinclair/typebox").TNumber;
|
|
3882
|
+
stroke: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3883
|
+
color: import("@sinclair/typebox").TString;
|
|
3884
|
+
width: import("@sinclair/typebox").TNumber;
|
|
3885
|
+
}>>;
|
|
3886
|
+
}>>;
|
|
3887
|
+
numberActiveColor: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3888
|
+
numberActiveBackgroundAssetId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3889
|
+
numberActiveNineSlice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
3890
|
+
left: import("@sinclair/typebox").TNumber;
|
|
3891
|
+
right: import("@sinclair/typebox").TNumber;
|
|
3892
|
+
top: import("@sinclair/typebox").TNumber;
|
|
3893
|
+
bottom: import("@sinclair/typebox").TNumber;
|
|
3894
|
+
}>>;
|
|
3895
|
+
pageCount: import("@sinclair/typebox").TInteger;
|
|
3896
|
+
dotSize: import("@sinclair/typebox").TObject<{
|
|
3897
|
+
width: import("@sinclair/typebox").TNumber;
|
|
3898
|
+
height: import("@sinclair/typebox").TNumber;
|
|
3899
|
+
}>;
|
|
3900
|
+
clickable: import("@sinclair/typebox").TBoolean;
|
|
3901
|
+
}>]>>;
|
|
3902
|
+
export type LocallyAddedNode = UINode;
|
|
3903
|
+
export type LayoutGroupNode = Extract<UINode, {
|
|
3904
|
+
type: "horizontal-layout" | "vertical-layout" | "grid-layout";
|
|
3905
|
+
}>;
|
|
3906
|
+
export declare function isLayoutGroup(node: UINode): node is LayoutGroupNode;
|
|
3907
|
+
export declare function resolveLayoutGroupSettings<T extends LayoutGroupNode["layoutGroup"]["base"]>(node: LayoutGroupNode, profile: LayoutProfileId): T;
|
|
3908
|
+
export type ScrollViewNode = Extract<UINode, {
|
|
3909
|
+
type: "scroll-view";
|
|
3910
|
+
}>;
|
|
3911
|
+
export declare function isScrollView(node: UINode): node is ScrollViewNode;
|
|
3912
|
+
export type PageGroupNode = Extract<UINode, {
|
|
3913
|
+
type: "page-group";
|
|
3914
|
+
}>;
|
|
3915
|
+
export declare function isPageGroup(node: UINode): node is PageGroupNode;
|
|
3916
|
+
/** A direct child of this node does not own its own position: a layout group's Yoga solver, a scroll-view's `@pixi/ui` List, or a page group's single-visible-child switch does. */
|
|
3917
|
+
export declare function isPositionManagingContainer(node: UINode): boolean;
|
|
3918
|
+
export type TextNode = Extract<UINode, {
|
|
3919
|
+
type: "text";
|
|
3920
|
+
}>;
|
|
3921
|
+
export declare function isTextNode(node: UINode): node is TextNode;
|
|
3922
|
+
export type SpineNode = Extract<UINode, {
|
|
3923
|
+
type: "spine";
|
|
3924
|
+
}>;
|
|
3925
|
+
export type BitmapTextNode = Extract<UINode, {
|
|
3926
|
+
type: "bitmap-text";
|
|
3927
|
+
}>;
|
|
3928
|
+
export type ImageNode = Extract<UINode, {
|
|
3929
|
+
type: "image";
|
|
3930
|
+
}>;
|
|
3931
|
+
export type InputNode = Extract<UINode, {
|
|
3548
3932
|
type: "input";
|
|
3549
3933
|
}>;
|
|
3550
3934
|
export type CheckboxNode = Extract<UINode, {
|
|
@@ -3556,6 +3940,9 @@ export type SliderNode = Extract<UINode, {
|
|
|
3556
3940
|
export type ProgressBarNode = Extract<UINode, {
|
|
3557
3941
|
type: "progress-bar";
|
|
3558
3942
|
}>;
|
|
3943
|
+
export type PaginationNode = Extract<UINode, {
|
|
3944
|
+
type: "pagination";
|
|
3945
|
+
}>;
|
|
3559
3946
|
export type ParticleEmitterNode = Extract<UINode, {
|
|
3560
3947
|
type: "particle-emitter";
|
|
3561
3948
|
}>;
|
|
@@ -4118,6 +4505,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
4118
4505
|
bindingKey?: string | undefined;
|
|
4119
4506
|
assetId?: string | undefined;
|
|
4120
4507
|
opacity?: number | undefined;
|
|
4508
|
+
tint?: string | undefined;
|
|
4121
4509
|
nineSlice?: {
|
|
4122
4510
|
left: number;
|
|
4123
4511
|
right: number;
|
|
@@ -4419,6 +4807,11 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
4419
4807
|
animationSpeed?: number | undefined;
|
|
4420
4808
|
} | undefined;
|
|
4421
4809
|
} | undefined;
|
|
4810
|
+
connectors?: {
|
|
4811
|
+
partType: "bone" | "slot";
|
|
4812
|
+
partName: string;
|
|
4813
|
+
targetNodeId: string;
|
|
4814
|
+
}[] | undefined;
|
|
4422
4815
|
id: string;
|
|
4423
4816
|
name: string;
|
|
4424
4817
|
parentId: string | null;
|
|
@@ -5320,6 +5713,7 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
5320
5713
|
bindingKey?: string | undefined;
|
|
5321
5714
|
assetId?: string | undefined;
|
|
5322
5715
|
opacity?: number | undefined;
|
|
5716
|
+
tint?: string | undefined;
|
|
5323
5717
|
nineSlice?: {
|
|
5324
5718
|
left: number;
|
|
5325
5719
|
right: number;
|
|
@@ -5621,6 +6015,11 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
5621
6015
|
animationSpeed?: number | undefined;
|
|
5622
6016
|
} | undefined;
|
|
5623
6017
|
} | undefined;
|
|
6018
|
+
connectors?: {
|
|
6019
|
+
partType: "bone" | "slot";
|
|
6020
|
+
partName: string;
|
|
6021
|
+
targetNodeId: string;
|
|
6022
|
+
}[] | undefined;
|
|
5624
6023
|
id: string;
|
|
5625
6024
|
name: string;
|
|
5626
6025
|
parentId: string | null;
|
|
@@ -6000,6 +6399,76 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
6000
6399
|
cornerRadius: number;
|
|
6001
6400
|
easingEnabled: boolean;
|
|
6002
6401
|
};
|
|
6402
|
+
} | {
|
|
6403
|
+
editorOnly?: boolean | undefined;
|
|
6404
|
+
locked?: boolean | undefined;
|
|
6405
|
+
layoutOverrides?: {
|
|
6406
|
+
desktop?: {
|
|
6407
|
+
visible?: boolean | undefined;
|
|
6408
|
+
transform?: {
|
|
6409
|
+
x?: number | undefined;
|
|
6410
|
+
y?: number | undefined;
|
|
6411
|
+
width?: number | undefined;
|
|
6412
|
+
height?: number | undefined;
|
|
6413
|
+
scaleX?: number | undefined;
|
|
6414
|
+
scaleY?: number | undefined;
|
|
6415
|
+
rotation?: number | undefined;
|
|
6416
|
+
pivotX?: number | undefined;
|
|
6417
|
+
pivotY?: number | undefined;
|
|
6418
|
+
anchorMinX?: number | undefined;
|
|
6419
|
+
anchorMinY?: number | undefined;
|
|
6420
|
+
anchorMaxX?: number | undefined;
|
|
6421
|
+
anchorMaxY?: number | undefined;
|
|
6422
|
+
} | undefined;
|
|
6423
|
+
} | undefined;
|
|
6424
|
+
mobile?: {
|
|
6425
|
+
visible?: boolean | undefined;
|
|
6426
|
+
transform?: {
|
|
6427
|
+
x?: number | undefined;
|
|
6428
|
+
y?: number | undefined;
|
|
6429
|
+
width?: number | undefined;
|
|
6430
|
+
height?: number | undefined;
|
|
6431
|
+
scaleX?: number | undefined;
|
|
6432
|
+
scaleY?: number | undefined;
|
|
6433
|
+
rotation?: number | undefined;
|
|
6434
|
+
pivotX?: number | undefined;
|
|
6435
|
+
pivotY?: number | undefined;
|
|
6436
|
+
anchorMinX?: number | undefined;
|
|
6437
|
+
anchorMinY?: number | undefined;
|
|
6438
|
+
anchorMaxX?: number | undefined;
|
|
6439
|
+
anchorMaxY?: number | undefined;
|
|
6440
|
+
} | undefined;
|
|
6441
|
+
} | undefined;
|
|
6442
|
+
} | undefined;
|
|
6443
|
+
layoutItem?: {
|
|
6444
|
+
flexBasis?: number | undefined;
|
|
6445
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
6446
|
+
flexGrow: number;
|
|
6447
|
+
flexShrink: number;
|
|
6448
|
+
} | undefined;
|
|
6449
|
+
bindingKey?: string | undefined;
|
|
6450
|
+
id: string;
|
|
6451
|
+
name: string;
|
|
6452
|
+
parentId: string | null;
|
|
6453
|
+
children: string[];
|
|
6454
|
+
visible: boolean;
|
|
6455
|
+
transform: {
|
|
6456
|
+
pivotX?: number | undefined;
|
|
6457
|
+
pivotY?: number | undefined;
|
|
6458
|
+
anchorMinX?: number | undefined;
|
|
6459
|
+
anchorMinY?: number | undefined;
|
|
6460
|
+
anchorMaxX?: number | undefined;
|
|
6461
|
+
anchorMaxY?: number | undefined;
|
|
6462
|
+
x: number;
|
|
6463
|
+
y: number;
|
|
6464
|
+
width: number;
|
|
6465
|
+
height: number;
|
|
6466
|
+
scaleX: number;
|
|
6467
|
+
scaleY: number;
|
|
6468
|
+
rotation: number;
|
|
6469
|
+
};
|
|
6470
|
+
type: "page-group";
|
|
6471
|
+
defaultPage: number;
|
|
6003
6472
|
} | {
|
|
6004
6473
|
editorOnly?: boolean | undefined;
|
|
6005
6474
|
locked?: boolean | undefined;
|
|
@@ -6352,52 +6821,159 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
6352
6821
|
autoplay: boolean;
|
|
6353
6822
|
effectId: string;
|
|
6354
6823
|
simulationSpace: "local" | "world";
|
|
6355
|
-
}
|
|
6356
|
-
|
|
6357
|
-
|
|
6358
|
-
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
|
|
6366
|
-
|
|
6367
|
-
|
|
6368
|
-
|
|
6369
|
-
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
|
|
6375
|
-
|
|
6376
|
-
type: "prefab-instance";
|
|
6377
|
-
prefabId: string;
|
|
6378
|
-
} | {
|
|
6379
|
-
editorOnly?: boolean | undefined;
|
|
6380
|
-
locked?: boolean | undefined;
|
|
6381
|
-
layoutOverrides?: {
|
|
6382
|
-
desktop?: {
|
|
6383
|
-
visible?: boolean | undefined;
|
|
6384
|
-
transform?: {
|
|
6385
|
-
x?: number | undefined;
|
|
6386
|
-
y?: number | undefined;
|
|
6387
|
-
width?: number | undefined;
|
|
6388
|
-
height?: number | undefined;
|
|
6389
|
-
scaleX?: number | undefined;
|
|
6390
|
-
scaleY?: number | undefined;
|
|
6391
|
-
rotation?: number | undefined;
|
|
6392
|
-
pivotX?: number | undefined;
|
|
6393
|
-
pivotY?: number | undefined;
|
|
6394
|
-
anchorMinX?: number | undefined;
|
|
6395
|
-
anchorMinY?: number | undefined;
|
|
6396
|
-
anchorMaxX?: number | undefined;
|
|
6397
|
-
anchorMaxY?: number | undefined;
|
|
6824
|
+
} | {
|
|
6825
|
+
editorOnly?: boolean | undefined;
|
|
6826
|
+
locked?: boolean | undefined;
|
|
6827
|
+
layoutOverrides?: {
|
|
6828
|
+
desktop?: {
|
|
6829
|
+
visible?: boolean | undefined;
|
|
6830
|
+
transform?: {
|
|
6831
|
+
x?: number | undefined;
|
|
6832
|
+
y?: number | undefined;
|
|
6833
|
+
width?: number | undefined;
|
|
6834
|
+
height?: number | undefined;
|
|
6835
|
+
scaleX?: number | undefined;
|
|
6836
|
+
scaleY?: number | undefined;
|
|
6837
|
+
rotation?: number | undefined;
|
|
6838
|
+
pivotX?: number | undefined;
|
|
6839
|
+
pivotY?: number | undefined;
|
|
6840
|
+
anchorMinX?: number | undefined;
|
|
6841
|
+
anchorMinY?: number | undefined;
|
|
6842
|
+
anchorMaxX?: number | undefined;
|
|
6843
|
+
anchorMaxY?: number | undefined;
|
|
6844
|
+
} | undefined;
|
|
6398
6845
|
} | undefined;
|
|
6399
|
-
|
|
6400
|
-
|
|
6846
|
+
mobile?: {
|
|
6847
|
+
visible?: boolean | undefined;
|
|
6848
|
+
transform?: {
|
|
6849
|
+
x?: number | undefined;
|
|
6850
|
+
y?: number | undefined;
|
|
6851
|
+
width?: number | undefined;
|
|
6852
|
+
height?: number | undefined;
|
|
6853
|
+
scaleX?: number | undefined;
|
|
6854
|
+
scaleY?: number | undefined;
|
|
6855
|
+
rotation?: number | undefined;
|
|
6856
|
+
pivotX?: number | undefined;
|
|
6857
|
+
pivotY?: number | undefined;
|
|
6858
|
+
anchorMinX?: number | undefined;
|
|
6859
|
+
anchorMinY?: number | undefined;
|
|
6860
|
+
anchorMaxX?: number | undefined;
|
|
6861
|
+
anchorMaxY?: number | undefined;
|
|
6862
|
+
} | undefined;
|
|
6863
|
+
} | undefined;
|
|
6864
|
+
} | undefined;
|
|
6865
|
+
layoutItem?: {
|
|
6866
|
+
flexBasis?: number | undefined;
|
|
6867
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
6868
|
+
flexGrow: number;
|
|
6869
|
+
flexShrink: number;
|
|
6870
|
+
} | undefined;
|
|
6871
|
+
bindingKey?: string | undefined;
|
|
6872
|
+
activeAssetId?: string | undefined;
|
|
6873
|
+
inactiveAssetId?: string | undefined;
|
|
6874
|
+
numberStyle?: {
|
|
6875
|
+
fontAssetId?: string | undefined;
|
|
6876
|
+
lineHeight?: number | undefined;
|
|
6877
|
+
stroke?: {
|
|
6878
|
+
width: number;
|
|
6879
|
+
color: string;
|
|
6880
|
+
} | undefined;
|
|
6881
|
+
fontFamily: string;
|
|
6882
|
+
fontSize: number;
|
|
6883
|
+
fontWeight: "300" | "normal" | "500" | "600" | "bold" | "800";
|
|
6884
|
+
fontStyle: "normal" | "italic";
|
|
6885
|
+
fill: string;
|
|
6886
|
+
align: "center" | "left" | "right" | "justify";
|
|
6887
|
+
verticalAlign: "top" | "bottom" | "middle";
|
|
6888
|
+
wordWrap: boolean;
|
|
6889
|
+
breakWords: boolean;
|
|
6890
|
+
letterSpacing: number;
|
|
6891
|
+
} | undefined;
|
|
6892
|
+
numberActiveColor?: string | undefined;
|
|
6893
|
+
numberActiveBackgroundAssetId?: string | undefined;
|
|
6894
|
+
numberActiveNineSlice?: {
|
|
6895
|
+
left: number;
|
|
6896
|
+
right: number;
|
|
6897
|
+
top: number;
|
|
6898
|
+
bottom: number;
|
|
6899
|
+
} | undefined;
|
|
6900
|
+
id: string;
|
|
6901
|
+
name: string;
|
|
6902
|
+
parentId: string | null;
|
|
6903
|
+
children: string[];
|
|
6904
|
+
visible: boolean;
|
|
6905
|
+
transform: {
|
|
6906
|
+
pivotX?: number | undefined;
|
|
6907
|
+
pivotY?: number | undefined;
|
|
6908
|
+
anchorMinX?: number | undefined;
|
|
6909
|
+
anchorMinY?: number | undefined;
|
|
6910
|
+
anchorMaxX?: number | undefined;
|
|
6911
|
+
anchorMaxY?: number | undefined;
|
|
6912
|
+
x: number;
|
|
6913
|
+
y: number;
|
|
6914
|
+
width: number;
|
|
6915
|
+
height: number;
|
|
6916
|
+
scaleX: number;
|
|
6917
|
+
scaleY: number;
|
|
6918
|
+
rotation: number;
|
|
6919
|
+
};
|
|
6920
|
+
type: "pagination";
|
|
6921
|
+
spacing: number;
|
|
6922
|
+
style: "dots" | "numbers";
|
|
6923
|
+
direction: "horizontal" | "vertical";
|
|
6924
|
+
defaultPage: number;
|
|
6925
|
+
pageCount: number;
|
|
6926
|
+
dotSize: {
|
|
6927
|
+
width: number;
|
|
6928
|
+
height: number;
|
|
6929
|
+
};
|
|
6930
|
+
clickable: boolean;
|
|
6931
|
+
})[] | undefined;
|
|
6932
|
+
id: string;
|
|
6933
|
+
name: string;
|
|
6934
|
+
parentId: string | null;
|
|
6935
|
+
children: string[];
|
|
6936
|
+
visible: boolean;
|
|
6937
|
+
transform: {
|
|
6938
|
+
pivotX?: number | undefined;
|
|
6939
|
+
pivotY?: number | undefined;
|
|
6940
|
+
anchorMinX?: number | undefined;
|
|
6941
|
+
anchorMinY?: number | undefined;
|
|
6942
|
+
anchorMaxX?: number | undefined;
|
|
6943
|
+
anchorMaxY?: number | undefined;
|
|
6944
|
+
x: number;
|
|
6945
|
+
y: number;
|
|
6946
|
+
width: number;
|
|
6947
|
+
height: number;
|
|
6948
|
+
scaleX: number;
|
|
6949
|
+
scaleY: number;
|
|
6950
|
+
rotation: number;
|
|
6951
|
+
};
|
|
6952
|
+
type: "prefab-instance";
|
|
6953
|
+
prefabId: string;
|
|
6954
|
+
} | {
|
|
6955
|
+
editorOnly?: boolean | undefined;
|
|
6956
|
+
locked?: boolean | undefined;
|
|
6957
|
+
layoutOverrides?: {
|
|
6958
|
+
desktop?: {
|
|
6959
|
+
visible?: boolean | undefined;
|
|
6960
|
+
transform?: {
|
|
6961
|
+
x?: number | undefined;
|
|
6962
|
+
y?: number | undefined;
|
|
6963
|
+
width?: number | undefined;
|
|
6964
|
+
height?: number | undefined;
|
|
6965
|
+
scaleX?: number | undefined;
|
|
6966
|
+
scaleY?: number | undefined;
|
|
6967
|
+
rotation?: number | undefined;
|
|
6968
|
+
pivotX?: number | undefined;
|
|
6969
|
+
pivotY?: number | undefined;
|
|
6970
|
+
anchorMinX?: number | undefined;
|
|
6971
|
+
anchorMinY?: number | undefined;
|
|
6972
|
+
anchorMaxX?: number | undefined;
|
|
6973
|
+
anchorMaxY?: number | undefined;
|
|
6974
|
+
} | undefined;
|
|
6975
|
+
} | undefined;
|
|
6976
|
+
mobile?: {
|
|
6401
6977
|
visible?: boolean | undefined;
|
|
6402
6978
|
transform?: {
|
|
6403
6979
|
x?: number | undefined;
|
|
@@ -6458,6 +7034,76 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
6458
7034
|
cornerRadius: number;
|
|
6459
7035
|
easingEnabled: boolean;
|
|
6460
7036
|
};
|
|
7037
|
+
} | {
|
|
7038
|
+
editorOnly?: boolean | undefined;
|
|
7039
|
+
locked?: boolean | undefined;
|
|
7040
|
+
layoutOverrides?: {
|
|
7041
|
+
desktop?: {
|
|
7042
|
+
visible?: boolean | undefined;
|
|
7043
|
+
transform?: {
|
|
7044
|
+
x?: number | undefined;
|
|
7045
|
+
y?: number | undefined;
|
|
7046
|
+
width?: number | undefined;
|
|
7047
|
+
height?: number | undefined;
|
|
7048
|
+
scaleX?: number | undefined;
|
|
7049
|
+
scaleY?: number | undefined;
|
|
7050
|
+
rotation?: number | undefined;
|
|
7051
|
+
pivotX?: number | undefined;
|
|
7052
|
+
pivotY?: number | undefined;
|
|
7053
|
+
anchorMinX?: number | undefined;
|
|
7054
|
+
anchorMinY?: number | undefined;
|
|
7055
|
+
anchorMaxX?: number | undefined;
|
|
7056
|
+
anchorMaxY?: number | undefined;
|
|
7057
|
+
} | undefined;
|
|
7058
|
+
} | undefined;
|
|
7059
|
+
mobile?: {
|
|
7060
|
+
visible?: boolean | undefined;
|
|
7061
|
+
transform?: {
|
|
7062
|
+
x?: number | undefined;
|
|
7063
|
+
y?: number | undefined;
|
|
7064
|
+
width?: number | undefined;
|
|
7065
|
+
height?: number | undefined;
|
|
7066
|
+
scaleX?: number | undefined;
|
|
7067
|
+
scaleY?: number | undefined;
|
|
7068
|
+
rotation?: number | undefined;
|
|
7069
|
+
pivotX?: number | undefined;
|
|
7070
|
+
pivotY?: number | undefined;
|
|
7071
|
+
anchorMinX?: number | undefined;
|
|
7072
|
+
anchorMinY?: number | undefined;
|
|
7073
|
+
anchorMaxX?: number | undefined;
|
|
7074
|
+
anchorMaxY?: number | undefined;
|
|
7075
|
+
} | undefined;
|
|
7076
|
+
} | undefined;
|
|
7077
|
+
} | undefined;
|
|
7078
|
+
layoutItem?: {
|
|
7079
|
+
flexBasis?: number | undefined;
|
|
7080
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
7081
|
+
flexGrow: number;
|
|
7082
|
+
flexShrink: number;
|
|
7083
|
+
} | undefined;
|
|
7084
|
+
bindingKey?: string | undefined;
|
|
7085
|
+
id: string;
|
|
7086
|
+
name: string;
|
|
7087
|
+
parentId: string | null;
|
|
7088
|
+
children: string[];
|
|
7089
|
+
visible: boolean;
|
|
7090
|
+
transform: {
|
|
7091
|
+
pivotX?: number | undefined;
|
|
7092
|
+
pivotY?: number | undefined;
|
|
7093
|
+
anchorMinX?: number | undefined;
|
|
7094
|
+
anchorMinY?: number | undefined;
|
|
7095
|
+
anchorMaxX?: number | undefined;
|
|
7096
|
+
anchorMaxY?: number | undefined;
|
|
7097
|
+
x: number;
|
|
7098
|
+
y: number;
|
|
7099
|
+
width: number;
|
|
7100
|
+
height: number;
|
|
7101
|
+
scaleX: number;
|
|
7102
|
+
scaleY: number;
|
|
7103
|
+
rotation: number;
|
|
7104
|
+
};
|
|
7105
|
+
type: "page-group";
|
|
7106
|
+
defaultPage: number;
|
|
6461
7107
|
} | {
|
|
6462
7108
|
editorOnly?: boolean | undefined;
|
|
6463
7109
|
locked?: boolean | undefined;
|
|
@@ -6810,6 +7456,113 @@ export declare const SceneSchema: import("@sinclair/typebox").TObject<{
|
|
|
6810
7456
|
autoplay: boolean;
|
|
6811
7457
|
effectId: string;
|
|
6812
7458
|
simulationSpace: "local" | "world";
|
|
7459
|
+
} | {
|
|
7460
|
+
editorOnly?: boolean | undefined;
|
|
7461
|
+
locked?: boolean | undefined;
|
|
7462
|
+
layoutOverrides?: {
|
|
7463
|
+
desktop?: {
|
|
7464
|
+
visible?: boolean | undefined;
|
|
7465
|
+
transform?: {
|
|
7466
|
+
x?: number | undefined;
|
|
7467
|
+
y?: number | undefined;
|
|
7468
|
+
width?: number | undefined;
|
|
7469
|
+
height?: number | undefined;
|
|
7470
|
+
scaleX?: number | undefined;
|
|
7471
|
+
scaleY?: number | undefined;
|
|
7472
|
+
rotation?: number | undefined;
|
|
7473
|
+
pivotX?: number | undefined;
|
|
7474
|
+
pivotY?: number | undefined;
|
|
7475
|
+
anchorMinX?: number | undefined;
|
|
7476
|
+
anchorMinY?: number | undefined;
|
|
7477
|
+
anchorMaxX?: number | undefined;
|
|
7478
|
+
anchorMaxY?: number | undefined;
|
|
7479
|
+
} | undefined;
|
|
7480
|
+
} | undefined;
|
|
7481
|
+
mobile?: {
|
|
7482
|
+
visible?: boolean | undefined;
|
|
7483
|
+
transform?: {
|
|
7484
|
+
x?: number | undefined;
|
|
7485
|
+
y?: number | undefined;
|
|
7486
|
+
width?: number | undefined;
|
|
7487
|
+
height?: number | undefined;
|
|
7488
|
+
scaleX?: number | undefined;
|
|
7489
|
+
scaleY?: number | undefined;
|
|
7490
|
+
rotation?: number | undefined;
|
|
7491
|
+
pivotX?: number | undefined;
|
|
7492
|
+
pivotY?: number | undefined;
|
|
7493
|
+
anchorMinX?: number | undefined;
|
|
7494
|
+
anchorMinY?: number | undefined;
|
|
7495
|
+
anchorMaxX?: number | undefined;
|
|
7496
|
+
anchorMaxY?: number | undefined;
|
|
7497
|
+
} | undefined;
|
|
7498
|
+
} | undefined;
|
|
7499
|
+
} | undefined;
|
|
7500
|
+
layoutItem?: {
|
|
7501
|
+
flexBasis?: number | undefined;
|
|
7502
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
7503
|
+
flexGrow: number;
|
|
7504
|
+
flexShrink: number;
|
|
7505
|
+
} | undefined;
|
|
7506
|
+
bindingKey?: string | undefined;
|
|
7507
|
+
activeAssetId?: string | undefined;
|
|
7508
|
+
inactiveAssetId?: string | undefined;
|
|
7509
|
+
numberStyle?: {
|
|
7510
|
+
fontAssetId?: string | undefined;
|
|
7511
|
+
lineHeight?: number | undefined;
|
|
7512
|
+
stroke?: {
|
|
7513
|
+
width: number;
|
|
7514
|
+
color: string;
|
|
7515
|
+
} | undefined;
|
|
7516
|
+
fontFamily: string;
|
|
7517
|
+
fontSize: number;
|
|
7518
|
+
fontWeight: "300" | "normal" | "500" | "600" | "bold" | "800";
|
|
7519
|
+
fontStyle: "normal" | "italic";
|
|
7520
|
+
fill: string;
|
|
7521
|
+
align: "center" | "left" | "right" | "justify";
|
|
7522
|
+
verticalAlign: "top" | "bottom" | "middle";
|
|
7523
|
+
wordWrap: boolean;
|
|
7524
|
+
breakWords: boolean;
|
|
7525
|
+
letterSpacing: number;
|
|
7526
|
+
} | undefined;
|
|
7527
|
+
numberActiveColor?: string | undefined;
|
|
7528
|
+
numberActiveBackgroundAssetId?: string | undefined;
|
|
7529
|
+
numberActiveNineSlice?: {
|
|
7530
|
+
left: number;
|
|
7531
|
+
right: number;
|
|
7532
|
+
top: number;
|
|
7533
|
+
bottom: number;
|
|
7534
|
+
} | undefined;
|
|
7535
|
+
id: string;
|
|
7536
|
+
name: string;
|
|
7537
|
+
parentId: string | null;
|
|
7538
|
+
children: string[];
|
|
7539
|
+
visible: boolean;
|
|
7540
|
+
transform: {
|
|
7541
|
+
pivotX?: number | undefined;
|
|
7542
|
+
pivotY?: number | undefined;
|
|
7543
|
+
anchorMinX?: number | undefined;
|
|
7544
|
+
anchorMinY?: number | undefined;
|
|
7545
|
+
anchorMaxX?: number | undefined;
|
|
7546
|
+
anchorMaxY?: number | undefined;
|
|
7547
|
+
x: number;
|
|
7548
|
+
y: number;
|
|
7549
|
+
width: number;
|
|
7550
|
+
height: number;
|
|
7551
|
+
scaleX: number;
|
|
7552
|
+
scaleY: number;
|
|
7553
|
+
rotation: number;
|
|
7554
|
+
};
|
|
7555
|
+
type: "pagination";
|
|
7556
|
+
spacing: number;
|
|
7557
|
+
style: "dots" | "numbers";
|
|
7558
|
+
direction: "horizontal" | "vertical";
|
|
7559
|
+
defaultPage: number;
|
|
7560
|
+
pageCount: number;
|
|
7561
|
+
dotSize: {
|
|
7562
|
+
width: number;
|
|
7563
|
+
height: number;
|
|
7564
|
+
};
|
|
7565
|
+
clickable: boolean;
|
|
6813
7566
|
}>>;
|
|
6814
7567
|
layout: import("@sinclair/typebox").TObject<{
|
|
6815
7568
|
referenceViewports: import("@sinclair/typebox").TObject<{
|
|
@@ -7500,6 +8253,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
7500
8253
|
bindingKey?: string | undefined;
|
|
7501
8254
|
assetId?: string | undefined;
|
|
7502
8255
|
opacity?: number | undefined;
|
|
8256
|
+
tint?: string | undefined;
|
|
7503
8257
|
nineSlice?: {
|
|
7504
8258
|
left: number;
|
|
7505
8259
|
right: number;
|
|
@@ -7801,6 +8555,11 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
7801
8555
|
animationSpeed?: number | undefined;
|
|
7802
8556
|
} | undefined;
|
|
7803
8557
|
} | undefined;
|
|
8558
|
+
connectors?: {
|
|
8559
|
+
partType: "bone" | "slot";
|
|
8560
|
+
partName: string;
|
|
8561
|
+
targetNodeId: string;
|
|
8562
|
+
}[] | undefined;
|
|
7804
8563
|
id: string;
|
|
7805
8564
|
name: string;
|
|
7806
8565
|
parentId: string | null;
|
|
@@ -8702,6 +9461,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
8702
9461
|
bindingKey?: string | undefined;
|
|
8703
9462
|
assetId?: string | undefined;
|
|
8704
9463
|
opacity?: number | undefined;
|
|
9464
|
+
tint?: string | undefined;
|
|
8705
9465
|
nineSlice?: {
|
|
8706
9466
|
left: number;
|
|
8707
9467
|
right: number;
|
|
@@ -9003,6 +9763,11 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
9003
9763
|
animationSpeed?: number | undefined;
|
|
9004
9764
|
} | undefined;
|
|
9005
9765
|
} | undefined;
|
|
9766
|
+
connectors?: {
|
|
9767
|
+
partType: "bone" | "slot";
|
|
9768
|
+
partName: string;
|
|
9769
|
+
targetNodeId: string;
|
|
9770
|
+
}[] | undefined;
|
|
9006
9771
|
id: string;
|
|
9007
9772
|
name: string;
|
|
9008
9773
|
parentId: string | null;
|
|
@@ -9382,6 +10147,76 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
9382
10147
|
cornerRadius: number;
|
|
9383
10148
|
easingEnabled: boolean;
|
|
9384
10149
|
};
|
|
10150
|
+
} | {
|
|
10151
|
+
editorOnly?: boolean | undefined;
|
|
10152
|
+
locked?: boolean | undefined;
|
|
10153
|
+
layoutOverrides?: {
|
|
10154
|
+
desktop?: {
|
|
10155
|
+
visible?: boolean | undefined;
|
|
10156
|
+
transform?: {
|
|
10157
|
+
x?: number | undefined;
|
|
10158
|
+
y?: number | undefined;
|
|
10159
|
+
width?: number | undefined;
|
|
10160
|
+
height?: number | undefined;
|
|
10161
|
+
scaleX?: number | undefined;
|
|
10162
|
+
scaleY?: number | undefined;
|
|
10163
|
+
rotation?: number | undefined;
|
|
10164
|
+
pivotX?: number | undefined;
|
|
10165
|
+
pivotY?: number | undefined;
|
|
10166
|
+
anchorMinX?: number | undefined;
|
|
10167
|
+
anchorMinY?: number | undefined;
|
|
10168
|
+
anchorMaxX?: number | undefined;
|
|
10169
|
+
anchorMaxY?: number | undefined;
|
|
10170
|
+
} | undefined;
|
|
10171
|
+
} | undefined;
|
|
10172
|
+
mobile?: {
|
|
10173
|
+
visible?: boolean | undefined;
|
|
10174
|
+
transform?: {
|
|
10175
|
+
x?: number | undefined;
|
|
10176
|
+
y?: number | undefined;
|
|
10177
|
+
width?: number | undefined;
|
|
10178
|
+
height?: number | undefined;
|
|
10179
|
+
scaleX?: number | undefined;
|
|
10180
|
+
scaleY?: number | undefined;
|
|
10181
|
+
rotation?: number | undefined;
|
|
10182
|
+
pivotX?: number | undefined;
|
|
10183
|
+
pivotY?: number | undefined;
|
|
10184
|
+
anchorMinX?: number | undefined;
|
|
10185
|
+
anchorMinY?: number | undefined;
|
|
10186
|
+
anchorMaxX?: number | undefined;
|
|
10187
|
+
anchorMaxY?: number | undefined;
|
|
10188
|
+
} | undefined;
|
|
10189
|
+
} | undefined;
|
|
10190
|
+
} | undefined;
|
|
10191
|
+
layoutItem?: {
|
|
10192
|
+
flexBasis?: number | undefined;
|
|
10193
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
10194
|
+
flexGrow: number;
|
|
10195
|
+
flexShrink: number;
|
|
10196
|
+
} | undefined;
|
|
10197
|
+
bindingKey?: string | undefined;
|
|
10198
|
+
id: string;
|
|
10199
|
+
name: string;
|
|
10200
|
+
parentId: string | null;
|
|
10201
|
+
children: string[];
|
|
10202
|
+
visible: boolean;
|
|
10203
|
+
transform: {
|
|
10204
|
+
pivotX?: number | undefined;
|
|
10205
|
+
pivotY?: number | undefined;
|
|
10206
|
+
anchorMinX?: number | undefined;
|
|
10207
|
+
anchorMinY?: number | undefined;
|
|
10208
|
+
anchorMaxX?: number | undefined;
|
|
10209
|
+
anchorMaxY?: number | undefined;
|
|
10210
|
+
x: number;
|
|
10211
|
+
y: number;
|
|
10212
|
+
width: number;
|
|
10213
|
+
height: number;
|
|
10214
|
+
scaleX: number;
|
|
10215
|
+
scaleY: number;
|
|
10216
|
+
rotation: number;
|
|
10217
|
+
};
|
|
10218
|
+
type: "page-group";
|
|
10219
|
+
defaultPage: number;
|
|
9385
10220
|
} | {
|
|
9386
10221
|
editorOnly?: boolean | undefined;
|
|
9387
10222
|
locked?: boolean | undefined;
|
|
@@ -9734,6 +10569,113 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
9734
10569
|
autoplay: boolean;
|
|
9735
10570
|
effectId: string;
|
|
9736
10571
|
simulationSpace: "local" | "world";
|
|
10572
|
+
} | {
|
|
10573
|
+
editorOnly?: boolean | undefined;
|
|
10574
|
+
locked?: boolean | undefined;
|
|
10575
|
+
layoutOverrides?: {
|
|
10576
|
+
desktop?: {
|
|
10577
|
+
visible?: boolean | undefined;
|
|
10578
|
+
transform?: {
|
|
10579
|
+
x?: number | undefined;
|
|
10580
|
+
y?: number | undefined;
|
|
10581
|
+
width?: number | undefined;
|
|
10582
|
+
height?: number | undefined;
|
|
10583
|
+
scaleX?: number | undefined;
|
|
10584
|
+
scaleY?: number | undefined;
|
|
10585
|
+
rotation?: number | undefined;
|
|
10586
|
+
pivotX?: number | undefined;
|
|
10587
|
+
pivotY?: number | undefined;
|
|
10588
|
+
anchorMinX?: number | undefined;
|
|
10589
|
+
anchorMinY?: number | undefined;
|
|
10590
|
+
anchorMaxX?: number | undefined;
|
|
10591
|
+
anchorMaxY?: number | undefined;
|
|
10592
|
+
} | undefined;
|
|
10593
|
+
} | undefined;
|
|
10594
|
+
mobile?: {
|
|
10595
|
+
visible?: boolean | undefined;
|
|
10596
|
+
transform?: {
|
|
10597
|
+
x?: number | undefined;
|
|
10598
|
+
y?: number | undefined;
|
|
10599
|
+
width?: number | undefined;
|
|
10600
|
+
height?: number | undefined;
|
|
10601
|
+
scaleX?: number | undefined;
|
|
10602
|
+
scaleY?: number | undefined;
|
|
10603
|
+
rotation?: number | undefined;
|
|
10604
|
+
pivotX?: number | undefined;
|
|
10605
|
+
pivotY?: number | undefined;
|
|
10606
|
+
anchorMinX?: number | undefined;
|
|
10607
|
+
anchorMinY?: number | undefined;
|
|
10608
|
+
anchorMaxX?: number | undefined;
|
|
10609
|
+
anchorMaxY?: number | undefined;
|
|
10610
|
+
} | undefined;
|
|
10611
|
+
} | undefined;
|
|
10612
|
+
} | undefined;
|
|
10613
|
+
layoutItem?: {
|
|
10614
|
+
flexBasis?: number | undefined;
|
|
10615
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
10616
|
+
flexGrow: number;
|
|
10617
|
+
flexShrink: number;
|
|
10618
|
+
} | undefined;
|
|
10619
|
+
bindingKey?: string | undefined;
|
|
10620
|
+
activeAssetId?: string | undefined;
|
|
10621
|
+
inactiveAssetId?: string | undefined;
|
|
10622
|
+
numberStyle?: {
|
|
10623
|
+
fontAssetId?: string | undefined;
|
|
10624
|
+
lineHeight?: number | undefined;
|
|
10625
|
+
stroke?: {
|
|
10626
|
+
width: number;
|
|
10627
|
+
color: string;
|
|
10628
|
+
} | undefined;
|
|
10629
|
+
fontFamily: string;
|
|
10630
|
+
fontSize: number;
|
|
10631
|
+
fontWeight: "300" | "normal" | "500" | "600" | "bold" | "800";
|
|
10632
|
+
fontStyle: "normal" | "italic";
|
|
10633
|
+
fill: string;
|
|
10634
|
+
align: "center" | "left" | "right" | "justify";
|
|
10635
|
+
verticalAlign: "top" | "bottom" | "middle";
|
|
10636
|
+
wordWrap: boolean;
|
|
10637
|
+
breakWords: boolean;
|
|
10638
|
+
letterSpacing: number;
|
|
10639
|
+
} | undefined;
|
|
10640
|
+
numberActiveColor?: string | undefined;
|
|
10641
|
+
numberActiveBackgroundAssetId?: string | undefined;
|
|
10642
|
+
numberActiveNineSlice?: {
|
|
10643
|
+
left: number;
|
|
10644
|
+
right: number;
|
|
10645
|
+
top: number;
|
|
10646
|
+
bottom: number;
|
|
10647
|
+
} | undefined;
|
|
10648
|
+
id: string;
|
|
10649
|
+
name: string;
|
|
10650
|
+
parentId: string | null;
|
|
10651
|
+
children: string[];
|
|
10652
|
+
visible: boolean;
|
|
10653
|
+
transform: {
|
|
10654
|
+
pivotX?: number | undefined;
|
|
10655
|
+
pivotY?: number | undefined;
|
|
10656
|
+
anchorMinX?: number | undefined;
|
|
10657
|
+
anchorMinY?: number | undefined;
|
|
10658
|
+
anchorMaxX?: number | undefined;
|
|
10659
|
+
anchorMaxY?: number | undefined;
|
|
10660
|
+
x: number;
|
|
10661
|
+
y: number;
|
|
10662
|
+
width: number;
|
|
10663
|
+
height: number;
|
|
10664
|
+
scaleX: number;
|
|
10665
|
+
scaleY: number;
|
|
10666
|
+
rotation: number;
|
|
10667
|
+
};
|
|
10668
|
+
type: "pagination";
|
|
10669
|
+
spacing: number;
|
|
10670
|
+
style: "dots" | "numbers";
|
|
10671
|
+
direction: "horizontal" | "vertical";
|
|
10672
|
+
defaultPage: number;
|
|
10673
|
+
pageCount: number;
|
|
10674
|
+
dotSize: {
|
|
10675
|
+
width: number;
|
|
10676
|
+
height: number;
|
|
10677
|
+
};
|
|
10678
|
+
clickable: boolean;
|
|
9737
10679
|
})[] | undefined;
|
|
9738
10680
|
id: string;
|
|
9739
10681
|
name: string;
|
|
@@ -9840,6 +10782,76 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
9840
10782
|
cornerRadius: number;
|
|
9841
10783
|
easingEnabled: boolean;
|
|
9842
10784
|
};
|
|
10785
|
+
} | {
|
|
10786
|
+
editorOnly?: boolean | undefined;
|
|
10787
|
+
locked?: boolean | undefined;
|
|
10788
|
+
layoutOverrides?: {
|
|
10789
|
+
desktop?: {
|
|
10790
|
+
visible?: boolean | undefined;
|
|
10791
|
+
transform?: {
|
|
10792
|
+
x?: number | undefined;
|
|
10793
|
+
y?: number | undefined;
|
|
10794
|
+
width?: number | undefined;
|
|
10795
|
+
height?: number | undefined;
|
|
10796
|
+
scaleX?: number | undefined;
|
|
10797
|
+
scaleY?: number | undefined;
|
|
10798
|
+
rotation?: number | undefined;
|
|
10799
|
+
pivotX?: number | undefined;
|
|
10800
|
+
pivotY?: number | undefined;
|
|
10801
|
+
anchorMinX?: number | undefined;
|
|
10802
|
+
anchorMinY?: number | undefined;
|
|
10803
|
+
anchorMaxX?: number | undefined;
|
|
10804
|
+
anchorMaxY?: number | undefined;
|
|
10805
|
+
} | undefined;
|
|
10806
|
+
} | undefined;
|
|
10807
|
+
mobile?: {
|
|
10808
|
+
visible?: boolean | undefined;
|
|
10809
|
+
transform?: {
|
|
10810
|
+
x?: number | undefined;
|
|
10811
|
+
y?: number | undefined;
|
|
10812
|
+
width?: number | undefined;
|
|
10813
|
+
height?: number | undefined;
|
|
10814
|
+
scaleX?: number | undefined;
|
|
10815
|
+
scaleY?: number | undefined;
|
|
10816
|
+
rotation?: number | undefined;
|
|
10817
|
+
pivotX?: number | undefined;
|
|
10818
|
+
pivotY?: number | undefined;
|
|
10819
|
+
anchorMinX?: number | undefined;
|
|
10820
|
+
anchorMinY?: number | undefined;
|
|
10821
|
+
anchorMaxX?: number | undefined;
|
|
10822
|
+
anchorMaxY?: number | undefined;
|
|
10823
|
+
} | undefined;
|
|
10824
|
+
} | undefined;
|
|
10825
|
+
} | undefined;
|
|
10826
|
+
layoutItem?: {
|
|
10827
|
+
flexBasis?: number | undefined;
|
|
10828
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
10829
|
+
flexGrow: number;
|
|
10830
|
+
flexShrink: number;
|
|
10831
|
+
} | undefined;
|
|
10832
|
+
bindingKey?: string | undefined;
|
|
10833
|
+
id: string;
|
|
10834
|
+
name: string;
|
|
10835
|
+
parentId: string | null;
|
|
10836
|
+
children: string[];
|
|
10837
|
+
visible: boolean;
|
|
10838
|
+
transform: {
|
|
10839
|
+
pivotX?: number | undefined;
|
|
10840
|
+
pivotY?: number | undefined;
|
|
10841
|
+
anchorMinX?: number | undefined;
|
|
10842
|
+
anchorMinY?: number | undefined;
|
|
10843
|
+
anchorMaxX?: number | undefined;
|
|
10844
|
+
anchorMaxY?: number | undefined;
|
|
10845
|
+
x: number;
|
|
10846
|
+
y: number;
|
|
10847
|
+
width: number;
|
|
10848
|
+
height: number;
|
|
10849
|
+
scaleX: number;
|
|
10850
|
+
scaleY: number;
|
|
10851
|
+
rotation: number;
|
|
10852
|
+
};
|
|
10853
|
+
type: "page-group";
|
|
10854
|
+
defaultPage: number;
|
|
9843
10855
|
} | {
|
|
9844
10856
|
editorOnly?: boolean | undefined;
|
|
9845
10857
|
locked?: boolean | undefined;
|
|
@@ -10192,6 +11204,113 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
10192
11204
|
autoplay: boolean;
|
|
10193
11205
|
effectId: string;
|
|
10194
11206
|
simulationSpace: "local" | "world";
|
|
11207
|
+
} | {
|
|
11208
|
+
editorOnly?: boolean | undefined;
|
|
11209
|
+
locked?: boolean | undefined;
|
|
11210
|
+
layoutOverrides?: {
|
|
11211
|
+
desktop?: {
|
|
11212
|
+
visible?: boolean | undefined;
|
|
11213
|
+
transform?: {
|
|
11214
|
+
x?: number | undefined;
|
|
11215
|
+
y?: number | undefined;
|
|
11216
|
+
width?: number | undefined;
|
|
11217
|
+
height?: number | undefined;
|
|
11218
|
+
scaleX?: number | undefined;
|
|
11219
|
+
scaleY?: number | undefined;
|
|
11220
|
+
rotation?: number | undefined;
|
|
11221
|
+
pivotX?: number | undefined;
|
|
11222
|
+
pivotY?: number | undefined;
|
|
11223
|
+
anchorMinX?: number | undefined;
|
|
11224
|
+
anchorMinY?: number | undefined;
|
|
11225
|
+
anchorMaxX?: number | undefined;
|
|
11226
|
+
anchorMaxY?: number | undefined;
|
|
11227
|
+
} | undefined;
|
|
11228
|
+
} | undefined;
|
|
11229
|
+
mobile?: {
|
|
11230
|
+
visible?: boolean | undefined;
|
|
11231
|
+
transform?: {
|
|
11232
|
+
x?: number | undefined;
|
|
11233
|
+
y?: number | undefined;
|
|
11234
|
+
width?: number | undefined;
|
|
11235
|
+
height?: number | undefined;
|
|
11236
|
+
scaleX?: number | undefined;
|
|
11237
|
+
scaleY?: number | undefined;
|
|
11238
|
+
rotation?: number | undefined;
|
|
11239
|
+
pivotX?: number | undefined;
|
|
11240
|
+
pivotY?: number | undefined;
|
|
11241
|
+
anchorMinX?: number | undefined;
|
|
11242
|
+
anchorMinY?: number | undefined;
|
|
11243
|
+
anchorMaxX?: number | undefined;
|
|
11244
|
+
anchorMaxY?: number | undefined;
|
|
11245
|
+
} | undefined;
|
|
11246
|
+
} | undefined;
|
|
11247
|
+
} | undefined;
|
|
11248
|
+
layoutItem?: {
|
|
11249
|
+
flexBasis?: number | undefined;
|
|
11250
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
11251
|
+
flexGrow: number;
|
|
11252
|
+
flexShrink: number;
|
|
11253
|
+
} | undefined;
|
|
11254
|
+
bindingKey?: string | undefined;
|
|
11255
|
+
activeAssetId?: string | undefined;
|
|
11256
|
+
inactiveAssetId?: string | undefined;
|
|
11257
|
+
numberStyle?: {
|
|
11258
|
+
fontAssetId?: string | undefined;
|
|
11259
|
+
lineHeight?: number | undefined;
|
|
11260
|
+
stroke?: {
|
|
11261
|
+
width: number;
|
|
11262
|
+
color: string;
|
|
11263
|
+
} | undefined;
|
|
11264
|
+
fontFamily: string;
|
|
11265
|
+
fontSize: number;
|
|
11266
|
+
fontWeight: "300" | "normal" | "500" | "600" | "bold" | "800";
|
|
11267
|
+
fontStyle: "normal" | "italic";
|
|
11268
|
+
fill: string;
|
|
11269
|
+
align: "center" | "left" | "right" | "justify";
|
|
11270
|
+
verticalAlign: "top" | "bottom" | "middle";
|
|
11271
|
+
wordWrap: boolean;
|
|
11272
|
+
breakWords: boolean;
|
|
11273
|
+
letterSpacing: number;
|
|
11274
|
+
} | undefined;
|
|
11275
|
+
numberActiveColor?: string | undefined;
|
|
11276
|
+
numberActiveBackgroundAssetId?: string | undefined;
|
|
11277
|
+
numberActiveNineSlice?: {
|
|
11278
|
+
left: number;
|
|
11279
|
+
right: number;
|
|
11280
|
+
top: number;
|
|
11281
|
+
bottom: number;
|
|
11282
|
+
} | undefined;
|
|
11283
|
+
id: string;
|
|
11284
|
+
name: string;
|
|
11285
|
+
parentId: string | null;
|
|
11286
|
+
children: string[];
|
|
11287
|
+
visible: boolean;
|
|
11288
|
+
transform: {
|
|
11289
|
+
pivotX?: number | undefined;
|
|
11290
|
+
pivotY?: number | undefined;
|
|
11291
|
+
anchorMinX?: number | undefined;
|
|
11292
|
+
anchorMinY?: number | undefined;
|
|
11293
|
+
anchorMaxX?: number | undefined;
|
|
11294
|
+
anchorMaxY?: number | undefined;
|
|
11295
|
+
x: number;
|
|
11296
|
+
y: number;
|
|
11297
|
+
width: number;
|
|
11298
|
+
height: number;
|
|
11299
|
+
scaleX: number;
|
|
11300
|
+
scaleY: number;
|
|
11301
|
+
rotation: number;
|
|
11302
|
+
};
|
|
11303
|
+
type: "pagination";
|
|
11304
|
+
spacing: number;
|
|
11305
|
+
style: "dots" | "numbers";
|
|
11306
|
+
direction: "horizontal" | "vertical";
|
|
11307
|
+
defaultPage: number;
|
|
11308
|
+
pageCount: number;
|
|
11309
|
+
dotSize: {
|
|
11310
|
+
width: number;
|
|
11311
|
+
height: number;
|
|
11312
|
+
};
|
|
11313
|
+
clickable: boolean;
|
|
10195
11314
|
}>>;
|
|
10196
11315
|
exposedProperties: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
10197
11316
|
name: import("@sinclair/typebox").TString;
|
|
@@ -10200,7 +11319,7 @@ export declare const PrefabDefinitionSchema: import("@sinclair/typebox").TObject
|
|
|
10200
11319
|
}>;
|
|
10201
11320
|
export type PrefabDefinition = Static<typeof PrefabDefinitionSchema>;
|
|
10202
11321
|
export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<{
|
|
10203
|
-
schemaVersion: import("@sinclair/typebox").TLiteral<
|
|
11322
|
+
schemaVersion: import("@sinclair/typebox").TLiteral<33>;
|
|
10204
11323
|
project: import("@sinclair/typebox").TObject<{
|
|
10205
11324
|
id: import("@sinclair/typebox").TString;
|
|
10206
11325
|
name: import("@sinclair/typebox").TString;
|
|
@@ -10947,6 +12066,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
10947
12066
|
bindingKey?: string | undefined;
|
|
10948
12067
|
assetId?: string | undefined;
|
|
10949
12068
|
opacity?: number | undefined;
|
|
12069
|
+
tint?: string | undefined;
|
|
10950
12070
|
nineSlice?: {
|
|
10951
12071
|
left: number;
|
|
10952
12072
|
right: number;
|
|
@@ -11248,6 +12368,11 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
11248
12368
|
animationSpeed?: number | undefined;
|
|
11249
12369
|
} | undefined;
|
|
11250
12370
|
} | undefined;
|
|
12371
|
+
connectors?: {
|
|
12372
|
+
partType: "bone" | "slot";
|
|
12373
|
+
partName: string;
|
|
12374
|
+
targetNodeId: string;
|
|
12375
|
+
}[] | undefined;
|
|
11251
12376
|
id: string;
|
|
11252
12377
|
name: string;
|
|
11253
12378
|
parentId: string | null;
|
|
@@ -12149,6 +13274,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12149
13274
|
bindingKey?: string | undefined;
|
|
12150
13275
|
assetId?: string | undefined;
|
|
12151
13276
|
opacity?: number | undefined;
|
|
13277
|
+
tint?: string | undefined;
|
|
12152
13278
|
nineSlice?: {
|
|
12153
13279
|
left: number;
|
|
12154
13280
|
right: number;
|
|
@@ -12450,6 +13576,11 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12450
13576
|
animationSpeed?: number | undefined;
|
|
12451
13577
|
} | undefined;
|
|
12452
13578
|
} | undefined;
|
|
13579
|
+
connectors?: {
|
|
13580
|
+
partType: "bone" | "slot";
|
|
13581
|
+
partName: string;
|
|
13582
|
+
targetNodeId: string;
|
|
13583
|
+
}[] | undefined;
|
|
12453
13584
|
id: string;
|
|
12454
13585
|
name: string;
|
|
12455
13586
|
parentId: string | null;
|
|
@@ -12829,6 +13960,76 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
12829
13960
|
cornerRadius: number;
|
|
12830
13961
|
easingEnabled: boolean;
|
|
12831
13962
|
};
|
|
13963
|
+
} | {
|
|
13964
|
+
editorOnly?: boolean | undefined;
|
|
13965
|
+
locked?: boolean | undefined;
|
|
13966
|
+
layoutOverrides?: {
|
|
13967
|
+
desktop?: {
|
|
13968
|
+
visible?: boolean | undefined;
|
|
13969
|
+
transform?: {
|
|
13970
|
+
x?: number | undefined;
|
|
13971
|
+
y?: number | undefined;
|
|
13972
|
+
width?: number | undefined;
|
|
13973
|
+
height?: number | undefined;
|
|
13974
|
+
scaleX?: number | undefined;
|
|
13975
|
+
scaleY?: number | undefined;
|
|
13976
|
+
rotation?: number | undefined;
|
|
13977
|
+
pivotX?: number | undefined;
|
|
13978
|
+
pivotY?: number | undefined;
|
|
13979
|
+
anchorMinX?: number | undefined;
|
|
13980
|
+
anchorMinY?: number | undefined;
|
|
13981
|
+
anchorMaxX?: number | undefined;
|
|
13982
|
+
anchorMaxY?: number | undefined;
|
|
13983
|
+
} | undefined;
|
|
13984
|
+
} | undefined;
|
|
13985
|
+
mobile?: {
|
|
13986
|
+
visible?: boolean | undefined;
|
|
13987
|
+
transform?: {
|
|
13988
|
+
x?: number | undefined;
|
|
13989
|
+
y?: number | undefined;
|
|
13990
|
+
width?: number | undefined;
|
|
13991
|
+
height?: number | undefined;
|
|
13992
|
+
scaleX?: number | undefined;
|
|
13993
|
+
scaleY?: number | undefined;
|
|
13994
|
+
rotation?: number | undefined;
|
|
13995
|
+
pivotX?: number | undefined;
|
|
13996
|
+
pivotY?: number | undefined;
|
|
13997
|
+
anchorMinX?: number | undefined;
|
|
13998
|
+
anchorMinY?: number | undefined;
|
|
13999
|
+
anchorMaxX?: number | undefined;
|
|
14000
|
+
anchorMaxY?: number | undefined;
|
|
14001
|
+
} | undefined;
|
|
14002
|
+
} | undefined;
|
|
14003
|
+
} | undefined;
|
|
14004
|
+
layoutItem?: {
|
|
14005
|
+
flexBasis?: number | undefined;
|
|
14006
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
14007
|
+
flexGrow: number;
|
|
14008
|
+
flexShrink: number;
|
|
14009
|
+
} | undefined;
|
|
14010
|
+
bindingKey?: string | undefined;
|
|
14011
|
+
id: string;
|
|
14012
|
+
name: string;
|
|
14013
|
+
parentId: string | null;
|
|
14014
|
+
children: string[];
|
|
14015
|
+
visible: boolean;
|
|
14016
|
+
transform: {
|
|
14017
|
+
pivotX?: number | undefined;
|
|
14018
|
+
pivotY?: number | undefined;
|
|
14019
|
+
anchorMinX?: number | undefined;
|
|
14020
|
+
anchorMinY?: number | undefined;
|
|
14021
|
+
anchorMaxX?: number | undefined;
|
|
14022
|
+
anchorMaxY?: number | undefined;
|
|
14023
|
+
x: number;
|
|
14024
|
+
y: number;
|
|
14025
|
+
width: number;
|
|
14026
|
+
height: number;
|
|
14027
|
+
scaleX: number;
|
|
14028
|
+
scaleY: number;
|
|
14029
|
+
rotation: number;
|
|
14030
|
+
};
|
|
14031
|
+
type: "page-group";
|
|
14032
|
+
defaultPage: number;
|
|
12832
14033
|
} | {
|
|
12833
14034
|
editorOnly?: boolean | undefined;
|
|
12834
14035
|
locked?: boolean | undefined;
|
|
@@ -13150,13 +14351,113 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
13150
14351
|
} | undefined;
|
|
13151
14352
|
} | undefined;
|
|
13152
14353
|
} | undefined;
|
|
13153
|
-
layoutItem?: {
|
|
13154
|
-
flexBasis?: number | undefined;
|
|
13155
|
-
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
13156
|
-
flexGrow: number;
|
|
13157
|
-
flexShrink: number;
|
|
14354
|
+
layoutItem?: {
|
|
14355
|
+
flexBasis?: number | undefined;
|
|
14356
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
14357
|
+
flexGrow: number;
|
|
14358
|
+
flexShrink: number;
|
|
14359
|
+
} | undefined;
|
|
14360
|
+
bindingKey?: string | undefined;
|
|
14361
|
+
id: string;
|
|
14362
|
+
name: string;
|
|
14363
|
+
parentId: string | null;
|
|
14364
|
+
children: string[];
|
|
14365
|
+
visible: boolean;
|
|
14366
|
+
transform: {
|
|
14367
|
+
pivotX?: number | undefined;
|
|
14368
|
+
pivotY?: number | undefined;
|
|
14369
|
+
anchorMinX?: number | undefined;
|
|
14370
|
+
anchorMinY?: number | undefined;
|
|
14371
|
+
anchorMaxX?: number | undefined;
|
|
14372
|
+
anchorMaxY?: number | undefined;
|
|
14373
|
+
x: number;
|
|
14374
|
+
y: number;
|
|
14375
|
+
width: number;
|
|
14376
|
+
height: number;
|
|
14377
|
+
scaleX: number;
|
|
14378
|
+
scaleY: number;
|
|
14379
|
+
rotation: number;
|
|
14380
|
+
};
|
|
14381
|
+
type: "particle-emitter";
|
|
14382
|
+
autoplay: boolean;
|
|
14383
|
+
effectId: string;
|
|
14384
|
+
simulationSpace: "local" | "world";
|
|
14385
|
+
} | {
|
|
14386
|
+
editorOnly?: boolean | undefined;
|
|
14387
|
+
locked?: boolean | undefined;
|
|
14388
|
+
layoutOverrides?: {
|
|
14389
|
+
desktop?: {
|
|
14390
|
+
visible?: boolean | undefined;
|
|
14391
|
+
transform?: {
|
|
14392
|
+
x?: number | undefined;
|
|
14393
|
+
y?: number | undefined;
|
|
14394
|
+
width?: number | undefined;
|
|
14395
|
+
height?: number | undefined;
|
|
14396
|
+
scaleX?: number | undefined;
|
|
14397
|
+
scaleY?: number | undefined;
|
|
14398
|
+
rotation?: number | undefined;
|
|
14399
|
+
pivotX?: number | undefined;
|
|
14400
|
+
pivotY?: number | undefined;
|
|
14401
|
+
anchorMinX?: number | undefined;
|
|
14402
|
+
anchorMinY?: number | undefined;
|
|
14403
|
+
anchorMaxX?: number | undefined;
|
|
14404
|
+
anchorMaxY?: number | undefined;
|
|
14405
|
+
} | undefined;
|
|
14406
|
+
} | undefined;
|
|
14407
|
+
mobile?: {
|
|
14408
|
+
visible?: boolean | undefined;
|
|
14409
|
+
transform?: {
|
|
14410
|
+
x?: number | undefined;
|
|
14411
|
+
y?: number | undefined;
|
|
14412
|
+
width?: number | undefined;
|
|
14413
|
+
height?: number | undefined;
|
|
14414
|
+
scaleX?: number | undefined;
|
|
14415
|
+
scaleY?: number | undefined;
|
|
14416
|
+
rotation?: number | undefined;
|
|
14417
|
+
pivotX?: number | undefined;
|
|
14418
|
+
pivotY?: number | undefined;
|
|
14419
|
+
anchorMinX?: number | undefined;
|
|
14420
|
+
anchorMinY?: number | undefined;
|
|
14421
|
+
anchorMaxX?: number | undefined;
|
|
14422
|
+
anchorMaxY?: number | undefined;
|
|
14423
|
+
} | undefined;
|
|
14424
|
+
} | undefined;
|
|
14425
|
+
} | undefined;
|
|
14426
|
+
layoutItem?: {
|
|
14427
|
+
flexBasis?: number | undefined;
|
|
14428
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
14429
|
+
flexGrow: number;
|
|
14430
|
+
flexShrink: number;
|
|
14431
|
+
} | undefined;
|
|
14432
|
+
bindingKey?: string | undefined;
|
|
14433
|
+
activeAssetId?: string | undefined;
|
|
14434
|
+
inactiveAssetId?: string | undefined;
|
|
14435
|
+
numberStyle?: {
|
|
14436
|
+
fontAssetId?: string | undefined;
|
|
14437
|
+
lineHeight?: number | undefined;
|
|
14438
|
+
stroke?: {
|
|
14439
|
+
width: number;
|
|
14440
|
+
color: string;
|
|
14441
|
+
} | undefined;
|
|
14442
|
+
fontFamily: string;
|
|
14443
|
+
fontSize: number;
|
|
14444
|
+
fontWeight: "300" | "normal" | "500" | "600" | "bold" | "800";
|
|
14445
|
+
fontStyle: "normal" | "italic";
|
|
14446
|
+
fill: string;
|
|
14447
|
+
align: "center" | "left" | "right" | "justify";
|
|
14448
|
+
verticalAlign: "top" | "bottom" | "middle";
|
|
14449
|
+
wordWrap: boolean;
|
|
14450
|
+
breakWords: boolean;
|
|
14451
|
+
letterSpacing: number;
|
|
14452
|
+
} | undefined;
|
|
14453
|
+
numberActiveColor?: string | undefined;
|
|
14454
|
+
numberActiveBackgroundAssetId?: string | undefined;
|
|
14455
|
+
numberActiveNineSlice?: {
|
|
14456
|
+
left: number;
|
|
14457
|
+
right: number;
|
|
14458
|
+
top: number;
|
|
14459
|
+
bottom: number;
|
|
13158
14460
|
} | undefined;
|
|
13159
|
-
bindingKey?: string | undefined;
|
|
13160
14461
|
id: string;
|
|
13161
14462
|
name: string;
|
|
13162
14463
|
parentId: string | null;
|
|
@@ -13177,10 +14478,17 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
13177
14478
|
scaleY: number;
|
|
13178
14479
|
rotation: number;
|
|
13179
14480
|
};
|
|
13180
|
-
type: "
|
|
13181
|
-
|
|
13182
|
-
|
|
13183
|
-
|
|
14481
|
+
type: "pagination";
|
|
14482
|
+
spacing: number;
|
|
14483
|
+
style: "dots" | "numbers";
|
|
14484
|
+
direction: "horizontal" | "vertical";
|
|
14485
|
+
defaultPage: number;
|
|
14486
|
+
pageCount: number;
|
|
14487
|
+
dotSize: {
|
|
14488
|
+
width: number;
|
|
14489
|
+
height: number;
|
|
14490
|
+
};
|
|
14491
|
+
clickable: boolean;
|
|
13184
14492
|
})[] | undefined;
|
|
13185
14493
|
id: string;
|
|
13186
14494
|
name: string;
|
|
@@ -13287,6 +14595,76 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
13287
14595
|
cornerRadius: number;
|
|
13288
14596
|
easingEnabled: boolean;
|
|
13289
14597
|
};
|
|
14598
|
+
} | {
|
|
14599
|
+
editorOnly?: boolean | undefined;
|
|
14600
|
+
locked?: boolean | undefined;
|
|
14601
|
+
layoutOverrides?: {
|
|
14602
|
+
desktop?: {
|
|
14603
|
+
visible?: boolean | undefined;
|
|
14604
|
+
transform?: {
|
|
14605
|
+
x?: number | undefined;
|
|
14606
|
+
y?: number | undefined;
|
|
14607
|
+
width?: number | undefined;
|
|
14608
|
+
height?: number | undefined;
|
|
14609
|
+
scaleX?: number | undefined;
|
|
14610
|
+
scaleY?: number | undefined;
|
|
14611
|
+
rotation?: number | undefined;
|
|
14612
|
+
pivotX?: number | undefined;
|
|
14613
|
+
pivotY?: number | undefined;
|
|
14614
|
+
anchorMinX?: number | undefined;
|
|
14615
|
+
anchorMinY?: number | undefined;
|
|
14616
|
+
anchorMaxX?: number | undefined;
|
|
14617
|
+
anchorMaxY?: number | undefined;
|
|
14618
|
+
} | undefined;
|
|
14619
|
+
} | undefined;
|
|
14620
|
+
mobile?: {
|
|
14621
|
+
visible?: boolean | undefined;
|
|
14622
|
+
transform?: {
|
|
14623
|
+
x?: number | undefined;
|
|
14624
|
+
y?: number | undefined;
|
|
14625
|
+
width?: number | undefined;
|
|
14626
|
+
height?: number | undefined;
|
|
14627
|
+
scaleX?: number | undefined;
|
|
14628
|
+
scaleY?: number | undefined;
|
|
14629
|
+
rotation?: number | undefined;
|
|
14630
|
+
pivotX?: number | undefined;
|
|
14631
|
+
pivotY?: number | undefined;
|
|
14632
|
+
anchorMinX?: number | undefined;
|
|
14633
|
+
anchorMinY?: number | undefined;
|
|
14634
|
+
anchorMaxX?: number | undefined;
|
|
14635
|
+
anchorMaxY?: number | undefined;
|
|
14636
|
+
} | undefined;
|
|
14637
|
+
} | undefined;
|
|
14638
|
+
} | undefined;
|
|
14639
|
+
layoutItem?: {
|
|
14640
|
+
flexBasis?: number | undefined;
|
|
14641
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
14642
|
+
flexGrow: number;
|
|
14643
|
+
flexShrink: number;
|
|
14644
|
+
} | undefined;
|
|
14645
|
+
bindingKey?: string | undefined;
|
|
14646
|
+
id: string;
|
|
14647
|
+
name: string;
|
|
14648
|
+
parentId: string | null;
|
|
14649
|
+
children: string[];
|
|
14650
|
+
visible: boolean;
|
|
14651
|
+
transform: {
|
|
14652
|
+
pivotX?: number | undefined;
|
|
14653
|
+
pivotY?: number | undefined;
|
|
14654
|
+
anchorMinX?: number | undefined;
|
|
14655
|
+
anchorMinY?: number | undefined;
|
|
14656
|
+
anchorMaxX?: number | undefined;
|
|
14657
|
+
anchorMaxY?: number | undefined;
|
|
14658
|
+
x: number;
|
|
14659
|
+
y: number;
|
|
14660
|
+
width: number;
|
|
14661
|
+
height: number;
|
|
14662
|
+
scaleX: number;
|
|
14663
|
+
scaleY: number;
|
|
14664
|
+
rotation: number;
|
|
14665
|
+
};
|
|
14666
|
+
type: "page-group";
|
|
14667
|
+
defaultPage: number;
|
|
13290
14668
|
} | {
|
|
13291
14669
|
editorOnly?: boolean | undefined;
|
|
13292
14670
|
locked?: boolean | undefined;
|
|
@@ -13639,6 +15017,113 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
13639
15017
|
autoplay: boolean;
|
|
13640
15018
|
effectId: string;
|
|
13641
15019
|
simulationSpace: "local" | "world";
|
|
15020
|
+
} | {
|
|
15021
|
+
editorOnly?: boolean | undefined;
|
|
15022
|
+
locked?: boolean | undefined;
|
|
15023
|
+
layoutOverrides?: {
|
|
15024
|
+
desktop?: {
|
|
15025
|
+
visible?: boolean | undefined;
|
|
15026
|
+
transform?: {
|
|
15027
|
+
x?: number | undefined;
|
|
15028
|
+
y?: number | undefined;
|
|
15029
|
+
width?: number | undefined;
|
|
15030
|
+
height?: number | undefined;
|
|
15031
|
+
scaleX?: number | undefined;
|
|
15032
|
+
scaleY?: number | undefined;
|
|
15033
|
+
rotation?: number | undefined;
|
|
15034
|
+
pivotX?: number | undefined;
|
|
15035
|
+
pivotY?: number | undefined;
|
|
15036
|
+
anchorMinX?: number | undefined;
|
|
15037
|
+
anchorMinY?: number | undefined;
|
|
15038
|
+
anchorMaxX?: number | undefined;
|
|
15039
|
+
anchorMaxY?: number | undefined;
|
|
15040
|
+
} | undefined;
|
|
15041
|
+
} | undefined;
|
|
15042
|
+
mobile?: {
|
|
15043
|
+
visible?: boolean | undefined;
|
|
15044
|
+
transform?: {
|
|
15045
|
+
x?: number | undefined;
|
|
15046
|
+
y?: number | undefined;
|
|
15047
|
+
width?: number | undefined;
|
|
15048
|
+
height?: number | undefined;
|
|
15049
|
+
scaleX?: number | undefined;
|
|
15050
|
+
scaleY?: number | undefined;
|
|
15051
|
+
rotation?: number | undefined;
|
|
15052
|
+
pivotX?: number | undefined;
|
|
15053
|
+
pivotY?: number | undefined;
|
|
15054
|
+
anchorMinX?: number | undefined;
|
|
15055
|
+
anchorMinY?: number | undefined;
|
|
15056
|
+
anchorMaxX?: number | undefined;
|
|
15057
|
+
anchorMaxY?: number | undefined;
|
|
15058
|
+
} | undefined;
|
|
15059
|
+
} | undefined;
|
|
15060
|
+
} | undefined;
|
|
15061
|
+
layoutItem?: {
|
|
15062
|
+
flexBasis?: number | undefined;
|
|
15063
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
15064
|
+
flexGrow: number;
|
|
15065
|
+
flexShrink: number;
|
|
15066
|
+
} | undefined;
|
|
15067
|
+
bindingKey?: string | undefined;
|
|
15068
|
+
activeAssetId?: string | undefined;
|
|
15069
|
+
inactiveAssetId?: string | undefined;
|
|
15070
|
+
numberStyle?: {
|
|
15071
|
+
fontAssetId?: string | undefined;
|
|
15072
|
+
lineHeight?: number | undefined;
|
|
15073
|
+
stroke?: {
|
|
15074
|
+
width: number;
|
|
15075
|
+
color: string;
|
|
15076
|
+
} | undefined;
|
|
15077
|
+
fontFamily: string;
|
|
15078
|
+
fontSize: number;
|
|
15079
|
+
fontWeight: "300" | "normal" | "500" | "600" | "bold" | "800";
|
|
15080
|
+
fontStyle: "normal" | "italic";
|
|
15081
|
+
fill: string;
|
|
15082
|
+
align: "center" | "left" | "right" | "justify";
|
|
15083
|
+
verticalAlign: "top" | "bottom" | "middle";
|
|
15084
|
+
wordWrap: boolean;
|
|
15085
|
+
breakWords: boolean;
|
|
15086
|
+
letterSpacing: number;
|
|
15087
|
+
} | undefined;
|
|
15088
|
+
numberActiveColor?: string | undefined;
|
|
15089
|
+
numberActiveBackgroundAssetId?: string | undefined;
|
|
15090
|
+
numberActiveNineSlice?: {
|
|
15091
|
+
left: number;
|
|
15092
|
+
right: number;
|
|
15093
|
+
top: number;
|
|
15094
|
+
bottom: number;
|
|
15095
|
+
} | undefined;
|
|
15096
|
+
id: string;
|
|
15097
|
+
name: string;
|
|
15098
|
+
parentId: string | null;
|
|
15099
|
+
children: string[];
|
|
15100
|
+
visible: boolean;
|
|
15101
|
+
transform: {
|
|
15102
|
+
pivotX?: number | undefined;
|
|
15103
|
+
pivotY?: number | undefined;
|
|
15104
|
+
anchorMinX?: number | undefined;
|
|
15105
|
+
anchorMinY?: number | undefined;
|
|
15106
|
+
anchorMaxX?: number | undefined;
|
|
15107
|
+
anchorMaxY?: number | undefined;
|
|
15108
|
+
x: number;
|
|
15109
|
+
y: number;
|
|
15110
|
+
width: number;
|
|
15111
|
+
height: number;
|
|
15112
|
+
scaleX: number;
|
|
15113
|
+
scaleY: number;
|
|
15114
|
+
rotation: number;
|
|
15115
|
+
};
|
|
15116
|
+
type: "pagination";
|
|
15117
|
+
spacing: number;
|
|
15118
|
+
style: "dots" | "numbers";
|
|
15119
|
+
direction: "horizontal" | "vertical";
|
|
15120
|
+
defaultPage: number;
|
|
15121
|
+
pageCount: number;
|
|
15122
|
+
dotSize: {
|
|
15123
|
+
width: number;
|
|
15124
|
+
height: number;
|
|
15125
|
+
};
|
|
15126
|
+
clickable: boolean;
|
|
13642
15127
|
}>>;
|
|
13643
15128
|
exposedProperties: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
13644
15129
|
name: import("@sinclair/typebox").TString;
|
|
@@ -14200,6 +15685,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
14200
15685
|
bindingKey?: string | undefined;
|
|
14201
15686
|
assetId?: string | undefined;
|
|
14202
15687
|
opacity?: number | undefined;
|
|
15688
|
+
tint?: string | undefined;
|
|
14203
15689
|
nineSlice?: {
|
|
14204
15690
|
left: number;
|
|
14205
15691
|
right: number;
|
|
@@ -14501,6 +15987,11 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
14501
15987
|
animationSpeed?: number | undefined;
|
|
14502
15988
|
} | undefined;
|
|
14503
15989
|
} | undefined;
|
|
15990
|
+
connectors?: {
|
|
15991
|
+
partType: "bone" | "slot";
|
|
15992
|
+
partName: string;
|
|
15993
|
+
targetNodeId: string;
|
|
15994
|
+
}[] | undefined;
|
|
14504
15995
|
id: string;
|
|
14505
15996
|
name: string;
|
|
14506
15997
|
parentId: string | null;
|
|
@@ -15402,6 +16893,7 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15402
16893
|
bindingKey?: string | undefined;
|
|
15403
16894
|
assetId?: string | undefined;
|
|
15404
16895
|
opacity?: number | undefined;
|
|
16896
|
+
tint?: string | undefined;
|
|
15405
16897
|
nineSlice?: {
|
|
15406
16898
|
left: number;
|
|
15407
16899
|
right: number;
|
|
@@ -15703,6 +17195,11 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
15703
17195
|
animationSpeed?: number | undefined;
|
|
15704
17196
|
} | undefined;
|
|
15705
17197
|
} | undefined;
|
|
17198
|
+
connectors?: {
|
|
17199
|
+
partType: "bone" | "slot";
|
|
17200
|
+
partName: string;
|
|
17201
|
+
targetNodeId: string;
|
|
17202
|
+
}[] | undefined;
|
|
15706
17203
|
id: string;
|
|
15707
17204
|
name: string;
|
|
15708
17205
|
parentId: string | null;
|
|
@@ -16082,6 +17579,76 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
16082
17579
|
cornerRadius: number;
|
|
16083
17580
|
easingEnabled: boolean;
|
|
16084
17581
|
};
|
|
17582
|
+
} | {
|
|
17583
|
+
editorOnly?: boolean | undefined;
|
|
17584
|
+
locked?: boolean | undefined;
|
|
17585
|
+
layoutOverrides?: {
|
|
17586
|
+
desktop?: {
|
|
17587
|
+
visible?: boolean | undefined;
|
|
17588
|
+
transform?: {
|
|
17589
|
+
x?: number | undefined;
|
|
17590
|
+
y?: number | undefined;
|
|
17591
|
+
width?: number | undefined;
|
|
17592
|
+
height?: number | undefined;
|
|
17593
|
+
scaleX?: number | undefined;
|
|
17594
|
+
scaleY?: number | undefined;
|
|
17595
|
+
rotation?: number | undefined;
|
|
17596
|
+
pivotX?: number | undefined;
|
|
17597
|
+
pivotY?: number | undefined;
|
|
17598
|
+
anchorMinX?: number | undefined;
|
|
17599
|
+
anchorMinY?: number | undefined;
|
|
17600
|
+
anchorMaxX?: number | undefined;
|
|
17601
|
+
anchorMaxY?: number | undefined;
|
|
17602
|
+
} | undefined;
|
|
17603
|
+
} | undefined;
|
|
17604
|
+
mobile?: {
|
|
17605
|
+
visible?: boolean | undefined;
|
|
17606
|
+
transform?: {
|
|
17607
|
+
x?: number | undefined;
|
|
17608
|
+
y?: number | undefined;
|
|
17609
|
+
width?: number | undefined;
|
|
17610
|
+
height?: number | undefined;
|
|
17611
|
+
scaleX?: number | undefined;
|
|
17612
|
+
scaleY?: number | undefined;
|
|
17613
|
+
rotation?: number | undefined;
|
|
17614
|
+
pivotX?: number | undefined;
|
|
17615
|
+
pivotY?: number | undefined;
|
|
17616
|
+
anchorMinX?: number | undefined;
|
|
17617
|
+
anchorMinY?: number | undefined;
|
|
17618
|
+
anchorMaxX?: number | undefined;
|
|
17619
|
+
anchorMaxY?: number | undefined;
|
|
17620
|
+
} | undefined;
|
|
17621
|
+
} | undefined;
|
|
17622
|
+
} | undefined;
|
|
17623
|
+
layoutItem?: {
|
|
17624
|
+
flexBasis?: number | undefined;
|
|
17625
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
17626
|
+
flexGrow: number;
|
|
17627
|
+
flexShrink: number;
|
|
17628
|
+
} | undefined;
|
|
17629
|
+
bindingKey?: string | undefined;
|
|
17630
|
+
id: string;
|
|
17631
|
+
name: string;
|
|
17632
|
+
parentId: string | null;
|
|
17633
|
+
children: string[];
|
|
17634
|
+
visible: boolean;
|
|
17635
|
+
transform: {
|
|
17636
|
+
pivotX?: number | undefined;
|
|
17637
|
+
pivotY?: number | undefined;
|
|
17638
|
+
anchorMinX?: number | undefined;
|
|
17639
|
+
anchorMinY?: number | undefined;
|
|
17640
|
+
anchorMaxX?: number | undefined;
|
|
17641
|
+
anchorMaxY?: number | undefined;
|
|
17642
|
+
x: number;
|
|
17643
|
+
y: number;
|
|
17644
|
+
width: number;
|
|
17645
|
+
height: number;
|
|
17646
|
+
scaleX: number;
|
|
17647
|
+
scaleY: number;
|
|
17648
|
+
rotation: number;
|
|
17649
|
+
};
|
|
17650
|
+
type: "page-group";
|
|
17651
|
+
defaultPage: number;
|
|
16085
17652
|
} | {
|
|
16086
17653
|
editorOnly?: boolean | undefined;
|
|
16087
17654
|
locked?: boolean | undefined;
|
|
@@ -16434,6 +18001,113 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
16434
18001
|
autoplay: boolean;
|
|
16435
18002
|
effectId: string;
|
|
16436
18003
|
simulationSpace: "local" | "world";
|
|
18004
|
+
} | {
|
|
18005
|
+
editorOnly?: boolean | undefined;
|
|
18006
|
+
locked?: boolean | undefined;
|
|
18007
|
+
layoutOverrides?: {
|
|
18008
|
+
desktop?: {
|
|
18009
|
+
visible?: boolean | undefined;
|
|
18010
|
+
transform?: {
|
|
18011
|
+
x?: number | undefined;
|
|
18012
|
+
y?: number | undefined;
|
|
18013
|
+
width?: number | undefined;
|
|
18014
|
+
height?: number | undefined;
|
|
18015
|
+
scaleX?: number | undefined;
|
|
18016
|
+
scaleY?: number | undefined;
|
|
18017
|
+
rotation?: number | undefined;
|
|
18018
|
+
pivotX?: number | undefined;
|
|
18019
|
+
pivotY?: number | undefined;
|
|
18020
|
+
anchorMinX?: number | undefined;
|
|
18021
|
+
anchorMinY?: number | undefined;
|
|
18022
|
+
anchorMaxX?: number | undefined;
|
|
18023
|
+
anchorMaxY?: number | undefined;
|
|
18024
|
+
} | undefined;
|
|
18025
|
+
} | undefined;
|
|
18026
|
+
mobile?: {
|
|
18027
|
+
visible?: boolean | undefined;
|
|
18028
|
+
transform?: {
|
|
18029
|
+
x?: number | undefined;
|
|
18030
|
+
y?: number | undefined;
|
|
18031
|
+
width?: number | undefined;
|
|
18032
|
+
height?: number | undefined;
|
|
18033
|
+
scaleX?: number | undefined;
|
|
18034
|
+
scaleY?: number | undefined;
|
|
18035
|
+
rotation?: number | undefined;
|
|
18036
|
+
pivotX?: number | undefined;
|
|
18037
|
+
pivotY?: number | undefined;
|
|
18038
|
+
anchorMinX?: number | undefined;
|
|
18039
|
+
anchorMinY?: number | undefined;
|
|
18040
|
+
anchorMaxX?: number | undefined;
|
|
18041
|
+
anchorMaxY?: number | undefined;
|
|
18042
|
+
} | undefined;
|
|
18043
|
+
} | undefined;
|
|
18044
|
+
} | undefined;
|
|
18045
|
+
layoutItem?: {
|
|
18046
|
+
flexBasis?: number | undefined;
|
|
18047
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
18048
|
+
flexGrow: number;
|
|
18049
|
+
flexShrink: number;
|
|
18050
|
+
} | undefined;
|
|
18051
|
+
bindingKey?: string | undefined;
|
|
18052
|
+
activeAssetId?: string | undefined;
|
|
18053
|
+
inactiveAssetId?: string | undefined;
|
|
18054
|
+
numberStyle?: {
|
|
18055
|
+
fontAssetId?: string | undefined;
|
|
18056
|
+
lineHeight?: number | undefined;
|
|
18057
|
+
stroke?: {
|
|
18058
|
+
width: number;
|
|
18059
|
+
color: string;
|
|
18060
|
+
} | undefined;
|
|
18061
|
+
fontFamily: string;
|
|
18062
|
+
fontSize: number;
|
|
18063
|
+
fontWeight: "300" | "normal" | "500" | "600" | "bold" | "800";
|
|
18064
|
+
fontStyle: "normal" | "italic";
|
|
18065
|
+
fill: string;
|
|
18066
|
+
align: "center" | "left" | "right" | "justify";
|
|
18067
|
+
verticalAlign: "top" | "bottom" | "middle";
|
|
18068
|
+
wordWrap: boolean;
|
|
18069
|
+
breakWords: boolean;
|
|
18070
|
+
letterSpacing: number;
|
|
18071
|
+
} | undefined;
|
|
18072
|
+
numberActiveColor?: string | undefined;
|
|
18073
|
+
numberActiveBackgroundAssetId?: string | undefined;
|
|
18074
|
+
numberActiveNineSlice?: {
|
|
18075
|
+
left: number;
|
|
18076
|
+
right: number;
|
|
18077
|
+
top: number;
|
|
18078
|
+
bottom: number;
|
|
18079
|
+
} | undefined;
|
|
18080
|
+
id: string;
|
|
18081
|
+
name: string;
|
|
18082
|
+
parentId: string | null;
|
|
18083
|
+
children: string[];
|
|
18084
|
+
visible: boolean;
|
|
18085
|
+
transform: {
|
|
18086
|
+
pivotX?: number | undefined;
|
|
18087
|
+
pivotY?: number | undefined;
|
|
18088
|
+
anchorMinX?: number | undefined;
|
|
18089
|
+
anchorMinY?: number | undefined;
|
|
18090
|
+
anchorMaxX?: number | undefined;
|
|
18091
|
+
anchorMaxY?: number | undefined;
|
|
18092
|
+
x: number;
|
|
18093
|
+
y: number;
|
|
18094
|
+
width: number;
|
|
18095
|
+
height: number;
|
|
18096
|
+
scaleX: number;
|
|
18097
|
+
scaleY: number;
|
|
18098
|
+
rotation: number;
|
|
18099
|
+
};
|
|
18100
|
+
type: "pagination";
|
|
18101
|
+
spacing: number;
|
|
18102
|
+
style: "dots" | "numbers";
|
|
18103
|
+
direction: "horizontal" | "vertical";
|
|
18104
|
+
defaultPage: number;
|
|
18105
|
+
pageCount: number;
|
|
18106
|
+
dotSize: {
|
|
18107
|
+
width: number;
|
|
18108
|
+
height: number;
|
|
18109
|
+
};
|
|
18110
|
+
clickable: boolean;
|
|
16437
18111
|
})[] | undefined;
|
|
16438
18112
|
id: string;
|
|
16439
18113
|
name: string;
|
|
@@ -16540,6 +18214,76 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
16540
18214
|
cornerRadius: number;
|
|
16541
18215
|
easingEnabled: boolean;
|
|
16542
18216
|
};
|
|
18217
|
+
} | {
|
|
18218
|
+
editorOnly?: boolean | undefined;
|
|
18219
|
+
locked?: boolean | undefined;
|
|
18220
|
+
layoutOverrides?: {
|
|
18221
|
+
desktop?: {
|
|
18222
|
+
visible?: boolean | undefined;
|
|
18223
|
+
transform?: {
|
|
18224
|
+
x?: number | undefined;
|
|
18225
|
+
y?: number | undefined;
|
|
18226
|
+
width?: number | undefined;
|
|
18227
|
+
height?: number | undefined;
|
|
18228
|
+
scaleX?: number | undefined;
|
|
18229
|
+
scaleY?: number | undefined;
|
|
18230
|
+
rotation?: number | undefined;
|
|
18231
|
+
pivotX?: number | undefined;
|
|
18232
|
+
pivotY?: number | undefined;
|
|
18233
|
+
anchorMinX?: number | undefined;
|
|
18234
|
+
anchorMinY?: number | undefined;
|
|
18235
|
+
anchorMaxX?: number | undefined;
|
|
18236
|
+
anchorMaxY?: number | undefined;
|
|
18237
|
+
} | undefined;
|
|
18238
|
+
} | undefined;
|
|
18239
|
+
mobile?: {
|
|
18240
|
+
visible?: boolean | undefined;
|
|
18241
|
+
transform?: {
|
|
18242
|
+
x?: number | undefined;
|
|
18243
|
+
y?: number | undefined;
|
|
18244
|
+
width?: number | undefined;
|
|
18245
|
+
height?: number | undefined;
|
|
18246
|
+
scaleX?: number | undefined;
|
|
18247
|
+
scaleY?: number | undefined;
|
|
18248
|
+
rotation?: number | undefined;
|
|
18249
|
+
pivotX?: number | undefined;
|
|
18250
|
+
pivotY?: number | undefined;
|
|
18251
|
+
anchorMinX?: number | undefined;
|
|
18252
|
+
anchorMinY?: number | undefined;
|
|
18253
|
+
anchorMaxX?: number | undefined;
|
|
18254
|
+
anchorMaxY?: number | undefined;
|
|
18255
|
+
} | undefined;
|
|
18256
|
+
} | undefined;
|
|
18257
|
+
} | undefined;
|
|
18258
|
+
layoutItem?: {
|
|
18259
|
+
flexBasis?: number | undefined;
|
|
18260
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
18261
|
+
flexGrow: number;
|
|
18262
|
+
flexShrink: number;
|
|
18263
|
+
} | undefined;
|
|
18264
|
+
bindingKey?: string | undefined;
|
|
18265
|
+
id: string;
|
|
18266
|
+
name: string;
|
|
18267
|
+
parentId: string | null;
|
|
18268
|
+
children: string[];
|
|
18269
|
+
visible: boolean;
|
|
18270
|
+
transform: {
|
|
18271
|
+
pivotX?: number | undefined;
|
|
18272
|
+
pivotY?: number | undefined;
|
|
18273
|
+
anchorMinX?: number | undefined;
|
|
18274
|
+
anchorMinY?: number | undefined;
|
|
18275
|
+
anchorMaxX?: number | undefined;
|
|
18276
|
+
anchorMaxY?: number | undefined;
|
|
18277
|
+
x: number;
|
|
18278
|
+
y: number;
|
|
18279
|
+
width: number;
|
|
18280
|
+
height: number;
|
|
18281
|
+
scaleX: number;
|
|
18282
|
+
scaleY: number;
|
|
18283
|
+
rotation: number;
|
|
18284
|
+
};
|
|
18285
|
+
type: "page-group";
|
|
18286
|
+
defaultPage: number;
|
|
16543
18287
|
} | {
|
|
16544
18288
|
editorOnly?: boolean | undefined;
|
|
16545
18289
|
locked?: boolean | undefined;
|
|
@@ -16892,6 +18636,113 @@ export declare const ProjectDocumentSchema: import("@sinclair/typebox").TObject<
|
|
|
16892
18636
|
autoplay: boolean;
|
|
16893
18637
|
effectId: string;
|
|
16894
18638
|
simulationSpace: "local" | "world";
|
|
18639
|
+
} | {
|
|
18640
|
+
editorOnly?: boolean | undefined;
|
|
18641
|
+
locked?: boolean | undefined;
|
|
18642
|
+
layoutOverrides?: {
|
|
18643
|
+
desktop?: {
|
|
18644
|
+
visible?: boolean | undefined;
|
|
18645
|
+
transform?: {
|
|
18646
|
+
x?: number | undefined;
|
|
18647
|
+
y?: number | undefined;
|
|
18648
|
+
width?: number | undefined;
|
|
18649
|
+
height?: number | undefined;
|
|
18650
|
+
scaleX?: number | undefined;
|
|
18651
|
+
scaleY?: number | undefined;
|
|
18652
|
+
rotation?: number | undefined;
|
|
18653
|
+
pivotX?: number | undefined;
|
|
18654
|
+
pivotY?: number | undefined;
|
|
18655
|
+
anchorMinX?: number | undefined;
|
|
18656
|
+
anchorMinY?: number | undefined;
|
|
18657
|
+
anchorMaxX?: number | undefined;
|
|
18658
|
+
anchorMaxY?: number | undefined;
|
|
18659
|
+
} | undefined;
|
|
18660
|
+
} | undefined;
|
|
18661
|
+
mobile?: {
|
|
18662
|
+
visible?: boolean | undefined;
|
|
18663
|
+
transform?: {
|
|
18664
|
+
x?: number | undefined;
|
|
18665
|
+
y?: number | undefined;
|
|
18666
|
+
width?: number | undefined;
|
|
18667
|
+
height?: number | undefined;
|
|
18668
|
+
scaleX?: number | undefined;
|
|
18669
|
+
scaleY?: number | undefined;
|
|
18670
|
+
rotation?: number | undefined;
|
|
18671
|
+
pivotX?: number | undefined;
|
|
18672
|
+
pivotY?: number | undefined;
|
|
18673
|
+
anchorMinX?: number | undefined;
|
|
18674
|
+
anchorMinY?: number | undefined;
|
|
18675
|
+
anchorMaxX?: number | undefined;
|
|
18676
|
+
anchorMaxY?: number | undefined;
|
|
18677
|
+
} | undefined;
|
|
18678
|
+
} | undefined;
|
|
18679
|
+
} | undefined;
|
|
18680
|
+
layoutItem?: {
|
|
18681
|
+
flexBasis?: number | undefined;
|
|
18682
|
+
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | undefined;
|
|
18683
|
+
flexGrow: number;
|
|
18684
|
+
flexShrink: number;
|
|
18685
|
+
} | undefined;
|
|
18686
|
+
bindingKey?: string | undefined;
|
|
18687
|
+
activeAssetId?: string | undefined;
|
|
18688
|
+
inactiveAssetId?: string | undefined;
|
|
18689
|
+
numberStyle?: {
|
|
18690
|
+
fontAssetId?: string | undefined;
|
|
18691
|
+
lineHeight?: number | undefined;
|
|
18692
|
+
stroke?: {
|
|
18693
|
+
width: number;
|
|
18694
|
+
color: string;
|
|
18695
|
+
} | undefined;
|
|
18696
|
+
fontFamily: string;
|
|
18697
|
+
fontSize: number;
|
|
18698
|
+
fontWeight: "300" | "normal" | "500" | "600" | "bold" | "800";
|
|
18699
|
+
fontStyle: "normal" | "italic";
|
|
18700
|
+
fill: string;
|
|
18701
|
+
align: "center" | "left" | "right" | "justify";
|
|
18702
|
+
verticalAlign: "top" | "bottom" | "middle";
|
|
18703
|
+
wordWrap: boolean;
|
|
18704
|
+
breakWords: boolean;
|
|
18705
|
+
letterSpacing: number;
|
|
18706
|
+
} | undefined;
|
|
18707
|
+
numberActiveColor?: string | undefined;
|
|
18708
|
+
numberActiveBackgroundAssetId?: string | undefined;
|
|
18709
|
+
numberActiveNineSlice?: {
|
|
18710
|
+
left: number;
|
|
18711
|
+
right: number;
|
|
18712
|
+
top: number;
|
|
18713
|
+
bottom: number;
|
|
18714
|
+
} | undefined;
|
|
18715
|
+
id: string;
|
|
18716
|
+
name: string;
|
|
18717
|
+
parentId: string | null;
|
|
18718
|
+
children: string[];
|
|
18719
|
+
visible: boolean;
|
|
18720
|
+
transform: {
|
|
18721
|
+
pivotX?: number | undefined;
|
|
18722
|
+
pivotY?: number | undefined;
|
|
18723
|
+
anchorMinX?: number | undefined;
|
|
18724
|
+
anchorMinY?: number | undefined;
|
|
18725
|
+
anchorMaxX?: number | undefined;
|
|
18726
|
+
anchorMaxY?: number | undefined;
|
|
18727
|
+
x: number;
|
|
18728
|
+
y: number;
|
|
18729
|
+
width: number;
|
|
18730
|
+
height: number;
|
|
18731
|
+
scaleX: number;
|
|
18732
|
+
scaleY: number;
|
|
18733
|
+
rotation: number;
|
|
18734
|
+
};
|
|
18735
|
+
type: "pagination";
|
|
18736
|
+
spacing: number;
|
|
18737
|
+
style: "dots" | "numbers";
|
|
18738
|
+
direction: "horizontal" | "vertical";
|
|
18739
|
+
defaultPage: number;
|
|
18740
|
+
pageCount: number;
|
|
18741
|
+
dotSize: {
|
|
18742
|
+
width: number;
|
|
18743
|
+
height: number;
|
|
18744
|
+
};
|
|
18745
|
+
clickable: boolean;
|
|
16895
18746
|
}>>;
|
|
16896
18747
|
layout: import("@sinclair/typebox").TObject<{
|
|
16897
18748
|
referenceViewports: import("@sinclair/typebox").TObject<{
|