@supernova-studio/model 1.9.11 → 1.9.13
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 +836 -7
- package/dist/index.d.ts +836 -7
- package/dist/index.js +27 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -85704,6 +85704,7 @@ declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
|
85704
85704
|
mixBlendMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>;
|
|
85705
85705
|
transform: z.ZodOptional<z.ZodString>;
|
|
85706
85706
|
transformOrigin: z.ZodOptional<z.ZodString>;
|
|
85707
|
+
rotate: z.ZodOptional<z.ZodString>;
|
|
85707
85708
|
clipPath: z.ZodOptional<z.ZodString>;
|
|
85708
85709
|
color: z.ZodOptional<z.ZodString>;
|
|
85709
85710
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
@@ -85818,6 +85819,7 @@ declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
|
85818
85819
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85819
85820
|
transform?: string | undefined;
|
|
85820
85821
|
transformOrigin?: string | undefined;
|
|
85822
|
+
rotate?: string | undefined;
|
|
85821
85823
|
clipPath?: string | undefined;
|
|
85822
85824
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85823
85825
|
fontStretch?: string | undefined;
|
|
@@ -85925,6 +85927,7 @@ declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
|
85925
85927
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85926
85928
|
transform?: string | undefined;
|
|
85927
85929
|
transformOrigin?: string | undefined;
|
|
85930
|
+
rotate?: string | undefined;
|
|
85928
85931
|
clipPath?: string | undefined;
|
|
85929
85932
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85930
85933
|
fontStretch?: string | undefined;
|
|
@@ -85957,7 +85960,7 @@ declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
|
85957
85960
|
type ProcessedStyles = z.infer<typeof FigmaExporterProcessedStylesSchema>;
|
|
85958
85961
|
declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
85959
85962
|
id: z.ZodString;
|
|
85960
|
-
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
85963
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
85961
85964
|
parentId: z.ZodNullable<z.ZodString>;
|
|
85962
85965
|
styles: z.ZodObject<{
|
|
85963
85966
|
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
@@ -86031,6 +86034,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86031
86034
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
86032
86035
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86033
86036
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86037
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86034
86038
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86035
86039
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86036
86040
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -86145,6 +86149,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86145
86149
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86146
86150
|
transform?: string | undefined;
|
|
86147
86151
|
transformOrigin?: string | undefined;
|
|
86152
|
+
rotate?: string | undefined;
|
|
86148
86153
|
clipPath?: string | undefined;
|
|
86149
86154
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86150
86155
|
fontStretch?: string | undefined;
|
|
@@ -86252,6 +86257,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86252
86257
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86253
86258
|
transform?: string | undefined;
|
|
86254
86259
|
transformOrigin?: string | undefined;
|
|
86260
|
+
rotate?: string | undefined;
|
|
86255
86261
|
clipPath?: string | undefined;
|
|
86256
86262
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86257
86263
|
fontStretch?: string | undefined;
|
|
@@ -86365,6 +86371,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86365
86371
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86366
86372
|
transform?: string | undefined;
|
|
86367
86373
|
transformOrigin?: string | undefined;
|
|
86374
|
+
rotate?: string | undefined;
|
|
86368
86375
|
clipPath?: string | undefined;
|
|
86369
86376
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86370
86377
|
fontStretch?: string | undefined;
|
|
@@ -86477,6 +86484,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86477
86484
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86478
86485
|
transform?: string | undefined;
|
|
86479
86486
|
transformOrigin?: string | undefined;
|
|
86487
|
+
rotate?: string | undefined;
|
|
86480
86488
|
clipPath?: string | undefined;
|
|
86481
86489
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86482
86490
|
fontStretch?: string | undefined;
|
|
@@ -86510,7 +86518,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86510
86518
|
}>;
|
|
86511
86519
|
declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
86512
86520
|
id: z.ZodString;
|
|
86513
|
-
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
86521
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
86514
86522
|
parentId: z.ZodNullable<z.ZodString>;
|
|
86515
86523
|
styles: z.ZodObject<{
|
|
86516
86524
|
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
@@ -86584,6 +86592,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86584
86592
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
86585
86593
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86586
86594
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86595
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86587
86596
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86588
86597
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86589
86598
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -86698,6 +86707,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86698
86707
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86699
86708
|
transform?: string | undefined;
|
|
86700
86709
|
transformOrigin?: string | undefined;
|
|
86710
|
+
rotate?: string | undefined;
|
|
86701
86711
|
clipPath?: string | undefined;
|
|
86702
86712
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86703
86713
|
fontStretch?: string | undefined;
|
|
@@ -86805,6 +86815,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86805
86815
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86806
86816
|
transform?: string | undefined;
|
|
86807
86817
|
transformOrigin?: string | undefined;
|
|
86818
|
+
rotate?: string | undefined;
|
|
86808
86819
|
clipPath?: string | undefined;
|
|
86809
86820
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86810
86821
|
fontStretch?: string | undefined;
|
|
@@ -86919,6 +86930,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86919
86930
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86920
86931
|
transform?: string | undefined;
|
|
86921
86932
|
transformOrigin?: string | undefined;
|
|
86933
|
+
rotate?: string | undefined;
|
|
86922
86934
|
clipPath?: string | undefined;
|
|
86923
86935
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86924
86936
|
fontStretch?: string | undefined;
|
|
@@ -87032,6 +87044,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87032
87044
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87033
87045
|
transform?: string | undefined;
|
|
87034
87046
|
transformOrigin?: string | undefined;
|
|
87047
|
+
rotate?: string | undefined;
|
|
87035
87048
|
clipPath?: string | undefined;
|
|
87036
87049
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87037
87050
|
fontStretch?: string | undefined;
|
|
@@ -87066,7 +87079,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87066
87079
|
}>;
|
|
87067
87080
|
declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
87068
87081
|
id: z.ZodString;
|
|
87069
|
-
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
87082
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
87070
87083
|
parentId: z.ZodNullable<z.ZodString>;
|
|
87071
87084
|
styles: z.ZodObject<{
|
|
87072
87085
|
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
@@ -87140,6 +87153,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87140
87153
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
87141
87154
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87142
87155
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87156
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87143
87157
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87144
87158
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87145
87159
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -87254,6 +87268,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87254
87268
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87255
87269
|
transform?: string | undefined;
|
|
87256
87270
|
transformOrigin?: string | undefined;
|
|
87271
|
+
rotate?: string | undefined;
|
|
87257
87272
|
clipPath?: string | undefined;
|
|
87258
87273
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87259
87274
|
fontStretch?: string | undefined;
|
|
@@ -87361,6 +87376,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87361
87376
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87362
87377
|
transform?: string | undefined;
|
|
87363
87378
|
transformOrigin?: string | undefined;
|
|
87379
|
+
rotate?: string | undefined;
|
|
87364
87380
|
clipPath?: string | undefined;
|
|
87365
87381
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87366
87382
|
fontStretch?: string | undefined;
|
|
@@ -87475,6 +87491,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87475
87491
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87476
87492
|
transform?: string | undefined;
|
|
87477
87493
|
transformOrigin?: string | undefined;
|
|
87494
|
+
rotate?: string | undefined;
|
|
87478
87495
|
clipPath?: string | undefined;
|
|
87479
87496
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87480
87497
|
fontStretch?: string | undefined;
|
|
@@ -87588,6 +87605,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87588
87605
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87589
87606
|
transform?: string | undefined;
|
|
87590
87607
|
transformOrigin?: string | undefined;
|
|
87608
|
+
rotate?: string | undefined;
|
|
87591
87609
|
clipPath?: string | undefined;
|
|
87592
87610
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87593
87611
|
fontStretch?: string | undefined;
|
|
@@ -87620,17 +87638,594 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87620
87638
|
parentId: string | null;
|
|
87621
87639
|
svgString: string;
|
|
87622
87640
|
}>;
|
|
87641
|
+
declare const componentInstanceObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
87642
|
+
id: z.ZodString;
|
|
87643
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
87644
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
87645
|
+
styles: z.ZodObject<{
|
|
87646
|
+
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
87647
|
+
position: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"absolute">, z.ZodLiteral<"relative">, z.ZodLiteral<"fixed">, z.ZodLiteral<"static">, z.ZodLiteral<"sticky">]>>>;
|
|
87648
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87649
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87650
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87651
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87652
|
+
width: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87653
|
+
height: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87654
|
+
minWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87655
|
+
minHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87656
|
+
maxWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87657
|
+
maxHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87658
|
+
zIndex: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87659
|
+
overflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87660
|
+
overflowX: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87661
|
+
overflowY: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87662
|
+
aspectRatio: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87663
|
+
flexDirection: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"row-reverse">, z.ZodLiteral<"column">, z.ZodLiteral<"column-reverse">]>>>;
|
|
87664
|
+
justifyContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"space-evenly">]>>>;
|
|
87665
|
+
alignItems: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
87666
|
+
alignSelf: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
87667
|
+
flexGrow: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87668
|
+
flexShrink: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87669
|
+
flexBasis: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87670
|
+
flexWrap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nowrap">, z.ZodLiteral<"wrap">, z.ZodLiteral<"wrap-reverse">]>>>;
|
|
87671
|
+
gap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87672
|
+
rowGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87673
|
+
columnGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87674
|
+
gridTemplateColumns: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87675
|
+
gridTemplateRows: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87676
|
+
gridColumn: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87677
|
+
gridRow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87678
|
+
gridAutoFlow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"column">, z.ZodLiteral<"dense">, z.ZodLiteral<"row dense">, z.ZodLiteral<"column dense">]>>>;
|
|
87679
|
+
alignContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"stretch">]>>>;
|
|
87680
|
+
padding: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87681
|
+
paddingTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87682
|
+
paddingRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87683
|
+
paddingBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87684
|
+
paddingLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87685
|
+
margin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87686
|
+
marginTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87687
|
+
marginRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87688
|
+
marginBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87689
|
+
marginLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87690
|
+
border: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87691
|
+
borderWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87692
|
+
borderStyle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87693
|
+
borderColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87694
|
+
borderTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87695
|
+
borderRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87696
|
+
borderBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87697
|
+
borderLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87698
|
+
borderRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87699
|
+
borderTopLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87700
|
+
borderTopRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87701
|
+
borderBottomRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87702
|
+
borderBottomLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87703
|
+
backgroundColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87704
|
+
backgroundImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87705
|
+
backgroundSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87706
|
+
backgroundPosition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87707
|
+
backgroundRepeat: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87708
|
+
backgroundClip: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">, z.ZodLiteral<"text">]>>>;
|
|
87709
|
+
backgroundOrigin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">]>>>;
|
|
87710
|
+
opacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87711
|
+
boxShadow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87712
|
+
filter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87713
|
+
backdropFilter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87714
|
+
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
87715
|
+
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87716
|
+
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87717
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87718
|
+
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87719
|
+
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87720
|
+
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87721
|
+
fontSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87722
|
+
fontWeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
87723
|
+
fontStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"italic">, z.ZodLiteral<"oblique">]>>>;
|
|
87724
|
+
fontStretch: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87725
|
+
fontVariantCaps: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"small-caps">, z.ZodLiteral<"all-small-caps">, z.ZodLiteral<"petite-caps">, z.ZodLiteral<"all-petite-caps">, z.ZodLiteral<"unicase">, z.ZodLiteral<"titling-caps">]>>>;
|
|
87726
|
+
lineHeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
87727
|
+
letterSpacing: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87728
|
+
textAlign: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">, z.ZodLiteral<"justify">, z.ZodLiteral<"start">, z.ZodLiteral<"end">]>>>;
|
|
87729
|
+
textDecorationLine: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"underline">, z.ZodLiteral<"overline">, z.ZodLiteral<"line-through">]>>>;
|
|
87730
|
+
textDecorationColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87731
|
+
textDecorationStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"solid">, z.ZodLiteral<"double">, z.ZodLiteral<"dotted">, z.ZodLiteral<"dashed">, z.ZodLiteral<"wavy">]>>>;
|
|
87732
|
+
textDecorationThickness: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87733
|
+
textTransform: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"uppercase">, z.ZodLiteral<"lowercase">, z.ZodLiteral<"capitalize">, z.ZodLiteral<"full-width">]>>>;
|
|
87734
|
+
whiteSpace: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"nowrap">, z.ZodLiteral<"pre">, z.ZodLiteral<"pre-wrap">, z.ZodLiteral<"pre-line">, z.ZodLiteral<"break-spaces">]>>>;
|
|
87735
|
+
wordBreak: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"break-all">, z.ZodLiteral<"keep-all">, z.ZodLiteral<"break-word">]>>>;
|
|
87736
|
+
textOverflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"clip">, z.ZodLiteral<"ellipsis">]>>>;
|
|
87737
|
+
WebkitLineClamp: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87738
|
+
WebkitBoxOrient: z.ZodOptional<z.ZodOptional<z.ZodLiteral<"vertical">>>;
|
|
87739
|
+
fontFeatureSettings: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87740
|
+
fill: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87741
|
+
stroke: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87742
|
+
strokeWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87743
|
+
strokeLinecap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"butt">, z.ZodLiteral<"round">, z.ZodLiteral<"square">]>>>;
|
|
87744
|
+
strokeLinejoin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"miter">, z.ZodLiteral<"round">, z.ZodLiteral<"bevel">]>>>;
|
|
87745
|
+
strokeDasharray: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87746
|
+
strokeDashoffset: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87747
|
+
transition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87748
|
+
animation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87749
|
+
cursor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87750
|
+
userSelect: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"text">, z.ZodLiteral<"all">]>>>;
|
|
87751
|
+
pointerEvents: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"visiblePainted">, z.ZodLiteral<"visibleFill">, z.ZodLiteral<"visibleStroke">, z.ZodLiteral<"visible">, z.ZodLiteral<"painted">, z.ZodLiteral<"fill">, z.ZodLiteral<"stroke">, z.ZodLiteral<"all">, z.ZodLiteral<"inherit">]>>>;
|
|
87752
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"collapse">]>>>;
|
|
87753
|
+
}, "strip", z.ZodTypeAny, {
|
|
87754
|
+
filter?: string | undefined;
|
|
87755
|
+
fill?: string | undefined;
|
|
87756
|
+
top?: string | undefined;
|
|
87757
|
+
color?: string | undefined;
|
|
87758
|
+
width?: string | undefined;
|
|
87759
|
+
height?: string | undefined;
|
|
87760
|
+
opacity?: number | undefined;
|
|
87761
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87762
|
+
backgroundColor?: string | undefined;
|
|
87763
|
+
gap?: string | undefined;
|
|
87764
|
+
aspectRatio?: string | undefined;
|
|
87765
|
+
minHeight?: string | undefined;
|
|
87766
|
+
bottom?: string | undefined;
|
|
87767
|
+
left?: string | undefined;
|
|
87768
|
+
right?: string | undefined;
|
|
87769
|
+
padding?: string | undefined;
|
|
87770
|
+
fontSize?: string | undefined;
|
|
87771
|
+
fontFamily?: string | undefined;
|
|
87772
|
+
fontWeight?: string | number | undefined;
|
|
87773
|
+
letterSpacing?: string | undefined;
|
|
87774
|
+
lineHeight?: string | number | undefined;
|
|
87775
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87776
|
+
minWidth?: string | undefined;
|
|
87777
|
+
maxWidth?: string | undefined;
|
|
87778
|
+
maxHeight?: string | undefined;
|
|
87779
|
+
zIndex?: number | undefined;
|
|
87780
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87781
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87782
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87783
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87784
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87785
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87786
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87787
|
+
flexGrow?: number | undefined;
|
|
87788
|
+
flexShrink?: number | undefined;
|
|
87789
|
+
flexBasis?: string | undefined;
|
|
87790
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87791
|
+
rowGap?: string | undefined;
|
|
87792
|
+
columnGap?: string | undefined;
|
|
87793
|
+
gridTemplateColumns?: string | undefined;
|
|
87794
|
+
gridTemplateRows?: string | undefined;
|
|
87795
|
+
gridColumn?: string | undefined;
|
|
87796
|
+
gridRow?: string | undefined;
|
|
87797
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87798
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87799
|
+
paddingTop?: string | undefined;
|
|
87800
|
+
paddingRight?: string | undefined;
|
|
87801
|
+
paddingBottom?: string | undefined;
|
|
87802
|
+
paddingLeft?: string | undefined;
|
|
87803
|
+
margin?: string | undefined;
|
|
87804
|
+
marginTop?: string | undefined;
|
|
87805
|
+
marginRight?: string | undefined;
|
|
87806
|
+
marginBottom?: string | undefined;
|
|
87807
|
+
marginLeft?: string | undefined;
|
|
87808
|
+
border?: string | undefined;
|
|
87809
|
+
borderWidth?: string | undefined;
|
|
87810
|
+
borderStyle?: string | undefined;
|
|
87811
|
+
borderColor?: string | undefined;
|
|
87812
|
+
borderTop?: string | undefined;
|
|
87813
|
+
borderRight?: string | undefined;
|
|
87814
|
+
borderBottom?: string | undefined;
|
|
87815
|
+
borderLeft?: string | undefined;
|
|
87816
|
+
borderRadius?: string | undefined;
|
|
87817
|
+
borderTopLeftRadius?: string | undefined;
|
|
87818
|
+
borderTopRightRadius?: string | undefined;
|
|
87819
|
+
borderBottomRightRadius?: string | undefined;
|
|
87820
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87821
|
+
backgroundImage?: string | undefined;
|
|
87822
|
+
backgroundSize?: string | undefined;
|
|
87823
|
+
backgroundPosition?: string | undefined;
|
|
87824
|
+
backgroundRepeat?: string | undefined;
|
|
87825
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87826
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87827
|
+
boxShadow?: string | undefined;
|
|
87828
|
+
backdropFilter?: string | undefined;
|
|
87829
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87830
|
+
transform?: string | undefined;
|
|
87831
|
+
transformOrigin?: string | undefined;
|
|
87832
|
+
rotate?: string | undefined;
|
|
87833
|
+
clipPath?: string | undefined;
|
|
87834
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87835
|
+
fontStretch?: string | undefined;
|
|
87836
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87837
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87838
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87839
|
+
textDecorationColor?: string | undefined;
|
|
87840
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87841
|
+
textDecorationThickness?: string | undefined;
|
|
87842
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87843
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87844
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87845
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87846
|
+
WebkitLineClamp?: number | undefined;
|
|
87847
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87848
|
+
fontFeatureSettings?: string | undefined;
|
|
87849
|
+
stroke?: string | undefined;
|
|
87850
|
+
strokeWidth?: string | undefined;
|
|
87851
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87852
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87853
|
+
strokeDasharray?: string | undefined;
|
|
87854
|
+
strokeDashoffset?: string | undefined;
|
|
87855
|
+
transition?: string | undefined;
|
|
87856
|
+
animation?: string | undefined;
|
|
87857
|
+
cursor?: string | undefined;
|
|
87858
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87859
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87860
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87861
|
+
}, {
|
|
87862
|
+
filter?: string | undefined;
|
|
87863
|
+
fill?: string | undefined;
|
|
87864
|
+
top?: string | undefined;
|
|
87865
|
+
color?: string | undefined;
|
|
87866
|
+
width?: string | undefined;
|
|
87867
|
+
height?: string | undefined;
|
|
87868
|
+
opacity?: number | undefined;
|
|
87869
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87870
|
+
backgroundColor?: string | undefined;
|
|
87871
|
+
gap?: string | undefined;
|
|
87872
|
+
aspectRatio?: string | undefined;
|
|
87873
|
+
minHeight?: string | undefined;
|
|
87874
|
+
bottom?: string | undefined;
|
|
87875
|
+
left?: string | undefined;
|
|
87876
|
+
right?: string | undefined;
|
|
87877
|
+
padding?: string | undefined;
|
|
87878
|
+
fontSize?: string | undefined;
|
|
87879
|
+
fontFamily?: string | undefined;
|
|
87880
|
+
fontWeight?: string | number | undefined;
|
|
87881
|
+
letterSpacing?: string | undefined;
|
|
87882
|
+
lineHeight?: string | number | undefined;
|
|
87883
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87884
|
+
minWidth?: string | undefined;
|
|
87885
|
+
maxWidth?: string | undefined;
|
|
87886
|
+
maxHeight?: string | undefined;
|
|
87887
|
+
zIndex?: number | undefined;
|
|
87888
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87889
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87890
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87891
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87892
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87893
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87894
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87895
|
+
flexGrow?: number | undefined;
|
|
87896
|
+
flexShrink?: number | undefined;
|
|
87897
|
+
flexBasis?: string | undefined;
|
|
87898
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87899
|
+
rowGap?: string | undefined;
|
|
87900
|
+
columnGap?: string | undefined;
|
|
87901
|
+
gridTemplateColumns?: string | undefined;
|
|
87902
|
+
gridTemplateRows?: string | undefined;
|
|
87903
|
+
gridColumn?: string | undefined;
|
|
87904
|
+
gridRow?: string | undefined;
|
|
87905
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87906
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87907
|
+
paddingTop?: string | undefined;
|
|
87908
|
+
paddingRight?: string | undefined;
|
|
87909
|
+
paddingBottom?: string | undefined;
|
|
87910
|
+
paddingLeft?: string | undefined;
|
|
87911
|
+
margin?: string | undefined;
|
|
87912
|
+
marginTop?: string | undefined;
|
|
87913
|
+
marginRight?: string | undefined;
|
|
87914
|
+
marginBottom?: string | undefined;
|
|
87915
|
+
marginLeft?: string | undefined;
|
|
87916
|
+
border?: string | undefined;
|
|
87917
|
+
borderWidth?: string | undefined;
|
|
87918
|
+
borderStyle?: string | undefined;
|
|
87919
|
+
borderColor?: string | undefined;
|
|
87920
|
+
borderTop?: string | undefined;
|
|
87921
|
+
borderRight?: string | undefined;
|
|
87922
|
+
borderBottom?: string | undefined;
|
|
87923
|
+
borderLeft?: string | undefined;
|
|
87924
|
+
borderRadius?: string | undefined;
|
|
87925
|
+
borderTopLeftRadius?: string | undefined;
|
|
87926
|
+
borderTopRightRadius?: string | undefined;
|
|
87927
|
+
borderBottomRightRadius?: string | undefined;
|
|
87928
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87929
|
+
backgroundImage?: string | undefined;
|
|
87930
|
+
backgroundSize?: string | undefined;
|
|
87931
|
+
backgroundPosition?: string | undefined;
|
|
87932
|
+
backgroundRepeat?: string | undefined;
|
|
87933
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87934
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87935
|
+
boxShadow?: string | undefined;
|
|
87936
|
+
backdropFilter?: string | undefined;
|
|
87937
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87938
|
+
transform?: string | undefined;
|
|
87939
|
+
transformOrigin?: string | undefined;
|
|
87940
|
+
rotate?: string | undefined;
|
|
87941
|
+
clipPath?: string | undefined;
|
|
87942
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87943
|
+
fontStretch?: string | undefined;
|
|
87944
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87945
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87946
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87947
|
+
textDecorationColor?: string | undefined;
|
|
87948
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87949
|
+
textDecorationThickness?: string | undefined;
|
|
87950
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87951
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87952
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87953
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87954
|
+
WebkitLineClamp?: number | undefined;
|
|
87955
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87956
|
+
fontFeatureSettings?: string | undefined;
|
|
87957
|
+
stroke?: string | undefined;
|
|
87958
|
+
strokeWidth?: string | undefined;
|
|
87959
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87960
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87961
|
+
strokeDasharray?: string | undefined;
|
|
87962
|
+
strokeDashoffset?: string | undefined;
|
|
87963
|
+
transition?: string | undefined;
|
|
87964
|
+
animation?: string | undefined;
|
|
87965
|
+
cursor?: string | undefined;
|
|
87966
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87967
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87968
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87969
|
+
}>;
|
|
87970
|
+
}, {
|
|
87971
|
+
type: z.ZodLiteral<"COMPONENT_INSTANCE">;
|
|
87972
|
+
supernovaId: z.ZodString;
|
|
87973
|
+
componentSetName: z.ZodString;
|
|
87974
|
+
componentSetDescription: z.ZodString;
|
|
87975
|
+
componentName: z.ZodString;
|
|
87976
|
+
componentDescription: z.ZodString;
|
|
87977
|
+
props: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
87978
|
+
}>, "strip", z.ZodTypeAny, {
|
|
87979
|
+
type: "COMPONENT_INSTANCE";
|
|
87980
|
+
id: string;
|
|
87981
|
+
styles: {
|
|
87982
|
+
filter?: string | undefined;
|
|
87983
|
+
fill?: string | undefined;
|
|
87984
|
+
top?: string | undefined;
|
|
87985
|
+
color?: string | undefined;
|
|
87986
|
+
width?: string | undefined;
|
|
87987
|
+
height?: string | undefined;
|
|
87988
|
+
opacity?: number | undefined;
|
|
87989
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87990
|
+
backgroundColor?: string | undefined;
|
|
87991
|
+
gap?: string | undefined;
|
|
87992
|
+
aspectRatio?: string | undefined;
|
|
87993
|
+
minHeight?: string | undefined;
|
|
87994
|
+
bottom?: string | undefined;
|
|
87995
|
+
left?: string | undefined;
|
|
87996
|
+
right?: string | undefined;
|
|
87997
|
+
padding?: string | undefined;
|
|
87998
|
+
fontSize?: string | undefined;
|
|
87999
|
+
fontFamily?: string | undefined;
|
|
88000
|
+
fontWeight?: string | number | undefined;
|
|
88001
|
+
letterSpacing?: string | undefined;
|
|
88002
|
+
lineHeight?: string | number | undefined;
|
|
88003
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
88004
|
+
minWidth?: string | undefined;
|
|
88005
|
+
maxWidth?: string | undefined;
|
|
88006
|
+
maxHeight?: string | undefined;
|
|
88007
|
+
zIndex?: number | undefined;
|
|
88008
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88009
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88010
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88011
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
88012
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
88013
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88014
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88015
|
+
flexGrow?: number | undefined;
|
|
88016
|
+
flexShrink?: number | undefined;
|
|
88017
|
+
flexBasis?: string | undefined;
|
|
88018
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
88019
|
+
rowGap?: string | undefined;
|
|
88020
|
+
columnGap?: string | undefined;
|
|
88021
|
+
gridTemplateColumns?: string | undefined;
|
|
88022
|
+
gridTemplateRows?: string | undefined;
|
|
88023
|
+
gridColumn?: string | undefined;
|
|
88024
|
+
gridRow?: string | undefined;
|
|
88025
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
88026
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
88027
|
+
paddingTop?: string | undefined;
|
|
88028
|
+
paddingRight?: string | undefined;
|
|
88029
|
+
paddingBottom?: string | undefined;
|
|
88030
|
+
paddingLeft?: string | undefined;
|
|
88031
|
+
margin?: string | undefined;
|
|
88032
|
+
marginTop?: string | undefined;
|
|
88033
|
+
marginRight?: string | undefined;
|
|
88034
|
+
marginBottom?: string | undefined;
|
|
88035
|
+
marginLeft?: string | undefined;
|
|
88036
|
+
border?: string | undefined;
|
|
88037
|
+
borderWidth?: string | undefined;
|
|
88038
|
+
borderStyle?: string | undefined;
|
|
88039
|
+
borderColor?: string | undefined;
|
|
88040
|
+
borderTop?: string | undefined;
|
|
88041
|
+
borderRight?: string | undefined;
|
|
88042
|
+
borderBottom?: string | undefined;
|
|
88043
|
+
borderLeft?: string | undefined;
|
|
88044
|
+
borderRadius?: string | undefined;
|
|
88045
|
+
borderTopLeftRadius?: string | undefined;
|
|
88046
|
+
borderTopRightRadius?: string | undefined;
|
|
88047
|
+
borderBottomRightRadius?: string | undefined;
|
|
88048
|
+
borderBottomLeftRadius?: string | undefined;
|
|
88049
|
+
backgroundImage?: string | undefined;
|
|
88050
|
+
backgroundSize?: string | undefined;
|
|
88051
|
+
backgroundPosition?: string | undefined;
|
|
88052
|
+
backgroundRepeat?: string | undefined;
|
|
88053
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
88054
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
88055
|
+
boxShadow?: string | undefined;
|
|
88056
|
+
backdropFilter?: string | undefined;
|
|
88057
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88058
|
+
transform?: string | undefined;
|
|
88059
|
+
transformOrigin?: string | undefined;
|
|
88060
|
+
rotate?: string | undefined;
|
|
88061
|
+
clipPath?: string | undefined;
|
|
88062
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88063
|
+
fontStretch?: string | undefined;
|
|
88064
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
88065
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
88066
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
88067
|
+
textDecorationColor?: string | undefined;
|
|
88068
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
88069
|
+
textDecorationThickness?: string | undefined;
|
|
88070
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
88071
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
88072
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
88073
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
88074
|
+
WebkitLineClamp?: number | undefined;
|
|
88075
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
88076
|
+
fontFeatureSettings?: string | undefined;
|
|
88077
|
+
stroke?: string | undefined;
|
|
88078
|
+
strokeWidth?: string | undefined;
|
|
88079
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
88080
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
88081
|
+
strokeDasharray?: string | undefined;
|
|
88082
|
+
strokeDashoffset?: string | undefined;
|
|
88083
|
+
transition?: string | undefined;
|
|
88084
|
+
animation?: string | undefined;
|
|
88085
|
+
cursor?: string | undefined;
|
|
88086
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
88087
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
88088
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
88089
|
+
};
|
|
88090
|
+
componentName: string;
|
|
88091
|
+
componentSetName: string;
|
|
88092
|
+
props: Record<string, string | boolean>;
|
|
88093
|
+
parentId: string | null;
|
|
88094
|
+
supernovaId: string;
|
|
88095
|
+
componentSetDescription: string;
|
|
88096
|
+
componentDescription: string;
|
|
88097
|
+
}, {
|
|
88098
|
+
type: "COMPONENT_INSTANCE";
|
|
88099
|
+
id: string;
|
|
88100
|
+
styles: {
|
|
88101
|
+
filter?: string | undefined;
|
|
88102
|
+
fill?: string | undefined;
|
|
88103
|
+
top?: string | undefined;
|
|
88104
|
+
color?: string | undefined;
|
|
88105
|
+
width?: string | undefined;
|
|
88106
|
+
height?: string | undefined;
|
|
88107
|
+
opacity?: number | undefined;
|
|
88108
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
88109
|
+
backgroundColor?: string | undefined;
|
|
88110
|
+
gap?: string | undefined;
|
|
88111
|
+
aspectRatio?: string | undefined;
|
|
88112
|
+
minHeight?: string | undefined;
|
|
88113
|
+
bottom?: string | undefined;
|
|
88114
|
+
left?: string | undefined;
|
|
88115
|
+
right?: string | undefined;
|
|
88116
|
+
padding?: string | undefined;
|
|
88117
|
+
fontSize?: string | undefined;
|
|
88118
|
+
fontFamily?: string | undefined;
|
|
88119
|
+
fontWeight?: string | number | undefined;
|
|
88120
|
+
letterSpacing?: string | undefined;
|
|
88121
|
+
lineHeight?: string | number | undefined;
|
|
88122
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
88123
|
+
minWidth?: string | undefined;
|
|
88124
|
+
maxWidth?: string | undefined;
|
|
88125
|
+
maxHeight?: string | undefined;
|
|
88126
|
+
zIndex?: number | undefined;
|
|
88127
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88128
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88129
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88130
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
88131
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
88132
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88133
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88134
|
+
flexGrow?: number | undefined;
|
|
88135
|
+
flexShrink?: number | undefined;
|
|
88136
|
+
flexBasis?: string | undefined;
|
|
88137
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
88138
|
+
rowGap?: string | undefined;
|
|
88139
|
+
columnGap?: string | undefined;
|
|
88140
|
+
gridTemplateColumns?: string | undefined;
|
|
88141
|
+
gridTemplateRows?: string | undefined;
|
|
88142
|
+
gridColumn?: string | undefined;
|
|
88143
|
+
gridRow?: string | undefined;
|
|
88144
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
88145
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
88146
|
+
paddingTop?: string | undefined;
|
|
88147
|
+
paddingRight?: string | undefined;
|
|
88148
|
+
paddingBottom?: string | undefined;
|
|
88149
|
+
paddingLeft?: string | undefined;
|
|
88150
|
+
margin?: string | undefined;
|
|
88151
|
+
marginTop?: string | undefined;
|
|
88152
|
+
marginRight?: string | undefined;
|
|
88153
|
+
marginBottom?: string | undefined;
|
|
88154
|
+
marginLeft?: string | undefined;
|
|
88155
|
+
border?: string | undefined;
|
|
88156
|
+
borderWidth?: string | undefined;
|
|
88157
|
+
borderStyle?: string | undefined;
|
|
88158
|
+
borderColor?: string | undefined;
|
|
88159
|
+
borderTop?: string | undefined;
|
|
88160
|
+
borderRight?: string | undefined;
|
|
88161
|
+
borderBottom?: string | undefined;
|
|
88162
|
+
borderLeft?: string | undefined;
|
|
88163
|
+
borderRadius?: string | undefined;
|
|
88164
|
+
borderTopLeftRadius?: string | undefined;
|
|
88165
|
+
borderTopRightRadius?: string | undefined;
|
|
88166
|
+
borderBottomRightRadius?: string | undefined;
|
|
88167
|
+
borderBottomLeftRadius?: string | undefined;
|
|
88168
|
+
backgroundImage?: string | undefined;
|
|
88169
|
+
backgroundSize?: string | undefined;
|
|
88170
|
+
backgroundPosition?: string | undefined;
|
|
88171
|
+
backgroundRepeat?: string | undefined;
|
|
88172
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
88173
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
88174
|
+
boxShadow?: string | undefined;
|
|
88175
|
+
backdropFilter?: string | undefined;
|
|
88176
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88177
|
+
transform?: string | undefined;
|
|
88178
|
+
transformOrigin?: string | undefined;
|
|
88179
|
+
rotate?: string | undefined;
|
|
88180
|
+
clipPath?: string | undefined;
|
|
88181
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88182
|
+
fontStretch?: string | undefined;
|
|
88183
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
88184
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
88185
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
88186
|
+
textDecorationColor?: string | undefined;
|
|
88187
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
88188
|
+
textDecorationThickness?: string | undefined;
|
|
88189
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
88190
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
88191
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
88192
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
88193
|
+
WebkitLineClamp?: number | undefined;
|
|
88194
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
88195
|
+
fontFeatureSettings?: string | undefined;
|
|
88196
|
+
stroke?: string | undefined;
|
|
88197
|
+
strokeWidth?: string | undefined;
|
|
88198
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
88199
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
88200
|
+
strokeDasharray?: string | undefined;
|
|
88201
|
+
strokeDashoffset?: string | undefined;
|
|
88202
|
+
transition?: string | undefined;
|
|
88203
|
+
animation?: string | undefined;
|
|
88204
|
+
cursor?: string | undefined;
|
|
88205
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
88206
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
88207
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
88208
|
+
};
|
|
88209
|
+
componentName: string;
|
|
88210
|
+
componentSetName: string;
|
|
88211
|
+
props: Record<string, string | boolean>;
|
|
88212
|
+
parentId: string | null;
|
|
88213
|
+
supernovaId: string;
|
|
88214
|
+
componentSetDescription: string;
|
|
88215
|
+
componentDescription: string;
|
|
88216
|
+
}>;
|
|
87623
88217
|
type FrameNode = z.infer<typeof frameNodeObjectSchema> & {
|
|
87624
88218
|
children: AnyDesignNode[];
|
|
87625
88219
|
};
|
|
87626
88220
|
type TextNode = z.infer<typeof textNodeObjectSchema>;
|
|
87627
|
-
type SvgNode = z.infer<typeof svgNodeObjectSchema
|
|
88221
|
+
type SvgNode = z.infer<typeof svgNodeObjectSchema>;
|
|
88222
|
+
type ComponentInstanceNode = z.infer<typeof componentInstanceObjectSchema> & {
|
|
87628
88223
|
children: AnyDesignNode[];
|
|
87629
88224
|
};
|
|
87630
|
-
type AnyDesignNode = FrameNode | TextNode | SvgNode;
|
|
88225
|
+
type AnyDesignNode = FrameNode | TextNode | SvgNode | ComponentInstanceNode;
|
|
87631
88226
|
declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode, z.ZodTypeDef, FrameNode>, z.ZodObject<z.objectUtil.extendShape<{
|
|
87632
88227
|
id: z.ZodString;
|
|
87633
|
-
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
88228
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
87634
88229
|
parentId: z.ZodNullable<z.ZodString>;
|
|
87635
88230
|
styles: z.ZodObject<{
|
|
87636
88231
|
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
@@ -87704,6 +88299,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
87704
88299
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
87705
88300
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87706
88301
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
88302
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87707
88303
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87708
88304
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87709
88305
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -87818,6 +88414,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
87818
88414
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87819
88415
|
transform?: string | undefined;
|
|
87820
88416
|
transformOrigin?: string | undefined;
|
|
88417
|
+
rotate?: string | undefined;
|
|
87821
88418
|
clipPath?: string | undefined;
|
|
87822
88419
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87823
88420
|
fontStretch?: string | undefined;
|
|
@@ -87925,6 +88522,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
87925
88522
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87926
88523
|
transform?: string | undefined;
|
|
87927
88524
|
transformOrigin?: string | undefined;
|
|
88525
|
+
rotate?: string | undefined;
|
|
87928
88526
|
clipPath?: string | undefined;
|
|
87929
88527
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87930
88528
|
fontStretch?: string | undefined;
|
|
@@ -88039,6 +88637,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88039
88637
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88040
88638
|
transform?: string | undefined;
|
|
88041
88639
|
transformOrigin?: string | undefined;
|
|
88640
|
+
rotate?: string | undefined;
|
|
88042
88641
|
clipPath?: string | undefined;
|
|
88043
88642
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88044
88643
|
fontStretch?: string | undefined;
|
|
@@ -88152,6 +88751,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88152
88751
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88153
88752
|
transform?: string | undefined;
|
|
88154
88753
|
transformOrigin?: string | undefined;
|
|
88754
|
+
rotate?: string | undefined;
|
|
88155
88755
|
clipPath?: string | undefined;
|
|
88156
88756
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88157
88757
|
fontStretch?: string | undefined;
|
|
@@ -88183,12 +88783,241 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88183
88783
|
};
|
|
88184
88784
|
parentId: string | null;
|
|
88185
88785
|
characters: string;
|
|
88186
|
-
}>, z.ZodType<
|
|
88786
|
+
}>, z.ZodType<{
|
|
88787
|
+
type: "SVG";
|
|
88788
|
+
id: string;
|
|
88789
|
+
styles: {
|
|
88790
|
+
filter?: string | undefined;
|
|
88791
|
+
fill?: string | undefined;
|
|
88792
|
+
top?: string | undefined;
|
|
88793
|
+
color?: string | undefined;
|
|
88794
|
+
width?: string | undefined;
|
|
88795
|
+
height?: string | undefined;
|
|
88796
|
+
opacity?: number | undefined;
|
|
88797
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
88798
|
+
backgroundColor?: string | undefined;
|
|
88799
|
+
gap?: string | undefined;
|
|
88800
|
+
aspectRatio?: string | undefined;
|
|
88801
|
+
minHeight?: string | undefined;
|
|
88802
|
+
bottom?: string | undefined;
|
|
88803
|
+
left?: string | undefined;
|
|
88804
|
+
right?: string | undefined;
|
|
88805
|
+
padding?: string | undefined;
|
|
88806
|
+
fontSize?: string | undefined;
|
|
88807
|
+
fontFamily?: string | undefined;
|
|
88808
|
+
fontWeight?: string | number | undefined;
|
|
88809
|
+
letterSpacing?: string | undefined;
|
|
88810
|
+
lineHeight?: string | number | undefined;
|
|
88811
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
88812
|
+
minWidth?: string | undefined;
|
|
88813
|
+
maxWidth?: string | undefined;
|
|
88814
|
+
maxHeight?: string | undefined;
|
|
88815
|
+
zIndex?: number | undefined;
|
|
88816
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88817
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88818
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88819
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
88820
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
88821
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88822
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88823
|
+
flexGrow?: number | undefined;
|
|
88824
|
+
flexShrink?: number | undefined;
|
|
88825
|
+
flexBasis?: string | undefined;
|
|
88826
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
88827
|
+
rowGap?: string | undefined;
|
|
88828
|
+
columnGap?: string | undefined;
|
|
88829
|
+
gridTemplateColumns?: string | undefined;
|
|
88830
|
+
gridTemplateRows?: string | undefined;
|
|
88831
|
+
gridColumn?: string | undefined;
|
|
88832
|
+
gridRow?: string | undefined;
|
|
88833
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
88834
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
88835
|
+
paddingTop?: string | undefined;
|
|
88836
|
+
paddingRight?: string | undefined;
|
|
88837
|
+
paddingBottom?: string | undefined;
|
|
88838
|
+
paddingLeft?: string | undefined;
|
|
88839
|
+
margin?: string | undefined;
|
|
88840
|
+
marginTop?: string | undefined;
|
|
88841
|
+
marginRight?: string | undefined;
|
|
88842
|
+
marginBottom?: string | undefined;
|
|
88843
|
+
marginLeft?: string | undefined;
|
|
88844
|
+
border?: string | undefined;
|
|
88845
|
+
borderWidth?: string | undefined;
|
|
88846
|
+
borderStyle?: string | undefined;
|
|
88847
|
+
borderColor?: string | undefined;
|
|
88848
|
+
borderTop?: string | undefined;
|
|
88849
|
+
borderRight?: string | undefined;
|
|
88850
|
+
borderBottom?: string | undefined;
|
|
88851
|
+
borderLeft?: string | undefined;
|
|
88852
|
+
borderRadius?: string | undefined;
|
|
88853
|
+
borderTopLeftRadius?: string | undefined;
|
|
88854
|
+
borderTopRightRadius?: string | undefined;
|
|
88855
|
+
borderBottomRightRadius?: string | undefined;
|
|
88856
|
+
borderBottomLeftRadius?: string | undefined;
|
|
88857
|
+
backgroundImage?: string | undefined;
|
|
88858
|
+
backgroundSize?: string | undefined;
|
|
88859
|
+
backgroundPosition?: string | undefined;
|
|
88860
|
+
backgroundRepeat?: string | undefined;
|
|
88861
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
88862
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
88863
|
+
boxShadow?: string | undefined;
|
|
88864
|
+
backdropFilter?: string | undefined;
|
|
88865
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88866
|
+
transform?: string | undefined;
|
|
88867
|
+
transformOrigin?: string | undefined;
|
|
88868
|
+
rotate?: string | undefined;
|
|
88869
|
+
clipPath?: string | undefined;
|
|
88870
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88871
|
+
fontStretch?: string | undefined;
|
|
88872
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
88873
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
88874
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
88875
|
+
textDecorationColor?: string | undefined;
|
|
88876
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
88877
|
+
textDecorationThickness?: string | undefined;
|
|
88878
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
88879
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
88880
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
88881
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
88882
|
+
WebkitLineClamp?: number | undefined;
|
|
88883
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
88884
|
+
fontFeatureSettings?: string | undefined;
|
|
88885
|
+
stroke?: string | undefined;
|
|
88886
|
+
strokeWidth?: string | undefined;
|
|
88887
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
88888
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
88889
|
+
strokeDasharray?: string | undefined;
|
|
88890
|
+
strokeDashoffset?: string | undefined;
|
|
88891
|
+
transition?: string | undefined;
|
|
88892
|
+
animation?: string | undefined;
|
|
88893
|
+
cursor?: string | undefined;
|
|
88894
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
88895
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
88896
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
88897
|
+
};
|
|
88898
|
+
parentId: string | null;
|
|
88899
|
+
svgString: string;
|
|
88900
|
+
}, z.ZodTypeDef, {
|
|
88901
|
+
type: "SVG";
|
|
88902
|
+
id: string;
|
|
88903
|
+
styles: {
|
|
88904
|
+
filter?: string | undefined;
|
|
88905
|
+
fill?: string | undefined;
|
|
88906
|
+
top?: string | undefined;
|
|
88907
|
+
color?: string | undefined;
|
|
88908
|
+
width?: string | undefined;
|
|
88909
|
+
height?: string | undefined;
|
|
88910
|
+
opacity?: number | undefined;
|
|
88911
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
88912
|
+
backgroundColor?: string | undefined;
|
|
88913
|
+
gap?: string | undefined;
|
|
88914
|
+
aspectRatio?: string | undefined;
|
|
88915
|
+
minHeight?: string | undefined;
|
|
88916
|
+
bottom?: string | undefined;
|
|
88917
|
+
left?: string | undefined;
|
|
88918
|
+
right?: string | undefined;
|
|
88919
|
+
padding?: string | undefined;
|
|
88920
|
+
fontSize?: string | undefined;
|
|
88921
|
+
fontFamily?: string | undefined;
|
|
88922
|
+
fontWeight?: string | number | undefined;
|
|
88923
|
+
letterSpacing?: string | undefined;
|
|
88924
|
+
lineHeight?: string | number | undefined;
|
|
88925
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
88926
|
+
minWidth?: string | undefined;
|
|
88927
|
+
maxWidth?: string | undefined;
|
|
88928
|
+
maxHeight?: string | undefined;
|
|
88929
|
+
zIndex?: number | undefined;
|
|
88930
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88931
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88932
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88933
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
88934
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
88935
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88936
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88937
|
+
flexGrow?: number | undefined;
|
|
88938
|
+
flexShrink?: number | undefined;
|
|
88939
|
+
flexBasis?: string | undefined;
|
|
88940
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
88941
|
+
rowGap?: string | undefined;
|
|
88942
|
+
columnGap?: string | undefined;
|
|
88943
|
+
gridTemplateColumns?: string | undefined;
|
|
88944
|
+
gridTemplateRows?: string | undefined;
|
|
88945
|
+
gridColumn?: string | undefined;
|
|
88946
|
+
gridRow?: string | undefined;
|
|
88947
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
88948
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
88949
|
+
paddingTop?: string | undefined;
|
|
88950
|
+
paddingRight?: string | undefined;
|
|
88951
|
+
paddingBottom?: string | undefined;
|
|
88952
|
+
paddingLeft?: string | undefined;
|
|
88953
|
+
margin?: string | undefined;
|
|
88954
|
+
marginTop?: string | undefined;
|
|
88955
|
+
marginRight?: string | undefined;
|
|
88956
|
+
marginBottom?: string | undefined;
|
|
88957
|
+
marginLeft?: string | undefined;
|
|
88958
|
+
border?: string | undefined;
|
|
88959
|
+
borderWidth?: string | undefined;
|
|
88960
|
+
borderStyle?: string | undefined;
|
|
88961
|
+
borderColor?: string | undefined;
|
|
88962
|
+
borderTop?: string | undefined;
|
|
88963
|
+
borderRight?: string | undefined;
|
|
88964
|
+
borderBottom?: string | undefined;
|
|
88965
|
+
borderLeft?: string | undefined;
|
|
88966
|
+
borderRadius?: string | undefined;
|
|
88967
|
+
borderTopLeftRadius?: string | undefined;
|
|
88968
|
+
borderTopRightRadius?: string | undefined;
|
|
88969
|
+
borderBottomRightRadius?: string | undefined;
|
|
88970
|
+
borderBottomLeftRadius?: string | undefined;
|
|
88971
|
+
backgroundImage?: string | undefined;
|
|
88972
|
+
backgroundSize?: string | undefined;
|
|
88973
|
+
backgroundPosition?: string | undefined;
|
|
88974
|
+
backgroundRepeat?: string | undefined;
|
|
88975
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
88976
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
88977
|
+
boxShadow?: string | undefined;
|
|
88978
|
+
backdropFilter?: string | undefined;
|
|
88979
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88980
|
+
transform?: string | undefined;
|
|
88981
|
+
transformOrigin?: string | undefined;
|
|
88982
|
+
rotate?: string | undefined;
|
|
88983
|
+
clipPath?: string | undefined;
|
|
88984
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88985
|
+
fontStretch?: string | undefined;
|
|
88986
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
88987
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
88988
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
88989
|
+
textDecorationColor?: string | undefined;
|
|
88990
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
88991
|
+
textDecorationThickness?: string | undefined;
|
|
88992
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
88993
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
88994
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
88995
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
88996
|
+
WebkitLineClamp?: number | undefined;
|
|
88997
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
88998
|
+
fontFeatureSettings?: string | undefined;
|
|
88999
|
+
stroke?: string | undefined;
|
|
89000
|
+
strokeWidth?: string | undefined;
|
|
89001
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
89002
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
89003
|
+
strokeDasharray?: string | undefined;
|
|
89004
|
+
strokeDashoffset?: string | undefined;
|
|
89005
|
+
transition?: string | undefined;
|
|
89006
|
+
animation?: string | undefined;
|
|
89007
|
+
cursor?: string | undefined;
|
|
89008
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
89009
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
89010
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
89011
|
+
};
|
|
89012
|
+
parentId: string | null;
|
|
89013
|
+
svgString: string;
|
|
89014
|
+
}>, z.ZodType<ComponentInstanceNode, z.ZodTypeDef, ComponentInstanceNode>]>;
|
|
88187
89015
|
type FigmaExporter = {
|
|
88188
89016
|
AnyDesignNode: AnyDesignNode;
|
|
88189
89017
|
FrameNode: FrameNode;
|
|
88190
89018
|
TextNode: TextNode;
|
|
88191
89019
|
SvgNode: SvgNode;
|
|
89020
|
+
ComponentInstanceNode: ComponentInstanceNode;
|
|
88192
89021
|
ProcessedStyles: ProcessedStyles;
|
|
88193
89022
|
};
|
|
88194
89023
|
|