@webstudio-is/react-sdk 0.60.0 → 0.61.0

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.
Files changed (83) hide show
  1. package/lib/cjs/components/blockquote.ws.js +36 -48
  2. package/lib/cjs/components/body.ws.js +20 -17
  3. package/lib/cjs/components/button.ws.js +1 -1
  4. package/lib/cjs/components/code.ws.js +20 -28
  5. package/lib/cjs/components/component-meta.js +2 -1
  6. package/lib/cjs/components/form.ws.js +14 -7
  7. package/lib/cjs/components/heading.ws.js +1 -1
  8. package/lib/cjs/components/image.ws.js +8 -9
  9. package/lib/cjs/components/italic.ws.js +5 -5
  10. package/lib/cjs/components/link-block.ws.js +5 -5
  11. package/lib/cjs/components/link.ws.js +9 -10
  12. package/lib/cjs/components/list-item.ws.js +1 -1
  13. package/lib/cjs/components/list.ws.js +22 -22
  14. package/lib/cjs/components/paragraph.ws.js +1 -1
  15. package/lib/cjs/components/separator.ws.js +20 -20
  16. package/lib/cjs/components/text-block.ws.js +6 -7
  17. package/lib/cjs/css/css.js +6 -9
  18. package/lib/cjs/css/normalize.js +166 -185
  19. package/lib/cjs/css/presets.js +14 -34
  20. package/lib/cjs/css/style-rules.js +17 -0
  21. package/lib/cjs/embed-template.js +160 -0
  22. package/lib/cjs/index.js +1 -0
  23. package/lib/components/blockquote.ws.js +36 -48
  24. package/lib/components/body.ws.js +20 -17
  25. package/lib/components/button.ws.js +1 -1
  26. package/lib/components/code.ws.js +20 -28
  27. package/lib/components/component-meta.js +2 -1
  28. package/lib/components/form.ws.js +14 -7
  29. package/lib/components/heading.ws.js +1 -1
  30. package/lib/components/image.ws.js +8 -9
  31. package/lib/components/italic.ws.js +5 -5
  32. package/lib/components/link-block.ws.js +5 -5
  33. package/lib/components/link.ws.js +9 -10
  34. package/lib/components/list-item.ws.js +1 -1
  35. package/lib/components/list.ws.js +22 -22
  36. package/lib/components/paragraph.ws.js +1 -1
  37. package/lib/components/separator.ws.js +20 -20
  38. package/lib/components/text-block.ws.js +6 -7
  39. package/lib/css/css.js +8 -11
  40. package/lib/css/normalize.js +166 -185
  41. package/lib/css/presets.js +14 -34
  42. package/lib/css/style-rules.js +17 -0
  43. package/lib/embed-template.js +140 -0
  44. package/lib/index.js +1 -0
  45. package/lib/types/components/box.stories.d.ts +2 -2
  46. package/lib/types/components/component-meta.d.ts +20 -5
  47. package/lib/types/components/components-utils.d.ts +1 -1
  48. package/lib/types/css/normalize.d.ts +8786 -2286
  49. package/lib/types/css/presets.d.ts +2 -38
  50. package/lib/types/css/style-rules.d.ts +11 -9
  51. package/lib/types/embed-template.d.ts +1725 -0
  52. package/lib/types/embed-template.test.d.ts +1 -0
  53. package/lib/types/index.d.ts +1 -0
  54. package/package.json +14 -13
  55. package/src/components/blockquote.ws.tsx +42 -52
  56. package/src/components/body.ws.tsx +26 -23
  57. package/src/components/bold.ws.tsx +6 -3
  58. package/src/components/box.ws.ts +6 -3
  59. package/src/components/button.ws.tsx +7 -4
  60. package/src/components/code.ws.tsx +26 -32
  61. package/src/components/component-meta.ts +5 -3
  62. package/src/components/form.ws.tsx +19 -9
  63. package/src/components/heading.ws.tsx +7 -4
  64. package/src/components/image.ws.tsx +14 -12
  65. package/src/components/input.ws.tsx +6 -3
  66. package/src/components/italic.ws.tsx +11 -8
  67. package/src/components/link-block.ws.tsx +11 -8
  68. package/src/components/link.ws.tsx +15 -13
  69. package/src/components/list-item.ws.tsx +7 -4
  70. package/src/components/list.ws.tsx +28 -25
  71. package/src/components/paragraph.ws.tsx +7 -4
  72. package/src/components/separator.ws.tsx +26 -25
  73. package/src/components/span.ws.tsx +6 -3
  74. package/src/components/subscript.ws.tsx +6 -3
  75. package/src/components/superscript.ws.tsx +6 -3
  76. package/src/components/text-block.ws.tsx +12 -11
  77. package/src/css/css.ts +8 -11
  78. package/src/css/normalize.ts +165 -188
  79. package/src/css/presets.ts +15 -37
  80. package/src/css/style-rules.ts +24 -0
  81. package/src/embed-template.test.ts +210 -0
  82. package/src/embed-template.ts +187 -0
  83. package/src/index.ts +1 -0
@@ -0,0 +1,1725 @@
1
+ import { z } from "zod";
2
+ import { Breakpoint } from "@webstudio-is/project-build";
3
+ declare const EmbedTemplateText: z.ZodObject<{
4
+ type: z.ZodLiteral<"text">;
5
+ value: z.ZodString;
6
+ }, "strip", z.ZodTypeAny, {
7
+ type: "text";
8
+ value: string;
9
+ }, {
10
+ type: "text";
11
+ value: string;
12
+ }>;
13
+ type EmbedTemplateText = z.infer<typeof EmbedTemplateText>;
14
+ declare const EmbedTemplateProp: z.ZodUnion<[z.ZodObject<{
15
+ type: z.ZodLiteral<"number">;
16
+ name: z.ZodString;
17
+ value: z.ZodNumber;
18
+ }, "strip", z.ZodTypeAny, {
19
+ name: string;
20
+ type: "number";
21
+ value: number;
22
+ }, {
23
+ name: string;
24
+ type: "number";
25
+ value: number;
26
+ }>, z.ZodObject<{
27
+ type: z.ZodLiteral<"string">;
28
+ name: z.ZodString;
29
+ value: z.ZodString;
30
+ }, "strip", z.ZodTypeAny, {
31
+ name: string;
32
+ type: "string";
33
+ value: string;
34
+ }, {
35
+ name: string;
36
+ type: "string";
37
+ value: string;
38
+ }>, z.ZodObject<{
39
+ type: z.ZodLiteral<"boolean">;
40
+ name: z.ZodString;
41
+ value: z.ZodBoolean;
42
+ }, "strip", z.ZodTypeAny, {
43
+ name: string;
44
+ type: "boolean";
45
+ value: boolean;
46
+ }, {
47
+ name: string;
48
+ type: "boolean";
49
+ value: boolean;
50
+ }>, z.ZodObject<{
51
+ type: z.ZodLiteral<"string[]">;
52
+ name: z.ZodString;
53
+ value: z.ZodArray<z.ZodString, "many">;
54
+ }, "strip", z.ZodTypeAny, {
55
+ name: string;
56
+ type: "string[]";
57
+ value: string[];
58
+ }, {
59
+ name: string;
60
+ type: "string[]";
61
+ value: string[];
62
+ }>]>;
63
+ type EmbedTemplateProp = z.infer<typeof EmbedTemplateProp>;
64
+ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
65
+ state: z.ZodOptional<z.ZodString>;
66
+ property: z.ZodType<"filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | `--${string}` | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimingFunction" | "animationTimeline" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "blockOverflow" | "blockSize" | "borderBlockColor" | "borderBlockStyle" | "borderBlockWidth" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineColor" | "borderInlineStyle" | "borderInlineWidth" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clear" | "clipPath" | "color" | "printColorAdjust" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "direction" | "display" | "emptyCells" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontVariationSettings" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontWeight" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "initialLetterAlign" | "inlineSize" | "inputSecurity" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lineBreak" | "lineClamp" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "masonryAutoFlow" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "objectFit" | "objectPosition" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflow" | "overflowAnchor" | "overflowBlock" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overscrollBehavior" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "quotes" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyPosition" | "scale" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "scrollBehavior" | "scrollMarginBlockStart" | "scrollMarginBlockEnd" | "scrollMarginBottom" | "scrollMarginInlineStart" | "scrollMarginInlineEnd" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockStart" | "scrollPaddingBlockEnd" | "scrollPaddingBottom" | "scrollPaddingInlineStart" | "scrollPaddingInlineEnd" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "verticalAlign" | "visibility" | "whiteSpace" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "zIndex", z.ZodTypeDef, "filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | `--${string}` | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimingFunction" | "animationTimeline" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "blockOverflow" | "blockSize" | "borderBlockColor" | "borderBlockStyle" | "borderBlockWidth" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineColor" | "borderInlineStyle" | "borderInlineWidth" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clear" | "clipPath" | "color" | "printColorAdjust" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "direction" | "display" | "emptyCells" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontVariationSettings" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontWeight" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "initialLetterAlign" | "inlineSize" | "inputSecurity" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lineBreak" | "lineClamp" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "masonryAutoFlow" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "objectFit" | "objectPosition" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflow" | "overflowAnchor" | "overflowBlock" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overscrollBehavior" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "quotes" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyPosition" | "scale" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "scrollBehavior" | "scrollMarginBlockStart" | "scrollMarginBlockEnd" | "scrollMarginBottom" | "scrollMarginInlineStart" | "scrollMarginInlineEnd" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockStart" | "scrollPaddingBlockEnd" | "scrollPaddingBottom" | "scrollPaddingInlineStart" | "scrollPaddingInlineEnd" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "verticalAlign" | "visibility" | "whiteSpace" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "zIndex">;
67
+ value: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
68
+ type: z.ZodLiteral<"image">;
69
+ value: z.ZodUnion<[z.ZodObject<{
70
+ type: z.ZodLiteral<"asset">;
71
+ value: z.ZodString;
72
+ }, "strip", z.ZodTypeAny, {
73
+ type: "asset";
74
+ value: string;
75
+ }, {
76
+ type: "asset";
77
+ value: string;
78
+ }>, z.ZodObject<{
79
+ type: z.ZodLiteral<"url">;
80
+ url: z.ZodString;
81
+ }, "strip", z.ZodTypeAny, {
82
+ type: "url";
83
+ url: string;
84
+ }, {
85
+ type: "url";
86
+ url: string;
87
+ }>]>;
88
+ hidden: z.ZodOptional<z.ZodBoolean>;
89
+ }, "strip", z.ZodTypeAny, {
90
+ hidden?: boolean | undefined;
91
+ type: "image";
92
+ value: {
93
+ type: "asset";
94
+ value: string;
95
+ } | {
96
+ type: "url";
97
+ url: string;
98
+ };
99
+ }, {
100
+ hidden?: boolean | undefined;
101
+ type: "image";
102
+ value: {
103
+ type: "asset";
104
+ value: string;
105
+ } | {
106
+ type: "url";
107
+ url: string;
108
+ };
109
+ }>, z.ZodObject<{
110
+ type: z.ZodLiteral<"layers">;
111
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
112
+ type: z.ZodLiteral<"unit">;
113
+ unit: z.ZodUnion<[z.ZodEnum<["%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms"]>, z.ZodLiteral<"number">]>;
114
+ value: z.ZodNumber;
115
+ }, "strip", z.ZodTypeAny, {
116
+ type: "unit";
117
+ value: number;
118
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
119
+ }, {
120
+ type: "unit";
121
+ value: number;
122
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
123
+ }>, z.ZodObject<{
124
+ type: z.ZodLiteral<"keyword">;
125
+ value: z.ZodString;
126
+ }, "strip", z.ZodTypeAny, {
127
+ type: "keyword";
128
+ value: string;
129
+ }, {
130
+ type: "keyword";
131
+ value: string;
132
+ }>, z.ZodObject<{
133
+ type: z.ZodLiteral<"unparsed">;
134
+ value: z.ZodString;
135
+ hidden: z.ZodOptional<z.ZodBoolean>;
136
+ }, "strip", z.ZodTypeAny, {
137
+ hidden?: boolean | undefined;
138
+ type: "unparsed";
139
+ value: string;
140
+ }, {
141
+ hidden?: boolean | undefined;
142
+ type: "unparsed";
143
+ value: string;
144
+ }>, z.ZodObject<{
145
+ type: z.ZodLiteral<"image">;
146
+ value: z.ZodUnion<[z.ZodObject<{
147
+ type: z.ZodLiteral<"asset">;
148
+ value: z.ZodString;
149
+ }, "strip", z.ZodTypeAny, {
150
+ type: "asset";
151
+ value: string;
152
+ }, {
153
+ type: "asset";
154
+ value: string;
155
+ }>, z.ZodObject<{
156
+ type: z.ZodLiteral<"url">;
157
+ url: z.ZodString;
158
+ }, "strip", z.ZodTypeAny, {
159
+ type: "url";
160
+ url: string;
161
+ }, {
162
+ type: "url";
163
+ url: string;
164
+ }>]>;
165
+ hidden: z.ZodOptional<z.ZodBoolean>;
166
+ }, "strip", z.ZodTypeAny, {
167
+ hidden?: boolean | undefined;
168
+ type: "image";
169
+ value: {
170
+ type: "asset";
171
+ value: string;
172
+ } | {
173
+ type: "url";
174
+ url: string;
175
+ };
176
+ }, {
177
+ hidden?: boolean | undefined;
178
+ type: "image";
179
+ value: {
180
+ type: "asset";
181
+ value: string;
182
+ } | {
183
+ type: "url";
184
+ url: string;
185
+ };
186
+ }>, z.ZodObject<{
187
+ type: z.ZodLiteral<"tuple">;
188
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
189
+ type: z.ZodLiteral<"unit">;
190
+ unit: z.ZodUnion<[z.ZodEnum<["%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms"]>, z.ZodLiteral<"number">]>;
191
+ value: z.ZodNumber;
192
+ }, "strip", z.ZodTypeAny, {
193
+ type: "unit";
194
+ value: number;
195
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
196
+ }, {
197
+ type: "unit";
198
+ value: number;
199
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
200
+ }>, z.ZodObject<{
201
+ type: z.ZodLiteral<"keyword">;
202
+ value: z.ZodString;
203
+ }, "strip", z.ZodTypeAny, {
204
+ type: "keyword";
205
+ value: string;
206
+ }, {
207
+ type: "keyword";
208
+ value: string;
209
+ }>, z.ZodObject<{
210
+ type: z.ZodLiteral<"unparsed">;
211
+ value: z.ZodString;
212
+ hidden: z.ZodOptional<z.ZodBoolean>;
213
+ }, "strip", z.ZodTypeAny, {
214
+ hidden?: boolean | undefined;
215
+ type: "unparsed";
216
+ value: string;
217
+ }, {
218
+ hidden?: boolean | undefined;
219
+ type: "unparsed";
220
+ value: string;
221
+ }>]>, "many">;
222
+ }, "strip", z.ZodTypeAny, {
223
+ type: "tuple";
224
+ value: ({
225
+ type: "unit";
226
+ value: number;
227
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
228
+ } | {
229
+ type: "keyword";
230
+ value: string;
231
+ } | {
232
+ hidden?: boolean | undefined;
233
+ type: "unparsed";
234
+ value: string;
235
+ })[];
236
+ }, {
237
+ type: "tuple";
238
+ value: ({
239
+ type: "unit";
240
+ value: number;
241
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
242
+ } | {
243
+ type: "keyword";
244
+ value: string;
245
+ } | {
246
+ hidden?: boolean | undefined;
247
+ type: "unparsed";
248
+ value: string;
249
+ })[];
250
+ }>, z.ZodObject<{
251
+ type: z.ZodLiteral<"invalid">;
252
+ value: z.ZodString;
253
+ }, "strip", z.ZodTypeAny, {
254
+ type: "invalid";
255
+ value: string;
256
+ }, {
257
+ type: "invalid";
258
+ value: string;
259
+ }>]>, "many">;
260
+ }, "strip", z.ZodTypeAny, {
261
+ type: "layers";
262
+ value: ({
263
+ type: "unit";
264
+ value: number;
265
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
266
+ } | {
267
+ type: "keyword";
268
+ value: string;
269
+ } | {
270
+ hidden?: boolean | undefined;
271
+ type: "unparsed";
272
+ value: string;
273
+ } | {
274
+ hidden?: boolean | undefined;
275
+ type: "image";
276
+ value: {
277
+ type: "asset";
278
+ value: string;
279
+ } | {
280
+ type: "url";
281
+ url: string;
282
+ };
283
+ } | {
284
+ type: "invalid";
285
+ value: string;
286
+ } | {
287
+ type: "tuple";
288
+ value: ({
289
+ type: "unit";
290
+ value: number;
291
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
292
+ } | {
293
+ type: "keyword";
294
+ value: string;
295
+ } | {
296
+ hidden?: boolean | undefined;
297
+ type: "unparsed";
298
+ value: string;
299
+ })[];
300
+ })[];
301
+ }, {
302
+ type: "layers";
303
+ value: ({
304
+ type: "unit";
305
+ value: number;
306
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
307
+ } | {
308
+ type: "keyword";
309
+ value: string;
310
+ } | {
311
+ hidden?: boolean | undefined;
312
+ type: "unparsed";
313
+ value: string;
314
+ } | {
315
+ hidden?: boolean | undefined;
316
+ type: "image";
317
+ value: {
318
+ type: "asset";
319
+ value: string;
320
+ } | {
321
+ type: "url";
322
+ url: string;
323
+ };
324
+ } | {
325
+ type: "invalid";
326
+ value: string;
327
+ } | {
328
+ type: "tuple";
329
+ value: ({
330
+ type: "unit";
331
+ value: number;
332
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
333
+ } | {
334
+ type: "keyword";
335
+ value: string;
336
+ } | {
337
+ hidden?: boolean | undefined;
338
+ type: "unparsed";
339
+ value: string;
340
+ })[];
341
+ })[];
342
+ }>, z.ZodObject<{
343
+ type: z.ZodLiteral<"unit">;
344
+ unit: z.ZodUnion<[z.ZodEnum<["%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms"]>, z.ZodLiteral<"number">]>;
345
+ value: z.ZodNumber;
346
+ }, "strip", z.ZodTypeAny, {
347
+ type: "unit";
348
+ value: number;
349
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
350
+ }, {
351
+ type: "unit";
352
+ value: number;
353
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
354
+ }>, z.ZodObject<{
355
+ type: z.ZodLiteral<"keyword">;
356
+ value: z.ZodString;
357
+ }, "strip", z.ZodTypeAny, {
358
+ type: "keyword";
359
+ value: string;
360
+ }, {
361
+ type: "keyword";
362
+ value: string;
363
+ }>, z.ZodObject<{
364
+ type: z.ZodLiteral<"fontFamily">;
365
+ value: z.ZodArray<z.ZodString, "many">;
366
+ }, "strip", z.ZodTypeAny, {
367
+ type: "fontFamily";
368
+ value: string[];
369
+ }, {
370
+ type: "fontFamily";
371
+ value: string[];
372
+ }>, z.ZodObject<{
373
+ type: z.ZodLiteral<"rgb">;
374
+ r: z.ZodNumber;
375
+ g: z.ZodNumber;
376
+ b: z.ZodNumber;
377
+ alpha: z.ZodNumber;
378
+ }, "strip", z.ZodTypeAny, {
379
+ type: "rgb";
380
+ alpha: number;
381
+ r: number;
382
+ g: number;
383
+ b: number;
384
+ }, {
385
+ type: "rgb";
386
+ alpha: number;
387
+ r: number;
388
+ g: number;
389
+ b: number;
390
+ }>, z.ZodObject<{
391
+ type: z.ZodLiteral<"unparsed">;
392
+ value: z.ZodString;
393
+ hidden: z.ZodOptional<z.ZodBoolean>;
394
+ }, "strip", z.ZodTypeAny, {
395
+ hidden?: boolean | undefined;
396
+ type: "unparsed";
397
+ value: string;
398
+ }, {
399
+ hidden?: boolean | undefined;
400
+ type: "unparsed";
401
+ value: string;
402
+ }>, z.ZodObject<{
403
+ type: z.ZodLiteral<"tuple">;
404
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
405
+ type: z.ZodLiteral<"unit">;
406
+ unit: z.ZodUnion<[z.ZodEnum<["%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms"]>, z.ZodLiteral<"number">]>;
407
+ value: z.ZodNumber;
408
+ }, "strip", z.ZodTypeAny, {
409
+ type: "unit";
410
+ value: number;
411
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
412
+ }, {
413
+ type: "unit";
414
+ value: number;
415
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
416
+ }>, z.ZodObject<{
417
+ type: z.ZodLiteral<"keyword">;
418
+ value: z.ZodString;
419
+ }, "strip", z.ZodTypeAny, {
420
+ type: "keyword";
421
+ value: string;
422
+ }, {
423
+ type: "keyword";
424
+ value: string;
425
+ }>, z.ZodObject<{
426
+ type: z.ZodLiteral<"unparsed">;
427
+ value: z.ZodString;
428
+ hidden: z.ZodOptional<z.ZodBoolean>;
429
+ }, "strip", z.ZodTypeAny, {
430
+ hidden?: boolean | undefined;
431
+ type: "unparsed";
432
+ value: string;
433
+ }, {
434
+ hidden?: boolean | undefined;
435
+ type: "unparsed";
436
+ value: string;
437
+ }>]>, "many">;
438
+ }, "strip", z.ZodTypeAny, {
439
+ type: "tuple";
440
+ value: ({
441
+ type: "unit";
442
+ value: number;
443
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
444
+ } | {
445
+ type: "keyword";
446
+ value: string;
447
+ } | {
448
+ hidden?: boolean | undefined;
449
+ type: "unparsed";
450
+ value: string;
451
+ })[];
452
+ }, {
453
+ type: "tuple";
454
+ value: ({
455
+ type: "unit";
456
+ value: number;
457
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
458
+ } | {
459
+ type: "keyword";
460
+ value: string;
461
+ } | {
462
+ hidden?: boolean | undefined;
463
+ type: "unparsed";
464
+ value: string;
465
+ })[];
466
+ }>]>, z.ZodObject<{
467
+ type: z.ZodLiteral<"invalid">;
468
+ value: z.ZodString;
469
+ }, "strip", z.ZodTypeAny, {
470
+ type: "invalid";
471
+ value: string;
472
+ }, {
473
+ type: "invalid";
474
+ value: string;
475
+ }>, z.ZodObject<{
476
+ type: z.ZodLiteral<"unset">;
477
+ value: z.ZodLiteral<"">;
478
+ }, "strip", z.ZodTypeAny, {
479
+ type: "unset";
480
+ value: "";
481
+ }, {
482
+ type: "unset";
483
+ value: "";
484
+ }>, z.ZodObject<{
485
+ type: z.ZodLiteral<"var">;
486
+ value: z.ZodString;
487
+ fallbacks: z.ZodArray<z.ZodUnion<[z.ZodObject<{
488
+ type: z.ZodLiteral<"image">;
489
+ value: z.ZodUnion<[z.ZodObject<{
490
+ type: z.ZodLiteral<"asset">;
491
+ value: z.ZodString;
492
+ }, "strip", z.ZodTypeAny, {
493
+ type: "asset";
494
+ value: string;
495
+ }, {
496
+ type: "asset";
497
+ value: string;
498
+ }>, z.ZodObject<{
499
+ type: z.ZodLiteral<"url">;
500
+ url: z.ZodString;
501
+ }, "strip", z.ZodTypeAny, {
502
+ type: "url";
503
+ url: string;
504
+ }, {
505
+ type: "url";
506
+ url: string;
507
+ }>]>;
508
+ hidden: z.ZodOptional<z.ZodBoolean>;
509
+ }, "strip", z.ZodTypeAny, {
510
+ hidden?: boolean | undefined;
511
+ type: "image";
512
+ value: {
513
+ type: "asset";
514
+ value: string;
515
+ } | {
516
+ type: "url";
517
+ url: string;
518
+ };
519
+ }, {
520
+ hidden?: boolean | undefined;
521
+ type: "image";
522
+ value: {
523
+ type: "asset";
524
+ value: string;
525
+ } | {
526
+ type: "url";
527
+ url: string;
528
+ };
529
+ }>, z.ZodObject<{
530
+ type: z.ZodLiteral<"layers">;
531
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
532
+ type: z.ZodLiteral<"unit">;
533
+ unit: z.ZodUnion<[z.ZodEnum<["%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms"]>, z.ZodLiteral<"number">]>;
534
+ value: z.ZodNumber;
535
+ }, "strip", z.ZodTypeAny, {
536
+ type: "unit";
537
+ value: number;
538
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
539
+ }, {
540
+ type: "unit";
541
+ value: number;
542
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
543
+ }>, z.ZodObject<{
544
+ type: z.ZodLiteral<"keyword">;
545
+ value: z.ZodString;
546
+ }, "strip", z.ZodTypeAny, {
547
+ type: "keyword";
548
+ value: string;
549
+ }, {
550
+ type: "keyword";
551
+ value: string;
552
+ }>, z.ZodObject<{
553
+ type: z.ZodLiteral<"unparsed">;
554
+ value: z.ZodString;
555
+ hidden: z.ZodOptional<z.ZodBoolean>;
556
+ }, "strip", z.ZodTypeAny, {
557
+ hidden?: boolean | undefined;
558
+ type: "unparsed";
559
+ value: string;
560
+ }, {
561
+ hidden?: boolean | undefined;
562
+ type: "unparsed";
563
+ value: string;
564
+ }>, z.ZodObject<{
565
+ type: z.ZodLiteral<"image">;
566
+ value: z.ZodUnion<[z.ZodObject<{
567
+ type: z.ZodLiteral<"asset">;
568
+ value: z.ZodString;
569
+ }, "strip", z.ZodTypeAny, {
570
+ type: "asset";
571
+ value: string;
572
+ }, {
573
+ type: "asset";
574
+ value: string;
575
+ }>, z.ZodObject<{
576
+ type: z.ZodLiteral<"url">;
577
+ url: z.ZodString;
578
+ }, "strip", z.ZodTypeAny, {
579
+ type: "url";
580
+ url: string;
581
+ }, {
582
+ type: "url";
583
+ url: string;
584
+ }>]>;
585
+ hidden: z.ZodOptional<z.ZodBoolean>;
586
+ }, "strip", z.ZodTypeAny, {
587
+ hidden?: boolean | undefined;
588
+ type: "image";
589
+ value: {
590
+ type: "asset";
591
+ value: string;
592
+ } | {
593
+ type: "url";
594
+ url: string;
595
+ };
596
+ }, {
597
+ hidden?: boolean | undefined;
598
+ type: "image";
599
+ value: {
600
+ type: "asset";
601
+ value: string;
602
+ } | {
603
+ type: "url";
604
+ url: string;
605
+ };
606
+ }>, z.ZodObject<{
607
+ type: z.ZodLiteral<"tuple">;
608
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
609
+ type: z.ZodLiteral<"unit">;
610
+ unit: z.ZodUnion<[z.ZodEnum<["%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms"]>, z.ZodLiteral<"number">]>;
611
+ value: z.ZodNumber;
612
+ }, "strip", z.ZodTypeAny, {
613
+ type: "unit";
614
+ value: number;
615
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
616
+ }, {
617
+ type: "unit";
618
+ value: number;
619
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
620
+ }>, z.ZodObject<{
621
+ type: z.ZodLiteral<"keyword">;
622
+ value: z.ZodString;
623
+ }, "strip", z.ZodTypeAny, {
624
+ type: "keyword";
625
+ value: string;
626
+ }, {
627
+ type: "keyword";
628
+ value: string;
629
+ }>, z.ZodObject<{
630
+ type: z.ZodLiteral<"unparsed">;
631
+ value: z.ZodString;
632
+ hidden: z.ZodOptional<z.ZodBoolean>;
633
+ }, "strip", z.ZodTypeAny, {
634
+ hidden?: boolean | undefined;
635
+ type: "unparsed";
636
+ value: string;
637
+ }, {
638
+ hidden?: boolean | undefined;
639
+ type: "unparsed";
640
+ value: string;
641
+ }>]>, "many">;
642
+ }, "strip", z.ZodTypeAny, {
643
+ type: "tuple";
644
+ value: ({
645
+ type: "unit";
646
+ value: number;
647
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
648
+ } | {
649
+ type: "keyword";
650
+ value: string;
651
+ } | {
652
+ hidden?: boolean | undefined;
653
+ type: "unparsed";
654
+ value: string;
655
+ })[];
656
+ }, {
657
+ type: "tuple";
658
+ value: ({
659
+ type: "unit";
660
+ value: number;
661
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
662
+ } | {
663
+ type: "keyword";
664
+ value: string;
665
+ } | {
666
+ hidden?: boolean | undefined;
667
+ type: "unparsed";
668
+ value: string;
669
+ })[];
670
+ }>, z.ZodObject<{
671
+ type: z.ZodLiteral<"invalid">;
672
+ value: z.ZodString;
673
+ }, "strip", z.ZodTypeAny, {
674
+ type: "invalid";
675
+ value: string;
676
+ }, {
677
+ type: "invalid";
678
+ value: string;
679
+ }>]>, "many">;
680
+ }, "strip", z.ZodTypeAny, {
681
+ type: "layers";
682
+ value: ({
683
+ type: "unit";
684
+ value: number;
685
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
686
+ } | {
687
+ type: "keyword";
688
+ value: string;
689
+ } | {
690
+ hidden?: boolean | undefined;
691
+ type: "unparsed";
692
+ value: string;
693
+ } | {
694
+ hidden?: boolean | undefined;
695
+ type: "image";
696
+ value: {
697
+ type: "asset";
698
+ value: string;
699
+ } | {
700
+ type: "url";
701
+ url: string;
702
+ };
703
+ } | {
704
+ type: "invalid";
705
+ value: string;
706
+ } | {
707
+ type: "tuple";
708
+ value: ({
709
+ type: "unit";
710
+ value: number;
711
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
712
+ } | {
713
+ type: "keyword";
714
+ value: string;
715
+ } | {
716
+ hidden?: boolean | undefined;
717
+ type: "unparsed";
718
+ value: string;
719
+ })[];
720
+ })[];
721
+ }, {
722
+ type: "layers";
723
+ value: ({
724
+ type: "unit";
725
+ value: number;
726
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
727
+ } | {
728
+ type: "keyword";
729
+ value: string;
730
+ } | {
731
+ hidden?: boolean | undefined;
732
+ type: "unparsed";
733
+ value: string;
734
+ } | {
735
+ hidden?: boolean | undefined;
736
+ type: "image";
737
+ value: {
738
+ type: "asset";
739
+ value: string;
740
+ } | {
741
+ type: "url";
742
+ url: string;
743
+ };
744
+ } | {
745
+ type: "invalid";
746
+ value: string;
747
+ } | {
748
+ type: "tuple";
749
+ value: ({
750
+ type: "unit";
751
+ value: number;
752
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
753
+ } | {
754
+ type: "keyword";
755
+ value: string;
756
+ } | {
757
+ hidden?: boolean | undefined;
758
+ type: "unparsed";
759
+ value: string;
760
+ })[];
761
+ })[];
762
+ }>, z.ZodObject<{
763
+ type: z.ZodLiteral<"unit">;
764
+ unit: z.ZodUnion<[z.ZodEnum<["%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms"]>, z.ZodLiteral<"number">]>;
765
+ value: z.ZodNumber;
766
+ }, "strip", z.ZodTypeAny, {
767
+ type: "unit";
768
+ value: number;
769
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
770
+ }, {
771
+ type: "unit";
772
+ value: number;
773
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
774
+ }>, z.ZodObject<{
775
+ type: z.ZodLiteral<"keyword">;
776
+ value: z.ZodString;
777
+ }, "strip", z.ZodTypeAny, {
778
+ type: "keyword";
779
+ value: string;
780
+ }, {
781
+ type: "keyword";
782
+ value: string;
783
+ }>, z.ZodObject<{
784
+ type: z.ZodLiteral<"fontFamily">;
785
+ value: z.ZodArray<z.ZodString, "many">;
786
+ }, "strip", z.ZodTypeAny, {
787
+ type: "fontFamily";
788
+ value: string[];
789
+ }, {
790
+ type: "fontFamily";
791
+ value: string[];
792
+ }>, z.ZodObject<{
793
+ type: z.ZodLiteral<"rgb">;
794
+ r: z.ZodNumber;
795
+ g: z.ZodNumber;
796
+ b: z.ZodNumber;
797
+ alpha: z.ZodNumber;
798
+ }, "strip", z.ZodTypeAny, {
799
+ type: "rgb";
800
+ alpha: number;
801
+ r: number;
802
+ g: number;
803
+ b: number;
804
+ }, {
805
+ type: "rgb";
806
+ alpha: number;
807
+ r: number;
808
+ g: number;
809
+ b: number;
810
+ }>, z.ZodObject<{
811
+ type: z.ZodLiteral<"unparsed">;
812
+ value: z.ZodString;
813
+ hidden: z.ZodOptional<z.ZodBoolean>;
814
+ }, "strip", z.ZodTypeAny, {
815
+ hidden?: boolean | undefined;
816
+ type: "unparsed";
817
+ value: string;
818
+ }, {
819
+ hidden?: boolean | undefined;
820
+ type: "unparsed";
821
+ value: string;
822
+ }>, z.ZodObject<{
823
+ type: z.ZodLiteral<"tuple">;
824
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
825
+ type: z.ZodLiteral<"unit">;
826
+ unit: z.ZodUnion<[z.ZodEnum<["%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms"]>, z.ZodLiteral<"number">]>;
827
+ value: z.ZodNumber;
828
+ }, "strip", z.ZodTypeAny, {
829
+ type: "unit";
830
+ value: number;
831
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
832
+ }, {
833
+ type: "unit";
834
+ value: number;
835
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
836
+ }>, z.ZodObject<{
837
+ type: z.ZodLiteral<"keyword">;
838
+ value: z.ZodString;
839
+ }, "strip", z.ZodTypeAny, {
840
+ type: "keyword";
841
+ value: string;
842
+ }, {
843
+ type: "keyword";
844
+ value: string;
845
+ }>, z.ZodObject<{
846
+ type: z.ZodLiteral<"unparsed">;
847
+ value: z.ZodString;
848
+ hidden: z.ZodOptional<z.ZodBoolean>;
849
+ }, "strip", z.ZodTypeAny, {
850
+ hidden?: boolean | undefined;
851
+ type: "unparsed";
852
+ value: string;
853
+ }, {
854
+ hidden?: boolean | undefined;
855
+ type: "unparsed";
856
+ value: string;
857
+ }>]>, "many">;
858
+ }, "strip", z.ZodTypeAny, {
859
+ type: "tuple";
860
+ value: ({
861
+ type: "unit";
862
+ value: number;
863
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
864
+ } | {
865
+ type: "keyword";
866
+ value: string;
867
+ } | {
868
+ hidden?: boolean | undefined;
869
+ type: "unparsed";
870
+ value: string;
871
+ })[];
872
+ }, {
873
+ type: "tuple";
874
+ value: ({
875
+ type: "unit";
876
+ value: number;
877
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
878
+ } | {
879
+ type: "keyword";
880
+ value: string;
881
+ } | {
882
+ hidden?: boolean | undefined;
883
+ type: "unparsed";
884
+ value: string;
885
+ })[];
886
+ }>]>, "many">;
887
+ }, "strip", z.ZodTypeAny, {
888
+ type: "var";
889
+ value: string;
890
+ fallbacks: ({
891
+ type: "unit";
892
+ value: number;
893
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
894
+ } | {
895
+ type: "keyword";
896
+ value: string;
897
+ } | {
898
+ hidden?: boolean | undefined;
899
+ type: "unparsed";
900
+ value: string;
901
+ } | {
902
+ type: "fontFamily";
903
+ value: string[];
904
+ } | {
905
+ type: "rgb";
906
+ alpha: number;
907
+ r: number;
908
+ g: number;
909
+ b: number;
910
+ } | {
911
+ hidden?: boolean | undefined;
912
+ type: "image";
913
+ value: {
914
+ type: "asset";
915
+ value: string;
916
+ } | {
917
+ type: "url";
918
+ url: string;
919
+ };
920
+ } | {
921
+ type: "tuple";
922
+ value: ({
923
+ type: "unit";
924
+ value: number;
925
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
926
+ } | {
927
+ type: "keyword";
928
+ value: string;
929
+ } | {
930
+ hidden?: boolean | undefined;
931
+ type: "unparsed";
932
+ value: string;
933
+ })[];
934
+ } | {
935
+ type: "layers";
936
+ value: ({
937
+ type: "unit";
938
+ value: number;
939
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
940
+ } | {
941
+ type: "keyword";
942
+ value: string;
943
+ } | {
944
+ hidden?: boolean | undefined;
945
+ type: "unparsed";
946
+ value: string;
947
+ } | {
948
+ hidden?: boolean | undefined;
949
+ type: "image";
950
+ value: {
951
+ type: "asset";
952
+ value: string;
953
+ } | {
954
+ type: "url";
955
+ url: string;
956
+ };
957
+ } | {
958
+ type: "invalid";
959
+ value: string;
960
+ } | {
961
+ type: "tuple";
962
+ value: ({
963
+ type: "unit";
964
+ value: number;
965
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
966
+ } | {
967
+ type: "keyword";
968
+ value: string;
969
+ } | {
970
+ hidden?: boolean | undefined;
971
+ type: "unparsed";
972
+ value: string;
973
+ })[];
974
+ })[];
975
+ })[];
976
+ }, {
977
+ type: "var";
978
+ value: string;
979
+ fallbacks: ({
980
+ type: "unit";
981
+ value: number;
982
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
983
+ } | {
984
+ type: "keyword";
985
+ value: string;
986
+ } | {
987
+ hidden?: boolean | undefined;
988
+ type: "unparsed";
989
+ value: string;
990
+ } | {
991
+ type: "fontFamily";
992
+ value: string[];
993
+ } | {
994
+ type: "rgb";
995
+ alpha: number;
996
+ r: number;
997
+ g: number;
998
+ b: number;
999
+ } | {
1000
+ hidden?: boolean | undefined;
1001
+ type: "image";
1002
+ value: {
1003
+ type: "asset";
1004
+ value: string;
1005
+ } | {
1006
+ type: "url";
1007
+ url: string;
1008
+ };
1009
+ } | {
1010
+ type: "tuple";
1011
+ value: ({
1012
+ type: "unit";
1013
+ value: number;
1014
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1015
+ } | {
1016
+ type: "keyword";
1017
+ value: string;
1018
+ } | {
1019
+ hidden?: boolean | undefined;
1020
+ type: "unparsed";
1021
+ value: string;
1022
+ })[];
1023
+ } | {
1024
+ type: "layers";
1025
+ value: ({
1026
+ type: "unit";
1027
+ value: number;
1028
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1029
+ } | {
1030
+ type: "keyword";
1031
+ value: string;
1032
+ } | {
1033
+ hidden?: boolean | undefined;
1034
+ type: "unparsed";
1035
+ value: string;
1036
+ } | {
1037
+ hidden?: boolean | undefined;
1038
+ type: "image";
1039
+ value: {
1040
+ type: "asset";
1041
+ value: string;
1042
+ } | {
1043
+ type: "url";
1044
+ url: string;
1045
+ };
1046
+ } | {
1047
+ type: "invalid";
1048
+ value: string;
1049
+ } | {
1050
+ type: "tuple";
1051
+ value: ({
1052
+ type: "unit";
1053
+ value: number;
1054
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1055
+ } | {
1056
+ type: "keyword";
1057
+ value: string;
1058
+ } | {
1059
+ hidden?: boolean | undefined;
1060
+ type: "unparsed";
1061
+ value: string;
1062
+ })[];
1063
+ })[];
1064
+ })[];
1065
+ }>]>;
1066
+ }, "strip", z.ZodTypeAny, {
1067
+ state?: string | undefined;
1068
+ value: {
1069
+ type: "unit";
1070
+ value: number;
1071
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1072
+ } | {
1073
+ type: "keyword";
1074
+ value: string;
1075
+ } | {
1076
+ hidden?: boolean | undefined;
1077
+ type: "unparsed";
1078
+ value: string;
1079
+ } | {
1080
+ type: "fontFamily";
1081
+ value: string[];
1082
+ } | {
1083
+ type: "rgb";
1084
+ alpha: number;
1085
+ r: number;
1086
+ g: number;
1087
+ b: number;
1088
+ } | {
1089
+ hidden?: boolean | undefined;
1090
+ type: "image";
1091
+ value: {
1092
+ type: "asset";
1093
+ value: string;
1094
+ } | {
1095
+ type: "url";
1096
+ url: string;
1097
+ };
1098
+ } | {
1099
+ type: "invalid";
1100
+ value: string;
1101
+ } | {
1102
+ type: "unset";
1103
+ value: "";
1104
+ } | {
1105
+ type: "tuple";
1106
+ value: ({
1107
+ type: "unit";
1108
+ value: number;
1109
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1110
+ } | {
1111
+ type: "keyword";
1112
+ value: string;
1113
+ } | {
1114
+ hidden?: boolean | undefined;
1115
+ type: "unparsed";
1116
+ value: string;
1117
+ })[];
1118
+ } | {
1119
+ type: "layers";
1120
+ value: ({
1121
+ type: "unit";
1122
+ value: number;
1123
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1124
+ } | {
1125
+ type: "keyword";
1126
+ value: string;
1127
+ } | {
1128
+ hidden?: boolean | undefined;
1129
+ type: "unparsed";
1130
+ value: string;
1131
+ } | {
1132
+ hidden?: boolean | undefined;
1133
+ type: "image";
1134
+ value: {
1135
+ type: "asset";
1136
+ value: string;
1137
+ } | {
1138
+ type: "url";
1139
+ url: string;
1140
+ };
1141
+ } | {
1142
+ type: "invalid";
1143
+ value: string;
1144
+ } | {
1145
+ type: "tuple";
1146
+ value: ({
1147
+ type: "unit";
1148
+ value: number;
1149
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1150
+ } | {
1151
+ type: "keyword";
1152
+ value: string;
1153
+ } | {
1154
+ hidden?: boolean | undefined;
1155
+ type: "unparsed";
1156
+ value: string;
1157
+ })[];
1158
+ })[];
1159
+ } | {
1160
+ type: "var";
1161
+ value: string;
1162
+ fallbacks: ({
1163
+ type: "unit";
1164
+ value: number;
1165
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1166
+ } | {
1167
+ type: "keyword";
1168
+ value: string;
1169
+ } | {
1170
+ hidden?: boolean | undefined;
1171
+ type: "unparsed";
1172
+ value: string;
1173
+ } | {
1174
+ type: "fontFamily";
1175
+ value: string[];
1176
+ } | {
1177
+ type: "rgb";
1178
+ alpha: number;
1179
+ r: number;
1180
+ g: number;
1181
+ b: number;
1182
+ } | {
1183
+ hidden?: boolean | undefined;
1184
+ type: "image";
1185
+ value: {
1186
+ type: "asset";
1187
+ value: string;
1188
+ } | {
1189
+ type: "url";
1190
+ url: string;
1191
+ };
1192
+ } | {
1193
+ type: "tuple";
1194
+ value: ({
1195
+ type: "unit";
1196
+ value: number;
1197
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1198
+ } | {
1199
+ type: "keyword";
1200
+ value: string;
1201
+ } | {
1202
+ hidden?: boolean | undefined;
1203
+ type: "unparsed";
1204
+ value: string;
1205
+ })[];
1206
+ } | {
1207
+ type: "layers";
1208
+ value: ({
1209
+ type: "unit";
1210
+ value: number;
1211
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1212
+ } | {
1213
+ type: "keyword";
1214
+ value: string;
1215
+ } | {
1216
+ hidden?: boolean | undefined;
1217
+ type: "unparsed";
1218
+ value: string;
1219
+ } | {
1220
+ hidden?: boolean | undefined;
1221
+ type: "image";
1222
+ value: {
1223
+ type: "asset";
1224
+ value: string;
1225
+ } | {
1226
+ type: "url";
1227
+ url: string;
1228
+ };
1229
+ } | {
1230
+ type: "invalid";
1231
+ value: string;
1232
+ } | {
1233
+ type: "tuple";
1234
+ value: ({
1235
+ type: "unit";
1236
+ value: number;
1237
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1238
+ } | {
1239
+ type: "keyword";
1240
+ value: string;
1241
+ } | {
1242
+ hidden?: boolean | undefined;
1243
+ type: "unparsed";
1244
+ value: string;
1245
+ })[];
1246
+ })[];
1247
+ })[];
1248
+ };
1249
+ property: "filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | `--${string}` | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimingFunction" | "animationTimeline" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "blockOverflow" | "blockSize" | "borderBlockColor" | "borderBlockStyle" | "borderBlockWidth" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineColor" | "borderInlineStyle" | "borderInlineWidth" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clear" | "clipPath" | "color" | "printColorAdjust" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "direction" | "display" | "emptyCells" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontVariationSettings" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontWeight" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "initialLetterAlign" | "inlineSize" | "inputSecurity" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lineBreak" | "lineClamp" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "masonryAutoFlow" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "objectFit" | "objectPosition" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflow" | "overflowAnchor" | "overflowBlock" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overscrollBehavior" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "quotes" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyPosition" | "scale" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "scrollBehavior" | "scrollMarginBlockStart" | "scrollMarginBlockEnd" | "scrollMarginBottom" | "scrollMarginInlineStart" | "scrollMarginInlineEnd" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockStart" | "scrollPaddingBlockEnd" | "scrollPaddingBottom" | "scrollPaddingInlineStart" | "scrollPaddingInlineEnd" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "verticalAlign" | "visibility" | "whiteSpace" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "zIndex";
1250
+ }, {
1251
+ state?: string | undefined;
1252
+ value: {
1253
+ type: "unit";
1254
+ value: number;
1255
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1256
+ } | {
1257
+ type: "keyword";
1258
+ value: string;
1259
+ } | {
1260
+ hidden?: boolean | undefined;
1261
+ type: "unparsed";
1262
+ value: string;
1263
+ } | {
1264
+ type: "fontFamily";
1265
+ value: string[];
1266
+ } | {
1267
+ type: "rgb";
1268
+ alpha: number;
1269
+ r: number;
1270
+ g: number;
1271
+ b: number;
1272
+ } | {
1273
+ hidden?: boolean | undefined;
1274
+ type: "image";
1275
+ value: {
1276
+ type: "asset";
1277
+ value: string;
1278
+ } | {
1279
+ type: "url";
1280
+ url: string;
1281
+ };
1282
+ } | {
1283
+ type: "invalid";
1284
+ value: string;
1285
+ } | {
1286
+ type: "unset";
1287
+ value: "";
1288
+ } | {
1289
+ type: "tuple";
1290
+ value: ({
1291
+ type: "unit";
1292
+ value: number;
1293
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1294
+ } | {
1295
+ type: "keyword";
1296
+ value: string;
1297
+ } | {
1298
+ hidden?: boolean | undefined;
1299
+ type: "unparsed";
1300
+ value: string;
1301
+ })[];
1302
+ } | {
1303
+ type: "layers";
1304
+ value: ({
1305
+ type: "unit";
1306
+ value: number;
1307
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1308
+ } | {
1309
+ type: "keyword";
1310
+ value: string;
1311
+ } | {
1312
+ hidden?: boolean | undefined;
1313
+ type: "unparsed";
1314
+ value: string;
1315
+ } | {
1316
+ hidden?: boolean | undefined;
1317
+ type: "image";
1318
+ value: {
1319
+ type: "asset";
1320
+ value: string;
1321
+ } | {
1322
+ type: "url";
1323
+ url: string;
1324
+ };
1325
+ } | {
1326
+ type: "invalid";
1327
+ value: string;
1328
+ } | {
1329
+ type: "tuple";
1330
+ value: ({
1331
+ type: "unit";
1332
+ value: number;
1333
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1334
+ } | {
1335
+ type: "keyword";
1336
+ value: string;
1337
+ } | {
1338
+ hidden?: boolean | undefined;
1339
+ type: "unparsed";
1340
+ value: string;
1341
+ })[];
1342
+ })[];
1343
+ } | {
1344
+ type: "var";
1345
+ value: string;
1346
+ fallbacks: ({
1347
+ type: "unit";
1348
+ value: number;
1349
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1350
+ } | {
1351
+ type: "keyword";
1352
+ value: string;
1353
+ } | {
1354
+ hidden?: boolean | undefined;
1355
+ type: "unparsed";
1356
+ value: string;
1357
+ } | {
1358
+ type: "fontFamily";
1359
+ value: string[];
1360
+ } | {
1361
+ type: "rgb";
1362
+ alpha: number;
1363
+ r: number;
1364
+ g: number;
1365
+ b: number;
1366
+ } | {
1367
+ hidden?: boolean | undefined;
1368
+ type: "image";
1369
+ value: {
1370
+ type: "asset";
1371
+ value: string;
1372
+ } | {
1373
+ type: "url";
1374
+ url: string;
1375
+ };
1376
+ } | {
1377
+ type: "tuple";
1378
+ value: ({
1379
+ type: "unit";
1380
+ value: number;
1381
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1382
+ } | {
1383
+ type: "keyword";
1384
+ value: string;
1385
+ } | {
1386
+ hidden?: boolean | undefined;
1387
+ type: "unparsed";
1388
+ value: string;
1389
+ })[];
1390
+ } | {
1391
+ type: "layers";
1392
+ value: ({
1393
+ type: "unit";
1394
+ value: number;
1395
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1396
+ } | {
1397
+ type: "keyword";
1398
+ value: string;
1399
+ } | {
1400
+ hidden?: boolean | undefined;
1401
+ type: "unparsed";
1402
+ value: string;
1403
+ } | {
1404
+ hidden?: boolean | undefined;
1405
+ type: "image";
1406
+ value: {
1407
+ type: "asset";
1408
+ value: string;
1409
+ } | {
1410
+ type: "url";
1411
+ url: string;
1412
+ };
1413
+ } | {
1414
+ type: "invalid";
1415
+ value: string;
1416
+ } | {
1417
+ type: "tuple";
1418
+ value: ({
1419
+ type: "unit";
1420
+ value: number;
1421
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1422
+ } | {
1423
+ type: "keyword";
1424
+ value: string;
1425
+ } | {
1426
+ hidden?: boolean | undefined;
1427
+ type: "unparsed";
1428
+ value: string;
1429
+ })[];
1430
+ })[];
1431
+ })[];
1432
+ };
1433
+ property: "filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | `--${string}` | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimingFunction" | "animationTimeline" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "blockOverflow" | "blockSize" | "borderBlockColor" | "borderBlockStyle" | "borderBlockWidth" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineColor" | "borderInlineStyle" | "borderInlineWidth" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clear" | "clipPath" | "color" | "printColorAdjust" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "direction" | "display" | "emptyCells" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontVariationSettings" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontWeight" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "initialLetterAlign" | "inlineSize" | "inputSecurity" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lineBreak" | "lineClamp" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "masonryAutoFlow" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "objectFit" | "objectPosition" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflow" | "overflowAnchor" | "overflowBlock" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overscrollBehavior" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "quotes" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyPosition" | "scale" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "scrollBehavior" | "scrollMarginBlockStart" | "scrollMarginBlockEnd" | "scrollMarginBottom" | "scrollMarginInlineStart" | "scrollMarginInlineEnd" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockStart" | "scrollPaddingBlockEnd" | "scrollPaddingBottom" | "scrollPaddingInlineStart" | "scrollPaddingInlineEnd" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "verticalAlign" | "visibility" | "whiteSpace" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "zIndex";
1434
+ }>;
1435
+ export type EmbedTemplateStyleDecl = z.infer<typeof EmbedTemplateStyleDecl>;
1436
+ export type EmbedTemplateInstance = {
1437
+ type: "instance";
1438
+ component: string;
1439
+ props?: EmbedTemplateProp[];
1440
+ styles?: EmbedTemplateStyleDecl[];
1441
+ children: Array<EmbedTemplateInstance | EmbedTemplateText>;
1442
+ };
1443
+ export declare const EmbedTemplateInstance: z.ZodType<EmbedTemplateInstance>;
1444
+ export declare const WsEmbedTemplate: z.ZodLazy<z.ZodArray<z.ZodUnion<[z.ZodType<EmbedTemplateInstance, z.ZodTypeDef, EmbedTemplateInstance>, z.ZodObject<{
1445
+ type: z.ZodLiteral<"text">;
1446
+ value: z.ZodString;
1447
+ }, "strip", z.ZodTypeAny, {
1448
+ type: "text";
1449
+ value: string;
1450
+ }, {
1451
+ type: "text";
1452
+ value: string;
1453
+ }>]>, "many">>;
1454
+ export type WsEmbedTemplate = z.infer<typeof WsEmbedTemplate>;
1455
+ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1456
+ type: "text";
1457
+ value: string;
1458
+ } | EmbedTemplateInstance)[], defaultBreakpointId: Breakpoint["id"]) => {
1459
+ children: ({
1460
+ type: "text";
1461
+ value: string;
1462
+ } | {
1463
+ type: "id";
1464
+ value: string;
1465
+ })[];
1466
+ instances: {
1467
+ label?: string | undefined;
1468
+ type: "instance";
1469
+ id: string;
1470
+ component: string;
1471
+ children: ({
1472
+ type: "text";
1473
+ value: string;
1474
+ } | {
1475
+ type: "id";
1476
+ value: string;
1477
+ })[];
1478
+ }[];
1479
+ props: ({
1480
+ required?: boolean | undefined;
1481
+ name: string;
1482
+ type: "number";
1483
+ value: number;
1484
+ id: string;
1485
+ instanceId: string;
1486
+ } | {
1487
+ required?: boolean | undefined;
1488
+ name: string;
1489
+ type: "string";
1490
+ value: string;
1491
+ id: string;
1492
+ instanceId: string;
1493
+ } | {
1494
+ required?: boolean | undefined;
1495
+ name: string;
1496
+ type: "boolean";
1497
+ value: boolean;
1498
+ id: string;
1499
+ instanceId: string;
1500
+ } | {
1501
+ required?: boolean | undefined;
1502
+ name: string;
1503
+ type: "asset";
1504
+ value: string;
1505
+ id: string;
1506
+ instanceId: string;
1507
+ } | {
1508
+ required?: boolean | undefined;
1509
+ name: string;
1510
+ type: "page";
1511
+ value: string | {
1512
+ instanceId: string;
1513
+ pageId: string;
1514
+ };
1515
+ id: string;
1516
+ instanceId: string;
1517
+ } | {
1518
+ required?: boolean | undefined;
1519
+ name: string;
1520
+ type: "string[]";
1521
+ value: string[];
1522
+ id: string;
1523
+ instanceId: string;
1524
+ })[];
1525
+ styleSourceSelections: {
1526
+ values: string[];
1527
+ instanceId: string;
1528
+ }[];
1529
+ styleSources: ({
1530
+ name: string;
1531
+ type: "token";
1532
+ id: string;
1533
+ } | {
1534
+ type: "local";
1535
+ id: string;
1536
+ })[];
1537
+ styles: {
1538
+ state?: string | undefined;
1539
+ value: {
1540
+ type: "unit";
1541
+ value: number;
1542
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1543
+ } | {
1544
+ type: "keyword";
1545
+ value: string;
1546
+ } | {
1547
+ hidden?: boolean | undefined;
1548
+ type: "unparsed";
1549
+ value: string;
1550
+ } | {
1551
+ type: "fontFamily";
1552
+ value: string[];
1553
+ } | {
1554
+ type: "rgb";
1555
+ alpha: number;
1556
+ r: number;
1557
+ g: number;
1558
+ b: number;
1559
+ } | {
1560
+ hidden?: boolean | undefined;
1561
+ type: "image";
1562
+ value: {
1563
+ type: "asset";
1564
+ value: string;
1565
+ } | {
1566
+ type: "url";
1567
+ url: string;
1568
+ };
1569
+ } | {
1570
+ type: "invalid";
1571
+ value: string;
1572
+ } | {
1573
+ type: "unset";
1574
+ value: "";
1575
+ } | {
1576
+ type: "tuple";
1577
+ value: ({
1578
+ type: "unit";
1579
+ value: number;
1580
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1581
+ } | {
1582
+ type: "keyword";
1583
+ value: string;
1584
+ } | {
1585
+ hidden?: boolean | undefined;
1586
+ type: "unparsed";
1587
+ value: string;
1588
+ })[];
1589
+ } | {
1590
+ type: "layers";
1591
+ value: ({
1592
+ type: "unit";
1593
+ value: number;
1594
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1595
+ } | {
1596
+ type: "keyword";
1597
+ value: string;
1598
+ } | {
1599
+ hidden?: boolean | undefined;
1600
+ type: "unparsed";
1601
+ value: string;
1602
+ } | {
1603
+ hidden?: boolean | undefined;
1604
+ type: "image";
1605
+ value: {
1606
+ type: "asset";
1607
+ value: string;
1608
+ } | {
1609
+ type: "url";
1610
+ url: string;
1611
+ };
1612
+ } | {
1613
+ type: "invalid";
1614
+ value: string;
1615
+ } | {
1616
+ type: "tuple";
1617
+ value: ({
1618
+ type: "unit";
1619
+ value: number;
1620
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1621
+ } | {
1622
+ type: "keyword";
1623
+ value: string;
1624
+ } | {
1625
+ hidden?: boolean | undefined;
1626
+ type: "unparsed";
1627
+ value: string;
1628
+ })[];
1629
+ })[];
1630
+ } | {
1631
+ type: "var";
1632
+ value: string;
1633
+ fallbacks: ({
1634
+ type: "unit";
1635
+ value: number;
1636
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1637
+ } | {
1638
+ type: "keyword";
1639
+ value: string;
1640
+ } | {
1641
+ hidden?: boolean | undefined;
1642
+ type: "unparsed";
1643
+ value: string;
1644
+ } | {
1645
+ type: "fontFamily";
1646
+ value: string[];
1647
+ } | {
1648
+ type: "rgb";
1649
+ alpha: number;
1650
+ r: number;
1651
+ g: number;
1652
+ b: number;
1653
+ } | {
1654
+ hidden?: boolean | undefined;
1655
+ type: "image";
1656
+ value: {
1657
+ type: "asset";
1658
+ value: string;
1659
+ } | {
1660
+ type: "url";
1661
+ url: string;
1662
+ };
1663
+ } | {
1664
+ type: "tuple";
1665
+ value: ({
1666
+ type: "unit";
1667
+ value: number;
1668
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1669
+ } | {
1670
+ type: "keyword";
1671
+ value: string;
1672
+ } | {
1673
+ hidden?: boolean | undefined;
1674
+ type: "unparsed";
1675
+ value: string;
1676
+ })[];
1677
+ } | {
1678
+ type: "layers";
1679
+ value: ({
1680
+ type: "unit";
1681
+ value: number;
1682
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1683
+ } | {
1684
+ type: "keyword";
1685
+ value: string;
1686
+ } | {
1687
+ hidden?: boolean | undefined;
1688
+ type: "unparsed";
1689
+ value: string;
1690
+ } | {
1691
+ hidden?: boolean | undefined;
1692
+ type: "image";
1693
+ value: {
1694
+ type: "asset";
1695
+ value: string;
1696
+ } | {
1697
+ type: "url";
1698
+ url: string;
1699
+ };
1700
+ } | {
1701
+ type: "invalid";
1702
+ value: string;
1703
+ } | {
1704
+ type: "tuple";
1705
+ value: ({
1706
+ type: "unit";
1707
+ value: number;
1708
+ unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1709
+ } | {
1710
+ type: "keyword";
1711
+ value: string;
1712
+ } | {
1713
+ hidden?: boolean | undefined;
1714
+ type: "unparsed";
1715
+ value: string;
1716
+ })[];
1717
+ })[];
1718
+ })[];
1719
+ };
1720
+ styleSourceId: string;
1721
+ breakpointId: string;
1722
+ property: "filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | `--${string}` | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimingFunction" | "animationTimeline" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "blockOverflow" | "blockSize" | "borderBlockColor" | "borderBlockStyle" | "borderBlockWidth" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineColor" | "borderInlineStyle" | "borderInlineWidth" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clear" | "clipPath" | "color" | "printColorAdjust" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "direction" | "display" | "emptyCells" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontVariationSettings" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontWeight" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "initialLetterAlign" | "inlineSize" | "inputSecurity" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lineBreak" | "lineClamp" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "masonryAutoFlow" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "objectFit" | "objectPosition" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflow" | "overflowAnchor" | "overflowBlock" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overscrollBehavior" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "quotes" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyPosition" | "scale" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "scrollBehavior" | "scrollMarginBlockStart" | "scrollMarginBlockEnd" | "scrollMarginBottom" | "scrollMarginInlineStart" | "scrollMarginInlineEnd" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockStart" | "scrollPaddingBlockEnd" | "scrollPaddingBottom" | "scrollPaddingInlineStart" | "scrollPaddingInlineEnd" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "verticalAlign" | "visibility" | "whiteSpace" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "zIndex";
1723
+ }[];
1724
+ };
1725
+ export {};