@supernova-studio/model 1.9.10 → 1.9.12
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 +581 -6
- package/dist/index.d.ts +581 -6
- package/dist/index.js +26 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -85957,7 +85957,7 @@ declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
|
85957
85957
|
type ProcessedStyles = z.infer<typeof FigmaExporterProcessedStylesSchema>;
|
|
85958
85958
|
declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
85959
85959
|
id: z.ZodString;
|
|
85960
|
-
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
85960
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
85961
85961
|
parentId: z.ZodNullable<z.ZodString>;
|
|
85962
85962
|
styles: z.ZodObject<{
|
|
85963
85963
|
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">]>>>;
|
|
@@ -86510,7 +86510,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86510
86510
|
}>;
|
|
86511
86511
|
declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
86512
86512
|
id: z.ZodString;
|
|
86513
|
-
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
86513
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
86514
86514
|
parentId: z.ZodNullable<z.ZodString>;
|
|
86515
86515
|
styles: z.ZodObject<{
|
|
86516
86516
|
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">]>>>;
|
|
@@ -87066,7 +87066,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87066
87066
|
}>;
|
|
87067
87067
|
declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
87068
87068
|
id: z.ZodString;
|
|
87069
|
-
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
87069
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
87070
87070
|
parentId: z.ZodNullable<z.ZodString>;
|
|
87071
87071
|
styles: z.ZodObject<{
|
|
87072
87072
|
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">]>>>;
|
|
@@ -87620,6 +87620,577 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87620
87620
|
parentId: string | null;
|
|
87621
87621
|
svgString: string;
|
|
87622
87622
|
}>;
|
|
87623
|
+
declare const componentInstanceObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
87624
|
+
id: z.ZodString;
|
|
87625
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
87626
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
87627
|
+
styles: z.ZodObject<{
|
|
87628
|
+
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">]>>>;
|
|
87629
|
+
position: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"absolute">, z.ZodLiteral<"relative">, z.ZodLiteral<"fixed">, z.ZodLiteral<"static">, z.ZodLiteral<"sticky">]>>>;
|
|
87630
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87631
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87632
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87633
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87634
|
+
width: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87635
|
+
height: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87636
|
+
minWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87637
|
+
minHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87638
|
+
maxWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87639
|
+
maxHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87640
|
+
zIndex: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87641
|
+
overflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87642
|
+
overflowX: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87643
|
+
overflowY: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87644
|
+
aspectRatio: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87645
|
+
flexDirection: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"row-reverse">, z.ZodLiteral<"column">, z.ZodLiteral<"column-reverse">]>>>;
|
|
87646
|
+
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">]>>>;
|
|
87647
|
+
alignItems: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
87648
|
+
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">]>>>;
|
|
87649
|
+
flexGrow: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87650
|
+
flexShrink: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87651
|
+
flexBasis: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87652
|
+
flexWrap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nowrap">, z.ZodLiteral<"wrap">, z.ZodLiteral<"wrap-reverse">]>>>;
|
|
87653
|
+
gap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87654
|
+
rowGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87655
|
+
columnGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87656
|
+
gridTemplateColumns: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87657
|
+
gridTemplateRows: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87658
|
+
gridColumn: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87659
|
+
gridRow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87660
|
+
gridAutoFlow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"column">, z.ZodLiteral<"dense">, z.ZodLiteral<"row dense">, z.ZodLiteral<"column dense">]>>>;
|
|
87661
|
+
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">]>>>;
|
|
87662
|
+
padding: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87663
|
+
paddingTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87664
|
+
paddingRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87665
|
+
paddingBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87666
|
+
paddingLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87667
|
+
margin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87668
|
+
marginTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87669
|
+
marginRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87670
|
+
marginBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87671
|
+
marginLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87672
|
+
border: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87673
|
+
borderWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87674
|
+
borderStyle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87675
|
+
borderColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87676
|
+
borderTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87677
|
+
borderRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87678
|
+
borderBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87679
|
+
borderLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87680
|
+
borderRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87681
|
+
borderTopLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87682
|
+
borderTopRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87683
|
+
borderBottomRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87684
|
+
borderBottomLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87685
|
+
backgroundColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87686
|
+
backgroundImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87687
|
+
backgroundSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87688
|
+
backgroundPosition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87689
|
+
backgroundRepeat: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87690
|
+
backgroundClip: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">, z.ZodLiteral<"text">]>>>;
|
|
87691
|
+
backgroundOrigin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">]>>>;
|
|
87692
|
+
opacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87693
|
+
boxShadow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87694
|
+
filter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87695
|
+
backdropFilter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87696
|
+
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">]>>>;
|
|
87697
|
+
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87698
|
+
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87699
|
+
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87700
|
+
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87701
|
+
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87702
|
+
fontSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87703
|
+
fontWeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
87704
|
+
fontStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"italic">, z.ZodLiteral<"oblique">]>>>;
|
|
87705
|
+
fontStretch: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87706
|
+
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">]>>>;
|
|
87707
|
+
lineHeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
87708
|
+
letterSpacing: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87709
|
+
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">]>>>;
|
|
87710
|
+
textDecorationLine: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"underline">, z.ZodLiteral<"overline">, z.ZodLiteral<"line-through">]>>>;
|
|
87711
|
+
textDecorationColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87712
|
+
textDecorationStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"solid">, z.ZodLiteral<"double">, z.ZodLiteral<"dotted">, z.ZodLiteral<"dashed">, z.ZodLiteral<"wavy">]>>>;
|
|
87713
|
+
textDecorationThickness: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87714
|
+
textTransform: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"uppercase">, z.ZodLiteral<"lowercase">, z.ZodLiteral<"capitalize">, z.ZodLiteral<"full-width">]>>>;
|
|
87715
|
+
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">]>>>;
|
|
87716
|
+
wordBreak: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"break-all">, z.ZodLiteral<"keep-all">, z.ZodLiteral<"break-word">]>>>;
|
|
87717
|
+
textOverflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"clip">, z.ZodLiteral<"ellipsis">]>>>;
|
|
87718
|
+
WebkitLineClamp: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87719
|
+
WebkitBoxOrient: z.ZodOptional<z.ZodOptional<z.ZodLiteral<"vertical">>>;
|
|
87720
|
+
fontFeatureSettings: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87721
|
+
fill: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87722
|
+
stroke: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87723
|
+
strokeWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87724
|
+
strokeLinecap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"butt">, z.ZodLiteral<"round">, z.ZodLiteral<"square">]>>>;
|
|
87725
|
+
strokeLinejoin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"miter">, z.ZodLiteral<"round">, z.ZodLiteral<"bevel">]>>>;
|
|
87726
|
+
strokeDasharray: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87727
|
+
strokeDashoffset: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87728
|
+
transition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87729
|
+
animation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87730
|
+
cursor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87731
|
+
userSelect: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"text">, z.ZodLiteral<"all">]>>>;
|
|
87732
|
+
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">]>>>;
|
|
87733
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"collapse">]>>>;
|
|
87734
|
+
}, "strip", z.ZodTypeAny, {
|
|
87735
|
+
filter?: string | undefined;
|
|
87736
|
+
fill?: string | undefined;
|
|
87737
|
+
top?: string | undefined;
|
|
87738
|
+
color?: string | undefined;
|
|
87739
|
+
width?: string | undefined;
|
|
87740
|
+
height?: string | undefined;
|
|
87741
|
+
opacity?: number | undefined;
|
|
87742
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87743
|
+
backgroundColor?: string | undefined;
|
|
87744
|
+
gap?: string | undefined;
|
|
87745
|
+
aspectRatio?: string | undefined;
|
|
87746
|
+
minHeight?: string | undefined;
|
|
87747
|
+
bottom?: string | undefined;
|
|
87748
|
+
left?: string | undefined;
|
|
87749
|
+
right?: string | undefined;
|
|
87750
|
+
padding?: string | undefined;
|
|
87751
|
+
fontSize?: string | undefined;
|
|
87752
|
+
fontFamily?: string | undefined;
|
|
87753
|
+
fontWeight?: string | number | undefined;
|
|
87754
|
+
letterSpacing?: string | undefined;
|
|
87755
|
+
lineHeight?: string | number | undefined;
|
|
87756
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87757
|
+
minWidth?: string | undefined;
|
|
87758
|
+
maxWidth?: string | undefined;
|
|
87759
|
+
maxHeight?: string | undefined;
|
|
87760
|
+
zIndex?: number | undefined;
|
|
87761
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87762
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87763
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87764
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87765
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87766
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87767
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87768
|
+
flexGrow?: number | undefined;
|
|
87769
|
+
flexShrink?: number | undefined;
|
|
87770
|
+
flexBasis?: string | undefined;
|
|
87771
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87772
|
+
rowGap?: string | undefined;
|
|
87773
|
+
columnGap?: string | undefined;
|
|
87774
|
+
gridTemplateColumns?: string | undefined;
|
|
87775
|
+
gridTemplateRows?: string | undefined;
|
|
87776
|
+
gridColumn?: string | undefined;
|
|
87777
|
+
gridRow?: string | undefined;
|
|
87778
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87779
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87780
|
+
paddingTop?: string | undefined;
|
|
87781
|
+
paddingRight?: string | undefined;
|
|
87782
|
+
paddingBottom?: string | undefined;
|
|
87783
|
+
paddingLeft?: string | undefined;
|
|
87784
|
+
margin?: string | undefined;
|
|
87785
|
+
marginTop?: string | undefined;
|
|
87786
|
+
marginRight?: string | undefined;
|
|
87787
|
+
marginBottom?: string | undefined;
|
|
87788
|
+
marginLeft?: string | undefined;
|
|
87789
|
+
border?: string | undefined;
|
|
87790
|
+
borderWidth?: string | undefined;
|
|
87791
|
+
borderStyle?: string | undefined;
|
|
87792
|
+
borderColor?: string | undefined;
|
|
87793
|
+
borderTop?: string | undefined;
|
|
87794
|
+
borderRight?: string | undefined;
|
|
87795
|
+
borderBottom?: string | undefined;
|
|
87796
|
+
borderLeft?: string | undefined;
|
|
87797
|
+
borderRadius?: string | undefined;
|
|
87798
|
+
borderTopLeftRadius?: string | undefined;
|
|
87799
|
+
borderTopRightRadius?: string | undefined;
|
|
87800
|
+
borderBottomRightRadius?: string | undefined;
|
|
87801
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87802
|
+
backgroundImage?: string | undefined;
|
|
87803
|
+
backgroundSize?: string | undefined;
|
|
87804
|
+
backgroundPosition?: string | undefined;
|
|
87805
|
+
backgroundRepeat?: string | undefined;
|
|
87806
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87807
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87808
|
+
boxShadow?: string | undefined;
|
|
87809
|
+
backdropFilter?: string | undefined;
|
|
87810
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87811
|
+
transform?: string | undefined;
|
|
87812
|
+
transformOrigin?: string | undefined;
|
|
87813
|
+
clipPath?: string | undefined;
|
|
87814
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87815
|
+
fontStretch?: string | undefined;
|
|
87816
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87817
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87818
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87819
|
+
textDecorationColor?: string | undefined;
|
|
87820
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87821
|
+
textDecorationThickness?: string | undefined;
|
|
87822
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87823
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87824
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87825
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87826
|
+
WebkitLineClamp?: number | undefined;
|
|
87827
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87828
|
+
fontFeatureSettings?: string | undefined;
|
|
87829
|
+
stroke?: string | undefined;
|
|
87830
|
+
strokeWidth?: string | undefined;
|
|
87831
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87832
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87833
|
+
strokeDasharray?: string | undefined;
|
|
87834
|
+
strokeDashoffset?: string | undefined;
|
|
87835
|
+
transition?: string | undefined;
|
|
87836
|
+
animation?: string | undefined;
|
|
87837
|
+
cursor?: string | undefined;
|
|
87838
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87839
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87840
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87841
|
+
}, {
|
|
87842
|
+
filter?: string | undefined;
|
|
87843
|
+
fill?: string | undefined;
|
|
87844
|
+
top?: string | undefined;
|
|
87845
|
+
color?: string | undefined;
|
|
87846
|
+
width?: string | undefined;
|
|
87847
|
+
height?: string | undefined;
|
|
87848
|
+
opacity?: number | undefined;
|
|
87849
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87850
|
+
backgroundColor?: string | undefined;
|
|
87851
|
+
gap?: string | undefined;
|
|
87852
|
+
aspectRatio?: string | undefined;
|
|
87853
|
+
minHeight?: string | undefined;
|
|
87854
|
+
bottom?: string | undefined;
|
|
87855
|
+
left?: string | undefined;
|
|
87856
|
+
right?: string | undefined;
|
|
87857
|
+
padding?: string | undefined;
|
|
87858
|
+
fontSize?: string | undefined;
|
|
87859
|
+
fontFamily?: string | undefined;
|
|
87860
|
+
fontWeight?: string | number | undefined;
|
|
87861
|
+
letterSpacing?: string | undefined;
|
|
87862
|
+
lineHeight?: string | number | undefined;
|
|
87863
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87864
|
+
minWidth?: string | undefined;
|
|
87865
|
+
maxWidth?: string | undefined;
|
|
87866
|
+
maxHeight?: string | undefined;
|
|
87867
|
+
zIndex?: number | undefined;
|
|
87868
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87869
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87870
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87871
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87872
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87873
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87874
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87875
|
+
flexGrow?: number | undefined;
|
|
87876
|
+
flexShrink?: number | undefined;
|
|
87877
|
+
flexBasis?: string | undefined;
|
|
87878
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87879
|
+
rowGap?: string | undefined;
|
|
87880
|
+
columnGap?: string | undefined;
|
|
87881
|
+
gridTemplateColumns?: string | undefined;
|
|
87882
|
+
gridTemplateRows?: string | undefined;
|
|
87883
|
+
gridColumn?: string | undefined;
|
|
87884
|
+
gridRow?: string | undefined;
|
|
87885
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87886
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87887
|
+
paddingTop?: string | undefined;
|
|
87888
|
+
paddingRight?: string | undefined;
|
|
87889
|
+
paddingBottom?: string | undefined;
|
|
87890
|
+
paddingLeft?: string | undefined;
|
|
87891
|
+
margin?: string | undefined;
|
|
87892
|
+
marginTop?: string | undefined;
|
|
87893
|
+
marginRight?: string | undefined;
|
|
87894
|
+
marginBottom?: string | undefined;
|
|
87895
|
+
marginLeft?: string | undefined;
|
|
87896
|
+
border?: string | undefined;
|
|
87897
|
+
borderWidth?: string | undefined;
|
|
87898
|
+
borderStyle?: string | undefined;
|
|
87899
|
+
borderColor?: string | undefined;
|
|
87900
|
+
borderTop?: string | undefined;
|
|
87901
|
+
borderRight?: string | undefined;
|
|
87902
|
+
borderBottom?: string | undefined;
|
|
87903
|
+
borderLeft?: string | undefined;
|
|
87904
|
+
borderRadius?: string | undefined;
|
|
87905
|
+
borderTopLeftRadius?: string | undefined;
|
|
87906
|
+
borderTopRightRadius?: string | undefined;
|
|
87907
|
+
borderBottomRightRadius?: string | undefined;
|
|
87908
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87909
|
+
backgroundImage?: string | undefined;
|
|
87910
|
+
backgroundSize?: string | undefined;
|
|
87911
|
+
backgroundPosition?: string | undefined;
|
|
87912
|
+
backgroundRepeat?: string | undefined;
|
|
87913
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87914
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87915
|
+
boxShadow?: string | undefined;
|
|
87916
|
+
backdropFilter?: string | undefined;
|
|
87917
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87918
|
+
transform?: string | undefined;
|
|
87919
|
+
transformOrigin?: string | undefined;
|
|
87920
|
+
clipPath?: string | undefined;
|
|
87921
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87922
|
+
fontStretch?: string | undefined;
|
|
87923
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87924
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87925
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87926
|
+
textDecorationColor?: string | undefined;
|
|
87927
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87928
|
+
textDecorationThickness?: string | undefined;
|
|
87929
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87930
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87931
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87932
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87933
|
+
WebkitLineClamp?: number | undefined;
|
|
87934
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87935
|
+
fontFeatureSettings?: string | undefined;
|
|
87936
|
+
stroke?: string | undefined;
|
|
87937
|
+
strokeWidth?: string | undefined;
|
|
87938
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87939
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87940
|
+
strokeDasharray?: string | undefined;
|
|
87941
|
+
strokeDashoffset?: string | undefined;
|
|
87942
|
+
transition?: string | undefined;
|
|
87943
|
+
animation?: string | undefined;
|
|
87944
|
+
cursor?: string | undefined;
|
|
87945
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87946
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87947
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87948
|
+
}>;
|
|
87949
|
+
}, {
|
|
87950
|
+
type: z.ZodLiteral<"COMPONENT_INSTANCE">;
|
|
87951
|
+
supernovaId: z.ZodString;
|
|
87952
|
+
componentSetName: z.ZodString;
|
|
87953
|
+
componentSetDescription: z.ZodString;
|
|
87954
|
+
componentName: z.ZodString;
|
|
87955
|
+
componentDescription: z.ZodString;
|
|
87956
|
+
props: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
87957
|
+
}>, "strip", z.ZodTypeAny, {
|
|
87958
|
+
type: "COMPONENT_INSTANCE";
|
|
87959
|
+
id: string;
|
|
87960
|
+
styles: {
|
|
87961
|
+
filter?: string | undefined;
|
|
87962
|
+
fill?: string | undefined;
|
|
87963
|
+
top?: string | undefined;
|
|
87964
|
+
color?: string | undefined;
|
|
87965
|
+
width?: string | undefined;
|
|
87966
|
+
height?: string | undefined;
|
|
87967
|
+
opacity?: number | undefined;
|
|
87968
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87969
|
+
backgroundColor?: string | undefined;
|
|
87970
|
+
gap?: string | undefined;
|
|
87971
|
+
aspectRatio?: string | undefined;
|
|
87972
|
+
minHeight?: string | undefined;
|
|
87973
|
+
bottom?: string | undefined;
|
|
87974
|
+
left?: string | undefined;
|
|
87975
|
+
right?: string | undefined;
|
|
87976
|
+
padding?: string | undefined;
|
|
87977
|
+
fontSize?: string | undefined;
|
|
87978
|
+
fontFamily?: string | undefined;
|
|
87979
|
+
fontWeight?: string | number | undefined;
|
|
87980
|
+
letterSpacing?: string | undefined;
|
|
87981
|
+
lineHeight?: string | number | undefined;
|
|
87982
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87983
|
+
minWidth?: string | undefined;
|
|
87984
|
+
maxWidth?: string | undefined;
|
|
87985
|
+
maxHeight?: string | undefined;
|
|
87986
|
+
zIndex?: number | undefined;
|
|
87987
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87988
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87989
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87990
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87991
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87992
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87993
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87994
|
+
flexGrow?: number | undefined;
|
|
87995
|
+
flexShrink?: number | undefined;
|
|
87996
|
+
flexBasis?: string | undefined;
|
|
87997
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87998
|
+
rowGap?: string | undefined;
|
|
87999
|
+
columnGap?: string | undefined;
|
|
88000
|
+
gridTemplateColumns?: string | undefined;
|
|
88001
|
+
gridTemplateRows?: string | undefined;
|
|
88002
|
+
gridColumn?: string | undefined;
|
|
88003
|
+
gridRow?: string | undefined;
|
|
88004
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
88005
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
88006
|
+
paddingTop?: string | undefined;
|
|
88007
|
+
paddingRight?: string | undefined;
|
|
88008
|
+
paddingBottom?: string | undefined;
|
|
88009
|
+
paddingLeft?: string | undefined;
|
|
88010
|
+
margin?: string | undefined;
|
|
88011
|
+
marginTop?: string | undefined;
|
|
88012
|
+
marginRight?: string | undefined;
|
|
88013
|
+
marginBottom?: string | undefined;
|
|
88014
|
+
marginLeft?: string | undefined;
|
|
88015
|
+
border?: string | undefined;
|
|
88016
|
+
borderWidth?: string | undefined;
|
|
88017
|
+
borderStyle?: string | undefined;
|
|
88018
|
+
borderColor?: string | undefined;
|
|
88019
|
+
borderTop?: string | undefined;
|
|
88020
|
+
borderRight?: string | undefined;
|
|
88021
|
+
borderBottom?: string | undefined;
|
|
88022
|
+
borderLeft?: string | undefined;
|
|
88023
|
+
borderRadius?: string | undefined;
|
|
88024
|
+
borderTopLeftRadius?: string | undefined;
|
|
88025
|
+
borderTopRightRadius?: string | undefined;
|
|
88026
|
+
borderBottomRightRadius?: string | undefined;
|
|
88027
|
+
borderBottomLeftRadius?: string | undefined;
|
|
88028
|
+
backgroundImage?: string | undefined;
|
|
88029
|
+
backgroundSize?: string | undefined;
|
|
88030
|
+
backgroundPosition?: string | undefined;
|
|
88031
|
+
backgroundRepeat?: string | undefined;
|
|
88032
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
88033
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
88034
|
+
boxShadow?: string | undefined;
|
|
88035
|
+
backdropFilter?: string | undefined;
|
|
88036
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88037
|
+
transform?: string | undefined;
|
|
88038
|
+
transformOrigin?: string | undefined;
|
|
88039
|
+
clipPath?: string | undefined;
|
|
88040
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88041
|
+
fontStretch?: string | undefined;
|
|
88042
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
88043
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
88044
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
88045
|
+
textDecorationColor?: string | undefined;
|
|
88046
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
88047
|
+
textDecorationThickness?: string | undefined;
|
|
88048
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
88049
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
88050
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
88051
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
88052
|
+
WebkitLineClamp?: number | undefined;
|
|
88053
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
88054
|
+
fontFeatureSettings?: string | undefined;
|
|
88055
|
+
stroke?: string | undefined;
|
|
88056
|
+
strokeWidth?: string | undefined;
|
|
88057
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
88058
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
88059
|
+
strokeDasharray?: string | undefined;
|
|
88060
|
+
strokeDashoffset?: string | undefined;
|
|
88061
|
+
transition?: string | undefined;
|
|
88062
|
+
animation?: string | undefined;
|
|
88063
|
+
cursor?: string | undefined;
|
|
88064
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
88065
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
88066
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
88067
|
+
};
|
|
88068
|
+
componentName: string;
|
|
88069
|
+
componentSetName: string;
|
|
88070
|
+
props: Record<string, string | boolean>;
|
|
88071
|
+
parentId: string | null;
|
|
88072
|
+
supernovaId: string;
|
|
88073
|
+
componentSetDescription: string;
|
|
88074
|
+
componentDescription: string;
|
|
88075
|
+
}, {
|
|
88076
|
+
type: "COMPONENT_INSTANCE";
|
|
88077
|
+
id: string;
|
|
88078
|
+
styles: {
|
|
88079
|
+
filter?: string | undefined;
|
|
88080
|
+
fill?: string | undefined;
|
|
88081
|
+
top?: string | undefined;
|
|
88082
|
+
color?: string | undefined;
|
|
88083
|
+
width?: string | undefined;
|
|
88084
|
+
height?: string | undefined;
|
|
88085
|
+
opacity?: number | undefined;
|
|
88086
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
88087
|
+
backgroundColor?: string | undefined;
|
|
88088
|
+
gap?: string | undefined;
|
|
88089
|
+
aspectRatio?: string | undefined;
|
|
88090
|
+
minHeight?: string | undefined;
|
|
88091
|
+
bottom?: string | undefined;
|
|
88092
|
+
left?: string | undefined;
|
|
88093
|
+
right?: string | undefined;
|
|
88094
|
+
padding?: string | undefined;
|
|
88095
|
+
fontSize?: string | undefined;
|
|
88096
|
+
fontFamily?: string | undefined;
|
|
88097
|
+
fontWeight?: string | number | undefined;
|
|
88098
|
+
letterSpacing?: string | undefined;
|
|
88099
|
+
lineHeight?: string | number | undefined;
|
|
88100
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
88101
|
+
minWidth?: string | undefined;
|
|
88102
|
+
maxWidth?: string | undefined;
|
|
88103
|
+
maxHeight?: string | undefined;
|
|
88104
|
+
zIndex?: number | undefined;
|
|
88105
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88106
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88107
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88108
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
88109
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
88110
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88111
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88112
|
+
flexGrow?: number | undefined;
|
|
88113
|
+
flexShrink?: number | undefined;
|
|
88114
|
+
flexBasis?: string | undefined;
|
|
88115
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
88116
|
+
rowGap?: string | undefined;
|
|
88117
|
+
columnGap?: string | undefined;
|
|
88118
|
+
gridTemplateColumns?: string | undefined;
|
|
88119
|
+
gridTemplateRows?: string | undefined;
|
|
88120
|
+
gridColumn?: string | undefined;
|
|
88121
|
+
gridRow?: string | undefined;
|
|
88122
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
88123
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
88124
|
+
paddingTop?: string | undefined;
|
|
88125
|
+
paddingRight?: string | undefined;
|
|
88126
|
+
paddingBottom?: string | undefined;
|
|
88127
|
+
paddingLeft?: string | undefined;
|
|
88128
|
+
margin?: string | undefined;
|
|
88129
|
+
marginTop?: string | undefined;
|
|
88130
|
+
marginRight?: string | undefined;
|
|
88131
|
+
marginBottom?: string | undefined;
|
|
88132
|
+
marginLeft?: string | undefined;
|
|
88133
|
+
border?: string | undefined;
|
|
88134
|
+
borderWidth?: string | undefined;
|
|
88135
|
+
borderStyle?: string | undefined;
|
|
88136
|
+
borderColor?: string | undefined;
|
|
88137
|
+
borderTop?: string | undefined;
|
|
88138
|
+
borderRight?: string | undefined;
|
|
88139
|
+
borderBottom?: string | undefined;
|
|
88140
|
+
borderLeft?: string | undefined;
|
|
88141
|
+
borderRadius?: string | undefined;
|
|
88142
|
+
borderTopLeftRadius?: string | undefined;
|
|
88143
|
+
borderTopRightRadius?: string | undefined;
|
|
88144
|
+
borderBottomRightRadius?: string | undefined;
|
|
88145
|
+
borderBottomLeftRadius?: string | undefined;
|
|
88146
|
+
backgroundImage?: string | undefined;
|
|
88147
|
+
backgroundSize?: string | undefined;
|
|
88148
|
+
backgroundPosition?: string | undefined;
|
|
88149
|
+
backgroundRepeat?: string | undefined;
|
|
88150
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
88151
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
88152
|
+
boxShadow?: string | undefined;
|
|
88153
|
+
backdropFilter?: string | undefined;
|
|
88154
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88155
|
+
transform?: string | undefined;
|
|
88156
|
+
transformOrigin?: string | undefined;
|
|
88157
|
+
clipPath?: string | undefined;
|
|
88158
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88159
|
+
fontStretch?: string | undefined;
|
|
88160
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
88161
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
88162
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
88163
|
+
textDecorationColor?: string | undefined;
|
|
88164
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
88165
|
+
textDecorationThickness?: string | undefined;
|
|
88166
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
88167
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
88168
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
88169
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
88170
|
+
WebkitLineClamp?: number | undefined;
|
|
88171
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
88172
|
+
fontFeatureSettings?: string | undefined;
|
|
88173
|
+
stroke?: string | undefined;
|
|
88174
|
+
strokeWidth?: string | undefined;
|
|
88175
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
88176
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
88177
|
+
strokeDasharray?: string | undefined;
|
|
88178
|
+
strokeDashoffset?: string | undefined;
|
|
88179
|
+
transition?: string | undefined;
|
|
88180
|
+
animation?: string | undefined;
|
|
88181
|
+
cursor?: string | undefined;
|
|
88182
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
88183
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
88184
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
88185
|
+
};
|
|
88186
|
+
componentName: string;
|
|
88187
|
+
componentSetName: string;
|
|
88188
|
+
props: Record<string, string | boolean>;
|
|
88189
|
+
parentId: string | null;
|
|
88190
|
+
supernovaId: string;
|
|
88191
|
+
componentSetDescription: string;
|
|
88192
|
+
componentDescription: string;
|
|
88193
|
+
}>;
|
|
87623
88194
|
type FrameNode = z.infer<typeof frameNodeObjectSchema> & {
|
|
87624
88195
|
children: AnyDesignNode[];
|
|
87625
88196
|
};
|
|
@@ -87627,10 +88198,13 @@ type TextNode = z.infer<typeof textNodeObjectSchema>;
|
|
|
87627
88198
|
type SvgNode = z.infer<typeof svgNodeObjectSchema> & {
|
|
87628
88199
|
children: AnyDesignNode[];
|
|
87629
88200
|
};
|
|
87630
|
-
type
|
|
88201
|
+
type ComponentInstanceNode = z.infer<typeof componentInstanceObjectSchema> & {
|
|
88202
|
+
children: AnyDesignNode[];
|
|
88203
|
+
};
|
|
88204
|
+
type AnyDesignNode = FrameNode | TextNode | SvgNode | ComponentInstanceNode;
|
|
87631
88205
|
declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode, z.ZodTypeDef, FrameNode>, z.ZodObject<z.objectUtil.extendShape<{
|
|
87632
88206
|
id: z.ZodString;
|
|
87633
|
-
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
88207
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">, z.ZodLiteral<"COMPONENT_INSTANCE">]>;
|
|
87634
88208
|
parentId: z.ZodNullable<z.ZodString>;
|
|
87635
88209
|
styles: z.ZodObject<{
|
|
87636
88210
|
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">]>>>;
|
|
@@ -88183,12 +88757,13 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88183
88757
|
};
|
|
88184
88758
|
parentId: string | null;
|
|
88185
88759
|
characters: string;
|
|
88186
|
-
}>, z.ZodType<SvgNode, z.ZodTypeDef, SvgNode>]>;
|
|
88760
|
+
}>, z.ZodType<SvgNode, z.ZodTypeDef, SvgNode>, z.ZodType<ComponentInstanceNode, z.ZodTypeDef, ComponentInstanceNode>]>;
|
|
88187
88761
|
type FigmaExporter = {
|
|
88188
88762
|
AnyDesignNode: AnyDesignNode;
|
|
88189
88763
|
FrameNode: FrameNode;
|
|
88190
88764
|
TextNode: TextNode;
|
|
88191
88765
|
SvgNode: SvgNode;
|
|
88766
|
+
ComponentInstanceNode: ComponentInstanceNode;
|
|
88192
88767
|
ProcessedStyles: ProcessedStyles;
|
|
88193
88768
|
};
|
|
88194
88769
|
|