@webstudio-is/react-sdk 0.64.0 → 0.66.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 (159) hide show
  1. package/lib/app/custom-components/form.ws.js +3 -3
  2. package/lib/app/custom-components/image.js +7 -13
  3. package/lib/app/params.js +1 -0
  4. package/lib/cjs/app/custom-components/form.ws.js +3 -3
  5. package/lib/cjs/app/custom-components/image.js +3 -12
  6. package/lib/cjs/app/params.js +1 -0
  7. package/lib/cjs/components/__generated__/html.props.js +31 -0
  8. package/lib/cjs/components/blockquote.ws.js +2 -2
  9. package/lib/cjs/components/body.ws.js +2 -2
  10. package/lib/cjs/components/bold.ws.js +2 -2
  11. package/lib/cjs/components/box.ws.js +2 -2
  12. package/lib/cjs/components/button.ws.js +3 -3
  13. package/lib/cjs/components/checkbox-field.ws.js +4 -3
  14. package/lib/cjs/components/checkbox.ws.js +3 -3
  15. package/lib/cjs/components/code.ws.js +2 -2
  16. package/lib/cjs/components/component-meta.js +2 -2
  17. package/lib/cjs/components/components-utils.js +1 -43
  18. package/lib/cjs/components/components.js +2 -0
  19. package/lib/cjs/components/error-message.ws.js +2 -2
  20. package/lib/cjs/components/form.ws.js +3 -3
  21. package/lib/cjs/components/fragment.ws.js +1 -1
  22. package/lib/cjs/components/heading.ws.js +2 -2
  23. package/lib/cjs/components/html.js +80 -0
  24. package/lib/cjs/components/html.ws.js +43 -0
  25. package/lib/cjs/components/image.ws.js +2 -2
  26. package/lib/cjs/components/index.js +7 -53
  27. package/lib/cjs/components/input.ws.js +3 -3
  28. package/lib/cjs/components/italic.ws.js +2 -2
  29. package/lib/cjs/components/label.ws.js +2 -2
  30. package/lib/cjs/components/link-block.ws.js +2 -2
  31. package/lib/cjs/components/link.ws.js +2 -2
  32. package/lib/cjs/components/list-item.ws.js +2 -2
  33. package/lib/cjs/components/list.ws.js +2 -2
  34. package/lib/cjs/components/paragraph.ws.js +2 -2
  35. package/lib/cjs/components/radio-button-field.ws.js +4 -3
  36. package/lib/cjs/components/radio-button.ws.js +3 -3
  37. package/lib/cjs/components/separator.ws.js +2 -2
  38. package/lib/cjs/components/slot.ws.js +2 -2
  39. package/lib/cjs/components/span.ws.js +2 -2
  40. package/lib/cjs/components/subscript.ws.js +2 -2
  41. package/lib/cjs/components/success-message.ws.js +2 -2
  42. package/lib/cjs/components/superscript.ws.js +2 -2
  43. package/lib/cjs/components/text-block.ws.js +2 -2
  44. package/lib/cjs/components/textarea.ws.js +2 -2
  45. package/lib/cjs/css/css.js +2 -5
  46. package/lib/cjs/css/normalize.js +1 -1
  47. package/lib/cjs/css/presets.js +8 -1
  48. package/lib/cjs/embed-template.js +2 -0
  49. package/lib/cjs/tree/create-elements-tree.js +2 -4
  50. package/lib/components/__generated__/html.props.js +11 -0
  51. package/lib/components/blockquote.ws.js +2 -2
  52. package/lib/components/body.ws.js +2 -2
  53. package/lib/components/bold.ws.js +2 -2
  54. package/lib/components/box.ws.js +2 -2
  55. package/lib/components/button.ws.js +3 -3
  56. package/lib/components/checkbox-field.ws.js +4 -3
  57. package/lib/components/checkbox.ws.js +3 -3
  58. package/lib/components/code.ws.js +2 -2
  59. package/lib/components/component-meta.js +3 -3
  60. package/lib/components/components-utils.js +1 -43
  61. package/lib/components/components.js +2 -0
  62. package/lib/components/error-message.ws.js +2 -2
  63. package/lib/components/form.ws.js +3 -3
  64. package/lib/components/fragment.ws.js +1 -1
  65. package/lib/components/heading.ws.js +2 -2
  66. package/lib/components/html.js +65 -0
  67. package/lib/components/html.ws.js +23 -0
  68. package/lib/components/image.ws.js +2 -2
  69. package/lib/components/index.js +7 -53
  70. package/lib/components/input.ws.js +3 -3
  71. package/lib/components/italic.ws.js +2 -2
  72. package/lib/components/label.ws.js +2 -2
  73. package/lib/components/link-block.ws.js +2 -2
  74. package/lib/components/link.ws.js +2 -2
  75. package/lib/components/list-item.ws.js +2 -2
  76. package/lib/components/list.ws.js +2 -2
  77. package/lib/components/paragraph.ws.js +2 -2
  78. package/lib/components/radio-button-field.ws.js +4 -3
  79. package/lib/components/radio-button.ws.js +3 -3
  80. package/lib/components/separator.ws.js +2 -2
  81. package/lib/components/slot.ws.js +2 -2
  82. package/lib/components/span.ws.js +2 -2
  83. package/lib/components/subscript.ws.js +2 -2
  84. package/lib/components/success-message.ws.js +2 -2
  85. package/lib/components/superscript.ws.js +2 -2
  86. package/lib/components/text-block.ws.js +2 -2
  87. package/lib/components/textarea.ws.js +2 -2
  88. package/lib/css/css.js +2 -5
  89. package/lib/css/normalize.js +2 -2
  90. package/lib/css/presets.js +8 -1
  91. package/lib/embed-template.js +2 -0
  92. package/lib/tree/create-elements-tree.js +2 -4
  93. package/lib/types/app/params.d.ts +22 -1
  94. package/lib/types/components/__generated__/html.props.d.ts +2 -0
  95. package/lib/types/components/component-meta.d.ts +1785 -10
  96. package/lib/types/components/components-utils.d.ts +6 -3
  97. package/lib/types/components/components.d.ts +1 -0
  98. package/lib/types/components/html.d.ts +7 -0
  99. package/lib/types/components/html.stories.d.ts +11 -0
  100. package/lib/types/components/html.ws.d.ts +3 -0
  101. package/lib/types/components/index.d.ts +2 -2
  102. package/lib/types/context.d.ts +1 -0
  103. package/lib/types/css/css.d.ts +2 -0
  104. package/lib/types/css/presets.d.ts +1 -0
  105. package/lib/types/embed-template.d.ts +1 -0
  106. package/lib/types/tree/create-elements-tree.d.ts +2 -2
  107. package/package.json +13 -12
  108. package/src/app/custom-components/form.ws.tsx +3 -3
  109. package/src/app/custom-components/image.tsx +7 -13
  110. package/src/app/params.ts +23 -1
  111. package/src/components/__generated__/html.props.ts +10 -0
  112. package/src/components/blockquote.ws.tsx +2 -2
  113. package/src/components/body.ws.tsx +2 -2
  114. package/src/components/bold.ws.tsx +2 -2
  115. package/src/components/box.ws.ts +2 -2
  116. package/src/components/button.ws.tsx +3 -3
  117. package/src/components/checkbox-field.ws.tsx +4 -3
  118. package/src/components/checkbox.ws.tsx +3 -3
  119. package/src/components/code.ws.tsx +2 -2
  120. package/src/components/component-meta.ts +3 -6
  121. package/src/components/components-utils.ts +14 -58
  122. package/src/components/components.ts +1 -0
  123. package/src/components/error-message.ws.tsx +2 -2
  124. package/src/components/form.ws.tsx +3 -3
  125. package/src/components/fragment.ws.ts +1 -1
  126. package/src/components/heading.ws.tsx +2 -2
  127. package/src/components/html.stories.tsx +16 -0
  128. package/src/components/html.tsx +96 -0
  129. package/src/components/html.ws.ts +22 -0
  130. package/src/components/image.ws.tsx +2 -2
  131. package/src/components/index.ts +6 -83
  132. package/src/components/input.ws.tsx +3 -3
  133. package/src/components/italic.ws.tsx +2 -2
  134. package/src/components/label.ws.tsx +2 -2
  135. package/src/components/link-block.ws.tsx +2 -2
  136. package/src/components/link.ws.tsx +2 -2
  137. package/src/components/list-item.ws.tsx +2 -2
  138. package/src/components/list.ws.tsx +2 -2
  139. package/src/components/paragraph.ws.tsx +2 -2
  140. package/src/components/radio-button-field.ws.tsx +4 -3
  141. package/src/components/radio-button.ws.tsx +3 -3
  142. package/src/components/separator.ws.tsx +2 -2
  143. package/src/components/slot.ws.ts +2 -2
  144. package/src/components/span.ws.tsx +2 -2
  145. package/src/components/subscript.ws.tsx +2 -2
  146. package/src/components/success-message.ws.tsx +2 -2
  147. package/src/components/superscript.ws.tsx +2 -2
  148. package/src/components/text-block.ws.tsx +2 -2
  149. package/src/components/textarea.ws.tsx +2 -2
  150. package/src/context.tsx +1 -0
  151. package/src/css/css.ts +4 -5
  152. package/src/css/normalize.ts +2 -2
  153. package/src/css/presets.ts +7 -0
  154. package/src/embed-template.ts +3 -0
  155. package/src/tree/create-elements-tree.tsx +3 -5
  156. package/lib/cjs/tree/session-storage-polyfill.js +0 -65
  157. package/lib/tree/session-storage-polyfill.js +0 -45
  158. package/lib/types/tree/session-storage-polyfill.d.ts +0 -2
  159. package/src/tree/session-storage-polyfill.tsx +0 -50
@@ -1,6 +1,4 @@
1
1
  import { z } from "zod";
2
- import type { FunctionComponent } from "react";
3
- import type { IconProps } from "@webstudio-is/icons";
4
2
  import type { htmlTags as HtmlTags } from "html-tags";
5
3
  import { EmbedTemplateStyleDecl } from "../embed-template";
6
4
  export type PresetStyle<Tag extends HtmlTags = HtmlTags> = Partial<Record<Tag, EmbedTemplateStyleDecl[]>>;
@@ -71,6 +69,30 @@ declare const WsComponentPropsMeta: z.ZodObject<{
71
69
  type: "string";
72
70
  required: boolean;
73
71
  control: "text";
72
+ }>, z.ZodObject<{
73
+ control: z.ZodLiteral<"code">;
74
+ type: z.ZodLiteral<"string">;
75
+ defaultValue: z.ZodOptional<z.ZodString>;
76
+ rows: z.ZodOptional<z.ZodNumber>;
77
+ label: z.ZodOptional<z.ZodString>;
78
+ description: z.ZodOptional<z.ZodString>;
79
+ required: z.ZodBoolean;
80
+ }, "strip", z.ZodTypeAny, {
81
+ description?: string | undefined;
82
+ label?: string | undefined;
83
+ defaultValue?: string | undefined;
84
+ rows?: number | undefined;
85
+ type: "string";
86
+ required: boolean;
87
+ control: "code";
88
+ }, {
89
+ description?: string | undefined;
90
+ label?: string | undefined;
91
+ defaultValue?: string | undefined;
92
+ rows?: number | undefined;
93
+ type: "string";
94
+ required: boolean;
95
+ control: "code";
74
96
  }>, z.ZodObject<{
75
97
  control: z.ZodLiteral<"color">;
76
98
  type: z.ZodLiteral<"string">;
@@ -370,6 +392,14 @@ declare const WsComponentPropsMeta: z.ZodObject<{
370
392
  type: "string";
371
393
  required: boolean;
372
394
  control: "text";
395
+ } | {
396
+ description?: string | undefined;
397
+ label?: string | undefined;
398
+ defaultValue?: string | undefined;
399
+ rows?: number | undefined;
400
+ type: "string";
401
+ required: boolean;
402
+ control: "code";
373
403
  } | {
374
404
  description?: string | undefined;
375
405
  label?: string | undefined;
@@ -486,6 +516,14 @@ declare const WsComponentPropsMeta: z.ZodObject<{
486
516
  type: "string";
487
517
  required: boolean;
488
518
  control: "text";
519
+ } | {
520
+ description?: string | undefined;
521
+ label?: string | undefined;
522
+ defaultValue?: string | undefined;
523
+ rows?: number | undefined;
524
+ type: "string";
525
+ required: boolean;
526
+ control: "code";
489
527
  } | {
490
528
  description?: string | undefined;
491
529
  label?: string | undefined;
@@ -602,8 +640,1378 @@ declare const WsComponentMeta: z.ZodObject<{
602
640
  type: z.ZodEnum<["container", "control", "embed", "rich-text", "rich-text-child"]>;
603
641
  acceptedParents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
604
642
  label: z.ZodString;
605
- Icon: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnknown>;
606
- presetStyle: z.ZodOptional<z.ZodAny>;
643
+ icon: z.ZodString;
644
+ presetStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
645
+ state: z.ZodOptional<z.ZodString>;
646
+ property: z.ZodType<"filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | "right" | `--${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" | "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" | "right" | `--${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" | "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">;
647
+ value: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
648
+ type: z.ZodLiteral<"image">;
649
+ value: z.ZodUnion<[z.ZodObject<{
650
+ type: z.ZodLiteral<"asset">;
651
+ value: z.ZodString;
652
+ }, "strip", z.ZodTypeAny, {
653
+ type: "asset";
654
+ value: string;
655
+ }, {
656
+ type: "asset";
657
+ value: string;
658
+ }>, z.ZodObject<{
659
+ type: z.ZodLiteral<"url">;
660
+ url: z.ZodString;
661
+ }, "strip", z.ZodTypeAny, {
662
+ type: "url";
663
+ url: string;
664
+ }, {
665
+ type: "url";
666
+ url: string;
667
+ }>]>;
668
+ hidden: z.ZodOptional<z.ZodBoolean>;
669
+ }, "strip", z.ZodTypeAny, {
670
+ hidden?: boolean | undefined;
671
+ type: "image";
672
+ value: {
673
+ type: "asset";
674
+ value: string;
675
+ } | {
676
+ type: "url";
677
+ url: string;
678
+ };
679
+ }, {
680
+ hidden?: boolean | undefined;
681
+ type: "image";
682
+ value: {
683
+ type: "asset";
684
+ value: string;
685
+ } | {
686
+ type: "url";
687
+ url: string;
688
+ };
689
+ }>, z.ZodObject<{
690
+ type: z.ZodLiteral<"layers">;
691
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
692
+ type: z.ZodLiteral<"unit">;
693
+ 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">]>;
694
+ value: z.ZodNumber;
695
+ }, "strip", z.ZodTypeAny, {
696
+ type: "unit";
697
+ value: number;
698
+ 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";
699
+ }, {
700
+ type: "unit";
701
+ value: number;
702
+ 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";
703
+ }>, z.ZodObject<{
704
+ type: z.ZodLiteral<"keyword">;
705
+ value: z.ZodString;
706
+ }, "strip", z.ZodTypeAny, {
707
+ type: "keyword";
708
+ value: string;
709
+ }, {
710
+ type: "keyword";
711
+ value: string;
712
+ }>, z.ZodObject<{
713
+ type: z.ZodLiteral<"unparsed">;
714
+ value: z.ZodString;
715
+ hidden: z.ZodOptional<z.ZodBoolean>;
716
+ }, "strip", z.ZodTypeAny, {
717
+ hidden?: boolean | undefined;
718
+ type: "unparsed";
719
+ value: string;
720
+ }, {
721
+ hidden?: boolean | undefined;
722
+ type: "unparsed";
723
+ value: string;
724
+ }>, z.ZodObject<{
725
+ type: z.ZodLiteral<"image">;
726
+ value: z.ZodUnion<[z.ZodObject<{
727
+ type: z.ZodLiteral<"asset">;
728
+ value: z.ZodString;
729
+ }, "strip", z.ZodTypeAny, {
730
+ type: "asset";
731
+ value: string;
732
+ }, {
733
+ type: "asset";
734
+ value: string;
735
+ }>, z.ZodObject<{
736
+ type: z.ZodLiteral<"url">;
737
+ url: z.ZodString;
738
+ }, "strip", z.ZodTypeAny, {
739
+ type: "url";
740
+ url: string;
741
+ }, {
742
+ type: "url";
743
+ url: string;
744
+ }>]>;
745
+ hidden: z.ZodOptional<z.ZodBoolean>;
746
+ }, "strip", z.ZodTypeAny, {
747
+ hidden?: boolean | undefined;
748
+ type: "image";
749
+ value: {
750
+ type: "asset";
751
+ value: string;
752
+ } | {
753
+ type: "url";
754
+ url: string;
755
+ };
756
+ }, {
757
+ hidden?: boolean | undefined;
758
+ type: "image";
759
+ value: {
760
+ type: "asset";
761
+ value: string;
762
+ } | {
763
+ type: "url";
764
+ url: string;
765
+ };
766
+ }>, z.ZodObject<{
767
+ type: z.ZodLiteral<"tuple">;
768
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
769
+ type: z.ZodLiteral<"unit">;
770
+ 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">]>;
771
+ value: z.ZodNumber;
772
+ }, "strip", z.ZodTypeAny, {
773
+ type: "unit";
774
+ value: number;
775
+ 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";
776
+ }, {
777
+ type: "unit";
778
+ value: number;
779
+ 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";
780
+ }>, z.ZodObject<{
781
+ type: z.ZodLiteral<"keyword">;
782
+ value: z.ZodString;
783
+ }, "strip", z.ZodTypeAny, {
784
+ type: "keyword";
785
+ value: string;
786
+ }, {
787
+ type: "keyword";
788
+ value: string;
789
+ }>, z.ZodObject<{
790
+ type: z.ZodLiteral<"unparsed">;
791
+ value: z.ZodString;
792
+ hidden: z.ZodOptional<z.ZodBoolean>;
793
+ }, "strip", z.ZodTypeAny, {
794
+ hidden?: boolean | undefined;
795
+ type: "unparsed";
796
+ value: string;
797
+ }, {
798
+ hidden?: boolean | undefined;
799
+ type: "unparsed";
800
+ value: string;
801
+ }>]>, "many">;
802
+ }, "strip", z.ZodTypeAny, {
803
+ type: "tuple";
804
+ value: ({
805
+ type: "unit";
806
+ value: number;
807
+ 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";
808
+ } | {
809
+ type: "keyword";
810
+ value: string;
811
+ } | {
812
+ hidden?: boolean | undefined;
813
+ type: "unparsed";
814
+ value: string;
815
+ })[];
816
+ }, {
817
+ type: "tuple";
818
+ value: ({
819
+ type: "unit";
820
+ value: number;
821
+ 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";
822
+ } | {
823
+ type: "keyword";
824
+ value: string;
825
+ } | {
826
+ hidden?: boolean | undefined;
827
+ type: "unparsed";
828
+ value: string;
829
+ })[];
830
+ }>, z.ZodObject<{
831
+ type: z.ZodLiteral<"invalid">;
832
+ value: z.ZodString;
833
+ }, "strip", z.ZodTypeAny, {
834
+ type: "invalid";
835
+ value: string;
836
+ }, {
837
+ type: "invalid";
838
+ value: string;
839
+ }>]>, "many">;
840
+ }, "strip", z.ZodTypeAny, {
841
+ type: "layers";
842
+ value: ({
843
+ type: "unit";
844
+ value: number;
845
+ 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";
846
+ } | {
847
+ type: "keyword";
848
+ value: string;
849
+ } | {
850
+ hidden?: boolean | undefined;
851
+ type: "unparsed";
852
+ value: string;
853
+ } | {
854
+ hidden?: boolean | undefined;
855
+ type: "image";
856
+ value: {
857
+ type: "asset";
858
+ value: string;
859
+ } | {
860
+ type: "url";
861
+ url: string;
862
+ };
863
+ } | {
864
+ type: "invalid";
865
+ value: string;
866
+ } | {
867
+ type: "tuple";
868
+ value: ({
869
+ type: "unit";
870
+ value: number;
871
+ 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";
872
+ } | {
873
+ type: "keyword";
874
+ value: string;
875
+ } | {
876
+ hidden?: boolean | undefined;
877
+ type: "unparsed";
878
+ value: string;
879
+ })[];
880
+ })[];
881
+ }, {
882
+ type: "layers";
883
+ value: ({
884
+ type: "unit";
885
+ value: number;
886
+ 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";
887
+ } | {
888
+ type: "keyword";
889
+ value: string;
890
+ } | {
891
+ hidden?: boolean | undefined;
892
+ type: "unparsed";
893
+ value: string;
894
+ } | {
895
+ hidden?: boolean | undefined;
896
+ type: "image";
897
+ value: {
898
+ type: "asset";
899
+ value: string;
900
+ } | {
901
+ type: "url";
902
+ url: string;
903
+ };
904
+ } | {
905
+ type: "invalid";
906
+ value: string;
907
+ } | {
908
+ type: "tuple";
909
+ value: ({
910
+ type: "unit";
911
+ value: number;
912
+ 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";
913
+ } | {
914
+ type: "keyword";
915
+ value: string;
916
+ } | {
917
+ hidden?: boolean | undefined;
918
+ type: "unparsed";
919
+ value: string;
920
+ })[];
921
+ })[];
922
+ }>, z.ZodObject<{
923
+ type: z.ZodLiteral<"unit">;
924
+ 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">]>;
925
+ value: z.ZodNumber;
926
+ }, "strip", z.ZodTypeAny, {
927
+ type: "unit";
928
+ value: number;
929
+ 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";
930
+ }, {
931
+ type: "unit";
932
+ value: number;
933
+ 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";
934
+ }>, z.ZodObject<{
935
+ type: z.ZodLiteral<"keyword">;
936
+ value: z.ZodString;
937
+ }, "strip", z.ZodTypeAny, {
938
+ type: "keyword";
939
+ value: string;
940
+ }, {
941
+ type: "keyword";
942
+ value: string;
943
+ }>, z.ZodObject<{
944
+ type: z.ZodLiteral<"fontFamily">;
945
+ value: z.ZodArray<z.ZodString, "many">;
946
+ }, "strip", z.ZodTypeAny, {
947
+ type: "fontFamily";
948
+ value: string[];
949
+ }, {
950
+ type: "fontFamily";
951
+ value: string[];
952
+ }>, z.ZodObject<{
953
+ type: z.ZodLiteral<"rgb">;
954
+ r: z.ZodNumber;
955
+ g: z.ZodNumber;
956
+ b: z.ZodNumber;
957
+ alpha: z.ZodNumber;
958
+ }, "strip", z.ZodTypeAny, {
959
+ type: "rgb";
960
+ alpha: number;
961
+ r: number;
962
+ g: number;
963
+ b: number;
964
+ }, {
965
+ type: "rgb";
966
+ alpha: number;
967
+ r: number;
968
+ g: number;
969
+ b: number;
970
+ }>, z.ZodObject<{
971
+ type: z.ZodLiteral<"unparsed">;
972
+ value: z.ZodString;
973
+ hidden: z.ZodOptional<z.ZodBoolean>;
974
+ }, "strip", z.ZodTypeAny, {
975
+ hidden?: boolean | undefined;
976
+ type: "unparsed";
977
+ value: string;
978
+ }, {
979
+ hidden?: boolean | undefined;
980
+ type: "unparsed";
981
+ value: string;
982
+ }>, z.ZodObject<{
983
+ type: z.ZodLiteral<"tuple">;
984
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
985
+ type: z.ZodLiteral<"unit">;
986
+ 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">]>;
987
+ value: z.ZodNumber;
988
+ }, "strip", z.ZodTypeAny, {
989
+ type: "unit";
990
+ value: number;
991
+ 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";
992
+ }, {
993
+ type: "unit";
994
+ value: number;
995
+ 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";
996
+ }>, z.ZodObject<{
997
+ type: z.ZodLiteral<"keyword">;
998
+ value: z.ZodString;
999
+ }, "strip", z.ZodTypeAny, {
1000
+ type: "keyword";
1001
+ value: string;
1002
+ }, {
1003
+ type: "keyword";
1004
+ value: string;
1005
+ }>, z.ZodObject<{
1006
+ type: z.ZodLiteral<"unparsed">;
1007
+ value: z.ZodString;
1008
+ hidden: z.ZodOptional<z.ZodBoolean>;
1009
+ }, "strip", z.ZodTypeAny, {
1010
+ hidden?: boolean | undefined;
1011
+ type: "unparsed";
1012
+ value: string;
1013
+ }, {
1014
+ hidden?: boolean | undefined;
1015
+ type: "unparsed";
1016
+ value: string;
1017
+ }>]>, "many">;
1018
+ }, "strip", z.ZodTypeAny, {
1019
+ type: "tuple";
1020
+ value: ({
1021
+ type: "unit";
1022
+ value: number;
1023
+ 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";
1024
+ } | {
1025
+ type: "keyword";
1026
+ value: string;
1027
+ } | {
1028
+ hidden?: boolean | undefined;
1029
+ type: "unparsed";
1030
+ value: string;
1031
+ })[];
1032
+ }, {
1033
+ type: "tuple";
1034
+ value: ({
1035
+ type: "unit";
1036
+ value: number;
1037
+ 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";
1038
+ } | {
1039
+ type: "keyword";
1040
+ value: string;
1041
+ } | {
1042
+ hidden?: boolean | undefined;
1043
+ type: "unparsed";
1044
+ value: string;
1045
+ })[];
1046
+ }>]>, z.ZodObject<{
1047
+ type: z.ZodLiteral<"invalid">;
1048
+ value: z.ZodString;
1049
+ }, "strip", z.ZodTypeAny, {
1050
+ type: "invalid";
1051
+ value: string;
1052
+ }, {
1053
+ type: "invalid";
1054
+ value: string;
1055
+ }>, z.ZodObject<{
1056
+ type: z.ZodLiteral<"unset">;
1057
+ value: z.ZodLiteral<"">;
1058
+ }, "strip", z.ZodTypeAny, {
1059
+ type: "unset";
1060
+ value: "";
1061
+ }, {
1062
+ type: "unset";
1063
+ value: "";
1064
+ }>, z.ZodObject<{
1065
+ type: z.ZodLiteral<"var">;
1066
+ value: z.ZodString;
1067
+ fallbacks: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1068
+ type: z.ZodLiteral<"image">;
1069
+ value: z.ZodUnion<[z.ZodObject<{
1070
+ type: z.ZodLiteral<"asset">;
1071
+ value: z.ZodString;
1072
+ }, "strip", z.ZodTypeAny, {
1073
+ type: "asset";
1074
+ value: string;
1075
+ }, {
1076
+ type: "asset";
1077
+ value: string;
1078
+ }>, z.ZodObject<{
1079
+ type: z.ZodLiteral<"url">;
1080
+ url: z.ZodString;
1081
+ }, "strip", z.ZodTypeAny, {
1082
+ type: "url";
1083
+ url: string;
1084
+ }, {
1085
+ type: "url";
1086
+ url: string;
1087
+ }>]>;
1088
+ hidden: z.ZodOptional<z.ZodBoolean>;
1089
+ }, "strip", z.ZodTypeAny, {
1090
+ hidden?: boolean | undefined;
1091
+ type: "image";
1092
+ value: {
1093
+ type: "asset";
1094
+ value: string;
1095
+ } | {
1096
+ type: "url";
1097
+ url: string;
1098
+ };
1099
+ }, {
1100
+ hidden?: boolean | undefined;
1101
+ type: "image";
1102
+ value: {
1103
+ type: "asset";
1104
+ value: string;
1105
+ } | {
1106
+ type: "url";
1107
+ url: string;
1108
+ };
1109
+ }>, z.ZodObject<{
1110
+ type: z.ZodLiteral<"layers">;
1111
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1112
+ type: z.ZodLiteral<"unit">;
1113
+ 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">]>;
1114
+ value: z.ZodNumber;
1115
+ }, "strip", z.ZodTypeAny, {
1116
+ type: "unit";
1117
+ value: number;
1118
+ 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";
1119
+ }, {
1120
+ type: "unit";
1121
+ value: number;
1122
+ 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";
1123
+ }>, z.ZodObject<{
1124
+ type: z.ZodLiteral<"keyword">;
1125
+ value: z.ZodString;
1126
+ }, "strip", z.ZodTypeAny, {
1127
+ type: "keyword";
1128
+ value: string;
1129
+ }, {
1130
+ type: "keyword";
1131
+ value: string;
1132
+ }>, z.ZodObject<{
1133
+ type: z.ZodLiteral<"unparsed">;
1134
+ value: z.ZodString;
1135
+ hidden: z.ZodOptional<z.ZodBoolean>;
1136
+ }, "strip", z.ZodTypeAny, {
1137
+ hidden?: boolean | undefined;
1138
+ type: "unparsed";
1139
+ value: string;
1140
+ }, {
1141
+ hidden?: boolean | undefined;
1142
+ type: "unparsed";
1143
+ value: string;
1144
+ }>, z.ZodObject<{
1145
+ type: z.ZodLiteral<"image">;
1146
+ value: z.ZodUnion<[z.ZodObject<{
1147
+ type: z.ZodLiteral<"asset">;
1148
+ value: z.ZodString;
1149
+ }, "strip", z.ZodTypeAny, {
1150
+ type: "asset";
1151
+ value: string;
1152
+ }, {
1153
+ type: "asset";
1154
+ value: string;
1155
+ }>, z.ZodObject<{
1156
+ type: z.ZodLiteral<"url">;
1157
+ url: z.ZodString;
1158
+ }, "strip", z.ZodTypeAny, {
1159
+ type: "url";
1160
+ url: string;
1161
+ }, {
1162
+ type: "url";
1163
+ url: string;
1164
+ }>]>;
1165
+ hidden: z.ZodOptional<z.ZodBoolean>;
1166
+ }, "strip", z.ZodTypeAny, {
1167
+ hidden?: boolean | undefined;
1168
+ type: "image";
1169
+ value: {
1170
+ type: "asset";
1171
+ value: string;
1172
+ } | {
1173
+ type: "url";
1174
+ url: string;
1175
+ };
1176
+ }, {
1177
+ hidden?: boolean | undefined;
1178
+ type: "image";
1179
+ value: {
1180
+ type: "asset";
1181
+ value: string;
1182
+ } | {
1183
+ type: "url";
1184
+ url: string;
1185
+ };
1186
+ }>, z.ZodObject<{
1187
+ type: z.ZodLiteral<"tuple">;
1188
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1189
+ type: z.ZodLiteral<"unit">;
1190
+ 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">]>;
1191
+ value: z.ZodNumber;
1192
+ }, "strip", z.ZodTypeAny, {
1193
+ type: "unit";
1194
+ value: number;
1195
+ 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";
1196
+ }, {
1197
+ type: "unit";
1198
+ value: number;
1199
+ 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";
1200
+ }>, z.ZodObject<{
1201
+ type: z.ZodLiteral<"keyword">;
1202
+ value: z.ZodString;
1203
+ }, "strip", z.ZodTypeAny, {
1204
+ type: "keyword";
1205
+ value: string;
1206
+ }, {
1207
+ type: "keyword";
1208
+ value: string;
1209
+ }>, z.ZodObject<{
1210
+ type: z.ZodLiteral<"unparsed">;
1211
+ value: z.ZodString;
1212
+ hidden: z.ZodOptional<z.ZodBoolean>;
1213
+ }, "strip", z.ZodTypeAny, {
1214
+ hidden?: boolean | undefined;
1215
+ type: "unparsed";
1216
+ value: string;
1217
+ }, {
1218
+ hidden?: boolean | undefined;
1219
+ type: "unparsed";
1220
+ value: string;
1221
+ }>]>, "many">;
1222
+ }, "strip", z.ZodTypeAny, {
1223
+ type: "tuple";
1224
+ value: ({
1225
+ type: "unit";
1226
+ value: number;
1227
+ 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";
1228
+ } | {
1229
+ type: "keyword";
1230
+ value: string;
1231
+ } | {
1232
+ hidden?: boolean | undefined;
1233
+ type: "unparsed";
1234
+ value: string;
1235
+ })[];
1236
+ }, {
1237
+ type: "tuple";
1238
+ value: ({
1239
+ type: "unit";
1240
+ value: number;
1241
+ 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";
1242
+ } | {
1243
+ type: "keyword";
1244
+ value: string;
1245
+ } | {
1246
+ hidden?: boolean | undefined;
1247
+ type: "unparsed";
1248
+ value: string;
1249
+ })[];
1250
+ }>, z.ZodObject<{
1251
+ type: z.ZodLiteral<"invalid">;
1252
+ value: z.ZodString;
1253
+ }, "strip", z.ZodTypeAny, {
1254
+ type: "invalid";
1255
+ value: string;
1256
+ }, {
1257
+ type: "invalid";
1258
+ value: string;
1259
+ }>]>, "many">;
1260
+ }, "strip", z.ZodTypeAny, {
1261
+ type: "layers";
1262
+ value: ({
1263
+ type: "unit";
1264
+ value: number;
1265
+ 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";
1266
+ } | {
1267
+ type: "keyword";
1268
+ value: string;
1269
+ } | {
1270
+ hidden?: boolean | undefined;
1271
+ type: "unparsed";
1272
+ value: string;
1273
+ } | {
1274
+ hidden?: boolean | undefined;
1275
+ type: "image";
1276
+ value: {
1277
+ type: "asset";
1278
+ value: string;
1279
+ } | {
1280
+ type: "url";
1281
+ url: string;
1282
+ };
1283
+ } | {
1284
+ type: "invalid";
1285
+ value: string;
1286
+ } | {
1287
+ type: "tuple";
1288
+ value: ({
1289
+ type: "unit";
1290
+ value: number;
1291
+ 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";
1292
+ } | {
1293
+ type: "keyword";
1294
+ value: string;
1295
+ } | {
1296
+ hidden?: boolean | undefined;
1297
+ type: "unparsed";
1298
+ value: string;
1299
+ })[];
1300
+ })[];
1301
+ }, {
1302
+ type: "layers";
1303
+ value: ({
1304
+ type: "unit";
1305
+ value: number;
1306
+ 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";
1307
+ } | {
1308
+ type: "keyword";
1309
+ value: string;
1310
+ } | {
1311
+ hidden?: boolean | undefined;
1312
+ type: "unparsed";
1313
+ value: string;
1314
+ } | {
1315
+ hidden?: boolean | undefined;
1316
+ type: "image";
1317
+ value: {
1318
+ type: "asset";
1319
+ value: string;
1320
+ } | {
1321
+ type: "url";
1322
+ url: string;
1323
+ };
1324
+ } | {
1325
+ type: "invalid";
1326
+ value: string;
1327
+ } | {
1328
+ type: "tuple";
1329
+ value: ({
1330
+ type: "unit";
1331
+ value: number;
1332
+ 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";
1333
+ } | {
1334
+ type: "keyword";
1335
+ value: string;
1336
+ } | {
1337
+ hidden?: boolean | undefined;
1338
+ type: "unparsed";
1339
+ value: string;
1340
+ })[];
1341
+ })[];
1342
+ }>, z.ZodObject<{
1343
+ type: z.ZodLiteral<"unit">;
1344
+ 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">]>;
1345
+ value: z.ZodNumber;
1346
+ }, "strip", z.ZodTypeAny, {
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: "unit";
1352
+ value: number;
1353
+ 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";
1354
+ }>, z.ZodObject<{
1355
+ type: z.ZodLiteral<"keyword">;
1356
+ value: z.ZodString;
1357
+ }, "strip", z.ZodTypeAny, {
1358
+ type: "keyword";
1359
+ value: string;
1360
+ }, {
1361
+ type: "keyword";
1362
+ value: string;
1363
+ }>, z.ZodObject<{
1364
+ type: z.ZodLiteral<"fontFamily">;
1365
+ value: z.ZodArray<z.ZodString, "many">;
1366
+ }, "strip", z.ZodTypeAny, {
1367
+ type: "fontFamily";
1368
+ value: string[];
1369
+ }, {
1370
+ type: "fontFamily";
1371
+ value: string[];
1372
+ }>, z.ZodObject<{
1373
+ type: z.ZodLiteral<"rgb">;
1374
+ r: z.ZodNumber;
1375
+ g: z.ZodNumber;
1376
+ b: z.ZodNumber;
1377
+ alpha: z.ZodNumber;
1378
+ }, "strip", z.ZodTypeAny, {
1379
+ type: "rgb";
1380
+ alpha: number;
1381
+ r: number;
1382
+ g: number;
1383
+ b: number;
1384
+ }, {
1385
+ type: "rgb";
1386
+ alpha: number;
1387
+ r: number;
1388
+ g: number;
1389
+ b: number;
1390
+ }>, z.ZodObject<{
1391
+ type: z.ZodLiteral<"unparsed">;
1392
+ value: z.ZodString;
1393
+ hidden: z.ZodOptional<z.ZodBoolean>;
1394
+ }, "strip", z.ZodTypeAny, {
1395
+ hidden?: boolean | undefined;
1396
+ type: "unparsed";
1397
+ value: string;
1398
+ }, {
1399
+ hidden?: boolean | undefined;
1400
+ type: "unparsed";
1401
+ value: string;
1402
+ }>, z.ZodObject<{
1403
+ type: z.ZodLiteral<"tuple">;
1404
+ value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1405
+ type: z.ZodLiteral<"unit">;
1406
+ 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">]>;
1407
+ value: z.ZodNumber;
1408
+ }, "strip", z.ZodTypeAny, {
1409
+ type: "unit";
1410
+ value: number;
1411
+ 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";
1412
+ }, {
1413
+ type: "unit";
1414
+ value: number;
1415
+ 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";
1416
+ }>, z.ZodObject<{
1417
+ type: z.ZodLiteral<"keyword">;
1418
+ value: z.ZodString;
1419
+ }, "strip", z.ZodTypeAny, {
1420
+ type: "keyword";
1421
+ value: string;
1422
+ }, {
1423
+ type: "keyword";
1424
+ value: string;
1425
+ }>, z.ZodObject<{
1426
+ type: z.ZodLiteral<"unparsed">;
1427
+ value: z.ZodString;
1428
+ hidden: z.ZodOptional<z.ZodBoolean>;
1429
+ }, "strip", z.ZodTypeAny, {
1430
+ hidden?: boolean | undefined;
1431
+ type: "unparsed";
1432
+ value: string;
1433
+ }, {
1434
+ hidden?: boolean | undefined;
1435
+ type: "unparsed";
1436
+ value: string;
1437
+ }>]>, "many">;
1438
+ }, "strip", z.ZodTypeAny, {
1439
+ type: "tuple";
1440
+ value: ({
1441
+ type: "unit";
1442
+ value: number;
1443
+ 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";
1444
+ } | {
1445
+ type: "keyword";
1446
+ value: string;
1447
+ } | {
1448
+ hidden?: boolean | undefined;
1449
+ type: "unparsed";
1450
+ value: string;
1451
+ })[];
1452
+ }, {
1453
+ type: "tuple";
1454
+ value: ({
1455
+ type: "unit";
1456
+ value: number;
1457
+ 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";
1458
+ } | {
1459
+ type: "keyword";
1460
+ value: string;
1461
+ } | {
1462
+ hidden?: boolean | undefined;
1463
+ type: "unparsed";
1464
+ value: string;
1465
+ })[];
1466
+ }>]>, "many">;
1467
+ }, "strip", z.ZodTypeAny, {
1468
+ type: "var";
1469
+ value: string;
1470
+ fallbacks: ({
1471
+ type: "unit";
1472
+ value: number;
1473
+ 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";
1474
+ } | {
1475
+ type: "keyword";
1476
+ value: string;
1477
+ } | {
1478
+ hidden?: boolean | undefined;
1479
+ type: "unparsed";
1480
+ value: string;
1481
+ } | {
1482
+ type: "fontFamily";
1483
+ value: string[];
1484
+ } | {
1485
+ type: "rgb";
1486
+ alpha: number;
1487
+ r: number;
1488
+ g: number;
1489
+ b: number;
1490
+ } | {
1491
+ hidden?: boolean | undefined;
1492
+ type: "image";
1493
+ value: {
1494
+ type: "asset";
1495
+ value: string;
1496
+ } | {
1497
+ type: "url";
1498
+ url: string;
1499
+ };
1500
+ } | {
1501
+ type: "tuple";
1502
+ value: ({
1503
+ type: "unit";
1504
+ value: number;
1505
+ 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";
1506
+ } | {
1507
+ type: "keyword";
1508
+ value: string;
1509
+ } | {
1510
+ hidden?: boolean | undefined;
1511
+ type: "unparsed";
1512
+ value: string;
1513
+ })[];
1514
+ } | {
1515
+ type: "layers";
1516
+ value: ({
1517
+ type: "unit";
1518
+ value: number;
1519
+ 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";
1520
+ } | {
1521
+ type: "keyword";
1522
+ value: string;
1523
+ } | {
1524
+ hidden?: boolean | undefined;
1525
+ type: "unparsed";
1526
+ value: string;
1527
+ } | {
1528
+ hidden?: boolean | undefined;
1529
+ type: "image";
1530
+ value: {
1531
+ type: "asset";
1532
+ value: string;
1533
+ } | {
1534
+ type: "url";
1535
+ url: string;
1536
+ };
1537
+ } | {
1538
+ type: "invalid";
1539
+ value: string;
1540
+ } | {
1541
+ type: "tuple";
1542
+ value: ({
1543
+ type: "unit";
1544
+ value: number;
1545
+ 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";
1546
+ } | {
1547
+ type: "keyword";
1548
+ value: string;
1549
+ } | {
1550
+ hidden?: boolean | undefined;
1551
+ type: "unparsed";
1552
+ value: string;
1553
+ })[];
1554
+ })[];
1555
+ })[];
1556
+ }, {
1557
+ type: "var";
1558
+ value: string;
1559
+ fallbacks: ({
1560
+ type: "unit";
1561
+ value: number;
1562
+ 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";
1563
+ } | {
1564
+ type: "keyword";
1565
+ value: string;
1566
+ } | {
1567
+ hidden?: boolean | undefined;
1568
+ type: "unparsed";
1569
+ value: string;
1570
+ } | {
1571
+ type: "fontFamily";
1572
+ value: string[];
1573
+ } | {
1574
+ type: "rgb";
1575
+ alpha: number;
1576
+ r: number;
1577
+ g: number;
1578
+ b: number;
1579
+ } | {
1580
+ hidden?: boolean | undefined;
1581
+ type: "image";
1582
+ value: {
1583
+ type: "asset";
1584
+ value: string;
1585
+ } | {
1586
+ type: "url";
1587
+ url: string;
1588
+ };
1589
+ } | {
1590
+ type: "tuple";
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
+ } | {
1604
+ type: "layers";
1605
+ value: ({
1606
+ type: "unit";
1607
+ value: number;
1608
+ 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";
1609
+ } | {
1610
+ type: "keyword";
1611
+ value: string;
1612
+ } | {
1613
+ hidden?: boolean | undefined;
1614
+ type: "unparsed";
1615
+ value: string;
1616
+ } | {
1617
+ hidden?: boolean | undefined;
1618
+ type: "image";
1619
+ value: {
1620
+ type: "asset";
1621
+ value: string;
1622
+ } | {
1623
+ type: "url";
1624
+ url: string;
1625
+ };
1626
+ } | {
1627
+ type: "invalid";
1628
+ value: string;
1629
+ } | {
1630
+ type: "tuple";
1631
+ value: ({
1632
+ type: "unit";
1633
+ value: number;
1634
+ 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";
1635
+ } | {
1636
+ type: "keyword";
1637
+ value: string;
1638
+ } | {
1639
+ hidden?: boolean | undefined;
1640
+ type: "unparsed";
1641
+ value: string;
1642
+ })[];
1643
+ })[];
1644
+ })[];
1645
+ }>]>;
1646
+ }, "strip", z.ZodTypeAny, {
1647
+ state?: string | undefined;
1648
+ value: {
1649
+ type: "unit";
1650
+ value: number;
1651
+ 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";
1652
+ } | {
1653
+ type: "keyword";
1654
+ value: string;
1655
+ } | {
1656
+ hidden?: boolean | undefined;
1657
+ type: "unparsed";
1658
+ value: string;
1659
+ } | {
1660
+ type: "fontFamily";
1661
+ value: string[];
1662
+ } | {
1663
+ type: "rgb";
1664
+ alpha: number;
1665
+ r: number;
1666
+ g: number;
1667
+ b: number;
1668
+ } | {
1669
+ hidden?: boolean | undefined;
1670
+ type: "image";
1671
+ value: {
1672
+ type: "asset";
1673
+ value: string;
1674
+ } | {
1675
+ type: "url";
1676
+ url: string;
1677
+ };
1678
+ } | {
1679
+ type: "invalid";
1680
+ value: string;
1681
+ } | {
1682
+ type: "unset";
1683
+ value: "";
1684
+ } | {
1685
+ type: "tuple";
1686
+ value: ({
1687
+ type: "unit";
1688
+ value: number;
1689
+ 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";
1690
+ } | {
1691
+ type: "keyword";
1692
+ value: string;
1693
+ } | {
1694
+ hidden?: boolean | undefined;
1695
+ type: "unparsed";
1696
+ value: string;
1697
+ })[];
1698
+ } | {
1699
+ type: "layers";
1700
+ value: ({
1701
+ type: "unit";
1702
+ value: number;
1703
+ 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";
1704
+ } | {
1705
+ type: "keyword";
1706
+ value: string;
1707
+ } | {
1708
+ hidden?: boolean | undefined;
1709
+ type: "unparsed";
1710
+ value: string;
1711
+ } | {
1712
+ hidden?: boolean | undefined;
1713
+ type: "image";
1714
+ value: {
1715
+ type: "asset";
1716
+ value: string;
1717
+ } | {
1718
+ type: "url";
1719
+ url: string;
1720
+ };
1721
+ } | {
1722
+ type: "invalid";
1723
+ value: string;
1724
+ } | {
1725
+ type: "tuple";
1726
+ value: ({
1727
+ type: "unit";
1728
+ value: number;
1729
+ 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";
1730
+ } | {
1731
+ type: "keyword";
1732
+ value: string;
1733
+ } | {
1734
+ hidden?: boolean | undefined;
1735
+ type: "unparsed";
1736
+ value: string;
1737
+ })[];
1738
+ })[];
1739
+ } | {
1740
+ type: "var";
1741
+ value: string;
1742
+ fallbacks: ({
1743
+ type: "unit";
1744
+ value: number;
1745
+ 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";
1746
+ } | {
1747
+ type: "keyword";
1748
+ value: string;
1749
+ } | {
1750
+ hidden?: boolean | undefined;
1751
+ type: "unparsed";
1752
+ value: string;
1753
+ } | {
1754
+ type: "fontFamily";
1755
+ value: string[];
1756
+ } | {
1757
+ type: "rgb";
1758
+ alpha: number;
1759
+ r: number;
1760
+ g: number;
1761
+ b: number;
1762
+ } | {
1763
+ hidden?: boolean | undefined;
1764
+ type: "image";
1765
+ value: {
1766
+ type: "asset";
1767
+ value: string;
1768
+ } | {
1769
+ type: "url";
1770
+ url: string;
1771
+ };
1772
+ } | {
1773
+ type: "tuple";
1774
+ value: ({
1775
+ type: "unit";
1776
+ value: number;
1777
+ 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";
1778
+ } | {
1779
+ type: "keyword";
1780
+ value: string;
1781
+ } | {
1782
+ hidden?: boolean | undefined;
1783
+ type: "unparsed";
1784
+ value: string;
1785
+ })[];
1786
+ } | {
1787
+ type: "layers";
1788
+ value: ({
1789
+ type: "unit";
1790
+ value: number;
1791
+ 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";
1792
+ } | {
1793
+ type: "keyword";
1794
+ value: string;
1795
+ } | {
1796
+ hidden?: boolean | undefined;
1797
+ type: "unparsed";
1798
+ value: string;
1799
+ } | {
1800
+ hidden?: boolean | undefined;
1801
+ type: "image";
1802
+ value: {
1803
+ type: "asset";
1804
+ value: string;
1805
+ } | {
1806
+ type: "url";
1807
+ url: string;
1808
+ };
1809
+ } | {
1810
+ type: "invalid";
1811
+ value: string;
1812
+ } | {
1813
+ type: "tuple";
1814
+ value: ({
1815
+ type: "unit";
1816
+ value: number;
1817
+ 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";
1818
+ } | {
1819
+ type: "keyword";
1820
+ value: string;
1821
+ } | {
1822
+ hidden?: boolean | undefined;
1823
+ type: "unparsed";
1824
+ value: string;
1825
+ })[];
1826
+ })[];
1827
+ })[];
1828
+ };
1829
+ property: "filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | "right" | `--${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" | "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";
1830
+ }, {
1831
+ state?: string | undefined;
1832
+ value: {
1833
+ type: "unit";
1834
+ value: number;
1835
+ 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";
1836
+ } | {
1837
+ type: "keyword";
1838
+ value: string;
1839
+ } | {
1840
+ hidden?: boolean | undefined;
1841
+ type: "unparsed";
1842
+ value: string;
1843
+ } | {
1844
+ type: "fontFamily";
1845
+ value: string[];
1846
+ } | {
1847
+ type: "rgb";
1848
+ alpha: number;
1849
+ r: number;
1850
+ g: number;
1851
+ b: number;
1852
+ } | {
1853
+ hidden?: boolean | undefined;
1854
+ type: "image";
1855
+ value: {
1856
+ type: "asset";
1857
+ value: string;
1858
+ } | {
1859
+ type: "url";
1860
+ url: string;
1861
+ };
1862
+ } | {
1863
+ type: "invalid";
1864
+ value: string;
1865
+ } | {
1866
+ type: "unset";
1867
+ value: "";
1868
+ } | {
1869
+ type: "tuple";
1870
+ value: ({
1871
+ type: "unit";
1872
+ value: number;
1873
+ 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";
1874
+ } | {
1875
+ type: "keyword";
1876
+ value: string;
1877
+ } | {
1878
+ hidden?: boolean | undefined;
1879
+ type: "unparsed";
1880
+ value: string;
1881
+ })[];
1882
+ } | {
1883
+ type: "layers";
1884
+ value: ({
1885
+ type: "unit";
1886
+ value: number;
1887
+ 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";
1888
+ } | {
1889
+ type: "keyword";
1890
+ value: string;
1891
+ } | {
1892
+ hidden?: boolean | undefined;
1893
+ type: "unparsed";
1894
+ value: string;
1895
+ } | {
1896
+ hidden?: boolean | undefined;
1897
+ type: "image";
1898
+ value: {
1899
+ type: "asset";
1900
+ value: string;
1901
+ } | {
1902
+ type: "url";
1903
+ url: string;
1904
+ };
1905
+ } | {
1906
+ type: "invalid";
1907
+ value: string;
1908
+ } | {
1909
+ type: "tuple";
1910
+ value: ({
1911
+ type: "unit";
1912
+ value: number;
1913
+ 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";
1914
+ } | {
1915
+ type: "keyword";
1916
+ value: string;
1917
+ } | {
1918
+ hidden?: boolean | undefined;
1919
+ type: "unparsed";
1920
+ value: string;
1921
+ })[];
1922
+ })[];
1923
+ } | {
1924
+ type: "var";
1925
+ value: string;
1926
+ fallbacks: ({
1927
+ type: "unit";
1928
+ value: number;
1929
+ 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";
1930
+ } | {
1931
+ type: "keyword";
1932
+ value: string;
1933
+ } | {
1934
+ hidden?: boolean | undefined;
1935
+ type: "unparsed";
1936
+ value: string;
1937
+ } | {
1938
+ type: "fontFamily";
1939
+ value: string[];
1940
+ } | {
1941
+ type: "rgb";
1942
+ alpha: number;
1943
+ r: number;
1944
+ g: number;
1945
+ b: number;
1946
+ } | {
1947
+ hidden?: boolean | undefined;
1948
+ type: "image";
1949
+ value: {
1950
+ type: "asset";
1951
+ value: string;
1952
+ } | {
1953
+ type: "url";
1954
+ url: string;
1955
+ };
1956
+ } | {
1957
+ type: "tuple";
1958
+ value: ({
1959
+ type: "unit";
1960
+ value: number;
1961
+ 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";
1962
+ } | {
1963
+ type: "keyword";
1964
+ value: string;
1965
+ } | {
1966
+ hidden?: boolean | undefined;
1967
+ type: "unparsed";
1968
+ value: string;
1969
+ })[];
1970
+ } | {
1971
+ type: "layers";
1972
+ value: ({
1973
+ type: "unit";
1974
+ value: number;
1975
+ 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";
1976
+ } | {
1977
+ type: "keyword";
1978
+ value: string;
1979
+ } | {
1980
+ hidden?: boolean | undefined;
1981
+ type: "unparsed";
1982
+ value: string;
1983
+ } | {
1984
+ hidden?: boolean | undefined;
1985
+ type: "image";
1986
+ value: {
1987
+ type: "asset";
1988
+ value: string;
1989
+ } | {
1990
+ type: "url";
1991
+ url: string;
1992
+ };
1993
+ } | {
1994
+ type: "invalid";
1995
+ value: string;
1996
+ } | {
1997
+ type: "tuple";
1998
+ value: ({
1999
+ type: "unit";
2000
+ value: number;
2001
+ 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";
2002
+ } | {
2003
+ type: "keyword";
2004
+ value: string;
2005
+ } | {
2006
+ hidden?: boolean | undefined;
2007
+ type: "unparsed";
2008
+ value: string;
2009
+ })[];
2010
+ })[];
2011
+ })[];
2012
+ };
2013
+ property: "filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | "right" | `--${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" | "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";
2014
+ }>>>;
607
2015
  states: z.ZodOptional<z.ZodArray<z.ZodObject<{
608
2016
  category: z.ZodOptional<z.ZodEnum<["states", "component-states"]>>;
609
2017
  selector: z.ZodString;
@@ -639,10 +2047,194 @@ declare const WsComponentMeta: z.ZodObject<{
639
2047
  }[] | undefined;
640
2048
  category?: "media" | "general" | "typography" | "forms" | undefined;
641
2049
  acceptedParents?: string[] | undefined;
642
- presetStyle?: any;
2050
+ presetStyle?: Record<string, {
2051
+ state?: string | undefined;
2052
+ value: {
2053
+ type: "unit";
2054
+ value: number;
2055
+ 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";
2056
+ } | {
2057
+ type: "keyword";
2058
+ value: string;
2059
+ } | {
2060
+ hidden?: boolean | undefined;
2061
+ type: "unparsed";
2062
+ value: string;
2063
+ } | {
2064
+ type: "fontFamily";
2065
+ value: string[];
2066
+ } | {
2067
+ type: "rgb";
2068
+ alpha: number;
2069
+ r: number;
2070
+ g: number;
2071
+ b: number;
2072
+ } | {
2073
+ hidden?: boolean | undefined;
2074
+ type: "image";
2075
+ value: {
2076
+ type: "asset";
2077
+ value: string;
2078
+ } | {
2079
+ type: "url";
2080
+ url: string;
2081
+ };
2082
+ } | {
2083
+ type: "invalid";
2084
+ value: string;
2085
+ } | {
2086
+ type: "unset";
2087
+ value: "";
2088
+ } | {
2089
+ type: "tuple";
2090
+ value: ({
2091
+ type: "unit";
2092
+ value: number;
2093
+ 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";
2094
+ } | {
2095
+ type: "keyword";
2096
+ value: string;
2097
+ } | {
2098
+ hidden?: boolean | undefined;
2099
+ type: "unparsed";
2100
+ value: string;
2101
+ })[];
2102
+ } | {
2103
+ type: "layers";
2104
+ value: ({
2105
+ type: "unit";
2106
+ value: number;
2107
+ 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";
2108
+ } | {
2109
+ type: "keyword";
2110
+ value: string;
2111
+ } | {
2112
+ hidden?: boolean | undefined;
2113
+ type: "unparsed";
2114
+ value: string;
2115
+ } | {
2116
+ hidden?: boolean | undefined;
2117
+ type: "image";
2118
+ value: {
2119
+ type: "asset";
2120
+ value: string;
2121
+ } | {
2122
+ type: "url";
2123
+ url: string;
2124
+ };
2125
+ } | {
2126
+ type: "invalid";
2127
+ value: string;
2128
+ } | {
2129
+ type: "tuple";
2130
+ value: ({
2131
+ type: "unit";
2132
+ value: number;
2133
+ 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";
2134
+ } | {
2135
+ type: "keyword";
2136
+ value: string;
2137
+ } | {
2138
+ hidden?: boolean | undefined;
2139
+ type: "unparsed";
2140
+ value: string;
2141
+ })[];
2142
+ })[];
2143
+ } | {
2144
+ type: "var";
2145
+ value: string;
2146
+ fallbacks: ({
2147
+ type: "unit";
2148
+ value: number;
2149
+ 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";
2150
+ } | {
2151
+ type: "keyword";
2152
+ value: string;
2153
+ } | {
2154
+ hidden?: boolean | undefined;
2155
+ type: "unparsed";
2156
+ value: string;
2157
+ } | {
2158
+ type: "fontFamily";
2159
+ value: string[];
2160
+ } | {
2161
+ type: "rgb";
2162
+ alpha: number;
2163
+ r: number;
2164
+ g: number;
2165
+ b: number;
2166
+ } | {
2167
+ hidden?: boolean | undefined;
2168
+ type: "image";
2169
+ value: {
2170
+ type: "asset";
2171
+ value: string;
2172
+ } | {
2173
+ type: "url";
2174
+ url: string;
2175
+ };
2176
+ } | {
2177
+ type: "tuple";
2178
+ value: ({
2179
+ type: "unit";
2180
+ value: number;
2181
+ 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";
2182
+ } | {
2183
+ type: "keyword";
2184
+ value: string;
2185
+ } | {
2186
+ hidden?: boolean | undefined;
2187
+ type: "unparsed";
2188
+ value: string;
2189
+ })[];
2190
+ } | {
2191
+ type: "layers";
2192
+ value: ({
2193
+ type: "unit";
2194
+ value: number;
2195
+ 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";
2196
+ } | {
2197
+ type: "keyword";
2198
+ value: string;
2199
+ } | {
2200
+ hidden?: boolean | undefined;
2201
+ type: "unparsed";
2202
+ value: string;
2203
+ } | {
2204
+ hidden?: boolean | undefined;
2205
+ type: "image";
2206
+ value: {
2207
+ type: "asset";
2208
+ value: string;
2209
+ } | {
2210
+ type: "url";
2211
+ url: string;
2212
+ };
2213
+ } | {
2214
+ type: "invalid";
2215
+ value: string;
2216
+ } | {
2217
+ type: "tuple";
2218
+ value: ({
2219
+ type: "unit";
2220
+ value: number;
2221
+ 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";
2222
+ } | {
2223
+ type: "keyword";
2224
+ value: string;
2225
+ } | {
2226
+ hidden?: boolean | undefined;
2227
+ type: "unparsed";
2228
+ value: string;
2229
+ })[];
2230
+ })[];
2231
+ })[];
2232
+ };
2233
+ property: "filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | "right" | `--${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" | "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";
2234
+ }> | undefined;
643
2235
  type: "embed" | "control" | "container" | "rich-text" | "rich-text-child";
644
2236
  label: string;
645
- Icon: (...args: unknown[]) => unknown;
2237
+ icon: string;
646
2238
  }, {
647
2239
  children?: ({
648
2240
  type: "text";
@@ -655,13 +2247,196 @@ declare const WsComponentMeta: z.ZodObject<{
655
2247
  }[] | undefined;
656
2248
  category?: "media" | "general" | "typography" | "forms" | undefined;
657
2249
  acceptedParents?: string[] | undefined;
658
- presetStyle?: any;
2250
+ presetStyle?: Record<string, {
2251
+ state?: string | undefined;
2252
+ value: {
2253
+ type: "unit";
2254
+ value: number;
2255
+ 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";
2256
+ } | {
2257
+ type: "keyword";
2258
+ value: string;
2259
+ } | {
2260
+ hidden?: boolean | undefined;
2261
+ type: "unparsed";
2262
+ value: string;
2263
+ } | {
2264
+ type: "fontFamily";
2265
+ value: string[];
2266
+ } | {
2267
+ type: "rgb";
2268
+ alpha: number;
2269
+ r: number;
2270
+ g: number;
2271
+ b: number;
2272
+ } | {
2273
+ hidden?: boolean | undefined;
2274
+ type: "image";
2275
+ value: {
2276
+ type: "asset";
2277
+ value: string;
2278
+ } | {
2279
+ type: "url";
2280
+ url: string;
2281
+ };
2282
+ } | {
2283
+ type: "invalid";
2284
+ value: string;
2285
+ } | {
2286
+ type: "unset";
2287
+ value: "";
2288
+ } | {
2289
+ type: "tuple";
2290
+ value: ({
2291
+ type: "unit";
2292
+ value: number;
2293
+ 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";
2294
+ } | {
2295
+ type: "keyword";
2296
+ value: string;
2297
+ } | {
2298
+ hidden?: boolean | undefined;
2299
+ type: "unparsed";
2300
+ value: string;
2301
+ })[];
2302
+ } | {
2303
+ type: "layers";
2304
+ value: ({
2305
+ type: "unit";
2306
+ value: number;
2307
+ 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";
2308
+ } | {
2309
+ type: "keyword";
2310
+ value: string;
2311
+ } | {
2312
+ hidden?: boolean | undefined;
2313
+ type: "unparsed";
2314
+ value: string;
2315
+ } | {
2316
+ hidden?: boolean | undefined;
2317
+ type: "image";
2318
+ value: {
2319
+ type: "asset";
2320
+ value: string;
2321
+ } | {
2322
+ type: "url";
2323
+ url: string;
2324
+ };
2325
+ } | {
2326
+ type: "invalid";
2327
+ value: string;
2328
+ } | {
2329
+ type: "tuple";
2330
+ value: ({
2331
+ type: "unit";
2332
+ value: number;
2333
+ 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";
2334
+ } | {
2335
+ type: "keyword";
2336
+ value: string;
2337
+ } | {
2338
+ hidden?: boolean | undefined;
2339
+ type: "unparsed";
2340
+ value: string;
2341
+ })[];
2342
+ })[];
2343
+ } | {
2344
+ type: "var";
2345
+ value: string;
2346
+ fallbacks: ({
2347
+ type: "unit";
2348
+ value: number;
2349
+ 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";
2350
+ } | {
2351
+ type: "keyword";
2352
+ value: string;
2353
+ } | {
2354
+ hidden?: boolean | undefined;
2355
+ type: "unparsed";
2356
+ value: string;
2357
+ } | {
2358
+ type: "fontFamily";
2359
+ value: string[];
2360
+ } | {
2361
+ type: "rgb";
2362
+ alpha: number;
2363
+ r: number;
2364
+ g: number;
2365
+ b: number;
2366
+ } | {
2367
+ hidden?: boolean | undefined;
2368
+ type: "image";
2369
+ value: {
2370
+ type: "asset";
2371
+ value: string;
2372
+ } | {
2373
+ type: "url";
2374
+ url: string;
2375
+ };
2376
+ } | {
2377
+ type: "tuple";
2378
+ value: ({
2379
+ type: "unit";
2380
+ value: number;
2381
+ 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";
2382
+ } | {
2383
+ type: "keyword";
2384
+ value: string;
2385
+ } | {
2386
+ hidden?: boolean | undefined;
2387
+ type: "unparsed";
2388
+ value: string;
2389
+ })[];
2390
+ } | {
2391
+ type: "layers";
2392
+ value: ({
2393
+ type: "unit";
2394
+ value: number;
2395
+ 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";
2396
+ } | {
2397
+ type: "keyword";
2398
+ value: string;
2399
+ } | {
2400
+ hidden?: boolean | undefined;
2401
+ type: "unparsed";
2402
+ value: string;
2403
+ } | {
2404
+ hidden?: boolean | undefined;
2405
+ type: "image";
2406
+ value: {
2407
+ type: "asset";
2408
+ value: string;
2409
+ } | {
2410
+ type: "url";
2411
+ url: string;
2412
+ };
2413
+ } | {
2414
+ type: "invalid";
2415
+ value: string;
2416
+ } | {
2417
+ type: "tuple";
2418
+ value: ({
2419
+ type: "unit";
2420
+ value: number;
2421
+ 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";
2422
+ } | {
2423
+ type: "keyword";
2424
+ value: string;
2425
+ } | {
2426
+ hidden?: boolean | undefined;
2427
+ type: "unparsed";
2428
+ value: string;
2429
+ })[];
2430
+ })[];
2431
+ })[];
2432
+ };
2433
+ property: "filter" | "float" | "fontFamily" | "width" | "height" | "clip" | "top" | "right" | `--${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" | "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";
2434
+ }> | undefined;
659
2435
  type: "embed" | "control" | "container" | "rich-text" | "rich-text-child";
660
2436
  label: string;
661
- Icon: (...args: unknown[]) => unknown;
2437
+ icon: string;
662
2438
  }>;
663
- export type WsComponentMeta = Omit<z.infer<typeof WsComponentMeta>, "presetStyle" | "Icon"> & {
2439
+ export type WsComponentMeta = Omit<z.infer<typeof WsComponentMeta>, "presetStyle"> & {
664
2440
  presetStyle?: PresetStyle;
665
- Icon: FunctionComponent<IconProps>;
666
2441
  };
667
2442
  export {};