@supernova-studio/model 1.72.2 → 1.73.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.mts +68 -0
- package/dist/index.d.ts +68 -0
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -83761,6 +83761,7 @@ declare const FigmaExporterProcessedStylesSchema: z$1.ZodObject<{
|
|
|
83761
83761
|
justifyContent: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"space-evenly">]>>;
|
|
83762
83762
|
alignItems: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>;
|
|
83763
83763
|
alignSelf: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>;
|
|
83764
|
+
justifySelf: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">]>>;
|
|
83764
83765
|
flexGrow: z$1.ZodOptional<z$1.ZodNumber>;
|
|
83765
83766
|
flexShrink: z$1.ZodOptional<z$1.ZodNumber>;
|
|
83766
83767
|
flexBasis: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -83881,6 +83882,7 @@ declare const FigmaExporterProcessedStylesSchema: z$1.ZodObject<{
|
|
|
83881
83882
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
83882
83883
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
83883
83884
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
83885
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
83884
83886
|
flexGrow?: number | undefined;
|
|
83885
83887
|
flexShrink?: number | undefined;
|
|
83886
83888
|
flexBasis?: string | undefined;
|
|
@@ -83989,6 +83991,7 @@ declare const FigmaExporterProcessedStylesSchema: z$1.ZodObject<{
|
|
|
83989
83991
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
83990
83992
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
83991
83993
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
83994
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
83992
83995
|
flexGrow?: number | undefined;
|
|
83993
83996
|
flexShrink?: number | undefined;
|
|
83994
83997
|
flexBasis?: string | undefined;
|
|
@@ -84090,6 +84093,7 @@ declare const frameNodeObjectSchema: z$1.ZodObject<{
|
|
|
84090
84093
|
justifyContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"space-evenly">]>>>;
|
|
84091
84094
|
alignItems: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
84092
84095
|
alignSelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
84096
|
+
justifySelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">]>>>;
|
|
84093
84097
|
flexGrow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84094
84098
|
flexShrink: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84095
84099
|
flexBasis: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -84210,6 +84214,7 @@ declare const frameNodeObjectSchema: z$1.ZodObject<{
|
|
|
84210
84214
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84211
84215
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84212
84216
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84217
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84213
84218
|
flexGrow?: number | undefined;
|
|
84214
84219
|
flexShrink?: number | undefined;
|
|
84215
84220
|
flexBasis?: string | undefined;
|
|
@@ -84318,6 +84323,7 @@ declare const frameNodeObjectSchema: z$1.ZodObject<{
|
|
|
84318
84323
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84319
84324
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84320
84325
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84326
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84321
84327
|
flexGrow?: number | undefined;
|
|
84322
84328
|
flexShrink?: number | undefined;
|
|
84323
84329
|
flexBasis?: string | undefined;
|
|
@@ -84432,6 +84438,7 @@ declare const frameNodeObjectSchema: z$1.ZodObject<{
|
|
|
84432
84438
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84433
84439
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84434
84440
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84441
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84435
84442
|
flexGrow?: number | undefined;
|
|
84436
84443
|
flexShrink?: number | undefined;
|
|
84437
84444
|
flexBasis?: string | undefined;
|
|
@@ -84545,6 +84552,7 @@ declare const frameNodeObjectSchema: z$1.ZodObject<{
|
|
|
84545
84552
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84546
84553
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84547
84554
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84555
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84548
84556
|
flexGrow?: number | undefined;
|
|
84549
84557
|
flexShrink?: number | undefined;
|
|
84550
84558
|
flexBasis?: string | undefined;
|
|
@@ -84647,6 +84655,7 @@ declare const textNodeObjectSchema: z$1.ZodObject<{
|
|
|
84647
84655
|
justifyContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"space-evenly">]>>>;
|
|
84648
84656
|
alignItems: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
84649
84657
|
alignSelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
84658
|
+
justifySelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">]>>>;
|
|
84650
84659
|
flexGrow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84651
84660
|
flexShrink: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84652
84661
|
flexBasis: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -84767,6 +84776,7 @@ declare const textNodeObjectSchema: z$1.ZodObject<{
|
|
|
84767
84776
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84768
84777
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84769
84778
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84779
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84770
84780
|
flexGrow?: number | undefined;
|
|
84771
84781
|
flexShrink?: number | undefined;
|
|
84772
84782
|
flexBasis?: string | undefined;
|
|
@@ -84875,6 +84885,7 @@ declare const textNodeObjectSchema: z$1.ZodObject<{
|
|
|
84875
84885
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84876
84886
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84877
84887
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84888
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84878
84889
|
flexGrow?: number | undefined;
|
|
84879
84890
|
flexShrink?: number | undefined;
|
|
84880
84891
|
flexBasis?: string | undefined;
|
|
@@ -84990,6 +85001,7 @@ declare const textNodeObjectSchema: z$1.ZodObject<{
|
|
|
84990
85001
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84991
85002
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84992
85003
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85004
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84993
85005
|
flexGrow?: number | undefined;
|
|
84994
85006
|
flexShrink?: number | undefined;
|
|
84995
85007
|
flexBasis?: string | undefined;
|
|
@@ -85104,6 +85116,7 @@ declare const textNodeObjectSchema: z$1.ZodObject<{
|
|
|
85104
85116
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85105
85117
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85106
85118
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85119
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85107
85120
|
flexGrow?: number | undefined;
|
|
85108
85121
|
flexShrink?: number | undefined;
|
|
85109
85122
|
flexBasis?: string | undefined;
|
|
@@ -85207,6 +85220,7 @@ declare const svgNodeObjectSchema: z$1.ZodObject<{
|
|
|
85207
85220
|
justifyContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"space-evenly">]>>>;
|
|
85208
85221
|
alignItems: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
85209
85222
|
alignSelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
85223
|
+
justifySelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">]>>>;
|
|
85210
85224
|
flexGrow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
85211
85225
|
flexShrink: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
85212
85226
|
flexBasis: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -85327,6 +85341,7 @@ declare const svgNodeObjectSchema: z$1.ZodObject<{
|
|
|
85327
85341
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85328
85342
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85329
85343
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85344
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85330
85345
|
flexGrow?: number | undefined;
|
|
85331
85346
|
flexShrink?: number | undefined;
|
|
85332
85347
|
flexBasis?: string | undefined;
|
|
@@ -85435,6 +85450,7 @@ declare const svgNodeObjectSchema: z$1.ZodObject<{
|
|
|
85435
85450
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85436
85451
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85437
85452
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85453
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85438
85454
|
flexGrow?: number | undefined;
|
|
85439
85455
|
flexShrink?: number | undefined;
|
|
85440
85456
|
flexBasis?: string | undefined;
|
|
@@ -85550,6 +85566,7 @@ declare const svgNodeObjectSchema: z$1.ZodObject<{
|
|
|
85550
85566
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85551
85567
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85552
85568
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85569
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85553
85570
|
flexGrow?: number | undefined;
|
|
85554
85571
|
flexShrink?: number | undefined;
|
|
85555
85572
|
flexBasis?: string | undefined;
|
|
@@ -85664,6 +85681,7 @@ declare const svgNodeObjectSchema: z$1.ZodObject<{
|
|
|
85664
85681
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85665
85682
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85666
85683
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85684
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85667
85685
|
flexGrow?: number | undefined;
|
|
85668
85686
|
flexShrink?: number | undefined;
|
|
85669
85687
|
flexBasis?: string | undefined;
|
|
@@ -85767,6 +85785,7 @@ declare const componentInstanceObjectSchema: z$1.ZodObject<{
|
|
|
85767
85785
|
justifyContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"space-evenly">]>>>;
|
|
85768
85786
|
alignItems: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
85769
85787
|
alignSelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
85788
|
+
justifySelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">]>>>;
|
|
85770
85789
|
flexGrow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
85771
85790
|
flexShrink: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
85772
85791
|
flexBasis: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -85887,6 +85906,7 @@ declare const componentInstanceObjectSchema: z$1.ZodObject<{
|
|
|
85887
85906
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85888
85907
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85889
85908
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85909
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85890
85910
|
flexGrow?: number | undefined;
|
|
85891
85911
|
flexShrink?: number | undefined;
|
|
85892
85912
|
flexBasis?: string | undefined;
|
|
@@ -85995,6 +86015,7 @@ declare const componentInstanceObjectSchema: z$1.ZodObject<{
|
|
|
85995
86015
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85996
86016
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85997
86017
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86018
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85998
86019
|
flexGrow?: number | undefined;
|
|
85999
86020
|
flexShrink?: number | undefined;
|
|
86000
86021
|
flexBasis?: string | undefined;
|
|
@@ -86114,6 +86135,7 @@ declare const componentInstanceObjectSchema: z$1.ZodObject<{
|
|
|
86114
86135
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86115
86136
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86116
86137
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86138
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
86117
86139
|
flexGrow?: number | undefined;
|
|
86118
86140
|
flexShrink?: number | undefined;
|
|
86119
86141
|
flexBasis?: string | undefined;
|
|
@@ -86232,6 +86254,7 @@ declare const componentInstanceObjectSchema: z$1.ZodObject<{
|
|
|
86232
86254
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86233
86255
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86234
86256
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86257
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
86235
86258
|
flexGrow?: number | undefined;
|
|
86236
86259
|
flexShrink?: number | undefined;
|
|
86237
86260
|
flexBasis?: string | undefined;
|
|
@@ -86348,6 +86371,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
86348
86371
|
justifyContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"space-evenly">]>>>;
|
|
86349
86372
|
alignItems: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
86350
86373
|
alignSelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
86374
|
+
justifySelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">]>>>;
|
|
86351
86375
|
flexGrow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
86352
86376
|
flexShrink: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
86353
86377
|
flexBasis: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -86468,6 +86492,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
86468
86492
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86469
86493
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86470
86494
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86495
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
86471
86496
|
flexGrow?: number | undefined;
|
|
86472
86497
|
flexShrink?: number | undefined;
|
|
86473
86498
|
flexBasis?: string | undefined;
|
|
@@ -86576,6 +86601,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
86576
86601
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86577
86602
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86578
86603
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86604
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
86579
86605
|
flexGrow?: number | undefined;
|
|
86580
86606
|
flexShrink?: number | undefined;
|
|
86581
86607
|
flexBasis?: string | undefined;
|
|
@@ -86691,6 +86717,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
86691
86717
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86692
86718
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86693
86719
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86720
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
86694
86721
|
flexGrow?: number | undefined;
|
|
86695
86722
|
flexShrink?: number | undefined;
|
|
86696
86723
|
flexBasis?: string | undefined;
|
|
@@ -86805,6 +86832,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
86805
86832
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86806
86833
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86807
86834
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86835
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
86808
86836
|
flexGrow?: number | undefined;
|
|
86809
86837
|
flexShrink?: number | undefined;
|
|
86810
86838
|
flexBasis?: string | undefined;
|
|
@@ -86919,6 +86947,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
86919
86947
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86920
86948
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86921
86949
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86950
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
86922
86951
|
flexGrow?: number | undefined;
|
|
86923
86952
|
flexShrink?: number | undefined;
|
|
86924
86953
|
flexBasis?: string | undefined;
|
|
@@ -87033,6 +87062,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
87033
87062
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87034
87063
|
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87035
87064
|
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87065
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
87036
87066
|
flexGrow?: number | undefined;
|
|
87037
87067
|
flexShrink?: number | undefined;
|
|
87038
87068
|
flexBasis?: string | undefined;
|
|
@@ -91894,6 +91924,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
91894
91924
|
brandPersistentId: z$1.ZodString;
|
|
91895
91925
|
sortOrder: z$1.ZodNumber;
|
|
91896
91926
|
collectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
91927
|
+
collectionLegacyId: z$1.ZodOptional<z$1.ZodString>;
|
|
91897
91928
|
codeSyntax: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
91898
91929
|
scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
91899
91930
|
} & {
|
|
@@ -91957,6 +91988,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
91957
91988
|
description?: string | undefined;
|
|
91958
91989
|
};
|
|
91959
91990
|
collectionId?: string | undefined;
|
|
91991
|
+
collectionLegacyId?: string | undefined;
|
|
91960
91992
|
codeSyntax?: Record<string, string> | undefined;
|
|
91961
91993
|
scopes?: string[] | undefined;
|
|
91962
91994
|
}, {
|
|
@@ -91981,6 +92013,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
91981
92013
|
description?: string | undefined;
|
|
91982
92014
|
};
|
|
91983
92015
|
collectionId?: string | undefined;
|
|
92016
|
+
collectionLegacyId?: string | undefined;
|
|
91984
92017
|
codeSyntax?: Record<string, string> | undefined;
|
|
91985
92018
|
scopes?: string[] | undefined;
|
|
91986
92019
|
}>>, "many">>;
|
|
@@ -97799,6 +97832,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
97799
97832
|
}>>, "many">;
|
|
97800
97833
|
sortOrder: z$1.ZodNumber;
|
|
97801
97834
|
collectionIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
97835
|
+
collectionLegacyIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
97802
97836
|
}, "strip", z$1.ZodTypeAny, {
|
|
97803
97837
|
id: string;
|
|
97804
97838
|
brandPersistentId: string;
|
|
@@ -98190,6 +98224,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
98190
98224
|
};
|
|
98191
98225
|
parentId?: string | undefined;
|
|
98192
98226
|
collectionIds?: string[] | undefined;
|
|
98227
|
+
collectionLegacyIds?: string[] | undefined;
|
|
98193
98228
|
}, {
|
|
98194
98229
|
id: string;
|
|
98195
98230
|
brandPersistentId: string;
|
|
@@ -98581,6 +98616,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
98581
98616
|
};
|
|
98582
98617
|
parentId?: string | undefined;
|
|
98583
98618
|
collectionIds?: string[] | undefined;
|
|
98619
|
+
collectionLegacyIds?: string[] | undefined;
|
|
98584
98620
|
}>, "many">>;
|
|
98585
98621
|
figmaFileStructures: z$1.ZodArray<z$1.ZodObject<{
|
|
98586
98622
|
id: z$1.ZodString;
|
|
@@ -99197,6 +99233,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
99197
99233
|
};
|
|
99198
99234
|
parentId?: string | undefined;
|
|
99199
99235
|
collectionIds?: string[] | undefined;
|
|
99236
|
+
collectionLegacyIds?: string[] | undefined;
|
|
99200
99237
|
}[];
|
|
99201
99238
|
components: {
|
|
99202
99239
|
id: string;
|
|
@@ -99658,6 +99695,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
99658
99695
|
description?: string | undefined;
|
|
99659
99696
|
};
|
|
99660
99697
|
collectionId?: string | undefined;
|
|
99698
|
+
collectionLegacyId?: string | undefined;
|
|
99661
99699
|
codeSyntax?: Record<string, string> | undefined;
|
|
99662
99700
|
scopes?: string[] | undefined;
|
|
99663
99701
|
})[];
|
|
@@ -100533,6 +100571,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
100533
100571
|
};
|
|
100534
100572
|
parentId?: string | undefined;
|
|
100535
100573
|
collectionIds?: string[] | undefined;
|
|
100574
|
+
collectionLegacyIds?: string[] | undefined;
|
|
100536
100575
|
}[] | undefined;
|
|
100537
100576
|
components?: {
|
|
100538
100577
|
id: string;
|
|
@@ -100989,6 +101028,7 @@ declare const ImportModelCollection: z$1.ZodObject<{
|
|
|
100989
101028
|
description?: string | undefined;
|
|
100990
101029
|
};
|
|
100991
101030
|
collectionId?: string | undefined;
|
|
101031
|
+
collectionLegacyId?: string | undefined;
|
|
100992
101032
|
codeSyntax?: Record<string, string> | undefined;
|
|
100993
101033
|
scopes?: string[] | undefined;
|
|
100994
101034
|
})[] | undefined;
|
|
@@ -103616,6 +103656,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
103616
103656
|
}>;
|
|
103617
103657
|
originId: z$1.ZodString;
|
|
103618
103658
|
collectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
103659
|
+
collectionLegacyId: z$1.ZodOptional<z$1.ZodString>;
|
|
103619
103660
|
codeSyntax: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
103620
103661
|
scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
103621
103662
|
} & {
|
|
@@ -103665,6 +103706,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
103665
103706
|
referenceResolutionFailed?: boolean | undefined;
|
|
103666
103707
|
};
|
|
103667
103708
|
collectionId?: string | undefined;
|
|
103709
|
+
collectionLegacyId?: string | undefined;
|
|
103668
103710
|
codeSyntax?: Record<string, string> | undefined;
|
|
103669
103711
|
scopes?: string[] | undefined;
|
|
103670
103712
|
}, {
|
|
@@ -103685,6 +103727,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
103685
103727
|
referenceResolutionFailed?: boolean | undefined;
|
|
103686
103728
|
};
|
|
103687
103729
|
collectionId?: string | undefined;
|
|
103730
|
+
collectionLegacyId?: string | undefined;
|
|
103688
103731
|
codeSyntax?: Record<string, string> | undefined;
|
|
103689
103732
|
scopes?: string[] | undefined;
|
|
103690
103733
|
}>>, "many">>;
|
|
@@ -109812,6 +109855,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
109812
109855
|
};
|
|
109813
109856
|
}>>, "many">;
|
|
109814
109857
|
collectionIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
109858
|
+
collectionLegacyIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
109815
109859
|
}, "strip", z$1.ZodTypeAny, {
|
|
109816
109860
|
id: string;
|
|
109817
109861
|
meta: {
|
|
@@ -110196,6 +110240,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
110196
110240
|
}[];
|
|
110197
110241
|
parentId?: string | undefined;
|
|
110198
110242
|
collectionIds?: string[] | undefined;
|
|
110243
|
+
collectionLegacyIds?: string[] | undefined;
|
|
110199
110244
|
}, {
|
|
110200
110245
|
id: string;
|
|
110201
110246
|
meta: {
|
|
@@ -110580,6 +110625,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
110580
110625
|
}[];
|
|
110581
110626
|
parentId?: string | undefined;
|
|
110582
110627
|
collectionIds?: string[] | undefined;
|
|
110628
|
+
collectionLegacyIds?: string[] | undefined;
|
|
110583
110629
|
}>, "many">>;
|
|
110584
110630
|
figmaFileStructure: z$1.ZodOptional<z$1.ZodObject<Omit<{
|
|
110585
110631
|
id: z$1.ZodString;
|
|
@@ -111250,6 +111296,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
111250
111296
|
}[];
|
|
111251
111297
|
parentId?: string | undefined;
|
|
111252
111298
|
collectionIds?: string[] | undefined;
|
|
111299
|
+
collectionLegacyIds?: string[] | undefined;
|
|
111253
111300
|
}[];
|
|
111254
111301
|
components: {
|
|
111255
111302
|
id: string;
|
|
@@ -111698,6 +111745,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
111698
111745
|
referenceResolutionFailed?: boolean | undefined;
|
|
111699
111746
|
};
|
|
111700
111747
|
collectionId?: string | undefined;
|
|
111748
|
+
collectionLegacyId?: string | undefined;
|
|
111701
111749
|
codeSyntax?: Record<string, string> | undefined;
|
|
111702
111750
|
scopes?: string[] | undefined;
|
|
111703
111751
|
})[];
|
|
@@ -112587,6 +112635,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
112587
112635
|
}[];
|
|
112588
112636
|
parentId?: string | undefined;
|
|
112589
112637
|
collectionIds?: string[] | undefined;
|
|
112638
|
+
collectionLegacyIds?: string[] | undefined;
|
|
112590
112639
|
}[] | undefined;
|
|
112591
112640
|
components?: {
|
|
112592
112641
|
id: string;
|
|
@@ -113035,6 +113084,7 @@ declare const ImportModelInputCollection: z$1.ZodObject<{
|
|
|
113035
113084
|
referenceResolutionFailed?: boolean | undefined;
|
|
113036
113085
|
};
|
|
113037
113086
|
collectionId?: string | undefined;
|
|
113087
|
+
collectionLegacyId?: string | undefined;
|
|
113038
113088
|
codeSyntax?: Record<string, string> | undefined;
|
|
113039
113089
|
scopes?: string[] | undefined;
|
|
113040
113090
|
})[] | undefined;
|
|
@@ -124264,6 +124314,7 @@ declare const ThemeImportModel: z$1.ZodObject<{
|
|
|
124264
124314
|
}>>, "many">;
|
|
124265
124315
|
sortOrder: z$1.ZodNumber;
|
|
124266
124316
|
collectionIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
124317
|
+
collectionLegacyIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
124267
124318
|
}, "strip", z$1.ZodTypeAny, {
|
|
124268
124319
|
id: string;
|
|
124269
124320
|
brandPersistentId: string;
|
|
@@ -124655,6 +124706,7 @@ declare const ThemeImportModel: z$1.ZodObject<{
|
|
|
124655
124706
|
};
|
|
124656
124707
|
parentId?: string | undefined;
|
|
124657
124708
|
collectionIds?: string[] | undefined;
|
|
124709
|
+
collectionLegacyIds?: string[] | undefined;
|
|
124658
124710
|
}, {
|
|
124659
124711
|
id: string;
|
|
124660
124712
|
brandPersistentId: string;
|
|
@@ -125046,6 +125098,7 @@ declare const ThemeImportModel: z$1.ZodObject<{
|
|
|
125046
125098
|
};
|
|
125047
125099
|
parentId?: string | undefined;
|
|
125048
125100
|
collectionIds?: string[] | undefined;
|
|
125101
|
+
collectionLegacyIds?: string[] | undefined;
|
|
125049
125102
|
}>;
|
|
125050
125103
|
type ThemeImportModel = z$1.infer<typeof ThemeImportModel>;
|
|
125051
125104
|
declare const ThemeImportModelInput: z$1.ZodObject<{
|
|
@@ -127372,6 +127425,7 @@ declare const ThemeImportModelInput: z$1.ZodObject<{
|
|
|
127372
127425
|
};
|
|
127373
127426
|
}>>, "many">;
|
|
127374
127427
|
collectionIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
127428
|
+
collectionLegacyIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
127375
127429
|
}, "strip", z$1.ZodTypeAny, {
|
|
127376
127430
|
id: string;
|
|
127377
127431
|
meta: {
|
|
@@ -127756,6 +127810,7 @@ declare const ThemeImportModelInput: z$1.ZodObject<{
|
|
|
127756
127810
|
}[];
|
|
127757
127811
|
parentId?: string | undefined;
|
|
127758
127812
|
collectionIds?: string[] | undefined;
|
|
127813
|
+
collectionLegacyIds?: string[] | undefined;
|
|
127759
127814
|
}, {
|
|
127760
127815
|
id: string;
|
|
127761
127816
|
meta: {
|
|
@@ -128140,6 +128195,7 @@ declare const ThemeImportModelInput: z$1.ZodObject<{
|
|
|
128140
128195
|
}[];
|
|
128141
128196
|
parentId?: string | undefined;
|
|
128142
128197
|
collectionIds?: string[] | undefined;
|
|
128198
|
+
collectionLegacyIds?: string[] | undefined;
|
|
128143
128199
|
}>;
|
|
128144
128200
|
type ThemeImportModelInput = z$1.infer<typeof ThemeImportModelInput>;
|
|
128145
128201
|
declare const ThemeUpdateImportModel: z$1.ZodObject<{
|
|
@@ -134269,6 +134325,7 @@ declare const DesignTokenImportModelBase: z$1.ZodObject<{
|
|
|
134269
134325
|
brandPersistentId: z$1.ZodString;
|
|
134270
134326
|
sortOrder: z$1.ZodNumber;
|
|
134271
134327
|
collectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
134328
|
+
collectionLegacyId: z$1.ZodOptional<z$1.ZodString>;
|
|
134272
134329
|
codeSyntax: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
134273
134330
|
scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
134274
134331
|
} & {
|
|
@@ -134332,6 +134389,7 @@ declare const DesignTokenImportModelBase: z$1.ZodObject<{
|
|
|
134332
134389
|
description?: string | undefined;
|
|
134333
134390
|
};
|
|
134334
134391
|
collectionId?: string | undefined;
|
|
134392
|
+
collectionLegacyId?: string | undefined;
|
|
134335
134393
|
codeSyntax?: Record<string, string> | undefined;
|
|
134336
134394
|
scopes?: string[] | undefined;
|
|
134337
134395
|
}, {
|
|
@@ -134356,6 +134414,7 @@ declare const DesignTokenImportModelBase: z$1.ZodObject<{
|
|
|
134356
134414
|
description?: string | undefined;
|
|
134357
134415
|
};
|
|
134358
134416
|
collectionId?: string | undefined;
|
|
134417
|
+
collectionLegacyId?: string | undefined;
|
|
134359
134418
|
codeSyntax?: Record<string, string> | undefined;
|
|
134360
134419
|
scopes?: string[] | undefined;
|
|
134361
134420
|
}>;
|
|
@@ -134373,6 +134432,7 @@ declare const DesignTokenImportModelInputBase: z$1.ZodObject<{
|
|
|
134373
134432
|
}>;
|
|
134374
134433
|
originId: z$1.ZodString;
|
|
134375
134434
|
collectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
134435
|
+
collectionLegacyId: z$1.ZodOptional<z$1.ZodString>;
|
|
134376
134436
|
codeSyntax: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
134377
134437
|
scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
134378
134438
|
} & {
|
|
@@ -134422,6 +134482,7 @@ declare const DesignTokenImportModelInputBase: z$1.ZodObject<{
|
|
|
134422
134482
|
referenceResolutionFailed?: boolean | undefined;
|
|
134423
134483
|
};
|
|
134424
134484
|
collectionId?: string | undefined;
|
|
134485
|
+
collectionLegacyId?: string | undefined;
|
|
134425
134486
|
codeSyntax?: Record<string, string> | undefined;
|
|
134426
134487
|
scopes?: string[] | undefined;
|
|
134427
134488
|
}, {
|
|
@@ -134442,6 +134503,7 @@ declare const DesignTokenImportModelInputBase: z$1.ZodObject<{
|
|
|
134442
134503
|
referenceResolutionFailed?: boolean | undefined;
|
|
134443
134504
|
};
|
|
134444
134505
|
collectionId?: string | undefined;
|
|
134506
|
+
collectionLegacyId?: string | undefined;
|
|
134445
134507
|
codeSyntax?: Record<string, string> | undefined;
|
|
134446
134508
|
scopes?: string[] | undefined;
|
|
134447
134509
|
}>;
|
|
@@ -136679,6 +136741,7 @@ declare const DesignTokenImportModel: z$1.ZodIntersection<z$1.ZodDiscriminatedUn
|
|
|
136679
136741
|
brandPersistentId: z$1.ZodString;
|
|
136680
136742
|
sortOrder: z$1.ZodNumber;
|
|
136681
136743
|
collectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
136744
|
+
collectionLegacyId: z$1.ZodOptional<z$1.ZodString>;
|
|
136682
136745
|
codeSyntax: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
136683
136746
|
scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
136684
136747
|
} & {
|
|
@@ -136742,6 +136805,7 @@ declare const DesignTokenImportModel: z$1.ZodIntersection<z$1.ZodDiscriminatedUn
|
|
|
136742
136805
|
description?: string | undefined;
|
|
136743
136806
|
};
|
|
136744
136807
|
collectionId?: string | undefined;
|
|
136808
|
+
collectionLegacyId?: string | undefined;
|
|
136745
136809
|
codeSyntax?: Record<string, string> | undefined;
|
|
136746
136810
|
scopes?: string[] | undefined;
|
|
136747
136811
|
}, {
|
|
@@ -136766,6 +136830,7 @@ declare const DesignTokenImportModel: z$1.ZodIntersection<z$1.ZodDiscriminatedUn
|
|
|
136766
136830
|
description?: string | undefined;
|
|
136767
136831
|
};
|
|
136768
136832
|
collectionId?: string | undefined;
|
|
136833
|
+
collectionLegacyId?: string | undefined;
|
|
136769
136834
|
codeSyntax?: Record<string, string> | undefined;
|
|
136770
136835
|
scopes?: string[] | undefined;
|
|
136771
136836
|
}>>;
|
|
@@ -139005,6 +139070,7 @@ declare const DesignTokenImportModelInput: z$1.ZodIntersection<z$1.ZodDiscrimina
|
|
|
139005
139070
|
}>;
|
|
139006
139071
|
originId: z$1.ZodString;
|
|
139007
139072
|
collectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
139073
|
+
collectionLegacyId: z$1.ZodOptional<z$1.ZodString>;
|
|
139008
139074
|
codeSyntax: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
139009
139075
|
scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
139010
139076
|
} & {
|
|
@@ -139054,6 +139120,7 @@ declare const DesignTokenImportModelInput: z$1.ZodIntersection<z$1.ZodDiscrimina
|
|
|
139054
139120
|
referenceResolutionFailed?: boolean | undefined;
|
|
139055
139121
|
};
|
|
139056
139122
|
collectionId?: string | undefined;
|
|
139123
|
+
collectionLegacyId?: string | undefined;
|
|
139057
139124
|
codeSyntax?: Record<string, string> | undefined;
|
|
139058
139125
|
scopes?: string[] | undefined;
|
|
139059
139126
|
}, {
|
|
@@ -139074,6 +139141,7 @@ declare const DesignTokenImportModelInput: z$1.ZodIntersection<z$1.ZodDiscrimina
|
|
|
139074
139141
|
referenceResolutionFailed?: boolean | undefined;
|
|
139075
139142
|
};
|
|
139076
139143
|
collectionId?: string | undefined;
|
|
139144
|
+
collectionLegacyId?: string | undefined;
|
|
139077
139145
|
codeSyntax?: Record<string, string> | undefined;
|
|
139078
139146
|
scopes?: string[] | undefined;
|
|
139079
139147
|
}>>;
|
package/dist/index.js
CHANGED
|
@@ -4296,7 +4296,8 @@ var ThemeImportModel = _zod.z.object({
|
|
|
4296
4296
|
originSource: ThemeOriginSource,
|
|
4297
4297
|
overrides: _zod.z.array(ThemeOverrideImportModel),
|
|
4298
4298
|
sortOrder: _zod.z.number(),
|
|
4299
|
-
collectionIds: _zod.z.array(_zod.z.string()).optional()
|
|
4299
|
+
collectionIds: _zod.z.array(_zod.z.string()).optional(),
|
|
4300
|
+
collectionLegacyIds: _zod.z.array(_zod.z.string()).optional()
|
|
4300
4301
|
});
|
|
4301
4302
|
var ThemeImportModelInput = _zod.z.object({
|
|
4302
4303
|
id: _zod.z.string(),
|
|
@@ -4304,7 +4305,8 @@ var ThemeImportModelInput = _zod.z.object({
|
|
|
4304
4305
|
meta: ObjectMeta,
|
|
4305
4306
|
originObjects: _zod.z.array(ThemeOriginObject),
|
|
4306
4307
|
overrides: _zod.z.array(ThemeOverrideImportModelInput),
|
|
4307
|
-
collectionIds: _zod.z.array(_zod.z.string()).optional()
|
|
4308
|
+
collectionIds: _zod.z.array(_zod.z.string()).optional(),
|
|
4309
|
+
collectionLegacyIds: _zod.z.array(_zod.z.string()).optional()
|
|
4308
4310
|
});
|
|
4309
4311
|
var ThemeUpdateImportModel = _zod.z.object({
|
|
4310
4312
|
themePersistentId: _zod.z.string(),
|
|
@@ -4319,6 +4321,7 @@ var ThemeUpdateImportModelInput = _zod.z.object({
|
|
|
4319
4321
|
|
|
4320
4322
|
var DesignTokenImportModelPart = _zod.z.object({
|
|
4321
4323
|
collectionId: _zod.z.string().optional(),
|
|
4324
|
+
collectionLegacyId: _zod.z.string().optional(),
|
|
4322
4325
|
codeSyntax: _zod.z.record(_zod.z.coerce.string()).optional(),
|
|
4323
4326
|
scopes: _zod.z.array(_zod.z.string()).optional()
|
|
4324
4327
|
});
|
|
@@ -4703,6 +4706,13 @@ var FigmaExporterProcessedStylesSchema = _zod.z.object({
|
|
|
4703
4706
|
_zod.z.literal("center"),
|
|
4704
4707
|
_zod.z.literal("baseline")
|
|
4705
4708
|
]).optional(),
|
|
4709
|
+
justifySelf: _zod.z.union([
|
|
4710
|
+
_zod.z.literal("auto"),
|
|
4711
|
+
_zod.z.literal("stretch"),
|
|
4712
|
+
_zod.z.literal("flex-start"),
|
|
4713
|
+
_zod.z.literal("flex-end"),
|
|
4714
|
+
_zod.z.literal("center")
|
|
4715
|
+
]).optional(),
|
|
4706
4716
|
flexGrow: _zod.z.number().optional(),
|
|
4707
4717
|
flexShrink: _zod.z.number().optional(),
|
|
4708
4718
|
flexBasis: _zod.z.string().optional(),
|