@supernova-studio/model 1.90.6 → 1.90.7
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 +1512 -18
- package/dist/index.d.ts +1512 -18
- package/dist/index.js +31 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1156 -1129
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -83932,6 +83932,1507 @@ declare const FigmaExporterProcessedStylesSchema: z$1.ZodObject<{
|
|
|
83932
83932
|
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
83933
83933
|
}>;
|
|
83934
83934
|
type ProcessedStyles = z$1.infer<typeof FigmaExporterProcessedStylesSchema>;
|
|
83935
|
+
|
|
83936
|
+
declare const textSpanSchema: z$1.ZodObject<{
|
|
83937
|
+
text: z$1.ZodString;
|
|
83938
|
+
styles: z$1.ZodObject<{
|
|
83939
|
+
display: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"block">, z$1.ZodLiteral<"inline-block">, z$1.ZodLiteral<"inline">, z$1.ZodLiteral<"flex">, z$1.ZodLiteral<"grid">, z$1.ZodLiteral<"none">]>>>;
|
|
83940
|
+
position: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"absolute">, z$1.ZodLiteral<"relative">, z$1.ZodLiteral<"fixed">, z$1.ZodLiteral<"static">, z$1.ZodLiteral<"sticky">]>>>;
|
|
83941
|
+
top: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83942
|
+
right: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83943
|
+
bottom: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83944
|
+
left: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83945
|
+
width: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83946
|
+
height: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83947
|
+
minWidth: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83948
|
+
minHeight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83949
|
+
maxWidth: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83950
|
+
maxHeight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83951
|
+
zIndex: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
83952
|
+
overflow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"hidden">, z$1.ZodLiteral<"scroll">, z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"clip">]>>>;
|
|
83953
|
+
overflowX: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"hidden">, z$1.ZodLiteral<"scroll">, z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"clip">]>>>;
|
|
83954
|
+
overflowY: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"hidden">, z$1.ZodLiteral<"scroll">, z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"clip">]>>>;
|
|
83955
|
+
aspectRatio: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83956
|
+
flexDirection: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"row">, z$1.ZodLiteral<"row-reverse">, z$1.ZodLiteral<"column">, z$1.ZodLiteral<"column-reverse">]>>>;
|
|
83957
|
+
justifyContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"space-evenly">]>>>;
|
|
83958
|
+
alignItems: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
83959
|
+
alignSelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
83960
|
+
justifySelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">]>>>;
|
|
83961
|
+
flexGrow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
83962
|
+
flexShrink: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
83963
|
+
flexBasis: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83964
|
+
flexWrap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"nowrap">, z$1.ZodLiteral<"wrap">, z$1.ZodLiteral<"wrap-reverse">]>>>;
|
|
83965
|
+
gap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83966
|
+
rowGap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83967
|
+
columnGap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83968
|
+
gridTemplateColumns: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83969
|
+
gridTemplateRows: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83970
|
+
gridColumn: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83971
|
+
gridRow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83972
|
+
gridAutoFlow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"row">, z$1.ZodLiteral<"column">, z$1.ZodLiteral<"dense">, z$1.ZodLiteral<"row dense">, z$1.ZodLiteral<"column dense">]>>>;
|
|
83973
|
+
alignContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"stretch">]>>>;
|
|
83974
|
+
padding: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83975
|
+
paddingTop: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83976
|
+
paddingRight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83977
|
+
paddingBottom: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83978
|
+
paddingLeft: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83979
|
+
margin: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83980
|
+
marginTop: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83981
|
+
marginRight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83982
|
+
marginBottom: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83983
|
+
marginLeft: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83984
|
+
border: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83985
|
+
borderWidth: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83986
|
+
borderStyle: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83987
|
+
borderColor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83988
|
+
borderTop: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83989
|
+
borderRight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83990
|
+
borderBottom: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83991
|
+
borderLeft: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83992
|
+
borderRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83993
|
+
borderTopLeftRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83994
|
+
borderTopRightRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83995
|
+
borderBottomRightRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83996
|
+
borderBottomLeftRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83997
|
+
backgroundColor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83998
|
+
backgroundImage: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
83999
|
+
backgroundSize: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84000
|
+
backgroundPosition: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84001
|
+
backgroundRepeat: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84002
|
+
backgroundBlendMode: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84003
|
+
backgroundClip: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"border-box">, z$1.ZodLiteral<"padding-box">, z$1.ZodLiteral<"content-box">, z$1.ZodLiteral<"text">]>>>;
|
|
84004
|
+
backgroundOrigin: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"border-box">, z$1.ZodLiteral<"padding-box">, z$1.ZodLiteral<"content-box">]>>>;
|
|
84005
|
+
opacity: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84006
|
+
boxShadow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84007
|
+
textShadow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84008
|
+
filter: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84009
|
+
backdropFilter: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84010
|
+
maskImage: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84011
|
+
maskRepeat: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84012
|
+
maskPosition: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84013
|
+
maskSize: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84014
|
+
WebkitMaskImage: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84015
|
+
WebkitMaskRepeat: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84016
|
+
WebkitMaskPosition: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84017
|
+
WebkitMaskSize: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84018
|
+
mixBlendMode: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"multiply">, z$1.ZodLiteral<"screen">, z$1.ZodLiteral<"overlay">, z$1.ZodLiteral<"darken">, z$1.ZodLiteral<"lighten">, z$1.ZodLiteral<"color-dodge">, z$1.ZodLiteral<"color-burn">, z$1.ZodLiteral<"hard-light">, z$1.ZodLiteral<"soft-light">, z$1.ZodLiteral<"difference">, z$1.ZodLiteral<"exclusion">, z$1.ZodLiteral<"hue">, z$1.ZodLiteral<"saturation">, z$1.ZodLiteral<"color">, z$1.ZodLiteral<"luminosity">, z$1.ZodLiteral<"plus-lighter">]>>>;
|
|
84019
|
+
transform: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84020
|
+
transformOrigin: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84021
|
+
rotate: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84022
|
+
clipPath: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84023
|
+
color: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84024
|
+
fontFamily: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84025
|
+
fontSize: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84026
|
+
fontWeight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>>;
|
|
84027
|
+
fontStyle: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"italic">, z$1.ZodLiteral<"oblique">]>>>;
|
|
84028
|
+
fontStretch: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84029
|
+
fontVariantCaps: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"small-caps">, z$1.ZodLiteral<"all-small-caps">, z$1.ZodLiteral<"petite-caps">, z$1.ZodLiteral<"all-petite-caps">, z$1.ZodLiteral<"unicase">, z$1.ZodLiteral<"titling-caps">]>>>;
|
|
84030
|
+
lineHeight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>>;
|
|
84031
|
+
letterSpacing: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84032
|
+
textAlign: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"left">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"right">, z$1.ZodLiteral<"justify">, z$1.ZodLiteral<"start">, z$1.ZodLiteral<"end">]>>>;
|
|
84033
|
+
textDecorationLine: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"none">, z$1.ZodLiteral<"underline">, z$1.ZodLiteral<"overline">, z$1.ZodLiteral<"line-through">]>>>;
|
|
84034
|
+
textDecorationColor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84035
|
+
textDecorationStyle: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"solid">, z$1.ZodLiteral<"double">, z$1.ZodLiteral<"dotted">, z$1.ZodLiteral<"dashed">, z$1.ZodLiteral<"wavy">]>>>;
|
|
84036
|
+
textDecorationThickness: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84037
|
+
textTransform: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"none">, z$1.ZodLiteral<"uppercase">, z$1.ZodLiteral<"lowercase">, z$1.ZodLiteral<"capitalize">, z$1.ZodLiteral<"full-width">]>>>;
|
|
84038
|
+
whiteSpace: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"nowrap">, z$1.ZodLiteral<"pre">, z$1.ZodLiteral<"pre-wrap">, z$1.ZodLiteral<"pre-line">, z$1.ZodLiteral<"break-spaces">]>>>;
|
|
84039
|
+
wordBreak: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"break-all">, z$1.ZodLiteral<"keep-all">, z$1.ZodLiteral<"break-word">]>>>;
|
|
84040
|
+
textOverflow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"clip">, z$1.ZodLiteral<"ellipsis">]>>>;
|
|
84041
|
+
WebkitBackgroundClip: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodLiteral<"text">>>;
|
|
84042
|
+
WebkitTextFillColor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84043
|
+
WebkitLineClamp: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84044
|
+
WebkitBoxOrient: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodLiteral<"vertical">>>;
|
|
84045
|
+
fontFeatureSettings: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84046
|
+
fill: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84047
|
+
stroke: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84048
|
+
strokeWidth: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84049
|
+
strokeLinecap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"butt">, z$1.ZodLiteral<"round">, z$1.ZodLiteral<"square">]>>>;
|
|
84050
|
+
strokeLinejoin: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"miter">, z$1.ZodLiteral<"round">, z$1.ZodLiteral<"bevel">]>>>;
|
|
84051
|
+
strokeDasharray: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84052
|
+
strokeDashoffset: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84053
|
+
transition: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84054
|
+
animation: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84055
|
+
cursor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84056
|
+
userSelect: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"none">, z$1.ZodLiteral<"text">, z$1.ZodLiteral<"all">]>>>;
|
|
84057
|
+
pointerEvents: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"none">, z$1.ZodLiteral<"visiblePainted">, z$1.ZodLiteral<"visibleFill">, z$1.ZodLiteral<"visibleStroke">, z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"painted">, z$1.ZodLiteral<"fill">, z$1.ZodLiteral<"stroke">, z$1.ZodLiteral<"all">, z$1.ZodLiteral<"inherit">]>>>;
|
|
84058
|
+
visibility: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"hidden">, z$1.ZodLiteral<"collapse">]>>>;
|
|
84059
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84060
|
+
filter?: string | undefined;
|
|
84061
|
+
fill?: string | undefined;
|
|
84062
|
+
top?: string | undefined;
|
|
84063
|
+
color?: string | undefined;
|
|
84064
|
+
width?: string | undefined;
|
|
84065
|
+
height?: string | undefined;
|
|
84066
|
+
opacity?: number | undefined;
|
|
84067
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
84068
|
+
backgroundColor?: string | undefined;
|
|
84069
|
+
gap?: string | undefined;
|
|
84070
|
+
aspectRatio?: string | undefined;
|
|
84071
|
+
minHeight?: string | undefined;
|
|
84072
|
+
bottom?: string | undefined;
|
|
84073
|
+
left?: string | undefined;
|
|
84074
|
+
right?: string | undefined;
|
|
84075
|
+
padding?: string | undefined;
|
|
84076
|
+
fontSize?: string | undefined;
|
|
84077
|
+
fontFamily?: string | undefined;
|
|
84078
|
+
fontWeight?: string | number | undefined;
|
|
84079
|
+
letterSpacing?: string | undefined;
|
|
84080
|
+
lineHeight?: string | number | undefined;
|
|
84081
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
84082
|
+
minWidth?: string | undefined;
|
|
84083
|
+
maxWidth?: string | undefined;
|
|
84084
|
+
maxHeight?: string | undefined;
|
|
84085
|
+
zIndex?: number | undefined;
|
|
84086
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84087
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84088
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84089
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
84090
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84091
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84092
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84093
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84094
|
+
flexGrow?: number | undefined;
|
|
84095
|
+
flexShrink?: number | undefined;
|
|
84096
|
+
flexBasis?: string | undefined;
|
|
84097
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
84098
|
+
rowGap?: string | undefined;
|
|
84099
|
+
columnGap?: string | undefined;
|
|
84100
|
+
gridTemplateColumns?: string | undefined;
|
|
84101
|
+
gridTemplateRows?: string | undefined;
|
|
84102
|
+
gridColumn?: string | undefined;
|
|
84103
|
+
gridRow?: string | undefined;
|
|
84104
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
84105
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
84106
|
+
paddingTop?: string | undefined;
|
|
84107
|
+
paddingRight?: string | undefined;
|
|
84108
|
+
paddingBottom?: string | undefined;
|
|
84109
|
+
paddingLeft?: string | undefined;
|
|
84110
|
+
margin?: string | undefined;
|
|
84111
|
+
marginTop?: string | undefined;
|
|
84112
|
+
marginRight?: string | undefined;
|
|
84113
|
+
marginBottom?: string | undefined;
|
|
84114
|
+
marginLeft?: string | undefined;
|
|
84115
|
+
border?: string | undefined;
|
|
84116
|
+
borderWidth?: string | undefined;
|
|
84117
|
+
borderStyle?: string | undefined;
|
|
84118
|
+
borderColor?: string | undefined;
|
|
84119
|
+
borderTop?: string | undefined;
|
|
84120
|
+
borderRight?: string | undefined;
|
|
84121
|
+
borderBottom?: string | undefined;
|
|
84122
|
+
borderLeft?: string | undefined;
|
|
84123
|
+
borderRadius?: string | undefined;
|
|
84124
|
+
borderTopLeftRadius?: string | undefined;
|
|
84125
|
+
borderTopRightRadius?: string | undefined;
|
|
84126
|
+
borderBottomRightRadius?: string | undefined;
|
|
84127
|
+
borderBottomLeftRadius?: string | undefined;
|
|
84128
|
+
backgroundImage?: string | undefined;
|
|
84129
|
+
backgroundSize?: string | undefined;
|
|
84130
|
+
backgroundPosition?: string | undefined;
|
|
84131
|
+
backgroundRepeat?: string | undefined;
|
|
84132
|
+
backgroundBlendMode?: string | undefined;
|
|
84133
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
84134
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
84135
|
+
boxShadow?: string | undefined;
|
|
84136
|
+
textShadow?: string | undefined;
|
|
84137
|
+
backdropFilter?: string | undefined;
|
|
84138
|
+
maskImage?: string | undefined;
|
|
84139
|
+
maskRepeat?: string | undefined;
|
|
84140
|
+
maskPosition?: string | undefined;
|
|
84141
|
+
maskSize?: string | undefined;
|
|
84142
|
+
WebkitMaskImage?: string | undefined;
|
|
84143
|
+
WebkitMaskRepeat?: string | undefined;
|
|
84144
|
+
WebkitMaskPosition?: string | undefined;
|
|
84145
|
+
WebkitMaskSize?: string | undefined;
|
|
84146
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
84147
|
+
transform?: string | undefined;
|
|
84148
|
+
transformOrigin?: string | undefined;
|
|
84149
|
+
rotate?: string | undefined;
|
|
84150
|
+
clipPath?: string | undefined;
|
|
84151
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
84152
|
+
fontStretch?: string | undefined;
|
|
84153
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
84154
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
84155
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
84156
|
+
textDecorationColor?: string | undefined;
|
|
84157
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
84158
|
+
textDecorationThickness?: string | undefined;
|
|
84159
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
84160
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
84161
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
84162
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
84163
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
84164
|
+
WebkitTextFillColor?: string | undefined;
|
|
84165
|
+
WebkitLineClamp?: number | undefined;
|
|
84166
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
84167
|
+
fontFeatureSettings?: string | undefined;
|
|
84168
|
+
stroke?: string | undefined;
|
|
84169
|
+
strokeWidth?: string | undefined;
|
|
84170
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
84171
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
84172
|
+
strokeDasharray?: string | undefined;
|
|
84173
|
+
strokeDashoffset?: string | undefined;
|
|
84174
|
+
transition?: string | undefined;
|
|
84175
|
+
animation?: string | undefined;
|
|
84176
|
+
cursor?: string | undefined;
|
|
84177
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
84178
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
84179
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
84180
|
+
}, {
|
|
84181
|
+
filter?: string | undefined;
|
|
84182
|
+
fill?: string | undefined;
|
|
84183
|
+
top?: string | undefined;
|
|
84184
|
+
color?: string | undefined;
|
|
84185
|
+
width?: string | undefined;
|
|
84186
|
+
height?: string | undefined;
|
|
84187
|
+
opacity?: number | undefined;
|
|
84188
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
84189
|
+
backgroundColor?: string | undefined;
|
|
84190
|
+
gap?: string | undefined;
|
|
84191
|
+
aspectRatio?: string | undefined;
|
|
84192
|
+
minHeight?: string | undefined;
|
|
84193
|
+
bottom?: string | undefined;
|
|
84194
|
+
left?: string | undefined;
|
|
84195
|
+
right?: string | undefined;
|
|
84196
|
+
padding?: string | undefined;
|
|
84197
|
+
fontSize?: string | undefined;
|
|
84198
|
+
fontFamily?: string | undefined;
|
|
84199
|
+
fontWeight?: string | number | undefined;
|
|
84200
|
+
letterSpacing?: string | undefined;
|
|
84201
|
+
lineHeight?: string | number | undefined;
|
|
84202
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
84203
|
+
minWidth?: string | undefined;
|
|
84204
|
+
maxWidth?: string | undefined;
|
|
84205
|
+
maxHeight?: string | undefined;
|
|
84206
|
+
zIndex?: number | undefined;
|
|
84207
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84208
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84209
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84210
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
84211
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84212
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84213
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84214
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84215
|
+
flexGrow?: number | undefined;
|
|
84216
|
+
flexShrink?: number | undefined;
|
|
84217
|
+
flexBasis?: string | undefined;
|
|
84218
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
84219
|
+
rowGap?: string | undefined;
|
|
84220
|
+
columnGap?: string | undefined;
|
|
84221
|
+
gridTemplateColumns?: string | undefined;
|
|
84222
|
+
gridTemplateRows?: string | undefined;
|
|
84223
|
+
gridColumn?: string | undefined;
|
|
84224
|
+
gridRow?: string | undefined;
|
|
84225
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
84226
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
84227
|
+
paddingTop?: string | undefined;
|
|
84228
|
+
paddingRight?: string | undefined;
|
|
84229
|
+
paddingBottom?: string | undefined;
|
|
84230
|
+
paddingLeft?: string | undefined;
|
|
84231
|
+
margin?: string | undefined;
|
|
84232
|
+
marginTop?: string | undefined;
|
|
84233
|
+
marginRight?: string | undefined;
|
|
84234
|
+
marginBottom?: string | undefined;
|
|
84235
|
+
marginLeft?: string | undefined;
|
|
84236
|
+
border?: string | undefined;
|
|
84237
|
+
borderWidth?: string | undefined;
|
|
84238
|
+
borderStyle?: string | undefined;
|
|
84239
|
+
borderColor?: string | undefined;
|
|
84240
|
+
borderTop?: string | undefined;
|
|
84241
|
+
borderRight?: string | undefined;
|
|
84242
|
+
borderBottom?: string | undefined;
|
|
84243
|
+
borderLeft?: string | undefined;
|
|
84244
|
+
borderRadius?: string | undefined;
|
|
84245
|
+
borderTopLeftRadius?: string | undefined;
|
|
84246
|
+
borderTopRightRadius?: string | undefined;
|
|
84247
|
+
borderBottomRightRadius?: string | undefined;
|
|
84248
|
+
borderBottomLeftRadius?: string | undefined;
|
|
84249
|
+
backgroundImage?: string | undefined;
|
|
84250
|
+
backgroundSize?: string | undefined;
|
|
84251
|
+
backgroundPosition?: string | undefined;
|
|
84252
|
+
backgroundRepeat?: string | undefined;
|
|
84253
|
+
backgroundBlendMode?: string | undefined;
|
|
84254
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
84255
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
84256
|
+
boxShadow?: string | undefined;
|
|
84257
|
+
textShadow?: string | undefined;
|
|
84258
|
+
backdropFilter?: string | undefined;
|
|
84259
|
+
maskImage?: string | undefined;
|
|
84260
|
+
maskRepeat?: string | undefined;
|
|
84261
|
+
maskPosition?: string | undefined;
|
|
84262
|
+
maskSize?: string | undefined;
|
|
84263
|
+
WebkitMaskImage?: string | undefined;
|
|
84264
|
+
WebkitMaskRepeat?: string | undefined;
|
|
84265
|
+
WebkitMaskPosition?: string | undefined;
|
|
84266
|
+
WebkitMaskSize?: string | undefined;
|
|
84267
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
84268
|
+
transform?: string | undefined;
|
|
84269
|
+
transformOrigin?: string | undefined;
|
|
84270
|
+
rotate?: string | undefined;
|
|
84271
|
+
clipPath?: string | undefined;
|
|
84272
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
84273
|
+
fontStretch?: string | undefined;
|
|
84274
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
84275
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
84276
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
84277
|
+
textDecorationColor?: string | undefined;
|
|
84278
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
84279
|
+
textDecorationThickness?: string | undefined;
|
|
84280
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
84281
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
84282
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
84283
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
84284
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
84285
|
+
WebkitTextFillColor?: string | undefined;
|
|
84286
|
+
WebkitLineClamp?: number | undefined;
|
|
84287
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
84288
|
+
fontFeatureSettings?: string | undefined;
|
|
84289
|
+
stroke?: string | undefined;
|
|
84290
|
+
strokeWidth?: string | undefined;
|
|
84291
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
84292
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
84293
|
+
strokeDasharray?: string | undefined;
|
|
84294
|
+
strokeDashoffset?: string | undefined;
|
|
84295
|
+
transition?: string | undefined;
|
|
84296
|
+
animation?: string | undefined;
|
|
84297
|
+
cursor?: string | undefined;
|
|
84298
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
84299
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
84300
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
84301
|
+
}>;
|
|
84302
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84303
|
+
styles: {
|
|
84304
|
+
filter?: string | undefined;
|
|
84305
|
+
fill?: string | undefined;
|
|
84306
|
+
top?: string | undefined;
|
|
84307
|
+
color?: string | undefined;
|
|
84308
|
+
width?: string | undefined;
|
|
84309
|
+
height?: string | undefined;
|
|
84310
|
+
opacity?: number | undefined;
|
|
84311
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
84312
|
+
backgroundColor?: string | undefined;
|
|
84313
|
+
gap?: string | undefined;
|
|
84314
|
+
aspectRatio?: string | undefined;
|
|
84315
|
+
minHeight?: string | undefined;
|
|
84316
|
+
bottom?: string | undefined;
|
|
84317
|
+
left?: string | undefined;
|
|
84318
|
+
right?: string | undefined;
|
|
84319
|
+
padding?: string | undefined;
|
|
84320
|
+
fontSize?: string | undefined;
|
|
84321
|
+
fontFamily?: string | undefined;
|
|
84322
|
+
fontWeight?: string | number | undefined;
|
|
84323
|
+
letterSpacing?: string | undefined;
|
|
84324
|
+
lineHeight?: string | number | undefined;
|
|
84325
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
84326
|
+
minWidth?: string | undefined;
|
|
84327
|
+
maxWidth?: string | undefined;
|
|
84328
|
+
maxHeight?: string | undefined;
|
|
84329
|
+
zIndex?: number | undefined;
|
|
84330
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84331
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84332
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84333
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
84334
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84335
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84336
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84337
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84338
|
+
flexGrow?: number | undefined;
|
|
84339
|
+
flexShrink?: number | undefined;
|
|
84340
|
+
flexBasis?: string | undefined;
|
|
84341
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
84342
|
+
rowGap?: string | undefined;
|
|
84343
|
+
columnGap?: string | undefined;
|
|
84344
|
+
gridTemplateColumns?: string | undefined;
|
|
84345
|
+
gridTemplateRows?: string | undefined;
|
|
84346
|
+
gridColumn?: string | undefined;
|
|
84347
|
+
gridRow?: string | undefined;
|
|
84348
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
84349
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
84350
|
+
paddingTop?: string | undefined;
|
|
84351
|
+
paddingRight?: string | undefined;
|
|
84352
|
+
paddingBottom?: string | undefined;
|
|
84353
|
+
paddingLeft?: string | undefined;
|
|
84354
|
+
margin?: string | undefined;
|
|
84355
|
+
marginTop?: string | undefined;
|
|
84356
|
+
marginRight?: string | undefined;
|
|
84357
|
+
marginBottom?: string | undefined;
|
|
84358
|
+
marginLeft?: string | undefined;
|
|
84359
|
+
border?: string | undefined;
|
|
84360
|
+
borderWidth?: string | undefined;
|
|
84361
|
+
borderStyle?: string | undefined;
|
|
84362
|
+
borderColor?: string | undefined;
|
|
84363
|
+
borderTop?: string | undefined;
|
|
84364
|
+
borderRight?: string | undefined;
|
|
84365
|
+
borderBottom?: string | undefined;
|
|
84366
|
+
borderLeft?: string | undefined;
|
|
84367
|
+
borderRadius?: string | undefined;
|
|
84368
|
+
borderTopLeftRadius?: string | undefined;
|
|
84369
|
+
borderTopRightRadius?: string | undefined;
|
|
84370
|
+
borderBottomRightRadius?: string | undefined;
|
|
84371
|
+
borderBottomLeftRadius?: string | undefined;
|
|
84372
|
+
backgroundImage?: string | undefined;
|
|
84373
|
+
backgroundSize?: string | undefined;
|
|
84374
|
+
backgroundPosition?: string | undefined;
|
|
84375
|
+
backgroundRepeat?: string | undefined;
|
|
84376
|
+
backgroundBlendMode?: string | undefined;
|
|
84377
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
84378
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
84379
|
+
boxShadow?: string | undefined;
|
|
84380
|
+
textShadow?: string | undefined;
|
|
84381
|
+
backdropFilter?: string | undefined;
|
|
84382
|
+
maskImage?: string | undefined;
|
|
84383
|
+
maskRepeat?: string | undefined;
|
|
84384
|
+
maskPosition?: string | undefined;
|
|
84385
|
+
maskSize?: string | undefined;
|
|
84386
|
+
WebkitMaskImage?: string | undefined;
|
|
84387
|
+
WebkitMaskRepeat?: string | undefined;
|
|
84388
|
+
WebkitMaskPosition?: string | undefined;
|
|
84389
|
+
WebkitMaskSize?: string | undefined;
|
|
84390
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
84391
|
+
transform?: string | undefined;
|
|
84392
|
+
transformOrigin?: string | undefined;
|
|
84393
|
+
rotate?: string | undefined;
|
|
84394
|
+
clipPath?: string | undefined;
|
|
84395
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
84396
|
+
fontStretch?: string | undefined;
|
|
84397
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
84398
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
84399
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
84400
|
+
textDecorationColor?: string | undefined;
|
|
84401
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
84402
|
+
textDecorationThickness?: string | undefined;
|
|
84403
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
84404
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
84405
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
84406
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
84407
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
84408
|
+
WebkitTextFillColor?: string | undefined;
|
|
84409
|
+
WebkitLineClamp?: number | undefined;
|
|
84410
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
84411
|
+
fontFeatureSettings?: string | undefined;
|
|
84412
|
+
stroke?: string | undefined;
|
|
84413
|
+
strokeWidth?: string | undefined;
|
|
84414
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
84415
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
84416
|
+
strokeDasharray?: string | undefined;
|
|
84417
|
+
strokeDashoffset?: string | undefined;
|
|
84418
|
+
transition?: string | undefined;
|
|
84419
|
+
animation?: string | undefined;
|
|
84420
|
+
cursor?: string | undefined;
|
|
84421
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
84422
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
84423
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
84424
|
+
};
|
|
84425
|
+
text: string;
|
|
84426
|
+
}, {
|
|
84427
|
+
styles: {
|
|
84428
|
+
filter?: string | undefined;
|
|
84429
|
+
fill?: string | undefined;
|
|
84430
|
+
top?: string | undefined;
|
|
84431
|
+
color?: string | undefined;
|
|
84432
|
+
width?: string | undefined;
|
|
84433
|
+
height?: string | undefined;
|
|
84434
|
+
opacity?: number | undefined;
|
|
84435
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
84436
|
+
backgroundColor?: string | undefined;
|
|
84437
|
+
gap?: string | undefined;
|
|
84438
|
+
aspectRatio?: string | undefined;
|
|
84439
|
+
minHeight?: string | undefined;
|
|
84440
|
+
bottom?: string | undefined;
|
|
84441
|
+
left?: string | undefined;
|
|
84442
|
+
right?: string | undefined;
|
|
84443
|
+
padding?: string | undefined;
|
|
84444
|
+
fontSize?: string | undefined;
|
|
84445
|
+
fontFamily?: string | undefined;
|
|
84446
|
+
fontWeight?: string | number | undefined;
|
|
84447
|
+
letterSpacing?: string | undefined;
|
|
84448
|
+
lineHeight?: string | number | undefined;
|
|
84449
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
84450
|
+
minWidth?: string | undefined;
|
|
84451
|
+
maxWidth?: string | undefined;
|
|
84452
|
+
maxHeight?: string | undefined;
|
|
84453
|
+
zIndex?: number | undefined;
|
|
84454
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84455
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84456
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84457
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
84458
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84459
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84460
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84461
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84462
|
+
flexGrow?: number | undefined;
|
|
84463
|
+
flexShrink?: number | undefined;
|
|
84464
|
+
flexBasis?: string | undefined;
|
|
84465
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
84466
|
+
rowGap?: string | undefined;
|
|
84467
|
+
columnGap?: string | undefined;
|
|
84468
|
+
gridTemplateColumns?: string | undefined;
|
|
84469
|
+
gridTemplateRows?: string | undefined;
|
|
84470
|
+
gridColumn?: string | undefined;
|
|
84471
|
+
gridRow?: string | undefined;
|
|
84472
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
84473
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
84474
|
+
paddingTop?: string | undefined;
|
|
84475
|
+
paddingRight?: string | undefined;
|
|
84476
|
+
paddingBottom?: string | undefined;
|
|
84477
|
+
paddingLeft?: string | undefined;
|
|
84478
|
+
margin?: string | undefined;
|
|
84479
|
+
marginTop?: string | undefined;
|
|
84480
|
+
marginRight?: string | undefined;
|
|
84481
|
+
marginBottom?: string | undefined;
|
|
84482
|
+
marginLeft?: string | undefined;
|
|
84483
|
+
border?: string | undefined;
|
|
84484
|
+
borderWidth?: string | undefined;
|
|
84485
|
+
borderStyle?: string | undefined;
|
|
84486
|
+
borderColor?: string | undefined;
|
|
84487
|
+
borderTop?: string | undefined;
|
|
84488
|
+
borderRight?: string | undefined;
|
|
84489
|
+
borderBottom?: string | undefined;
|
|
84490
|
+
borderLeft?: string | undefined;
|
|
84491
|
+
borderRadius?: string | undefined;
|
|
84492
|
+
borderTopLeftRadius?: string | undefined;
|
|
84493
|
+
borderTopRightRadius?: string | undefined;
|
|
84494
|
+
borderBottomRightRadius?: string | undefined;
|
|
84495
|
+
borderBottomLeftRadius?: string | undefined;
|
|
84496
|
+
backgroundImage?: string | undefined;
|
|
84497
|
+
backgroundSize?: string | undefined;
|
|
84498
|
+
backgroundPosition?: string | undefined;
|
|
84499
|
+
backgroundRepeat?: string | undefined;
|
|
84500
|
+
backgroundBlendMode?: string | undefined;
|
|
84501
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
84502
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
84503
|
+
boxShadow?: string | undefined;
|
|
84504
|
+
textShadow?: string | undefined;
|
|
84505
|
+
backdropFilter?: string | undefined;
|
|
84506
|
+
maskImage?: string | undefined;
|
|
84507
|
+
maskRepeat?: string | undefined;
|
|
84508
|
+
maskPosition?: string | undefined;
|
|
84509
|
+
maskSize?: string | undefined;
|
|
84510
|
+
WebkitMaskImage?: string | undefined;
|
|
84511
|
+
WebkitMaskRepeat?: string | undefined;
|
|
84512
|
+
WebkitMaskPosition?: string | undefined;
|
|
84513
|
+
WebkitMaskSize?: string | undefined;
|
|
84514
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
84515
|
+
transform?: string | undefined;
|
|
84516
|
+
transformOrigin?: string | undefined;
|
|
84517
|
+
rotate?: string | undefined;
|
|
84518
|
+
clipPath?: string | undefined;
|
|
84519
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
84520
|
+
fontStretch?: string | undefined;
|
|
84521
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
84522
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
84523
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
84524
|
+
textDecorationColor?: string | undefined;
|
|
84525
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
84526
|
+
textDecorationThickness?: string | undefined;
|
|
84527
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
84528
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
84529
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
84530
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
84531
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
84532
|
+
WebkitTextFillColor?: string | undefined;
|
|
84533
|
+
WebkitLineClamp?: number | undefined;
|
|
84534
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
84535
|
+
fontFeatureSettings?: string | undefined;
|
|
84536
|
+
stroke?: string | undefined;
|
|
84537
|
+
strokeWidth?: string | undefined;
|
|
84538
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
84539
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
84540
|
+
strokeDasharray?: string | undefined;
|
|
84541
|
+
strokeDashoffset?: string | undefined;
|
|
84542
|
+
transition?: string | undefined;
|
|
84543
|
+
animation?: string | undefined;
|
|
84544
|
+
cursor?: string | undefined;
|
|
84545
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
84546
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
84547
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
84548
|
+
};
|
|
84549
|
+
text: string;
|
|
84550
|
+
}>;
|
|
84551
|
+
type TextSpan = z$1.infer<typeof textSpanSchema>;
|
|
84552
|
+
declare const textParagraphBlockSchema: z$1.ZodObject<{
|
|
84553
|
+
type: z$1.ZodLiteral<"paragraph">;
|
|
84554
|
+
spans: z$1.ZodArray<z$1.ZodObject<{
|
|
84555
|
+
text: z$1.ZodString;
|
|
84556
|
+
styles: z$1.ZodObject<{
|
|
84557
|
+
display: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"block">, z$1.ZodLiteral<"inline-block">, z$1.ZodLiteral<"inline">, z$1.ZodLiteral<"flex">, z$1.ZodLiteral<"grid">, z$1.ZodLiteral<"none">]>>>;
|
|
84558
|
+
position: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"absolute">, z$1.ZodLiteral<"relative">, z$1.ZodLiteral<"fixed">, z$1.ZodLiteral<"static">, z$1.ZodLiteral<"sticky">]>>>;
|
|
84559
|
+
top: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84560
|
+
right: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84561
|
+
bottom: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84562
|
+
left: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84563
|
+
width: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84564
|
+
height: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84565
|
+
minWidth: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84566
|
+
minHeight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84567
|
+
maxWidth: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84568
|
+
maxHeight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84569
|
+
zIndex: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84570
|
+
overflow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"hidden">, z$1.ZodLiteral<"scroll">, z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"clip">]>>>;
|
|
84571
|
+
overflowX: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"hidden">, z$1.ZodLiteral<"scroll">, z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"clip">]>>>;
|
|
84572
|
+
overflowY: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"hidden">, z$1.ZodLiteral<"scroll">, z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"clip">]>>>;
|
|
84573
|
+
aspectRatio: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84574
|
+
flexDirection: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"row">, z$1.ZodLiteral<"row-reverse">, z$1.ZodLiteral<"column">, z$1.ZodLiteral<"column-reverse">]>>>;
|
|
84575
|
+
justifyContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"space-evenly">]>>>;
|
|
84576
|
+
alignItems: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
84577
|
+
alignSelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"baseline">]>>>;
|
|
84578
|
+
justifySelf: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"stretch">, z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">]>>>;
|
|
84579
|
+
flexGrow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84580
|
+
flexShrink: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84581
|
+
flexBasis: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84582
|
+
flexWrap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"nowrap">, z$1.ZodLiteral<"wrap">, z$1.ZodLiteral<"wrap-reverse">]>>>;
|
|
84583
|
+
gap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84584
|
+
rowGap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84585
|
+
columnGap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84586
|
+
gridTemplateColumns: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84587
|
+
gridTemplateRows: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84588
|
+
gridColumn: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84589
|
+
gridRow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84590
|
+
gridAutoFlow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"row">, z$1.ZodLiteral<"column">, z$1.ZodLiteral<"dense">, z$1.ZodLiteral<"row dense">, z$1.ZodLiteral<"column dense">]>>>;
|
|
84591
|
+
alignContent: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"flex-start">, z$1.ZodLiteral<"flex-end">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"space-between">, z$1.ZodLiteral<"space-around">, z$1.ZodLiteral<"stretch">]>>>;
|
|
84592
|
+
padding: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84593
|
+
paddingTop: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84594
|
+
paddingRight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84595
|
+
paddingBottom: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84596
|
+
paddingLeft: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84597
|
+
margin: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84598
|
+
marginTop: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84599
|
+
marginRight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84600
|
+
marginBottom: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84601
|
+
marginLeft: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84602
|
+
border: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84603
|
+
borderWidth: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84604
|
+
borderStyle: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84605
|
+
borderColor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84606
|
+
borderTop: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84607
|
+
borderRight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84608
|
+
borderBottom: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84609
|
+
borderLeft: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84610
|
+
borderRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84611
|
+
borderTopLeftRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84612
|
+
borderTopRightRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84613
|
+
borderBottomRightRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84614
|
+
borderBottomLeftRadius: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84615
|
+
backgroundColor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84616
|
+
backgroundImage: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84617
|
+
backgroundSize: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84618
|
+
backgroundPosition: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84619
|
+
backgroundRepeat: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84620
|
+
backgroundBlendMode: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84621
|
+
backgroundClip: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"border-box">, z$1.ZodLiteral<"padding-box">, z$1.ZodLiteral<"content-box">, z$1.ZodLiteral<"text">]>>>;
|
|
84622
|
+
backgroundOrigin: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"border-box">, z$1.ZodLiteral<"padding-box">, z$1.ZodLiteral<"content-box">]>>>;
|
|
84623
|
+
opacity: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84624
|
+
boxShadow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84625
|
+
textShadow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84626
|
+
filter: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84627
|
+
backdropFilter: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84628
|
+
maskImage: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84629
|
+
maskRepeat: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84630
|
+
maskPosition: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84631
|
+
maskSize: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84632
|
+
WebkitMaskImage: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84633
|
+
WebkitMaskRepeat: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84634
|
+
WebkitMaskPosition: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84635
|
+
WebkitMaskSize: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84636
|
+
mixBlendMode: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"multiply">, z$1.ZodLiteral<"screen">, z$1.ZodLiteral<"overlay">, z$1.ZodLiteral<"darken">, z$1.ZodLiteral<"lighten">, z$1.ZodLiteral<"color-dodge">, z$1.ZodLiteral<"color-burn">, z$1.ZodLiteral<"hard-light">, z$1.ZodLiteral<"soft-light">, z$1.ZodLiteral<"difference">, z$1.ZodLiteral<"exclusion">, z$1.ZodLiteral<"hue">, z$1.ZodLiteral<"saturation">, z$1.ZodLiteral<"color">, z$1.ZodLiteral<"luminosity">, z$1.ZodLiteral<"plus-lighter">]>>>;
|
|
84637
|
+
transform: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84638
|
+
transformOrigin: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84639
|
+
rotate: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84640
|
+
clipPath: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84641
|
+
color: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84642
|
+
fontFamily: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84643
|
+
fontSize: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84644
|
+
fontWeight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>>;
|
|
84645
|
+
fontStyle: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"italic">, z$1.ZodLiteral<"oblique">]>>>;
|
|
84646
|
+
fontStretch: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84647
|
+
fontVariantCaps: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"small-caps">, z$1.ZodLiteral<"all-small-caps">, z$1.ZodLiteral<"petite-caps">, z$1.ZodLiteral<"all-petite-caps">, z$1.ZodLiteral<"unicase">, z$1.ZodLiteral<"titling-caps">]>>>;
|
|
84648
|
+
lineHeight: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>>;
|
|
84649
|
+
letterSpacing: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84650
|
+
textAlign: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"left">, z$1.ZodLiteral<"center">, z$1.ZodLiteral<"right">, z$1.ZodLiteral<"justify">, z$1.ZodLiteral<"start">, z$1.ZodLiteral<"end">]>>>;
|
|
84651
|
+
textDecorationLine: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"none">, z$1.ZodLiteral<"underline">, z$1.ZodLiteral<"overline">, z$1.ZodLiteral<"line-through">]>>>;
|
|
84652
|
+
textDecorationColor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84653
|
+
textDecorationStyle: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"solid">, z$1.ZodLiteral<"double">, z$1.ZodLiteral<"dotted">, z$1.ZodLiteral<"dashed">, z$1.ZodLiteral<"wavy">]>>>;
|
|
84654
|
+
textDecorationThickness: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84655
|
+
textTransform: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"none">, z$1.ZodLiteral<"uppercase">, z$1.ZodLiteral<"lowercase">, z$1.ZodLiteral<"capitalize">, z$1.ZodLiteral<"full-width">]>>>;
|
|
84656
|
+
whiteSpace: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"nowrap">, z$1.ZodLiteral<"pre">, z$1.ZodLiteral<"pre-wrap">, z$1.ZodLiteral<"pre-line">, z$1.ZodLiteral<"break-spaces">]>>>;
|
|
84657
|
+
wordBreak: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"normal">, z$1.ZodLiteral<"break-all">, z$1.ZodLiteral<"keep-all">, z$1.ZodLiteral<"break-word">]>>>;
|
|
84658
|
+
textOverflow: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"clip">, z$1.ZodLiteral<"ellipsis">]>>>;
|
|
84659
|
+
WebkitBackgroundClip: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodLiteral<"text">>>;
|
|
84660
|
+
WebkitTextFillColor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84661
|
+
WebkitLineClamp: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
84662
|
+
WebkitBoxOrient: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodLiteral<"vertical">>>;
|
|
84663
|
+
fontFeatureSettings: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84664
|
+
fill: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84665
|
+
stroke: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84666
|
+
strokeWidth: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84667
|
+
strokeLinecap: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"butt">, z$1.ZodLiteral<"round">, z$1.ZodLiteral<"square">]>>>;
|
|
84668
|
+
strokeLinejoin: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"miter">, z$1.ZodLiteral<"round">, z$1.ZodLiteral<"bevel">]>>>;
|
|
84669
|
+
strokeDasharray: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84670
|
+
strokeDashoffset: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84671
|
+
transition: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84672
|
+
animation: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84673
|
+
cursor: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
84674
|
+
userSelect: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"none">, z$1.ZodLiteral<"text">, z$1.ZodLiteral<"all">]>>>;
|
|
84675
|
+
pointerEvents: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"auto">, z$1.ZodLiteral<"none">, z$1.ZodLiteral<"visiblePainted">, z$1.ZodLiteral<"visibleFill">, z$1.ZodLiteral<"visibleStroke">, z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"painted">, z$1.ZodLiteral<"fill">, z$1.ZodLiteral<"stroke">, z$1.ZodLiteral<"all">, z$1.ZodLiteral<"inherit">]>>>;
|
|
84676
|
+
visibility: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodLiteral<"visible">, z$1.ZodLiteral<"hidden">, z$1.ZodLiteral<"collapse">]>>>;
|
|
84677
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84678
|
+
filter?: string | undefined;
|
|
84679
|
+
fill?: string | undefined;
|
|
84680
|
+
top?: string | undefined;
|
|
84681
|
+
color?: string | undefined;
|
|
84682
|
+
width?: string | undefined;
|
|
84683
|
+
height?: string | undefined;
|
|
84684
|
+
opacity?: number | undefined;
|
|
84685
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
84686
|
+
backgroundColor?: string | undefined;
|
|
84687
|
+
gap?: string | undefined;
|
|
84688
|
+
aspectRatio?: string | undefined;
|
|
84689
|
+
minHeight?: string | undefined;
|
|
84690
|
+
bottom?: string | undefined;
|
|
84691
|
+
left?: string | undefined;
|
|
84692
|
+
right?: string | undefined;
|
|
84693
|
+
padding?: string | undefined;
|
|
84694
|
+
fontSize?: string | undefined;
|
|
84695
|
+
fontFamily?: string | undefined;
|
|
84696
|
+
fontWeight?: string | number | undefined;
|
|
84697
|
+
letterSpacing?: string | undefined;
|
|
84698
|
+
lineHeight?: string | number | undefined;
|
|
84699
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
84700
|
+
minWidth?: string | undefined;
|
|
84701
|
+
maxWidth?: string | undefined;
|
|
84702
|
+
maxHeight?: string | undefined;
|
|
84703
|
+
zIndex?: number | undefined;
|
|
84704
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84705
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84706
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84707
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
84708
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84709
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84710
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84711
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84712
|
+
flexGrow?: number | undefined;
|
|
84713
|
+
flexShrink?: number | undefined;
|
|
84714
|
+
flexBasis?: string | undefined;
|
|
84715
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
84716
|
+
rowGap?: string | undefined;
|
|
84717
|
+
columnGap?: string | undefined;
|
|
84718
|
+
gridTemplateColumns?: string | undefined;
|
|
84719
|
+
gridTemplateRows?: string | undefined;
|
|
84720
|
+
gridColumn?: string | undefined;
|
|
84721
|
+
gridRow?: string | undefined;
|
|
84722
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
84723
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
84724
|
+
paddingTop?: string | undefined;
|
|
84725
|
+
paddingRight?: string | undefined;
|
|
84726
|
+
paddingBottom?: string | undefined;
|
|
84727
|
+
paddingLeft?: string | undefined;
|
|
84728
|
+
margin?: string | undefined;
|
|
84729
|
+
marginTop?: string | undefined;
|
|
84730
|
+
marginRight?: string | undefined;
|
|
84731
|
+
marginBottom?: string | undefined;
|
|
84732
|
+
marginLeft?: string | undefined;
|
|
84733
|
+
border?: string | undefined;
|
|
84734
|
+
borderWidth?: string | undefined;
|
|
84735
|
+
borderStyle?: string | undefined;
|
|
84736
|
+
borderColor?: string | undefined;
|
|
84737
|
+
borderTop?: string | undefined;
|
|
84738
|
+
borderRight?: string | undefined;
|
|
84739
|
+
borderBottom?: string | undefined;
|
|
84740
|
+
borderLeft?: string | undefined;
|
|
84741
|
+
borderRadius?: string | undefined;
|
|
84742
|
+
borderTopLeftRadius?: string | undefined;
|
|
84743
|
+
borderTopRightRadius?: string | undefined;
|
|
84744
|
+
borderBottomRightRadius?: string | undefined;
|
|
84745
|
+
borderBottomLeftRadius?: string | undefined;
|
|
84746
|
+
backgroundImage?: string | undefined;
|
|
84747
|
+
backgroundSize?: string | undefined;
|
|
84748
|
+
backgroundPosition?: string | undefined;
|
|
84749
|
+
backgroundRepeat?: string | undefined;
|
|
84750
|
+
backgroundBlendMode?: string | undefined;
|
|
84751
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
84752
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
84753
|
+
boxShadow?: string | undefined;
|
|
84754
|
+
textShadow?: string | undefined;
|
|
84755
|
+
backdropFilter?: string | undefined;
|
|
84756
|
+
maskImage?: string | undefined;
|
|
84757
|
+
maskRepeat?: string | undefined;
|
|
84758
|
+
maskPosition?: string | undefined;
|
|
84759
|
+
maskSize?: string | undefined;
|
|
84760
|
+
WebkitMaskImage?: string | undefined;
|
|
84761
|
+
WebkitMaskRepeat?: string | undefined;
|
|
84762
|
+
WebkitMaskPosition?: string | undefined;
|
|
84763
|
+
WebkitMaskSize?: string | undefined;
|
|
84764
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
84765
|
+
transform?: string | undefined;
|
|
84766
|
+
transformOrigin?: string | undefined;
|
|
84767
|
+
rotate?: string | undefined;
|
|
84768
|
+
clipPath?: string | undefined;
|
|
84769
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
84770
|
+
fontStretch?: string | undefined;
|
|
84771
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
84772
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
84773
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
84774
|
+
textDecorationColor?: string | undefined;
|
|
84775
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
84776
|
+
textDecorationThickness?: string | undefined;
|
|
84777
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
84778
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
84779
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
84780
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
84781
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
84782
|
+
WebkitTextFillColor?: string | undefined;
|
|
84783
|
+
WebkitLineClamp?: number | undefined;
|
|
84784
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
84785
|
+
fontFeatureSettings?: string | undefined;
|
|
84786
|
+
stroke?: string | undefined;
|
|
84787
|
+
strokeWidth?: string | undefined;
|
|
84788
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
84789
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
84790
|
+
strokeDasharray?: string | undefined;
|
|
84791
|
+
strokeDashoffset?: string | undefined;
|
|
84792
|
+
transition?: string | undefined;
|
|
84793
|
+
animation?: string | undefined;
|
|
84794
|
+
cursor?: string | undefined;
|
|
84795
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
84796
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
84797
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
84798
|
+
}, {
|
|
84799
|
+
filter?: string | undefined;
|
|
84800
|
+
fill?: string | undefined;
|
|
84801
|
+
top?: string | undefined;
|
|
84802
|
+
color?: string | undefined;
|
|
84803
|
+
width?: string | undefined;
|
|
84804
|
+
height?: string | undefined;
|
|
84805
|
+
opacity?: number | undefined;
|
|
84806
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
84807
|
+
backgroundColor?: string | undefined;
|
|
84808
|
+
gap?: string | undefined;
|
|
84809
|
+
aspectRatio?: string | undefined;
|
|
84810
|
+
minHeight?: string | undefined;
|
|
84811
|
+
bottom?: string | undefined;
|
|
84812
|
+
left?: string | undefined;
|
|
84813
|
+
right?: string | undefined;
|
|
84814
|
+
padding?: string | undefined;
|
|
84815
|
+
fontSize?: string | undefined;
|
|
84816
|
+
fontFamily?: string | undefined;
|
|
84817
|
+
fontWeight?: string | number | undefined;
|
|
84818
|
+
letterSpacing?: string | undefined;
|
|
84819
|
+
lineHeight?: string | number | undefined;
|
|
84820
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
84821
|
+
minWidth?: string | undefined;
|
|
84822
|
+
maxWidth?: string | undefined;
|
|
84823
|
+
maxHeight?: string | undefined;
|
|
84824
|
+
zIndex?: number | undefined;
|
|
84825
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84826
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84827
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84828
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
84829
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84830
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84831
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84832
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84833
|
+
flexGrow?: number | undefined;
|
|
84834
|
+
flexShrink?: number | undefined;
|
|
84835
|
+
flexBasis?: string | undefined;
|
|
84836
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
84837
|
+
rowGap?: string | undefined;
|
|
84838
|
+
columnGap?: string | undefined;
|
|
84839
|
+
gridTemplateColumns?: string | undefined;
|
|
84840
|
+
gridTemplateRows?: string | undefined;
|
|
84841
|
+
gridColumn?: string | undefined;
|
|
84842
|
+
gridRow?: string | undefined;
|
|
84843
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
84844
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
84845
|
+
paddingTop?: string | undefined;
|
|
84846
|
+
paddingRight?: string | undefined;
|
|
84847
|
+
paddingBottom?: string | undefined;
|
|
84848
|
+
paddingLeft?: string | undefined;
|
|
84849
|
+
margin?: string | undefined;
|
|
84850
|
+
marginTop?: string | undefined;
|
|
84851
|
+
marginRight?: string | undefined;
|
|
84852
|
+
marginBottom?: string | undefined;
|
|
84853
|
+
marginLeft?: string | undefined;
|
|
84854
|
+
border?: string | undefined;
|
|
84855
|
+
borderWidth?: string | undefined;
|
|
84856
|
+
borderStyle?: string | undefined;
|
|
84857
|
+
borderColor?: string | undefined;
|
|
84858
|
+
borderTop?: string | undefined;
|
|
84859
|
+
borderRight?: string | undefined;
|
|
84860
|
+
borderBottom?: string | undefined;
|
|
84861
|
+
borderLeft?: string | undefined;
|
|
84862
|
+
borderRadius?: string | undefined;
|
|
84863
|
+
borderTopLeftRadius?: string | undefined;
|
|
84864
|
+
borderTopRightRadius?: string | undefined;
|
|
84865
|
+
borderBottomRightRadius?: string | undefined;
|
|
84866
|
+
borderBottomLeftRadius?: string | undefined;
|
|
84867
|
+
backgroundImage?: string | undefined;
|
|
84868
|
+
backgroundSize?: string | undefined;
|
|
84869
|
+
backgroundPosition?: string | undefined;
|
|
84870
|
+
backgroundRepeat?: string | undefined;
|
|
84871
|
+
backgroundBlendMode?: string | undefined;
|
|
84872
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
84873
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
84874
|
+
boxShadow?: string | undefined;
|
|
84875
|
+
textShadow?: string | undefined;
|
|
84876
|
+
backdropFilter?: string | undefined;
|
|
84877
|
+
maskImage?: string | undefined;
|
|
84878
|
+
maskRepeat?: string | undefined;
|
|
84879
|
+
maskPosition?: string | undefined;
|
|
84880
|
+
maskSize?: string | undefined;
|
|
84881
|
+
WebkitMaskImage?: string | undefined;
|
|
84882
|
+
WebkitMaskRepeat?: string | undefined;
|
|
84883
|
+
WebkitMaskPosition?: string | undefined;
|
|
84884
|
+
WebkitMaskSize?: string | undefined;
|
|
84885
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
84886
|
+
transform?: string | undefined;
|
|
84887
|
+
transformOrigin?: string | undefined;
|
|
84888
|
+
rotate?: string | undefined;
|
|
84889
|
+
clipPath?: string | undefined;
|
|
84890
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
84891
|
+
fontStretch?: string | undefined;
|
|
84892
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
84893
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
84894
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
84895
|
+
textDecorationColor?: string | undefined;
|
|
84896
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
84897
|
+
textDecorationThickness?: string | undefined;
|
|
84898
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
84899
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
84900
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
84901
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
84902
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
84903
|
+
WebkitTextFillColor?: string | undefined;
|
|
84904
|
+
WebkitLineClamp?: number | undefined;
|
|
84905
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
84906
|
+
fontFeatureSettings?: string | undefined;
|
|
84907
|
+
stroke?: string | undefined;
|
|
84908
|
+
strokeWidth?: string | undefined;
|
|
84909
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
84910
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
84911
|
+
strokeDasharray?: string | undefined;
|
|
84912
|
+
strokeDashoffset?: string | undefined;
|
|
84913
|
+
transition?: string | undefined;
|
|
84914
|
+
animation?: string | undefined;
|
|
84915
|
+
cursor?: string | undefined;
|
|
84916
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
84917
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
84918
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
84919
|
+
}>;
|
|
84920
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84921
|
+
styles: {
|
|
84922
|
+
filter?: string | undefined;
|
|
84923
|
+
fill?: string | undefined;
|
|
84924
|
+
top?: string | undefined;
|
|
84925
|
+
color?: string | undefined;
|
|
84926
|
+
width?: string | undefined;
|
|
84927
|
+
height?: string | undefined;
|
|
84928
|
+
opacity?: number | undefined;
|
|
84929
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
84930
|
+
backgroundColor?: string | undefined;
|
|
84931
|
+
gap?: string | undefined;
|
|
84932
|
+
aspectRatio?: string | undefined;
|
|
84933
|
+
minHeight?: string | undefined;
|
|
84934
|
+
bottom?: string | undefined;
|
|
84935
|
+
left?: string | undefined;
|
|
84936
|
+
right?: string | undefined;
|
|
84937
|
+
padding?: string | undefined;
|
|
84938
|
+
fontSize?: string | undefined;
|
|
84939
|
+
fontFamily?: string | undefined;
|
|
84940
|
+
fontWeight?: string | number | undefined;
|
|
84941
|
+
letterSpacing?: string | undefined;
|
|
84942
|
+
lineHeight?: string | number | undefined;
|
|
84943
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
84944
|
+
minWidth?: string | undefined;
|
|
84945
|
+
maxWidth?: string | undefined;
|
|
84946
|
+
maxHeight?: string | undefined;
|
|
84947
|
+
zIndex?: number | undefined;
|
|
84948
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84949
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84950
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
84951
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
84952
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
84953
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84954
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
84955
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
84956
|
+
flexGrow?: number | undefined;
|
|
84957
|
+
flexShrink?: number | undefined;
|
|
84958
|
+
flexBasis?: string | undefined;
|
|
84959
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
84960
|
+
rowGap?: string | undefined;
|
|
84961
|
+
columnGap?: string | undefined;
|
|
84962
|
+
gridTemplateColumns?: string | undefined;
|
|
84963
|
+
gridTemplateRows?: string | undefined;
|
|
84964
|
+
gridColumn?: string | undefined;
|
|
84965
|
+
gridRow?: string | undefined;
|
|
84966
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
84967
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
84968
|
+
paddingTop?: string | undefined;
|
|
84969
|
+
paddingRight?: string | undefined;
|
|
84970
|
+
paddingBottom?: string | undefined;
|
|
84971
|
+
paddingLeft?: string | undefined;
|
|
84972
|
+
margin?: string | undefined;
|
|
84973
|
+
marginTop?: string | undefined;
|
|
84974
|
+
marginRight?: string | undefined;
|
|
84975
|
+
marginBottom?: string | undefined;
|
|
84976
|
+
marginLeft?: string | undefined;
|
|
84977
|
+
border?: string | undefined;
|
|
84978
|
+
borderWidth?: string | undefined;
|
|
84979
|
+
borderStyle?: string | undefined;
|
|
84980
|
+
borderColor?: string | undefined;
|
|
84981
|
+
borderTop?: string | undefined;
|
|
84982
|
+
borderRight?: string | undefined;
|
|
84983
|
+
borderBottom?: string | undefined;
|
|
84984
|
+
borderLeft?: string | undefined;
|
|
84985
|
+
borderRadius?: string | undefined;
|
|
84986
|
+
borderTopLeftRadius?: string | undefined;
|
|
84987
|
+
borderTopRightRadius?: string | undefined;
|
|
84988
|
+
borderBottomRightRadius?: string | undefined;
|
|
84989
|
+
borderBottomLeftRadius?: string | undefined;
|
|
84990
|
+
backgroundImage?: string | undefined;
|
|
84991
|
+
backgroundSize?: string | undefined;
|
|
84992
|
+
backgroundPosition?: string | undefined;
|
|
84993
|
+
backgroundRepeat?: string | undefined;
|
|
84994
|
+
backgroundBlendMode?: string | undefined;
|
|
84995
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
84996
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
84997
|
+
boxShadow?: string | undefined;
|
|
84998
|
+
textShadow?: string | undefined;
|
|
84999
|
+
backdropFilter?: string | undefined;
|
|
85000
|
+
maskImage?: string | undefined;
|
|
85001
|
+
maskRepeat?: string | undefined;
|
|
85002
|
+
maskPosition?: string | undefined;
|
|
85003
|
+
maskSize?: string | undefined;
|
|
85004
|
+
WebkitMaskImage?: string | undefined;
|
|
85005
|
+
WebkitMaskRepeat?: string | undefined;
|
|
85006
|
+
WebkitMaskPosition?: string | undefined;
|
|
85007
|
+
WebkitMaskSize?: string | undefined;
|
|
85008
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85009
|
+
transform?: string | undefined;
|
|
85010
|
+
transformOrigin?: string | undefined;
|
|
85011
|
+
rotate?: string | undefined;
|
|
85012
|
+
clipPath?: string | undefined;
|
|
85013
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85014
|
+
fontStretch?: string | undefined;
|
|
85015
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
85016
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
85017
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
85018
|
+
textDecorationColor?: string | undefined;
|
|
85019
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
85020
|
+
textDecorationThickness?: string | undefined;
|
|
85021
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
85022
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
85023
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
85024
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
85025
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
85026
|
+
WebkitTextFillColor?: string | undefined;
|
|
85027
|
+
WebkitLineClamp?: number | undefined;
|
|
85028
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
85029
|
+
fontFeatureSettings?: string | undefined;
|
|
85030
|
+
stroke?: string | undefined;
|
|
85031
|
+
strokeWidth?: string | undefined;
|
|
85032
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
85033
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
85034
|
+
strokeDasharray?: string | undefined;
|
|
85035
|
+
strokeDashoffset?: string | undefined;
|
|
85036
|
+
transition?: string | undefined;
|
|
85037
|
+
animation?: string | undefined;
|
|
85038
|
+
cursor?: string | undefined;
|
|
85039
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
85040
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
85041
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85042
|
+
};
|
|
85043
|
+
text: string;
|
|
85044
|
+
}, {
|
|
85045
|
+
styles: {
|
|
85046
|
+
filter?: string | undefined;
|
|
85047
|
+
fill?: string | undefined;
|
|
85048
|
+
top?: string | undefined;
|
|
85049
|
+
color?: string | undefined;
|
|
85050
|
+
width?: string | undefined;
|
|
85051
|
+
height?: string | undefined;
|
|
85052
|
+
opacity?: number | undefined;
|
|
85053
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
85054
|
+
backgroundColor?: string | undefined;
|
|
85055
|
+
gap?: string | undefined;
|
|
85056
|
+
aspectRatio?: string | undefined;
|
|
85057
|
+
minHeight?: string | undefined;
|
|
85058
|
+
bottom?: string | undefined;
|
|
85059
|
+
left?: string | undefined;
|
|
85060
|
+
right?: string | undefined;
|
|
85061
|
+
padding?: string | undefined;
|
|
85062
|
+
fontSize?: string | undefined;
|
|
85063
|
+
fontFamily?: string | undefined;
|
|
85064
|
+
fontWeight?: string | number | undefined;
|
|
85065
|
+
letterSpacing?: string | undefined;
|
|
85066
|
+
lineHeight?: string | number | undefined;
|
|
85067
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
85068
|
+
minWidth?: string | undefined;
|
|
85069
|
+
maxWidth?: string | undefined;
|
|
85070
|
+
maxHeight?: string | undefined;
|
|
85071
|
+
zIndex?: number | undefined;
|
|
85072
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85073
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85074
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85075
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
85076
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85077
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85078
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85079
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85080
|
+
flexGrow?: number | undefined;
|
|
85081
|
+
flexShrink?: number | undefined;
|
|
85082
|
+
flexBasis?: string | undefined;
|
|
85083
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
85084
|
+
rowGap?: string | undefined;
|
|
85085
|
+
columnGap?: string | undefined;
|
|
85086
|
+
gridTemplateColumns?: string | undefined;
|
|
85087
|
+
gridTemplateRows?: string | undefined;
|
|
85088
|
+
gridColumn?: string | undefined;
|
|
85089
|
+
gridRow?: string | undefined;
|
|
85090
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
85091
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
85092
|
+
paddingTop?: string | undefined;
|
|
85093
|
+
paddingRight?: string | undefined;
|
|
85094
|
+
paddingBottom?: string | undefined;
|
|
85095
|
+
paddingLeft?: string | undefined;
|
|
85096
|
+
margin?: string | undefined;
|
|
85097
|
+
marginTop?: string | undefined;
|
|
85098
|
+
marginRight?: string | undefined;
|
|
85099
|
+
marginBottom?: string | undefined;
|
|
85100
|
+
marginLeft?: string | undefined;
|
|
85101
|
+
border?: string | undefined;
|
|
85102
|
+
borderWidth?: string | undefined;
|
|
85103
|
+
borderStyle?: string | undefined;
|
|
85104
|
+
borderColor?: string | undefined;
|
|
85105
|
+
borderTop?: string | undefined;
|
|
85106
|
+
borderRight?: string | undefined;
|
|
85107
|
+
borderBottom?: string | undefined;
|
|
85108
|
+
borderLeft?: string | undefined;
|
|
85109
|
+
borderRadius?: string | undefined;
|
|
85110
|
+
borderTopLeftRadius?: string | undefined;
|
|
85111
|
+
borderTopRightRadius?: string | undefined;
|
|
85112
|
+
borderBottomRightRadius?: string | undefined;
|
|
85113
|
+
borderBottomLeftRadius?: string | undefined;
|
|
85114
|
+
backgroundImage?: string | undefined;
|
|
85115
|
+
backgroundSize?: string | undefined;
|
|
85116
|
+
backgroundPosition?: string | undefined;
|
|
85117
|
+
backgroundRepeat?: string | undefined;
|
|
85118
|
+
backgroundBlendMode?: string | undefined;
|
|
85119
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
85120
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
85121
|
+
boxShadow?: string | undefined;
|
|
85122
|
+
textShadow?: string | undefined;
|
|
85123
|
+
backdropFilter?: string | undefined;
|
|
85124
|
+
maskImage?: string | undefined;
|
|
85125
|
+
maskRepeat?: string | undefined;
|
|
85126
|
+
maskPosition?: string | undefined;
|
|
85127
|
+
maskSize?: string | undefined;
|
|
85128
|
+
WebkitMaskImage?: string | undefined;
|
|
85129
|
+
WebkitMaskRepeat?: string | undefined;
|
|
85130
|
+
WebkitMaskPosition?: string | undefined;
|
|
85131
|
+
WebkitMaskSize?: string | undefined;
|
|
85132
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85133
|
+
transform?: string | undefined;
|
|
85134
|
+
transformOrigin?: string | undefined;
|
|
85135
|
+
rotate?: string | undefined;
|
|
85136
|
+
clipPath?: string | undefined;
|
|
85137
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85138
|
+
fontStretch?: string | undefined;
|
|
85139
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
85140
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
85141
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
85142
|
+
textDecorationColor?: string | undefined;
|
|
85143
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
85144
|
+
textDecorationThickness?: string | undefined;
|
|
85145
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
85146
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
85147
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
85148
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
85149
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
85150
|
+
WebkitTextFillColor?: string | undefined;
|
|
85151
|
+
WebkitLineClamp?: number | undefined;
|
|
85152
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
85153
|
+
fontFeatureSettings?: string | undefined;
|
|
85154
|
+
stroke?: string | undefined;
|
|
85155
|
+
strokeWidth?: string | undefined;
|
|
85156
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
85157
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
85158
|
+
strokeDasharray?: string | undefined;
|
|
85159
|
+
strokeDashoffset?: string | undefined;
|
|
85160
|
+
transition?: string | undefined;
|
|
85161
|
+
animation?: string | undefined;
|
|
85162
|
+
cursor?: string | undefined;
|
|
85163
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
85164
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
85165
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85166
|
+
};
|
|
85167
|
+
text: string;
|
|
85168
|
+
}>, "many">;
|
|
85169
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
85170
|
+
type: "paragraph";
|
|
85171
|
+
spans: {
|
|
85172
|
+
styles: {
|
|
85173
|
+
filter?: string | undefined;
|
|
85174
|
+
fill?: string | undefined;
|
|
85175
|
+
top?: string | undefined;
|
|
85176
|
+
color?: string | undefined;
|
|
85177
|
+
width?: string | undefined;
|
|
85178
|
+
height?: string | undefined;
|
|
85179
|
+
opacity?: number | undefined;
|
|
85180
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
85181
|
+
backgroundColor?: string | undefined;
|
|
85182
|
+
gap?: string | undefined;
|
|
85183
|
+
aspectRatio?: string | undefined;
|
|
85184
|
+
minHeight?: string | undefined;
|
|
85185
|
+
bottom?: string | undefined;
|
|
85186
|
+
left?: string | undefined;
|
|
85187
|
+
right?: string | undefined;
|
|
85188
|
+
padding?: string | undefined;
|
|
85189
|
+
fontSize?: string | undefined;
|
|
85190
|
+
fontFamily?: string | undefined;
|
|
85191
|
+
fontWeight?: string | number | undefined;
|
|
85192
|
+
letterSpacing?: string | undefined;
|
|
85193
|
+
lineHeight?: string | number | undefined;
|
|
85194
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
85195
|
+
minWidth?: string | undefined;
|
|
85196
|
+
maxWidth?: string | undefined;
|
|
85197
|
+
maxHeight?: string | undefined;
|
|
85198
|
+
zIndex?: number | undefined;
|
|
85199
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85200
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85201
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85202
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
85203
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85204
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85205
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85206
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85207
|
+
flexGrow?: number | undefined;
|
|
85208
|
+
flexShrink?: number | undefined;
|
|
85209
|
+
flexBasis?: string | undefined;
|
|
85210
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
85211
|
+
rowGap?: string | undefined;
|
|
85212
|
+
columnGap?: string | undefined;
|
|
85213
|
+
gridTemplateColumns?: string | undefined;
|
|
85214
|
+
gridTemplateRows?: string | undefined;
|
|
85215
|
+
gridColumn?: string | undefined;
|
|
85216
|
+
gridRow?: string | undefined;
|
|
85217
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
85218
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
85219
|
+
paddingTop?: string | undefined;
|
|
85220
|
+
paddingRight?: string | undefined;
|
|
85221
|
+
paddingBottom?: string | undefined;
|
|
85222
|
+
paddingLeft?: string | undefined;
|
|
85223
|
+
margin?: string | undefined;
|
|
85224
|
+
marginTop?: string | undefined;
|
|
85225
|
+
marginRight?: string | undefined;
|
|
85226
|
+
marginBottom?: string | undefined;
|
|
85227
|
+
marginLeft?: string | undefined;
|
|
85228
|
+
border?: string | undefined;
|
|
85229
|
+
borderWidth?: string | undefined;
|
|
85230
|
+
borderStyle?: string | undefined;
|
|
85231
|
+
borderColor?: string | undefined;
|
|
85232
|
+
borderTop?: string | undefined;
|
|
85233
|
+
borderRight?: string | undefined;
|
|
85234
|
+
borderBottom?: string | undefined;
|
|
85235
|
+
borderLeft?: string | undefined;
|
|
85236
|
+
borderRadius?: string | undefined;
|
|
85237
|
+
borderTopLeftRadius?: string | undefined;
|
|
85238
|
+
borderTopRightRadius?: string | undefined;
|
|
85239
|
+
borderBottomRightRadius?: string | undefined;
|
|
85240
|
+
borderBottomLeftRadius?: string | undefined;
|
|
85241
|
+
backgroundImage?: string | undefined;
|
|
85242
|
+
backgroundSize?: string | undefined;
|
|
85243
|
+
backgroundPosition?: string | undefined;
|
|
85244
|
+
backgroundRepeat?: string | undefined;
|
|
85245
|
+
backgroundBlendMode?: string | undefined;
|
|
85246
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
85247
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
85248
|
+
boxShadow?: string | undefined;
|
|
85249
|
+
textShadow?: string | undefined;
|
|
85250
|
+
backdropFilter?: string | undefined;
|
|
85251
|
+
maskImage?: string | undefined;
|
|
85252
|
+
maskRepeat?: string | undefined;
|
|
85253
|
+
maskPosition?: string | undefined;
|
|
85254
|
+
maskSize?: string | undefined;
|
|
85255
|
+
WebkitMaskImage?: string | undefined;
|
|
85256
|
+
WebkitMaskRepeat?: string | undefined;
|
|
85257
|
+
WebkitMaskPosition?: string | undefined;
|
|
85258
|
+
WebkitMaskSize?: string | undefined;
|
|
85259
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85260
|
+
transform?: string | undefined;
|
|
85261
|
+
transformOrigin?: string | undefined;
|
|
85262
|
+
rotate?: string | undefined;
|
|
85263
|
+
clipPath?: string | undefined;
|
|
85264
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85265
|
+
fontStretch?: string | undefined;
|
|
85266
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
85267
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
85268
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
85269
|
+
textDecorationColor?: string | undefined;
|
|
85270
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
85271
|
+
textDecorationThickness?: string | undefined;
|
|
85272
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
85273
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
85274
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
85275
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
85276
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
85277
|
+
WebkitTextFillColor?: string | undefined;
|
|
85278
|
+
WebkitLineClamp?: number | undefined;
|
|
85279
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
85280
|
+
fontFeatureSettings?: string | undefined;
|
|
85281
|
+
stroke?: string | undefined;
|
|
85282
|
+
strokeWidth?: string | undefined;
|
|
85283
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
85284
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
85285
|
+
strokeDasharray?: string | undefined;
|
|
85286
|
+
strokeDashoffset?: string | undefined;
|
|
85287
|
+
transition?: string | undefined;
|
|
85288
|
+
animation?: string | undefined;
|
|
85289
|
+
cursor?: string | undefined;
|
|
85290
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
85291
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
85292
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85293
|
+
};
|
|
85294
|
+
text: string;
|
|
85295
|
+
}[];
|
|
85296
|
+
}, {
|
|
85297
|
+
type: "paragraph";
|
|
85298
|
+
spans: {
|
|
85299
|
+
styles: {
|
|
85300
|
+
filter?: string | undefined;
|
|
85301
|
+
fill?: string | undefined;
|
|
85302
|
+
top?: string | undefined;
|
|
85303
|
+
color?: string | undefined;
|
|
85304
|
+
width?: string | undefined;
|
|
85305
|
+
height?: string | undefined;
|
|
85306
|
+
opacity?: number | undefined;
|
|
85307
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
85308
|
+
backgroundColor?: string | undefined;
|
|
85309
|
+
gap?: string | undefined;
|
|
85310
|
+
aspectRatio?: string | undefined;
|
|
85311
|
+
minHeight?: string | undefined;
|
|
85312
|
+
bottom?: string | undefined;
|
|
85313
|
+
left?: string | undefined;
|
|
85314
|
+
right?: string | undefined;
|
|
85315
|
+
padding?: string | undefined;
|
|
85316
|
+
fontSize?: string | undefined;
|
|
85317
|
+
fontFamily?: string | undefined;
|
|
85318
|
+
fontWeight?: string | number | undefined;
|
|
85319
|
+
letterSpacing?: string | undefined;
|
|
85320
|
+
lineHeight?: string | number | undefined;
|
|
85321
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
85322
|
+
minWidth?: string | undefined;
|
|
85323
|
+
maxWidth?: string | undefined;
|
|
85324
|
+
maxHeight?: string | undefined;
|
|
85325
|
+
zIndex?: number | undefined;
|
|
85326
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85327
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85328
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85329
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
85330
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85331
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85332
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85333
|
+
justifySelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | undefined;
|
|
85334
|
+
flexGrow?: number | undefined;
|
|
85335
|
+
flexShrink?: number | undefined;
|
|
85336
|
+
flexBasis?: string | undefined;
|
|
85337
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
85338
|
+
rowGap?: string | undefined;
|
|
85339
|
+
columnGap?: string | undefined;
|
|
85340
|
+
gridTemplateColumns?: string | undefined;
|
|
85341
|
+
gridTemplateRows?: string | undefined;
|
|
85342
|
+
gridColumn?: string | undefined;
|
|
85343
|
+
gridRow?: string | undefined;
|
|
85344
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
85345
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
85346
|
+
paddingTop?: string | undefined;
|
|
85347
|
+
paddingRight?: string | undefined;
|
|
85348
|
+
paddingBottom?: string | undefined;
|
|
85349
|
+
paddingLeft?: string | undefined;
|
|
85350
|
+
margin?: string | undefined;
|
|
85351
|
+
marginTop?: string | undefined;
|
|
85352
|
+
marginRight?: string | undefined;
|
|
85353
|
+
marginBottom?: string | undefined;
|
|
85354
|
+
marginLeft?: string | undefined;
|
|
85355
|
+
border?: string | undefined;
|
|
85356
|
+
borderWidth?: string | undefined;
|
|
85357
|
+
borderStyle?: string | undefined;
|
|
85358
|
+
borderColor?: string | undefined;
|
|
85359
|
+
borderTop?: string | undefined;
|
|
85360
|
+
borderRight?: string | undefined;
|
|
85361
|
+
borderBottom?: string | undefined;
|
|
85362
|
+
borderLeft?: string | undefined;
|
|
85363
|
+
borderRadius?: string | undefined;
|
|
85364
|
+
borderTopLeftRadius?: string | undefined;
|
|
85365
|
+
borderTopRightRadius?: string | undefined;
|
|
85366
|
+
borderBottomRightRadius?: string | undefined;
|
|
85367
|
+
borderBottomLeftRadius?: string | undefined;
|
|
85368
|
+
backgroundImage?: string | undefined;
|
|
85369
|
+
backgroundSize?: string | undefined;
|
|
85370
|
+
backgroundPosition?: string | undefined;
|
|
85371
|
+
backgroundRepeat?: string | undefined;
|
|
85372
|
+
backgroundBlendMode?: string | undefined;
|
|
85373
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
85374
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
85375
|
+
boxShadow?: string | undefined;
|
|
85376
|
+
textShadow?: string | undefined;
|
|
85377
|
+
backdropFilter?: string | undefined;
|
|
85378
|
+
maskImage?: string | undefined;
|
|
85379
|
+
maskRepeat?: string | undefined;
|
|
85380
|
+
maskPosition?: string | undefined;
|
|
85381
|
+
maskSize?: string | undefined;
|
|
85382
|
+
WebkitMaskImage?: string | undefined;
|
|
85383
|
+
WebkitMaskRepeat?: string | undefined;
|
|
85384
|
+
WebkitMaskPosition?: string | undefined;
|
|
85385
|
+
WebkitMaskSize?: string | undefined;
|
|
85386
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85387
|
+
transform?: string | undefined;
|
|
85388
|
+
transformOrigin?: string | undefined;
|
|
85389
|
+
rotate?: string | undefined;
|
|
85390
|
+
clipPath?: string | undefined;
|
|
85391
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85392
|
+
fontStretch?: string | undefined;
|
|
85393
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
85394
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
85395
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
85396
|
+
textDecorationColor?: string | undefined;
|
|
85397
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
85398
|
+
textDecorationThickness?: string | undefined;
|
|
85399
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
85400
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
85401
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
85402
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
85403
|
+
WebkitBackgroundClip?: "text" | undefined;
|
|
85404
|
+
WebkitTextFillColor?: string | undefined;
|
|
85405
|
+
WebkitLineClamp?: number | undefined;
|
|
85406
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
85407
|
+
fontFeatureSettings?: string | undefined;
|
|
85408
|
+
stroke?: string | undefined;
|
|
85409
|
+
strokeWidth?: string | undefined;
|
|
85410
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
85411
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
85412
|
+
strokeDasharray?: string | undefined;
|
|
85413
|
+
strokeDashoffset?: string | undefined;
|
|
85414
|
+
transition?: string | undefined;
|
|
85415
|
+
animation?: string | undefined;
|
|
85416
|
+
cursor?: string | undefined;
|
|
85417
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
85418
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
85419
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85420
|
+
};
|
|
85421
|
+
text: string;
|
|
85422
|
+
}[];
|
|
85423
|
+
}>;
|
|
85424
|
+
type TextParagraphBlock = z$1.infer<typeof textParagraphBlockSchema>;
|
|
85425
|
+
type TextBlock = TextParagraphBlock | TextListBlock;
|
|
85426
|
+
type TextListItem = {
|
|
85427
|
+
spans: TextSpan[];
|
|
85428
|
+
children: TextBlock[];
|
|
85429
|
+
};
|
|
85430
|
+
type TextListBlock = {
|
|
85431
|
+
type: "list";
|
|
85432
|
+
kind: "ordered" | "unordered";
|
|
85433
|
+
items: TextListItem[];
|
|
85434
|
+
};
|
|
85435
|
+
|
|
83935
85436
|
declare const frameNodeObjectSchema: z$1.ZodObject<{
|
|
83936
85437
|
id: z$1.ZodString;
|
|
83937
85438
|
name: z$1.ZodString;
|
|
@@ -84927,9 +86428,7 @@ declare const textNodeObjectSchema: z$1.ZodObject<{
|
|
|
84927
86428
|
}>;
|
|
84928
86429
|
} & {
|
|
84929
86430
|
type: z$1.ZodLiteral<"TEXT">;
|
|
84930
|
-
|
|
84931
|
-
lineTypes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnion<[z$1.ZodLiteral<"NONE">, z$1.ZodLiteral<"ORDERED">, z$1.ZodLiteral<"UNORDERED">]>, "many">>;
|
|
84932
|
-
lineIndentations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodNumber, "many">>;
|
|
86431
|
+
content: z$1.ZodArray<z$1.ZodType<TextBlock, z$1.ZodTypeDef, TextBlock>, "many">;
|
|
84933
86432
|
}, "strip", z$1.ZodTypeAny, {
|
|
84934
86433
|
type: "TEXT";
|
|
84935
86434
|
id: string;
|
|
@@ -85057,9 +86556,7 @@ declare const textNodeObjectSchema: z$1.ZodObject<{
|
|
|
85057
86556
|
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85058
86557
|
};
|
|
85059
86558
|
parentId: string | null;
|
|
85060
|
-
|
|
85061
|
-
lineTypes?: ("NONE" | "ORDERED" | "UNORDERED")[] | undefined;
|
|
85062
|
-
lineIndentations?: number[] | undefined;
|
|
86559
|
+
content: TextBlock[];
|
|
85063
86560
|
}, {
|
|
85064
86561
|
type: "TEXT";
|
|
85065
86562
|
id: string;
|
|
@@ -85187,9 +86684,7 @@ declare const textNodeObjectSchema: z$1.ZodObject<{
|
|
|
85187
86684
|
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85188
86685
|
};
|
|
85189
86686
|
parentId: string | null;
|
|
85190
|
-
|
|
85191
|
-
lineTypes?: ("NONE" | "ORDERED" | "UNORDERED")[] | undefined;
|
|
85192
|
-
lineIndentations?: number[] | undefined;
|
|
86687
|
+
content: TextBlock[];
|
|
85193
86688
|
}>;
|
|
85194
86689
|
declare const svgNodeObjectSchema: z$1.ZodObject<{
|
|
85195
86690
|
id: z$1.ZodString;
|
|
@@ -88223,9 +89718,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
88223
89718
|
}>;
|
|
88224
89719
|
} & {
|
|
88225
89720
|
type: z$1.ZodLiteral<"TEXT">;
|
|
88226
|
-
|
|
88227
|
-
lineTypes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnion<[z$1.ZodLiteral<"NONE">, z$1.ZodLiteral<"ORDERED">, z$1.ZodLiteral<"UNORDERED">]>, "many">>;
|
|
88228
|
-
lineIndentations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodNumber, "many">>;
|
|
89721
|
+
content: z$1.ZodArray<z$1.ZodType<TextBlock, z$1.ZodTypeDef, TextBlock>, "many">;
|
|
88229
89722
|
}, "strip", z$1.ZodTypeAny, {
|
|
88230
89723
|
type: "TEXT";
|
|
88231
89724
|
id: string;
|
|
@@ -88353,9 +89846,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
88353
89846
|
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
88354
89847
|
};
|
|
88355
89848
|
parentId: string | null;
|
|
88356
|
-
|
|
88357
|
-
lineTypes?: ("NONE" | "ORDERED" | "UNORDERED")[] | undefined;
|
|
88358
|
-
lineIndentations?: number[] | undefined;
|
|
89849
|
+
content: TextBlock[];
|
|
88359
89850
|
}, {
|
|
88360
89851
|
type: "TEXT";
|
|
88361
89852
|
id: string;
|
|
@@ -88483,9 +89974,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z$1.ZodUnion<[z$1.ZodType<FrameN
|
|
|
88483
89974
|
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
88484
89975
|
};
|
|
88485
89976
|
parentId: string | null;
|
|
88486
|
-
|
|
88487
|
-
lineTypes?: ("NONE" | "ORDERED" | "UNORDERED")[] | undefined;
|
|
88488
|
-
lineIndentations?: number[] | undefined;
|
|
89977
|
+
content: TextBlock[];
|
|
88489
89978
|
}>, z$1.ZodType<{
|
|
88490
89979
|
type: "SVG";
|
|
88491
89980
|
id: string;
|
|
@@ -89374,6 +90863,11 @@ type FigmaExporter = {
|
|
|
89374
90863
|
AnyDesignNode: AnyDesignNode;
|
|
89375
90864
|
FrameNode: FrameNode;
|
|
89376
90865
|
TextNode: TextNode;
|
|
90866
|
+
TextBlock: TextBlock;
|
|
90867
|
+
TextParagraphBlock: TextParagraphBlock;
|
|
90868
|
+
TextListBlock: TextListBlock;
|
|
90869
|
+
TextListItem: TextListItem;
|
|
90870
|
+
TextSpan: TextSpan;
|
|
89377
90871
|
SvgNode: SvgNode;
|
|
89378
90872
|
ImageNode: ImageNode;
|
|
89379
90873
|
ComponentInstanceNode: ComponentInstanceNode;
|