@webstudio-is/react-sdk 0.67.0 → 0.69.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 (184) hide show
  1. package/lib/cjs/components/__generated__/image.props.js +6 -3
  2. package/lib/cjs/components/__generated__/text-block.props.js +7 -0
  3. package/lib/cjs/components/blockquote.ws.js +9 -2
  4. package/lib/cjs/components/box.ws.js +2 -1
  5. package/lib/cjs/components/button.ws.js +3 -1
  6. package/lib/cjs/components/checkbox-field.ws.js +12 -6
  7. package/lib/cjs/components/checkbox.ws.js +1 -0
  8. package/lib/cjs/components/code-text.ws.js +8 -1
  9. package/lib/cjs/components/component-meta.js +6 -3
  10. package/lib/cjs/components/components-utils.js +0 -28
  11. package/lib/cjs/components/form.ws.js +32 -25
  12. package/lib/cjs/components/fragment.ws.js +2 -1
  13. package/lib/cjs/components/heading.ws.js +10 -3
  14. package/lib/cjs/components/html-embed.ws.js +3 -1
  15. package/lib/cjs/components/image.js +27 -19
  16. package/lib/cjs/components/image.ws.js +4 -2
  17. package/lib/cjs/components/index.js +1 -29
  18. package/lib/cjs/components/input.ws.js +1 -0
  19. package/lib/cjs/components/label.ws.js +8 -1
  20. package/lib/cjs/components/link-block.ws.js +2 -1
  21. package/lib/cjs/components/link.ws.js +8 -1
  22. package/lib/cjs/components/list-item.ws.js +11 -4
  23. package/lib/cjs/components/list.ws.js +2 -2
  24. package/lib/cjs/components/paragraph.ws.js +10 -3
  25. package/lib/cjs/components/radio-button-field.ws.js +12 -6
  26. package/lib/cjs/components/radio-button.ws.js +1 -0
  27. package/lib/cjs/components/rich-text-link.ws.js +1 -1
  28. package/lib/cjs/components/separator.ws.js +1 -1
  29. package/lib/cjs/components/slot.ws.js +3 -1
  30. package/lib/cjs/components/text-block.js +5 -2
  31. package/lib/cjs/components/text-block.ws.js +11 -3
  32. package/lib/cjs/components/textarea.ws.js +1 -0
  33. package/lib/cjs/embed-template.js +2 -1
  34. package/lib/cjs/index.js +4 -5
  35. package/lib/cjs/tree/create-elements-tree.js +8 -8
  36. package/lib/cjs/tree/root.js +2 -6
  37. package/lib/cjs/tree/webstudio-component.js +2 -2
  38. package/lib/components/__generated__/image.props.js +6 -3
  39. package/lib/components/__generated__/text-block.props.js +7 -0
  40. package/lib/components/blockquote.ws.js +9 -2
  41. package/lib/components/box.ws.js +2 -1
  42. package/lib/components/button.ws.js +3 -1
  43. package/lib/components/checkbox-field.ws.js +12 -6
  44. package/lib/components/checkbox.ws.js +1 -0
  45. package/lib/components/code-text.ws.js +8 -1
  46. package/lib/components/component-meta.js +6 -3
  47. package/lib/components/components-utils.js +0 -14
  48. package/lib/components/form.ws.js +32 -25
  49. package/lib/components/fragment.ws.js +2 -1
  50. package/lib/components/heading.ws.js +10 -3
  51. package/lib/components/html-embed.ws.js +3 -1
  52. package/lib/components/image.js +34 -20
  53. package/lib/components/image.ws.js +4 -2
  54. package/lib/components/index.js +1 -29
  55. package/lib/components/input.ws.js +1 -0
  56. package/lib/components/label.ws.js +8 -1
  57. package/lib/components/link-block.ws.js +2 -1
  58. package/lib/components/link.ws.js +8 -1
  59. package/lib/components/list-item.ws.js +11 -4
  60. package/lib/components/list.ws.js +2 -2
  61. package/lib/components/paragraph.ws.js +10 -3
  62. package/lib/components/radio-button-field.ws.js +12 -6
  63. package/lib/components/radio-button.ws.js +1 -0
  64. package/lib/components/rich-text-link.ws.js +1 -1
  65. package/lib/components/separator.ws.js +1 -1
  66. package/lib/components/slot.ws.js +3 -1
  67. package/lib/components/text-block.js +9 -3
  68. package/lib/components/text-block.ws.js +11 -3
  69. package/lib/components/textarea.ws.js +1 -0
  70. package/lib/embed-template.js +2 -1
  71. package/lib/index.js +4 -9
  72. package/lib/tree/create-elements-tree.js +8 -8
  73. package/lib/tree/root.js +2 -6
  74. package/lib/tree/webstudio-component.js +2 -2
  75. package/lib/types/components/component-meta.d.ts +363 -1356
  76. package/lib/types/components/components-utils.d.ts +2 -17
  77. package/lib/types/components/image.d.ts +5 -1
  78. package/lib/types/components/image.stories.d.ts +10 -2
  79. package/lib/types/components/index.d.ts +0 -15
  80. package/lib/types/components/text-block.d.ts +6 -2
  81. package/lib/types/components/text-block.stories.d.ts +6 -2
  82. package/lib/types/css/css.d.ts +14 -4
  83. package/lib/types/css/global-rules.d.ts +14 -4
  84. package/lib/types/css/normalize.d.ts +611 -611
  85. package/lib/types/css/style-rules.d.ts +2 -187
  86. package/lib/types/embed-template.d.ts +543 -167
  87. package/lib/types/index.d.ts +2 -2
  88. package/lib/types/props.d.ts +44 -18
  89. package/lib/types/tree/create-elements-tree.d.ts +4 -4
  90. package/lib/types/tree/root.d.ts +3 -5
  91. package/lib/types/tree/webstudio-component.d.ts +3 -3
  92. package/package.json +25 -14
  93. package/src/components/__generated__/image.props.ts +5 -2
  94. package/src/components/__generated__/text-block.props.ts +7 -0
  95. package/src/components/blockquote.ws.tsx +9 -2
  96. package/src/components/box.tsx +1 -1
  97. package/src/components/box.ws.ts +1 -0
  98. package/src/components/button.ws.tsx +2 -0
  99. package/src/components/checkbox-field.ws.tsx +12 -6
  100. package/src/components/checkbox.ws.tsx +1 -0
  101. package/src/components/code-text.ws.tsx +8 -1
  102. package/src/components/component-meta.ts +6 -3
  103. package/src/components/components-utils.ts +2 -31
  104. package/src/components/form.ws.tsx +32 -25
  105. package/src/components/fragment.ws.ts +1 -0
  106. package/src/components/heading.tsx +1 -1
  107. package/src/components/heading.ws.tsx +9 -2
  108. package/src/components/html-embed.ws.ts +2 -0
  109. package/src/components/image.tsx +54 -26
  110. package/src/components/image.ws.tsx +5 -1
  111. package/src/components/index.ts +0 -48
  112. package/src/components/input.ws.tsx +1 -0
  113. package/src/components/label.ws.tsx +8 -1
  114. package/src/components/link-block.ws.tsx +1 -0
  115. package/src/components/link.ws.tsx +8 -1
  116. package/src/components/list-item.ws.tsx +10 -3
  117. package/src/components/list.ws.tsx +2 -2
  118. package/src/components/paragraph.ws.tsx +9 -2
  119. package/src/components/radio-button-field.ws.tsx +12 -6
  120. package/src/components/radio-button.ws.tsx +1 -0
  121. package/src/components/rich-text-link.ws.tsx +1 -1
  122. package/src/components/separator.ws.tsx +1 -1
  123. package/src/components/slot.ws.ts +2 -0
  124. package/src/components/text-block.tsx +16 -5
  125. package/src/components/text-block.ws.tsx +10 -2
  126. package/src/components/textarea.ws.tsx +1 -0
  127. package/src/embed-template.ts +11 -3
  128. package/src/index.ts +2 -5
  129. package/src/props.test.ts +0 -1
  130. package/src/tree/create-elements-tree.tsx +12 -12
  131. package/src/tree/root.ts +4 -9
  132. package/src/tree/webstudio-component.tsx +4 -4
  133. package/lib/app/custom-components/__generated__/form.props.js +0 -411
  134. package/lib/app/custom-components/__generated__/image.props.js +0 -442
  135. package/lib/app/custom-components/__generated__/link-block.props.js +0 -432
  136. package/lib/app/custom-components/__generated__/link.props.js +0 -432
  137. package/lib/app/custom-components/__generated__/rich-text-link.props.js +0 -432
  138. package/lib/app/custom-components/form.js +0 -65
  139. package/lib/app/custom-components/form.ws.js +0 -81
  140. package/lib/app/custom-components/image.js +0 -40
  141. package/lib/app/custom-components/index.js +0 -29
  142. package/lib/app/custom-components/link-block.js +0 -6
  143. package/lib/app/custom-components/link.js +0 -6
  144. package/lib/app/custom-components/rich-text-link.js +0 -6
  145. package/lib/app/custom-components/shared/remix-link.js +0 -22
  146. package/lib/cjs/app/custom-components/__generated__/form.props.js +0 -431
  147. package/lib/cjs/app/custom-components/__generated__/image.props.js +0 -462
  148. package/lib/cjs/app/custom-components/__generated__/link-block.props.js +0 -452
  149. package/lib/cjs/app/custom-components/__generated__/link.props.js +0 -452
  150. package/lib/cjs/app/custom-components/__generated__/rich-text-link.props.js +0 -452
  151. package/lib/cjs/app/custom-components/form.js +0 -81
  152. package/lib/cjs/app/custom-components/form.ws.js +0 -101
  153. package/lib/cjs/app/custom-components/image.js +0 -54
  154. package/lib/cjs/app/custom-components/index.js +0 -49
  155. package/lib/cjs/app/custom-components/link-block.js +0 -26
  156. package/lib/cjs/app/custom-components/link.js +0 -26
  157. package/lib/cjs/app/custom-components/rich-text-link.js +0 -26
  158. package/lib/cjs/app/custom-components/shared/remix-link.js +0 -42
  159. package/lib/types/app/custom-components/__generated__/form.props.d.ts +0 -2
  160. package/lib/types/app/custom-components/__generated__/image.props.d.ts +0 -2
  161. package/lib/types/app/custom-components/__generated__/link-block.props.d.ts +0 -2
  162. package/lib/types/app/custom-components/__generated__/link.props.d.ts +0 -2
  163. package/lib/types/app/custom-components/__generated__/rich-text-link.props.d.ts +0 -2
  164. package/lib/types/app/custom-components/form.d.ts +0 -5
  165. package/lib/types/app/custom-components/form.ws.d.ts +0 -3
  166. package/lib/types/app/custom-components/image.d.ts +0 -6
  167. package/lib/types/app/custom-components/index.d.ts +0 -31
  168. package/lib/types/app/custom-components/link-block.d.ts +0 -6
  169. package/lib/types/app/custom-components/link.d.ts +0 -6
  170. package/lib/types/app/custom-components/rich-text-link.d.ts +0 -6
  171. package/lib/types/app/custom-components/shared/remix-link.d.ts +0 -10
  172. package/src/app/custom-components/__generated__/form.props.ts +0 -456
  173. package/src/app/custom-components/__generated__/image.props.ts +0 -487
  174. package/src/app/custom-components/__generated__/link-block.props.ts +0 -477
  175. package/src/app/custom-components/__generated__/link.props.ts +0 -477
  176. package/src/app/custom-components/__generated__/rich-text-link.props.ts +0 -477
  177. package/src/app/custom-components/form.tsx +0 -111
  178. package/src/app/custom-components/form.ws.tsx +0 -86
  179. package/src/app/custom-components/image.tsx +0 -55
  180. package/src/app/custom-components/index.ts +0 -28
  181. package/src/app/custom-components/link-block.tsx +0 -4
  182. package/src/app/custom-components/link.tsx +0 -4
  183. package/src/app/custom-components/rich-text-link.tsx +0 -4
  184. package/src/app/custom-components/shared/remix-link.tsx +0 -28
@@ -1,5 +1,7 @@
1
1
  import { z } from "zod";
2
2
  import { Breakpoint } from "@webstudio-is/project-build";
3
+ import { type StyleProperty } from "@webstudio-is/css-data";
4
+ import type { Simplify } from "type-fest";
3
5
  declare const EmbedTemplateText: z.ZodObject<{
4
6
  type: z.ZodLiteral<"text">;
5
7
  value: z.ZodString;
@@ -61,9 +63,9 @@ declare const EmbedTemplateProp: z.ZodUnion<[z.ZodObject<{
61
63
  value: string[];
62
64
  }>]>;
63
65
  type EmbedTemplateProp = z.infer<typeof EmbedTemplateProp>;
64
- export declare const EmbedTemplateStyleDecl: z.ZodObject<{
66
+ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
65
67
  state: z.ZodOptional<z.ZodString>;
66
- 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">;
68
+ property: z.ZodString;
67
69
  value: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
68
70
  type: z.ZodLiteral<"image">;
69
71
  value: z.ZodUnion<[z.ZodObject<{
@@ -87,7 +89,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
87
89
  }>]>;
88
90
  hidden: z.ZodOptional<z.ZodBoolean>;
89
91
  }, "strip", z.ZodTypeAny, {
90
- hidden?: boolean | undefined;
91
92
  type: "image";
92
93
  value: {
93
94
  type: "asset";
@@ -96,8 +97,8 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
96
97
  type: "url";
97
98
  url: string;
98
99
  };
99
- }, {
100
100
  hidden?: boolean | undefined;
101
+ }, {
101
102
  type: "image";
102
103
  value: {
103
104
  type: "asset";
@@ -106,6 +107,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
106
107
  type: "url";
107
108
  url: string;
108
109
  };
110
+ hidden?: boolean | undefined;
109
111
  }>, z.ZodObject<{
110
112
  type: z.ZodLiteral<"layers">;
111
113
  value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -134,13 +136,13 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
134
136
  value: z.ZodString;
135
137
  hidden: z.ZodOptional<z.ZodBoolean>;
136
138
  }, "strip", z.ZodTypeAny, {
137
- hidden?: boolean | undefined;
138
139
  type: "unparsed";
139
140
  value: string;
140
- }, {
141
141
  hidden?: boolean | undefined;
142
+ }, {
142
143
  type: "unparsed";
143
144
  value: string;
145
+ hidden?: boolean | undefined;
144
146
  }>, z.ZodObject<{
145
147
  type: z.ZodLiteral<"image">;
146
148
  value: z.ZodUnion<[z.ZodObject<{
@@ -164,7 +166,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
164
166
  }>]>;
165
167
  hidden: z.ZodOptional<z.ZodBoolean>;
166
168
  }, "strip", z.ZodTypeAny, {
167
- hidden?: boolean | undefined;
168
169
  type: "image";
169
170
  value: {
170
171
  type: "asset";
@@ -173,8 +174,8 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
173
174
  type: "url";
174
175
  url: string;
175
176
  };
176
- }, {
177
177
  hidden?: boolean | undefined;
178
+ }, {
178
179
  type: "image";
179
180
  value: {
180
181
  type: "asset";
@@ -183,6 +184,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
183
184
  type: "url";
184
185
  url: string;
185
186
  };
187
+ hidden?: boolean | undefined;
186
188
  }>, z.ZodObject<{
187
189
  type: z.ZodLiteral<"tuple">;
188
190
  value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -211,13 +213,13 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
211
213
  value: z.ZodString;
212
214
  hidden: z.ZodOptional<z.ZodBoolean>;
213
215
  }, "strip", z.ZodTypeAny, {
214
- hidden?: boolean | undefined;
215
216
  type: "unparsed";
216
217
  value: string;
217
- }, {
218
218
  hidden?: boolean | undefined;
219
+ }, {
219
220
  type: "unparsed";
220
221
  value: string;
222
+ hidden?: boolean | undefined;
221
223
  }>]>, "many">;
222
224
  }, "strip", z.ZodTypeAny, {
223
225
  type: "tuple";
@@ -229,9 +231,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
229
231
  type: "keyword";
230
232
  value: string;
231
233
  } | {
232
- hidden?: boolean | undefined;
233
234
  type: "unparsed";
234
235
  value: string;
236
+ hidden?: boolean | undefined;
235
237
  })[];
236
238
  }, {
237
239
  type: "tuple";
@@ -243,9 +245,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
243
245
  type: "keyword";
244
246
  value: string;
245
247
  } | {
246
- hidden?: boolean | undefined;
247
248
  type: "unparsed";
248
249
  value: string;
250
+ hidden?: boolean | undefined;
249
251
  })[];
250
252
  }>, z.ZodObject<{
251
253
  type: z.ZodLiteral<"invalid">;
@@ -267,11 +269,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
267
269
  type: "keyword";
268
270
  value: string;
269
271
  } | {
270
- hidden?: boolean | undefined;
271
272
  type: "unparsed";
272
273
  value: string;
273
- } | {
274
274
  hidden?: boolean | undefined;
275
+ } | {
275
276
  type: "image";
276
277
  value: {
277
278
  type: "asset";
@@ -280,6 +281,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
280
281
  type: "url";
281
282
  url: string;
282
283
  };
284
+ hidden?: boolean | undefined;
283
285
  } | {
284
286
  type: "invalid";
285
287
  value: string;
@@ -293,9 +295,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
293
295
  type: "keyword";
294
296
  value: string;
295
297
  } | {
296
- hidden?: boolean | undefined;
297
298
  type: "unparsed";
298
299
  value: string;
300
+ hidden?: boolean | undefined;
299
301
  })[];
300
302
  })[];
301
303
  }, {
@@ -308,11 +310,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
308
310
  type: "keyword";
309
311
  value: string;
310
312
  } | {
311
- hidden?: boolean | undefined;
312
313
  type: "unparsed";
313
314
  value: string;
314
- } | {
315
315
  hidden?: boolean | undefined;
316
+ } | {
316
317
  type: "image";
317
318
  value: {
318
319
  type: "asset";
@@ -321,6 +322,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
321
322
  type: "url";
322
323
  url: string;
323
324
  };
325
+ hidden?: boolean | undefined;
324
326
  } | {
325
327
  type: "invalid";
326
328
  value: string;
@@ -334,9 +336,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
334
336
  type: "keyword";
335
337
  value: string;
336
338
  } | {
337
- hidden?: boolean | undefined;
338
339
  type: "unparsed";
339
340
  value: string;
341
+ hidden?: boolean | undefined;
340
342
  })[];
341
343
  })[];
342
344
  }>, z.ZodObject<{
@@ -392,13 +394,13 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
392
394
  value: z.ZodString;
393
395
  hidden: z.ZodOptional<z.ZodBoolean>;
394
396
  }, "strip", z.ZodTypeAny, {
395
- hidden?: boolean | undefined;
396
397
  type: "unparsed";
397
398
  value: string;
398
- }, {
399
399
  hidden?: boolean | undefined;
400
+ }, {
400
401
  type: "unparsed";
401
402
  value: string;
403
+ hidden?: boolean | undefined;
402
404
  }>, z.ZodObject<{
403
405
  type: z.ZodLiteral<"tuple">;
404
406
  value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -427,13 +429,13 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
427
429
  value: z.ZodString;
428
430
  hidden: z.ZodOptional<z.ZodBoolean>;
429
431
  }, "strip", z.ZodTypeAny, {
430
- hidden?: boolean | undefined;
431
432
  type: "unparsed";
432
433
  value: string;
433
- }, {
434
434
  hidden?: boolean | undefined;
435
+ }, {
435
436
  type: "unparsed";
436
437
  value: string;
438
+ hidden?: boolean | undefined;
437
439
  }>]>, "many">;
438
440
  }, "strip", z.ZodTypeAny, {
439
441
  type: "tuple";
@@ -445,9 +447,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
445
447
  type: "keyword";
446
448
  value: string;
447
449
  } | {
448
- hidden?: boolean | undefined;
449
450
  type: "unparsed";
450
451
  value: string;
452
+ hidden?: boolean | undefined;
451
453
  })[];
452
454
  }, {
453
455
  type: "tuple";
@@ -459,9 +461,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
459
461
  type: "keyword";
460
462
  value: string;
461
463
  } | {
462
- hidden?: boolean | undefined;
463
464
  type: "unparsed";
464
465
  value: string;
466
+ hidden?: boolean | undefined;
465
467
  })[];
466
468
  }>]>, z.ZodObject<{
467
469
  type: z.ZodLiteral<"invalid">;
@@ -507,7 +509,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
507
509
  }>]>;
508
510
  hidden: z.ZodOptional<z.ZodBoolean>;
509
511
  }, "strip", z.ZodTypeAny, {
510
- hidden?: boolean | undefined;
511
512
  type: "image";
512
513
  value: {
513
514
  type: "asset";
@@ -516,8 +517,8 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
516
517
  type: "url";
517
518
  url: string;
518
519
  };
519
- }, {
520
520
  hidden?: boolean | undefined;
521
+ }, {
521
522
  type: "image";
522
523
  value: {
523
524
  type: "asset";
@@ -526,6 +527,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
526
527
  type: "url";
527
528
  url: string;
528
529
  };
530
+ hidden?: boolean | undefined;
529
531
  }>, z.ZodObject<{
530
532
  type: z.ZodLiteral<"layers">;
531
533
  value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -554,13 +556,13 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
554
556
  value: z.ZodString;
555
557
  hidden: z.ZodOptional<z.ZodBoolean>;
556
558
  }, "strip", z.ZodTypeAny, {
557
- hidden?: boolean | undefined;
558
559
  type: "unparsed";
559
560
  value: string;
560
- }, {
561
561
  hidden?: boolean | undefined;
562
+ }, {
562
563
  type: "unparsed";
563
564
  value: string;
565
+ hidden?: boolean | undefined;
564
566
  }>, z.ZodObject<{
565
567
  type: z.ZodLiteral<"image">;
566
568
  value: z.ZodUnion<[z.ZodObject<{
@@ -584,7 +586,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
584
586
  }>]>;
585
587
  hidden: z.ZodOptional<z.ZodBoolean>;
586
588
  }, "strip", z.ZodTypeAny, {
587
- hidden?: boolean | undefined;
588
589
  type: "image";
589
590
  value: {
590
591
  type: "asset";
@@ -593,8 +594,8 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
593
594
  type: "url";
594
595
  url: string;
595
596
  };
596
- }, {
597
597
  hidden?: boolean | undefined;
598
+ }, {
598
599
  type: "image";
599
600
  value: {
600
601
  type: "asset";
@@ -603,6 +604,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
603
604
  type: "url";
604
605
  url: string;
605
606
  };
607
+ hidden?: boolean | undefined;
606
608
  }>, z.ZodObject<{
607
609
  type: z.ZodLiteral<"tuple">;
608
610
  value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -631,13 +633,13 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
631
633
  value: z.ZodString;
632
634
  hidden: z.ZodOptional<z.ZodBoolean>;
633
635
  }, "strip", z.ZodTypeAny, {
634
- hidden?: boolean | undefined;
635
636
  type: "unparsed";
636
637
  value: string;
637
- }, {
638
638
  hidden?: boolean | undefined;
639
+ }, {
639
640
  type: "unparsed";
640
641
  value: string;
642
+ hidden?: boolean | undefined;
641
643
  }>]>, "many">;
642
644
  }, "strip", z.ZodTypeAny, {
643
645
  type: "tuple";
@@ -649,9 +651,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
649
651
  type: "keyword";
650
652
  value: string;
651
653
  } | {
652
- hidden?: boolean | undefined;
653
654
  type: "unparsed";
654
655
  value: string;
656
+ hidden?: boolean | undefined;
655
657
  })[];
656
658
  }, {
657
659
  type: "tuple";
@@ -663,9 +665,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
663
665
  type: "keyword";
664
666
  value: string;
665
667
  } | {
666
- hidden?: boolean | undefined;
667
668
  type: "unparsed";
668
669
  value: string;
670
+ hidden?: boolean | undefined;
669
671
  })[];
670
672
  }>, z.ZodObject<{
671
673
  type: z.ZodLiteral<"invalid">;
@@ -687,11 +689,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
687
689
  type: "keyword";
688
690
  value: string;
689
691
  } | {
690
- hidden?: boolean | undefined;
691
692
  type: "unparsed";
692
693
  value: string;
693
- } | {
694
694
  hidden?: boolean | undefined;
695
+ } | {
695
696
  type: "image";
696
697
  value: {
697
698
  type: "asset";
@@ -700,6 +701,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
700
701
  type: "url";
701
702
  url: string;
702
703
  };
704
+ hidden?: boolean | undefined;
703
705
  } | {
704
706
  type: "invalid";
705
707
  value: string;
@@ -713,9 +715,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
713
715
  type: "keyword";
714
716
  value: string;
715
717
  } | {
716
- hidden?: boolean | undefined;
717
718
  type: "unparsed";
718
719
  value: string;
720
+ hidden?: boolean | undefined;
719
721
  })[];
720
722
  })[];
721
723
  }, {
@@ -728,11 +730,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
728
730
  type: "keyword";
729
731
  value: string;
730
732
  } | {
731
- hidden?: boolean | undefined;
732
733
  type: "unparsed";
733
734
  value: string;
734
- } | {
735
735
  hidden?: boolean | undefined;
736
+ } | {
736
737
  type: "image";
737
738
  value: {
738
739
  type: "asset";
@@ -741,6 +742,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
741
742
  type: "url";
742
743
  url: string;
743
744
  };
745
+ hidden?: boolean | undefined;
744
746
  } | {
745
747
  type: "invalid";
746
748
  value: string;
@@ -754,9 +756,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
754
756
  type: "keyword";
755
757
  value: string;
756
758
  } | {
757
- hidden?: boolean | undefined;
758
759
  type: "unparsed";
759
760
  value: string;
761
+ hidden?: boolean | undefined;
760
762
  })[];
761
763
  })[];
762
764
  }>, z.ZodObject<{
@@ -812,13 +814,13 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
812
814
  value: z.ZodString;
813
815
  hidden: z.ZodOptional<z.ZodBoolean>;
814
816
  }, "strip", z.ZodTypeAny, {
815
- hidden?: boolean | undefined;
816
817
  type: "unparsed";
817
818
  value: string;
818
- }, {
819
819
  hidden?: boolean | undefined;
820
+ }, {
820
821
  type: "unparsed";
821
822
  value: string;
823
+ hidden?: boolean | undefined;
822
824
  }>, z.ZodObject<{
823
825
  type: z.ZodLiteral<"tuple">;
824
826
  value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -847,13 +849,13 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
847
849
  value: z.ZodString;
848
850
  hidden: z.ZodOptional<z.ZodBoolean>;
849
851
  }, "strip", z.ZodTypeAny, {
850
- hidden?: boolean | undefined;
851
852
  type: "unparsed";
852
853
  value: string;
853
- }, {
854
854
  hidden?: boolean | undefined;
855
+ }, {
855
856
  type: "unparsed";
856
857
  value: string;
858
+ hidden?: boolean | undefined;
857
859
  }>]>, "many">;
858
860
  }, "strip", z.ZodTypeAny, {
859
861
  type: "tuple";
@@ -865,9 +867,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
865
867
  type: "keyword";
866
868
  value: string;
867
869
  } | {
868
- hidden?: boolean | undefined;
869
870
  type: "unparsed";
870
871
  value: string;
872
+ hidden?: boolean | undefined;
871
873
  })[];
872
874
  }, {
873
875
  type: "tuple";
@@ -879,9 +881,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
879
881
  type: "keyword";
880
882
  value: string;
881
883
  } | {
882
- hidden?: boolean | undefined;
883
884
  type: "unparsed";
884
885
  value: string;
886
+ hidden?: boolean | undefined;
885
887
  })[];
886
888
  }>]>, "many">;
887
889
  }, "strip", z.ZodTypeAny, {
@@ -895,9 +897,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
895
897
  type: "keyword";
896
898
  value: string;
897
899
  } | {
898
- hidden?: boolean | undefined;
899
900
  type: "unparsed";
900
901
  value: string;
902
+ hidden?: boolean | undefined;
901
903
  } | {
902
904
  type: "fontFamily";
903
905
  value: string[];
@@ -908,7 +910,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
908
910
  g: number;
909
911
  b: number;
910
912
  } | {
911
- hidden?: boolean | undefined;
912
913
  type: "image";
913
914
  value: {
914
915
  type: "asset";
@@ -917,6 +918,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
917
918
  type: "url";
918
919
  url: string;
919
920
  };
921
+ hidden?: boolean | undefined;
920
922
  } | {
921
923
  type: "tuple";
922
924
  value: ({
@@ -927,9 +929,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
927
929
  type: "keyword";
928
930
  value: string;
929
931
  } | {
930
- hidden?: boolean | undefined;
931
932
  type: "unparsed";
932
933
  value: string;
934
+ hidden?: boolean | undefined;
933
935
  })[];
934
936
  } | {
935
937
  type: "layers";
@@ -941,11 +943,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
941
943
  type: "keyword";
942
944
  value: string;
943
945
  } | {
944
- hidden?: boolean | undefined;
945
946
  type: "unparsed";
946
947
  value: string;
947
- } | {
948
948
  hidden?: boolean | undefined;
949
+ } | {
949
950
  type: "image";
950
951
  value: {
951
952
  type: "asset";
@@ -954,6 +955,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
954
955
  type: "url";
955
956
  url: string;
956
957
  };
958
+ hidden?: boolean | undefined;
957
959
  } | {
958
960
  type: "invalid";
959
961
  value: string;
@@ -967,9 +969,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
967
969
  type: "keyword";
968
970
  value: string;
969
971
  } | {
970
- hidden?: boolean | undefined;
971
972
  type: "unparsed";
972
973
  value: string;
974
+ hidden?: boolean | undefined;
973
975
  })[];
974
976
  })[];
975
977
  })[];
@@ -984,9 +986,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
984
986
  type: "keyword";
985
987
  value: string;
986
988
  } | {
987
- hidden?: boolean | undefined;
988
989
  type: "unparsed";
989
990
  value: string;
991
+ hidden?: boolean | undefined;
990
992
  } | {
991
993
  type: "fontFamily";
992
994
  value: string[];
@@ -997,7 +999,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
997
999
  g: number;
998
1000
  b: number;
999
1001
  } | {
1000
- hidden?: boolean | undefined;
1001
1002
  type: "image";
1002
1003
  value: {
1003
1004
  type: "asset";
@@ -1006,6 +1007,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1006
1007
  type: "url";
1007
1008
  url: string;
1008
1009
  };
1010
+ hidden?: boolean | undefined;
1009
1011
  } | {
1010
1012
  type: "tuple";
1011
1013
  value: ({
@@ -1016,9 +1018,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1016
1018
  type: "keyword";
1017
1019
  value: string;
1018
1020
  } | {
1019
- hidden?: boolean | undefined;
1020
1021
  type: "unparsed";
1021
1022
  value: string;
1023
+ hidden?: boolean | undefined;
1022
1024
  })[];
1023
1025
  } | {
1024
1026
  type: "layers";
@@ -1030,11 +1032,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1030
1032
  type: "keyword";
1031
1033
  value: string;
1032
1034
  } | {
1033
- hidden?: boolean | undefined;
1034
1035
  type: "unparsed";
1035
1036
  value: string;
1036
- } | {
1037
1037
  hidden?: boolean | undefined;
1038
+ } | {
1038
1039
  type: "image";
1039
1040
  value: {
1040
1041
  type: "asset";
@@ -1043,6 +1044,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1043
1044
  type: "url";
1044
1045
  url: string;
1045
1046
  };
1047
+ hidden?: boolean | undefined;
1046
1048
  } | {
1047
1049
  type: "invalid";
1048
1050
  value: string;
@@ -1056,15 +1058,14 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1056
1058
  type: "keyword";
1057
1059
  value: string;
1058
1060
  } | {
1059
- hidden?: boolean | undefined;
1060
1061
  type: "unparsed";
1061
1062
  value: string;
1063
+ hidden?: boolean | undefined;
1062
1064
  })[];
1063
1065
  })[];
1064
1066
  })[];
1065
1067
  }>]>;
1066
1068
  }, "strip", z.ZodTypeAny, {
1067
- state?: string | undefined;
1068
1069
  value: {
1069
1070
  type: "unit";
1070
1071
  value: number;
@@ -1073,9 +1074,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1073
1074
  type: "keyword";
1074
1075
  value: string;
1075
1076
  } | {
1076
- hidden?: boolean | undefined;
1077
1077
  type: "unparsed";
1078
1078
  value: string;
1079
+ hidden?: boolean | undefined;
1079
1080
  } | {
1080
1081
  type: "fontFamily";
1081
1082
  value: string[];
@@ -1086,7 +1087,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1086
1087
  g: number;
1087
1088
  b: number;
1088
1089
  } | {
1089
- hidden?: boolean | undefined;
1090
1090
  type: "image";
1091
1091
  value: {
1092
1092
  type: "asset";
@@ -1095,6 +1095,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1095
1095
  type: "url";
1096
1096
  url: string;
1097
1097
  };
1098
+ hidden?: boolean | undefined;
1098
1099
  } | {
1099
1100
  type: "invalid";
1100
1101
  value: string;
@@ -1111,9 +1112,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1111
1112
  type: "keyword";
1112
1113
  value: string;
1113
1114
  } | {
1114
- hidden?: boolean | undefined;
1115
1115
  type: "unparsed";
1116
1116
  value: string;
1117
+ hidden?: boolean | undefined;
1117
1118
  })[];
1118
1119
  } | {
1119
1120
  type: "layers";
@@ -1125,11 +1126,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1125
1126
  type: "keyword";
1126
1127
  value: string;
1127
1128
  } | {
1128
- hidden?: boolean | undefined;
1129
1129
  type: "unparsed";
1130
1130
  value: string;
1131
- } | {
1132
1131
  hidden?: boolean | undefined;
1132
+ } | {
1133
1133
  type: "image";
1134
1134
  value: {
1135
1135
  type: "asset";
@@ -1138,6 +1138,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1138
1138
  type: "url";
1139
1139
  url: string;
1140
1140
  };
1141
+ hidden?: boolean | undefined;
1141
1142
  } | {
1142
1143
  type: "invalid";
1143
1144
  value: string;
@@ -1151,9 +1152,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1151
1152
  type: "keyword";
1152
1153
  value: string;
1153
1154
  } | {
1154
- hidden?: boolean | undefined;
1155
1155
  type: "unparsed";
1156
1156
  value: string;
1157
+ hidden?: boolean | undefined;
1157
1158
  })[];
1158
1159
  })[];
1159
1160
  } | {
@@ -1167,9 +1168,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1167
1168
  type: "keyword";
1168
1169
  value: string;
1169
1170
  } | {
1170
- hidden?: boolean | undefined;
1171
1171
  type: "unparsed";
1172
1172
  value: string;
1173
+ hidden?: boolean | undefined;
1173
1174
  } | {
1174
1175
  type: "fontFamily";
1175
1176
  value: string[];
@@ -1180,7 +1181,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1180
1181
  g: number;
1181
1182
  b: number;
1182
1183
  } | {
1183
- hidden?: boolean | undefined;
1184
1184
  type: "image";
1185
1185
  value: {
1186
1186
  type: "asset";
@@ -1189,6 +1189,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1189
1189
  type: "url";
1190
1190
  url: string;
1191
1191
  };
1192
+ hidden?: boolean | undefined;
1192
1193
  } | {
1193
1194
  type: "tuple";
1194
1195
  value: ({
@@ -1199,9 +1200,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1199
1200
  type: "keyword";
1200
1201
  value: string;
1201
1202
  } | {
1202
- hidden?: boolean | undefined;
1203
1203
  type: "unparsed";
1204
1204
  value: string;
1205
+ hidden?: boolean | undefined;
1205
1206
  })[];
1206
1207
  } | {
1207
1208
  type: "layers";
@@ -1213,11 +1214,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1213
1214
  type: "keyword";
1214
1215
  value: string;
1215
1216
  } | {
1216
- hidden?: boolean | undefined;
1217
1217
  type: "unparsed";
1218
1218
  value: string;
1219
- } | {
1220
1219
  hidden?: boolean | undefined;
1220
+ } | {
1221
1221
  type: "image";
1222
1222
  value: {
1223
1223
  type: "asset";
@@ -1226,6 +1226,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1226
1226
  type: "url";
1227
1227
  url: string;
1228
1228
  };
1229
+ hidden?: boolean | undefined;
1229
1230
  } | {
1230
1231
  type: "invalid";
1231
1232
  value: string;
@@ -1239,16 +1240,16 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1239
1240
  type: "keyword";
1240
1241
  value: string;
1241
1242
  } | {
1242
- hidden?: boolean | undefined;
1243
1243
  type: "unparsed";
1244
1244
  value: string;
1245
+ hidden?: boolean | undefined;
1245
1246
  })[];
1246
1247
  })[];
1247
1248
  })[];
1248
1249
  };
1249
- 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";
1250
- }, {
1250
+ property: string;
1251
1251
  state?: string | undefined;
1252
+ }, {
1252
1253
  value: {
1253
1254
  type: "unit";
1254
1255
  value: number;
@@ -1257,9 +1258,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1257
1258
  type: "keyword";
1258
1259
  value: string;
1259
1260
  } | {
1260
- hidden?: boolean | undefined;
1261
1261
  type: "unparsed";
1262
1262
  value: string;
1263
+ hidden?: boolean | undefined;
1263
1264
  } | {
1264
1265
  type: "fontFamily";
1265
1266
  value: string[];
@@ -1270,7 +1271,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1270
1271
  g: number;
1271
1272
  b: number;
1272
1273
  } | {
1273
- hidden?: boolean | undefined;
1274
1274
  type: "image";
1275
1275
  value: {
1276
1276
  type: "asset";
@@ -1279,6 +1279,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1279
1279
  type: "url";
1280
1280
  url: string;
1281
1281
  };
1282
+ hidden?: boolean | undefined;
1282
1283
  } | {
1283
1284
  type: "invalid";
1284
1285
  value: string;
@@ -1295,9 +1296,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1295
1296
  type: "keyword";
1296
1297
  value: string;
1297
1298
  } | {
1298
- hidden?: boolean | undefined;
1299
1299
  type: "unparsed";
1300
1300
  value: string;
1301
+ hidden?: boolean | undefined;
1301
1302
  })[];
1302
1303
  } | {
1303
1304
  type: "layers";
@@ -1309,11 +1310,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1309
1310
  type: "keyword";
1310
1311
  value: string;
1311
1312
  } | {
1312
- hidden?: boolean | undefined;
1313
1313
  type: "unparsed";
1314
1314
  value: string;
1315
- } | {
1316
1315
  hidden?: boolean | undefined;
1316
+ } | {
1317
1317
  type: "image";
1318
1318
  value: {
1319
1319
  type: "asset";
@@ -1322,6 +1322,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1322
1322
  type: "url";
1323
1323
  url: string;
1324
1324
  };
1325
+ hidden?: boolean | undefined;
1325
1326
  } | {
1326
1327
  type: "invalid";
1327
1328
  value: string;
@@ -1335,9 +1336,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1335
1336
  type: "keyword";
1336
1337
  value: string;
1337
1338
  } | {
1338
- hidden?: boolean | undefined;
1339
1339
  type: "unparsed";
1340
1340
  value: string;
1341
+ hidden?: boolean | undefined;
1341
1342
  })[];
1342
1343
  })[];
1343
1344
  } | {
@@ -1351,9 +1352,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1351
1352
  type: "keyword";
1352
1353
  value: string;
1353
1354
  } | {
1354
- hidden?: boolean | undefined;
1355
1355
  type: "unparsed";
1356
1356
  value: string;
1357
+ hidden?: boolean | undefined;
1357
1358
  } | {
1358
1359
  type: "fontFamily";
1359
1360
  value: string[];
@@ -1364,7 +1365,6 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1364
1365
  g: number;
1365
1366
  b: number;
1366
1367
  } | {
1367
- hidden?: boolean | undefined;
1368
1368
  type: "image";
1369
1369
  value: {
1370
1370
  type: "asset";
@@ -1373,6 +1373,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1373
1373
  type: "url";
1374
1374
  url: string;
1375
1375
  };
1376
+ hidden?: boolean | undefined;
1376
1377
  } | {
1377
1378
  type: "tuple";
1378
1379
  value: ({
@@ -1383,9 +1384,9 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1383
1384
  type: "keyword";
1384
1385
  value: string;
1385
1386
  } | {
1386
- hidden?: boolean | undefined;
1387
1387
  type: "unparsed";
1388
1388
  value: string;
1389
+ hidden?: boolean | undefined;
1389
1390
  })[];
1390
1391
  } | {
1391
1392
  type: "layers";
@@ -1397,11 +1398,10 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1397
1398
  type: "keyword";
1398
1399
  value: string;
1399
1400
  } | {
1400
- hidden?: boolean | undefined;
1401
1401
  type: "unparsed";
1402
1402
  value: string;
1403
- } | {
1404
1403
  hidden?: boolean | undefined;
1404
+ } | {
1405
1405
  type: "image";
1406
1406
  value: {
1407
1407
  type: "asset";
@@ -1410,6 +1410,7 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1410
1410
  type: "url";
1411
1411
  url: string;
1412
1412
  };
1413
+ hidden?: boolean | undefined;
1413
1414
  } | {
1414
1415
  type: "invalid";
1415
1416
  value: string;
@@ -1423,105 +1424,480 @@ export declare const EmbedTemplateStyleDecl: z.ZodObject<{
1423
1424
  type: "keyword";
1424
1425
  value: string;
1425
1426
  } | {
1426
- hidden?: boolean | undefined;
1427
1427
  type: "unparsed";
1428
1428
  value: string;
1429
+ hidden?: boolean | undefined;
1429
1430
  })[];
1430
1431
  })[];
1431
1432
  })[];
1432
1433
  };
1433
- 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";
1434
+ property: string;
1435
+ state?: string | undefined;
1434
1436
  }>;
1435
- export type EmbedTemplateStyleDecl = z.infer<typeof EmbedTemplateStyleDecl>;
1436
- export type EmbedTemplateInstance = {
1437
- type: "instance";
1438
- component: string;
1439
- label?: string;
1440
- props?: EmbedTemplateProp[];
1441
- styles?: EmbedTemplateStyleDecl[];
1442
- children: Array<EmbedTemplateInstance | EmbedTemplateText>;
1443
- };
1444
- export declare const EmbedTemplateInstance: z.ZodType<EmbedTemplateInstance>;
1445
- export declare const WsEmbedTemplate: z.ZodLazy<z.ZodArray<z.ZodUnion<[z.ZodType<EmbedTemplateInstance, z.ZodTypeDef, EmbedTemplateInstance>, z.ZodObject<{
1446
- type: z.ZodLiteral<"text">;
1447
- value: z.ZodString;
1448
- }, "strip", z.ZodTypeAny, {
1449
- type: "text";
1450
- value: string;
1451
- }, {
1452
- type: "text";
1453
- value: string;
1454
- }>]>, "many">>;
1455
- export type WsEmbedTemplate = z.infer<typeof WsEmbedTemplate>;
1456
- export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1457
- type: "text";
1458
- value: string;
1459
- } | EmbedTemplateInstance)[], defaultBreakpointId: Breakpoint["id"]) => {
1460
- children: ({
1461
- type: "text";
1437
+ export type EmbedTemplateStyleDecl = Simplify<Omit<z.infer<typeof EmbedTemplateStyleDeclRaw>, "property"> & {
1438
+ property: StyleProperty;
1439
+ }>;
1440
+ export declare const EmbedTemplateStyleDecl: z.ZodType<{
1441
+ value: {
1442
+ type: "unit";
1443
+ value: number;
1444
+ 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";
1445
+ } | {
1446
+ type: "keyword";
1462
1447
  value: string;
1463
1448
  } | {
1464
- type: "id";
1449
+ type: "unparsed";
1465
1450
  value: string;
1466
- })[];
1467
- instances: {
1468
- label?: string | undefined;
1469
- type: "instance";
1470
- id: string;
1471
- component: string;
1472
- children: ({
1473
- type: "text";
1451
+ hidden?: boolean | undefined;
1452
+ } | {
1453
+ type: "fontFamily";
1454
+ value: string[];
1455
+ } | {
1456
+ type: "rgb";
1457
+ alpha: number;
1458
+ r: number;
1459
+ g: number;
1460
+ b: number;
1461
+ } | {
1462
+ type: "image";
1463
+ value: {
1464
+ type: "asset";
1474
1465
  value: string;
1475
1466
  } | {
1476
- type: "id";
1477
- value: string;
1478
- })[];
1479
- }[];
1480
- props: ({
1481
- required?: boolean | undefined;
1482
- name: string;
1483
- type: "number";
1484
- value: number;
1485
- id: string;
1486
- instanceId: string;
1467
+ type: "url";
1468
+ url: string;
1469
+ };
1470
+ hidden?: boolean | undefined;
1487
1471
  } | {
1488
- required?: boolean | undefined;
1489
- name: string;
1490
- type: "string";
1472
+ type: "invalid";
1491
1473
  value: string;
1492
- id: string;
1493
- instanceId: string;
1494
1474
  } | {
1495
- required?: boolean | undefined;
1496
- name: string;
1497
- type: "boolean";
1498
- value: boolean;
1499
- id: string;
1500
- instanceId: string;
1475
+ type: "unset";
1476
+ value: "";
1501
1477
  } | {
1502
- required?: boolean | undefined;
1503
- name: string;
1504
- type: "asset";
1505
- value: string;
1506
- id: string;
1507
- instanceId: string;
1478
+ type: "tuple";
1479
+ value: ({
1480
+ type: "unit";
1481
+ value: number;
1482
+ 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";
1483
+ } | {
1484
+ type: "keyword";
1485
+ value: string;
1486
+ } | {
1487
+ type: "unparsed";
1488
+ value: string;
1489
+ hidden?: boolean | undefined;
1490
+ })[];
1508
1491
  } | {
1492
+ type: "layers";
1493
+ value: ({
1494
+ type: "unit";
1495
+ value: number;
1496
+ 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";
1497
+ } | {
1498
+ type: "keyword";
1499
+ value: string;
1500
+ } | {
1501
+ type: "unparsed";
1502
+ value: string;
1503
+ hidden?: boolean | undefined;
1504
+ } | {
1505
+ type: "image";
1506
+ value: {
1507
+ type: "asset";
1508
+ value: string;
1509
+ } | {
1510
+ type: "url";
1511
+ url: string;
1512
+ };
1513
+ hidden?: boolean | undefined;
1514
+ } | {
1515
+ type: "invalid";
1516
+ value: string;
1517
+ } | {
1518
+ type: "tuple";
1519
+ value: ({
1520
+ type: "unit";
1521
+ value: number;
1522
+ 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";
1523
+ } | {
1524
+ type: "keyword";
1525
+ value: string;
1526
+ } | {
1527
+ type: "unparsed";
1528
+ value: string;
1529
+ hidden?: boolean | undefined;
1530
+ })[];
1531
+ })[];
1532
+ } | {
1533
+ type: "var";
1534
+ value: string;
1535
+ fallbacks: ({
1536
+ type: "unit";
1537
+ value: number;
1538
+ 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";
1539
+ } | {
1540
+ type: "keyword";
1541
+ value: string;
1542
+ } | {
1543
+ type: "unparsed";
1544
+ value: string;
1545
+ hidden?: boolean | undefined;
1546
+ } | {
1547
+ type: "fontFamily";
1548
+ value: string[];
1549
+ } | {
1550
+ type: "rgb";
1551
+ alpha: number;
1552
+ r: number;
1553
+ g: number;
1554
+ b: number;
1555
+ } | {
1556
+ type: "image";
1557
+ value: {
1558
+ type: "asset";
1559
+ value: string;
1560
+ } | {
1561
+ type: "url";
1562
+ url: string;
1563
+ };
1564
+ hidden?: boolean | undefined;
1565
+ } | {
1566
+ type: "tuple";
1567
+ value: ({
1568
+ type: "unit";
1569
+ value: number;
1570
+ 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";
1571
+ } | {
1572
+ type: "keyword";
1573
+ value: string;
1574
+ } | {
1575
+ type: "unparsed";
1576
+ value: string;
1577
+ hidden?: boolean | undefined;
1578
+ })[];
1579
+ } | {
1580
+ type: "layers";
1581
+ value: ({
1582
+ type: "unit";
1583
+ value: number;
1584
+ 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";
1585
+ } | {
1586
+ type: "keyword";
1587
+ value: string;
1588
+ } | {
1589
+ type: "unparsed";
1590
+ value: string;
1591
+ hidden?: boolean | undefined;
1592
+ } | {
1593
+ type: "image";
1594
+ value: {
1595
+ type: "asset";
1596
+ value: string;
1597
+ } | {
1598
+ type: "url";
1599
+ url: string;
1600
+ };
1601
+ hidden?: boolean | undefined;
1602
+ } | {
1603
+ type: "invalid";
1604
+ value: string;
1605
+ } | {
1606
+ type: "tuple";
1607
+ value: ({
1608
+ type: "unit";
1609
+ value: number;
1610
+ 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";
1611
+ } | {
1612
+ type: "keyword";
1613
+ value: string;
1614
+ } | {
1615
+ type: "unparsed";
1616
+ value: string;
1617
+ hidden?: boolean | undefined;
1618
+ })[];
1619
+ })[];
1620
+ })[];
1621
+ };
1622
+ state?: string | undefined;
1623
+ property: StyleProperty;
1624
+ }, z.ZodTypeDef, {
1625
+ value: {
1626
+ type: "unit";
1627
+ value: number;
1628
+ 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";
1629
+ } | {
1630
+ type: "keyword";
1631
+ value: string;
1632
+ } | {
1633
+ type: "unparsed";
1634
+ value: string;
1635
+ hidden?: boolean | undefined;
1636
+ } | {
1637
+ type: "fontFamily";
1638
+ value: string[];
1639
+ } | {
1640
+ type: "rgb";
1641
+ alpha: number;
1642
+ r: number;
1643
+ g: number;
1644
+ b: number;
1645
+ } | {
1646
+ type: "image";
1647
+ value: {
1648
+ type: "asset";
1649
+ value: string;
1650
+ } | {
1651
+ type: "url";
1652
+ url: string;
1653
+ };
1654
+ hidden?: boolean | undefined;
1655
+ } | {
1656
+ type: "invalid";
1657
+ value: string;
1658
+ } | {
1659
+ type: "unset";
1660
+ value: "";
1661
+ } | {
1662
+ type: "tuple";
1663
+ value: ({
1664
+ type: "unit";
1665
+ value: number;
1666
+ 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";
1667
+ } | {
1668
+ type: "keyword";
1669
+ value: string;
1670
+ } | {
1671
+ type: "unparsed";
1672
+ value: string;
1673
+ hidden?: boolean | undefined;
1674
+ })[];
1675
+ } | {
1676
+ type: "layers";
1677
+ value: ({
1678
+ type: "unit";
1679
+ value: number;
1680
+ 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";
1681
+ } | {
1682
+ type: "keyword";
1683
+ value: string;
1684
+ } | {
1685
+ type: "unparsed";
1686
+ value: string;
1687
+ hidden?: boolean | undefined;
1688
+ } | {
1689
+ type: "image";
1690
+ value: {
1691
+ type: "asset";
1692
+ value: string;
1693
+ } | {
1694
+ type: "url";
1695
+ url: string;
1696
+ };
1697
+ hidden?: boolean | undefined;
1698
+ } | {
1699
+ type: "invalid";
1700
+ value: string;
1701
+ } | {
1702
+ type: "tuple";
1703
+ value: ({
1704
+ type: "unit";
1705
+ value: number;
1706
+ 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";
1707
+ } | {
1708
+ type: "keyword";
1709
+ value: string;
1710
+ } | {
1711
+ type: "unparsed";
1712
+ value: string;
1713
+ hidden?: boolean | undefined;
1714
+ })[];
1715
+ })[];
1716
+ } | {
1717
+ type: "var";
1718
+ value: string;
1719
+ fallbacks: ({
1720
+ type: "unit";
1721
+ value: number;
1722
+ 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";
1723
+ } | {
1724
+ type: "keyword";
1725
+ value: string;
1726
+ } | {
1727
+ type: "unparsed";
1728
+ value: string;
1729
+ hidden?: boolean | undefined;
1730
+ } | {
1731
+ type: "fontFamily";
1732
+ value: string[];
1733
+ } | {
1734
+ type: "rgb";
1735
+ alpha: number;
1736
+ r: number;
1737
+ g: number;
1738
+ b: number;
1739
+ } | {
1740
+ type: "image";
1741
+ value: {
1742
+ type: "asset";
1743
+ value: string;
1744
+ } | {
1745
+ type: "url";
1746
+ url: string;
1747
+ };
1748
+ hidden?: boolean | undefined;
1749
+ } | {
1750
+ type: "tuple";
1751
+ value: ({
1752
+ type: "unit";
1753
+ value: number;
1754
+ 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";
1755
+ } | {
1756
+ type: "keyword";
1757
+ value: string;
1758
+ } | {
1759
+ type: "unparsed";
1760
+ value: string;
1761
+ hidden?: boolean | undefined;
1762
+ })[];
1763
+ } | {
1764
+ type: "layers";
1765
+ value: ({
1766
+ type: "unit";
1767
+ value: number;
1768
+ 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";
1769
+ } | {
1770
+ type: "keyword";
1771
+ value: string;
1772
+ } | {
1773
+ type: "unparsed";
1774
+ value: string;
1775
+ hidden?: boolean | undefined;
1776
+ } | {
1777
+ type: "image";
1778
+ value: {
1779
+ type: "asset";
1780
+ value: string;
1781
+ } | {
1782
+ type: "url";
1783
+ url: string;
1784
+ };
1785
+ hidden?: boolean | undefined;
1786
+ } | {
1787
+ type: "invalid";
1788
+ value: string;
1789
+ } | {
1790
+ type: "tuple";
1791
+ value: ({
1792
+ type: "unit";
1793
+ value: number;
1794
+ 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";
1795
+ } | {
1796
+ type: "keyword";
1797
+ value: string;
1798
+ } | {
1799
+ type: "unparsed";
1800
+ value: string;
1801
+ hidden?: boolean | undefined;
1802
+ })[];
1803
+ })[];
1804
+ })[];
1805
+ };
1806
+ state?: string | undefined;
1807
+ property: StyleProperty;
1808
+ }>;
1809
+ export type EmbedTemplateInstance = {
1810
+ type: "instance";
1811
+ component: string;
1812
+ label?: string;
1813
+ props?: EmbedTemplateProp[];
1814
+ styles?: EmbedTemplateStyleDecl[];
1815
+ children: Array<EmbedTemplateInstance | EmbedTemplateText>;
1816
+ };
1817
+ export declare const EmbedTemplateInstance: z.ZodType<EmbedTemplateInstance>;
1818
+ export declare const WsEmbedTemplate: z.ZodLazy<z.ZodArray<z.ZodUnion<[z.ZodType<EmbedTemplateInstance, z.ZodTypeDef, EmbedTemplateInstance>, z.ZodObject<{
1819
+ type: z.ZodLiteral<"text">;
1820
+ value: z.ZodString;
1821
+ }, "strip", z.ZodTypeAny, {
1822
+ type: "text";
1823
+ value: string;
1824
+ }, {
1825
+ type: "text";
1826
+ value: string;
1827
+ }>]>, "many">>;
1828
+ export type WsEmbedTemplate = z.infer<typeof WsEmbedTemplate>;
1829
+ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1830
+ type: "text";
1831
+ value: string;
1832
+ } | EmbedTemplateInstance)[], defaultBreakpointId: Breakpoint["id"]) => {
1833
+ children: ({
1834
+ type: "text";
1835
+ value: string;
1836
+ } | {
1837
+ type: "id";
1838
+ value: string;
1839
+ })[];
1840
+ instances: {
1841
+ type: "instance";
1842
+ id: string;
1843
+ component: string;
1844
+ children: ({
1845
+ type: "text";
1846
+ value: string;
1847
+ } | {
1848
+ type: "id";
1849
+ value: string;
1850
+ })[];
1851
+ label?: string | undefined;
1852
+ }[];
1853
+ props: ({
1854
+ name: string;
1855
+ type: "number";
1856
+ value: number;
1857
+ id: string;
1858
+ instanceId: string;
1859
+ required?: boolean | undefined;
1860
+ } | {
1861
+ name: string;
1862
+ type: "string";
1863
+ value: string;
1864
+ id: string;
1865
+ instanceId: string;
1866
+ required?: boolean | undefined;
1867
+ } | {
1868
+ name: string;
1869
+ type: "boolean";
1870
+ value: boolean;
1871
+ id: string;
1872
+ instanceId: string;
1509
1873
  required?: boolean | undefined;
1874
+ } | {
1875
+ name: string;
1876
+ type: "asset";
1877
+ value: string;
1878
+ id: string;
1879
+ instanceId: string;
1880
+ required?: boolean | undefined;
1881
+ } | {
1510
1882
  name: string;
1511
1883
  type: "page";
1512
- value: string | {
1884
+ value: (string | {
1513
1885
  instanceId: string;
1514
1886
  pageId: string;
1515
- };
1887
+ }) & (string | {
1888
+ instanceId: string;
1889
+ pageId: string;
1890
+ } | undefined);
1516
1891
  id: string;
1517
1892
  instanceId: string;
1518
- } | {
1519
1893
  required?: boolean | undefined;
1894
+ } | {
1520
1895
  name: string;
1521
1896
  type: "string[]";
1522
1897
  value: string[];
1523
1898
  id: string;
1524
1899
  instanceId: string;
1900
+ required?: boolean | undefined;
1525
1901
  })[];
1526
1902
  styleSourceSelections: {
1527
1903
  values: string[];
@@ -1536,7 +1912,6 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1536
1912
  id: string;
1537
1913
  })[];
1538
1914
  styles: {
1539
- state?: string | undefined;
1540
1915
  value: {
1541
1916
  type: "unit";
1542
1917
  value: number;
@@ -1545,9 +1920,9 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1545
1920
  type: "keyword";
1546
1921
  value: string;
1547
1922
  } | {
1548
- hidden?: boolean | undefined;
1549
1923
  type: "unparsed";
1550
1924
  value: string;
1925
+ hidden?: boolean | undefined;
1551
1926
  } | {
1552
1927
  type: "fontFamily";
1553
1928
  value: string[];
@@ -1558,7 +1933,6 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1558
1933
  g: number;
1559
1934
  b: number;
1560
1935
  } | {
1561
- hidden?: boolean | undefined;
1562
1936
  type: "image";
1563
1937
  value: {
1564
1938
  type: "asset";
@@ -1567,6 +1941,7 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1567
1941
  type: "url";
1568
1942
  url: string;
1569
1943
  };
1944
+ hidden?: boolean | undefined;
1570
1945
  } | {
1571
1946
  type: "invalid";
1572
1947
  value: string;
@@ -1583,9 +1958,9 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1583
1958
  type: "keyword";
1584
1959
  value: string;
1585
1960
  } | {
1586
- hidden?: boolean | undefined;
1587
1961
  type: "unparsed";
1588
1962
  value: string;
1963
+ hidden?: boolean | undefined;
1589
1964
  })[];
1590
1965
  } | {
1591
1966
  type: "layers";
@@ -1597,11 +1972,10 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1597
1972
  type: "keyword";
1598
1973
  value: string;
1599
1974
  } | {
1600
- hidden?: boolean | undefined;
1601
1975
  type: "unparsed";
1602
1976
  value: string;
1603
- } | {
1604
1977
  hidden?: boolean | undefined;
1978
+ } | {
1605
1979
  type: "image";
1606
1980
  value: {
1607
1981
  type: "asset";
@@ -1610,6 +1984,7 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1610
1984
  type: "url";
1611
1985
  url: string;
1612
1986
  };
1987
+ hidden?: boolean | undefined;
1613
1988
  } | {
1614
1989
  type: "invalid";
1615
1990
  value: string;
@@ -1623,9 +1998,9 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1623
1998
  type: "keyword";
1624
1999
  value: string;
1625
2000
  } | {
1626
- hidden?: boolean | undefined;
1627
2001
  type: "unparsed";
1628
2002
  value: string;
2003
+ hidden?: boolean | undefined;
1629
2004
  })[];
1630
2005
  })[];
1631
2006
  } | {
@@ -1639,9 +2014,9 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1639
2014
  type: "keyword";
1640
2015
  value: string;
1641
2016
  } | {
1642
- hidden?: boolean | undefined;
1643
2017
  type: "unparsed";
1644
2018
  value: string;
2019
+ hidden?: boolean | undefined;
1645
2020
  } | {
1646
2021
  type: "fontFamily";
1647
2022
  value: string[];
@@ -1652,7 +2027,6 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1652
2027
  g: number;
1653
2028
  b: number;
1654
2029
  } | {
1655
- hidden?: boolean | undefined;
1656
2030
  type: "image";
1657
2031
  value: {
1658
2032
  type: "asset";
@@ -1661,6 +2035,7 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1661
2035
  type: "url";
1662
2036
  url: string;
1663
2037
  };
2038
+ hidden?: boolean | undefined;
1664
2039
  } | {
1665
2040
  type: "tuple";
1666
2041
  value: ({
@@ -1671,9 +2046,9 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1671
2046
  type: "keyword";
1672
2047
  value: string;
1673
2048
  } | {
1674
- hidden?: boolean | undefined;
1675
2049
  type: "unparsed";
1676
2050
  value: string;
2051
+ hidden?: boolean | undefined;
1677
2052
  })[];
1678
2053
  } | {
1679
2054
  type: "layers";
@@ -1685,11 +2060,10 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1685
2060
  type: "keyword";
1686
2061
  value: string;
1687
2062
  } | {
1688
- hidden?: boolean | undefined;
1689
2063
  type: "unparsed";
1690
2064
  value: string;
1691
- } | {
1692
2065
  hidden?: boolean | undefined;
2066
+ } | {
1693
2067
  type: "image";
1694
2068
  value: {
1695
2069
  type: "asset";
@@ -1698,6 +2072,7 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1698
2072
  type: "url";
1699
2073
  url: string;
1700
2074
  };
2075
+ hidden?: boolean | undefined;
1701
2076
  } | {
1702
2077
  type: "invalid";
1703
2078
  value: string;
@@ -1711,16 +2086,17 @@ export declare const generateDataFromEmbedTemplate: (treeTemplate: ({
1711
2086
  type: "keyword";
1712
2087
  value: string;
1713
2088
  } | {
1714
- hidden?: boolean | undefined;
1715
2089
  type: "unparsed";
1716
2090
  value: string;
2091
+ hidden?: boolean | undefined;
1717
2092
  })[];
1718
2093
  })[];
1719
2094
  })[];
1720
2095
  };
1721
- 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";
1722
2096
  styleSourceId: string;
1723
2097
  breakpointId: string;
2098
+ state?: string | undefined;
2099
+ 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";
1724
2100
  }[];
1725
2101
  };
1726
2102
  export {};