mainbase-ui 1.2.5 → 3.36.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 (1488) hide show
  1. package/README.md +66 -23
  2. package/dist/cjs/anatomy.cjs +349 -0
  3. package/dist/cjs/collection.cjs +22 -0
  4. package/dist/cjs/components/absolute-center/absolute-center.cjs +42 -0
  5. package/dist/cjs/components/absolute-center/index.cjs +7 -0
  6. package/dist/cjs/components/accordion/accordion.cjs +48 -0
  7. package/dist/cjs/components/accordion/index.cjs +32 -0
  8. package/dist/cjs/components/accordion/namespace.cjs +16 -0
  9. package/dist/cjs/components/action-bar/action-bar.cjs +46 -0
  10. package/dist/cjs/components/action-bar/index.cjs +27 -0
  11. package/dist/cjs/components/action-bar/namespace.cjs +15 -0
  12. package/dist/cjs/components/alert/alert.cjs +69 -0
  13. package/dist/cjs/components/alert/index.cjs +15 -0
  14. package/dist/cjs/components/alert/namespace.cjs +12 -0
  15. package/dist/cjs/components/aspect-ratio/aspect-ratio.cjs +54 -0
  16. package/dist/cjs/components/aspect-ratio/index.cjs +7 -0
  17. package/dist/cjs/components/avatar/avatar.cjs +105 -0
  18. package/dist/cjs/components/avatar/index.cjs +26 -0
  19. package/dist/cjs/components/avatar/namespace.cjs +13 -0
  20. package/dist/cjs/components/badge/badge.cjs +15 -0
  21. package/dist/cjs/components/badge/index.cjs +8 -0
  22. package/dist/cjs/components/bleed/bleed.cjs +47 -0
  23. package/dist/cjs/components/bleed/index.cjs +7 -0
  24. package/dist/cjs/components/blockquote/blockquote.cjs +30 -0
  25. package/dist/cjs/components/blockquote/index.cjs +14 -0
  26. package/dist/cjs/components/blockquote/namespace.cjs +11 -0
  27. package/dist/cjs/components/box/index.cjs +9 -0
  28. package/dist/cjs/components/breadcrumb/breadcrumb.cjs +58 -0
  29. package/dist/cjs/components/breadcrumb/index.cjs +17 -0
  30. package/dist/cjs/components/breadcrumb/namespace.cjs +14 -0
  31. package/dist/cjs/components/button/button-group.cjs +21 -0
  32. package/dist/cjs/components/button/button.cjs +60 -0
  33. package/dist/cjs/components/button/close-button.cjs +31 -0
  34. package/dist/cjs/components/button/icon-button.cjs +23 -0
  35. package/dist/cjs/components/button/index.cjs +14 -0
  36. package/dist/cjs/components/card/card.cjs +42 -0
  37. package/dist/cjs/components/card/index.cjs +16 -0
  38. package/dist/cjs/components/card/namespace.cjs +13 -0
  39. package/dist/cjs/components/carousel/carousel.cjs +81 -0
  40. package/dist/cjs/components/carousel/index.cjs +33 -0
  41. package/dist/cjs/components/carousel/namespace.cjs +21 -0
  42. package/dist/cjs/components/center/center.cjs +22 -0
  43. package/dist/cjs/components/center/index.cjs +7 -0
  44. package/dist/cjs/components/checkbox/checkbox.cjs +100 -0
  45. package/dist/cjs/components/checkbox/index.cjs +35 -0
  46. package/dist/cjs/components/checkbox/namespace.cjs +15 -0
  47. package/dist/cjs/components/checkbox-card/checkbox-card.cjs +71 -0
  48. package/dist/cjs/components/checkbox-card/index.cjs +29 -0
  49. package/dist/cjs/components/checkbox-card/namespace.cjs +17 -0
  50. package/dist/cjs/components/checkmark/checkmark.cjs +46 -0
  51. package/dist/cjs/components/checkmark/index.cjs +7 -0
  52. package/dist/cjs/components/circle/index.cjs +15 -0
  53. package/dist/cjs/components/client-only/client-only.cjs +16 -0
  54. package/dist/cjs/components/client-only/index.cjs +7 -0
  55. package/dist/cjs/components/clipboard/clipboard.cjs +50 -0
  56. package/dist/cjs/components/clipboard/index.cjs +29 -0
  57. package/dist/cjs/components/clipboard/namespace.cjs +17 -0
  58. package/dist/cjs/components/code/code.cjs +13 -0
  59. package/dist/cjs/components/code/index.cjs +8 -0
  60. package/dist/cjs/components/code-block/adapters.cjs +100 -0
  61. package/dist/cjs/components/code-block/code-block-adapter-context.cjs +17 -0
  62. package/dist/cjs/components/code-block/code-block-adapter-provider.cjs +13 -0
  63. package/dist/cjs/components/code-block/code-block-context.cjs +12 -0
  64. package/dist/cjs/components/code-block/code-block.cjs +262 -0
  65. package/dist/cjs/components/code-block/index.cjs +29 -0
  66. package/dist/cjs/components/code-block/namespace.cjs +23 -0
  67. package/dist/cjs/components/code-block/types.cjs +2 -0
  68. package/dist/cjs/components/code-block/use-code-highlight.cjs +30 -0
  69. package/dist/cjs/components/collapsible/collapsible.cjs +28 -0
  70. package/dist/cjs/components/collapsible/index.cjs +25 -0
  71. package/dist/cjs/components/collapsible/namespace.cjs +13 -0
  72. package/dist/cjs/components/color-picker/color-picker.cjs +141 -0
  73. package/dist/cjs/components/color-picker/index.cjs +57 -0
  74. package/dist/cjs/components/color-picker/namespace.cjs +40 -0
  75. package/dist/cjs/components/color-swatch/index.cjs +57 -0
  76. package/dist/cjs/components/combobox/combobox.cjs +97 -0
  77. package/dist/cjs/components/combobox/index.cjs +42 -0
  78. package/dist/cjs/components/combobox/namespace.cjs +27 -0
  79. package/dist/cjs/components/container/container.cjs +13 -0
  80. package/dist/cjs/components/container/index.cjs +8 -0
  81. package/dist/cjs/components/data-list/data-list.cjs +29 -0
  82. package/dist/cjs/components/data-list/index.cjs +14 -0
  83. package/dist/cjs/components/data-list/namespace.cjs +11 -0
  84. package/dist/cjs/components/date-picker/date-picker.cjs +182 -0
  85. package/dist/cjs/components/date-picker/index.cjs +61 -0
  86. package/dist/cjs/components/date-picker/namespace.cjs +47 -0
  87. package/dist/cjs/components/dialog/dialog.cjs +81 -0
  88. package/dist/cjs/components/dialog/index.cjs +33 -0
  89. package/dist/cjs/components/dialog/namespace.cjs +21 -0
  90. package/dist/cjs/components/download-trigger/index.cjs +14 -0
  91. package/dist/cjs/components/drawer/drawer.cjs +81 -0
  92. package/dist/cjs/components/drawer/index.cjs +33 -0
  93. package/dist/cjs/components/drawer/namespace.cjs +21 -0
  94. package/dist/cjs/components/editable/editable.cjs +64 -0
  95. package/dist/cjs/components/editable/index.cjs +30 -0
  96. package/dist/cjs/components/editable/namespace.cjs +19 -0
  97. package/dist/cjs/components/em/index.cjs +13 -0
  98. package/dist/cjs/components/empty-state/empty-state.cjs +28 -0
  99. package/dist/cjs/components/empty-state/index.cjs +15 -0
  100. package/dist/cjs/components/empty-state/namespace.cjs +12 -0
  101. package/dist/cjs/components/environment/index.cjs +14 -0
  102. package/dist/cjs/components/field/field.cjs +69 -0
  103. package/dist/cjs/components/field/index.cjs +29 -0
  104. package/dist/cjs/components/field/namespace.cjs +22 -0
  105. package/dist/cjs/components/fieldset/fieldset.cjs +23 -0
  106. package/dist/cjs/components/fieldset/index.cjs +19 -0
  107. package/dist/cjs/components/fieldset/namespace.cjs +12 -0
  108. package/dist/cjs/components/file-upload/file-upload.cjs +121 -0
  109. package/dist/cjs/components/file-upload/index.cjs +39 -0
  110. package/dist/cjs/components/file-upload/namespace.cjs +27 -0
  111. package/dist/cjs/components/flex/flex.cjs +42 -0
  112. package/dist/cjs/components/flex/index.cjs +7 -0
  113. package/dist/cjs/components/float/float.cjs +75 -0
  114. package/dist/cjs/components/float/index.cjs +7 -0
  115. package/dist/cjs/components/floating-panel/floating-panel.cjs +57 -0
  116. package/dist/cjs/components/floating-panel/index.cjs +37 -0
  117. package/dist/cjs/components/floating-panel/namespace.cjs +26 -0
  118. package/dist/cjs/components/focus-trap/focus-trap.cjs +9 -0
  119. package/dist/cjs/components/focus-trap/index.cjs +7 -0
  120. package/dist/cjs/components/for/for.cjs +11 -0
  121. package/dist/cjs/components/for/index.cjs +7 -0
  122. package/dist/cjs/components/format/index.cjs +9 -0
  123. package/dist/cjs/components/grid/grid-item.cjs +46 -0
  124. package/dist/cjs/components/grid/grid.cjs +46 -0
  125. package/dist/cjs/components/grid/index.cjs +9 -0
  126. package/dist/cjs/components/group/group.cjs +147 -0
  127. package/dist/cjs/components/group/index.cjs +7 -0
  128. package/dist/cjs/components/heading/index.cjs +13 -0
  129. package/dist/cjs/components/highlight/highlight.cjs +25 -0
  130. package/dist/cjs/components/highlight/index.cjs +12 -0
  131. package/dist/cjs/components/hover-card/hover-card.cjs +41 -0
  132. package/dist/cjs/components/hover-card/index.cjs +27 -0
  133. package/dist/cjs/components/hover-card/namespace.cjs +15 -0
  134. package/dist/cjs/components/icon/create-icon.cjs +30 -0
  135. package/dist/cjs/components/icon/icon.cjs +53 -0
  136. package/dist/cjs/components/icon/index.cjs +10 -0
  137. package/dist/cjs/components/icons.cjs +239 -0
  138. package/dist/cjs/components/image/image.cjs +26 -0
  139. package/dist/cjs/components/image/index.cjs +7 -0
  140. package/dist/cjs/components/index.cjs +1588 -0
  141. package/dist/cjs/components/input/index.cjs +8 -0
  142. package/dist/cjs/components/input/input.cjs +14 -0
  143. package/dist/cjs/components/input-addon/index.cjs +7 -0
  144. package/dist/cjs/components/input-addon/input-addon.cjs +18 -0
  145. package/dist/cjs/components/input-element/index.cjs +7 -0
  146. package/dist/cjs/components/input-element/input-element.cjs +30 -0
  147. package/dist/cjs/components/input-group/index.cjs +7 -0
  148. package/dist/cjs/components/input-group/input-group.cjs +51 -0
  149. package/dist/cjs/components/kbd/index.cjs +7 -0
  150. package/dist/cjs/components/kbd/kbd.cjs +13 -0
  151. package/dist/cjs/components/link/index.cjs +11 -0
  152. package/dist/cjs/components/link/link-box.cjs +65 -0
  153. package/dist/cjs/components/link/link.cjs +13 -0
  154. package/dist/cjs/components/list/index.cjs +13 -0
  155. package/dist/cjs/components/list/list.cjs +28 -0
  156. package/dist/cjs/components/list/namespace.cjs +10 -0
  157. package/dist/cjs/components/listbox/index.cjs +37 -0
  158. package/dist/cjs/components/listbox/listbox.cjs +78 -0
  159. package/dist/cjs/components/listbox/namespace.cjs +21 -0
  160. package/dist/cjs/components/loader/index.cjs +9 -0
  161. package/dist/cjs/components/loader/loader-overlay.cjs +19 -0
  162. package/dist/cjs/components/loader/loader.cjs +49 -0
  163. package/dist/cjs/components/locale/index.cjs +18 -0
  164. package/dist/cjs/components/mark/index.cjs +13 -0
  165. package/dist/cjs/components/marquee/index.cjs +25 -0
  166. package/dist/cjs/components/marquee/marquee.cjs +42 -0
  167. package/dist/cjs/components/marquee/namespace.cjs +13 -0
  168. package/dist/cjs/components/menu/index.cjs +45 -0
  169. package/dist/cjs/components/menu/menu.cjs +115 -0
  170. package/dist/cjs/components/menu/namespace.cjs +29 -0
  171. package/dist/cjs/components/native-select/index.cjs +13 -0
  172. package/dist/cjs/components/native-select/namespace.cjs +10 -0
  173. package/dist/cjs/components/native-select/native-select.cjs +77 -0
  174. package/dist/cjs/components/number-input/index.cjs +29 -0
  175. package/dist/cjs/components/number-input/namespace.cjs +17 -0
  176. package/dist/cjs/components/number-input/number-input.cjs +48 -0
  177. package/dist/cjs/components/pagination/index.cjs +28 -0
  178. package/dist/cjs/components/pagination/namespace.cjs +16 -0
  179. package/dist/cjs/components/pagination/pagination.cjs +80 -0
  180. package/dist/cjs/components/pin-input/index.cjs +26 -0
  181. package/dist/cjs/components/pin-input/namespace.cjs +14 -0
  182. package/dist/cjs/components/pin-input/pin-input.cjs +42 -0
  183. package/dist/cjs/components/popover/index.cjs +34 -0
  184. package/dist/cjs/components/popover/namespace.cjs +23 -0
  185. package/dist/cjs/components/popover/popover.cjs +78 -0
  186. package/dist/cjs/components/portal/index.cjs +10 -0
  187. package/dist/cjs/components/presence/index.cjs +9 -0
  188. package/dist/cjs/components/progress/index.cjs +26 -0
  189. package/dist/cjs/components/progress/namespace.cjs +14 -0
  190. package/dist/cjs/components/progress/progress.cjs +45 -0
  191. package/dist/cjs/components/progress-circle/index.cjs +18 -0
  192. package/dist/cjs/components/progress-circle/namespace.cjs +14 -0
  193. package/dist/cjs/components/progress-circle/progress-circle.cjs +32 -0
  194. package/dist/cjs/components/qr-code/index.cjs +24 -0
  195. package/dist/cjs/components/qr-code/namespace.cjs +18 -0
  196. package/dist/cjs/components/qr-code/qr-code.cjs +47 -0
  197. package/dist/cjs/components/quote/index.cjs +14 -0
  198. package/dist/cjs/components/radio-card/index.cjs +35 -0
  199. package/dist/cjs/components/radio-card/namespace.cjs +20 -0
  200. package/dist/cjs/components/radio-card/radio-card.cjs +105 -0
  201. package/dist/cjs/components/radio-group/index.cjs +32 -0
  202. package/dist/cjs/components/radio-group/namespace.cjs +17 -0
  203. package/dist/cjs/components/radio-group/radio-group.cjs +59 -0
  204. package/dist/cjs/components/radiomark/index.cjs +7 -0
  205. package/dist/cjs/components/radiomark/radiomark.cjs +29 -0
  206. package/dist/cjs/components/rating-group/index.cjs +33 -0
  207. package/dist/cjs/components/rating-group/namespace.cjs +18 -0
  208. package/dist/cjs/components/rating-group/rating-group.cjs +68 -0
  209. package/dist/cjs/components/scroll-area/index.cjs +27 -0
  210. package/dist/cjs/components/scroll-area/namespace.cjs +15 -0
  211. package/dist/cjs/components/scroll-area/scroll-area.cjs +41 -0
  212. package/dist/cjs/components/segment-group/index.cjs +32 -0
  213. package/dist/cjs/components/segment-group/namespace.cjs +16 -0
  214. package/dist/cjs/components/segment-group/segment-group.cjs +62 -0
  215. package/dist/cjs/components/select/index.cjs +43 -0
  216. package/dist/cjs/components/select/namespace.cjs +27 -0
  217. package/dist/cjs/components/select/select.cjs +107 -0
  218. package/dist/cjs/components/separator/index.cjs +8 -0
  219. package/dist/cjs/components/separator/separator.cjs +36 -0
  220. package/dist/cjs/components/show/index.cjs +7 -0
  221. package/dist/cjs/components/show/show.cjs +16 -0
  222. package/dist/cjs/components/simple-grid/index.cjs +7 -0
  223. package/dist/cjs/components/simple-grid/simple-grid.cjs +36 -0
  224. package/dist/cjs/components/skeleton/index.cjs +10 -0
  225. package/dist/cjs/components/skeleton/skeleton.cjs +61 -0
  226. package/dist/cjs/components/skip-nav/index.cjs +9 -0
  227. package/dist/cjs/components/skip-nav/skip-nav-content.cjs +25 -0
  228. package/dist/cjs/components/skip-nav/skip-nav-link.cjs +29 -0
  229. package/dist/cjs/components/slider/index.cjs +34 -0
  230. package/dist/cjs/components/slider/namespace.cjs +24 -0
  231. package/dist/cjs/components/slider/slider.cjs +93 -0
  232. package/dist/cjs/components/spacer/index.cjs +7 -0
  233. package/dist/cjs/components/spacer/spacer.cjs +15 -0
  234. package/dist/cjs/components/span/index.cjs +9 -0
  235. package/dist/cjs/components/spinner/index.cjs +8 -0
  236. package/dist/cjs/components/spinner/spinner.cjs +13 -0
  237. package/dist/cjs/components/splitter/index.cjs +34 -0
  238. package/dist/cjs/components/splitter/namespace.cjs +14 -0
  239. package/dist/cjs/components/splitter/splitter.cjs +46 -0
  240. package/dist/cjs/components/square/index.cjs +30 -0
  241. package/dist/cjs/components/stack/get-separator-style.cjs +40 -0
  242. package/dist/cjs/components/stack/h-stack.cjs +14 -0
  243. package/dist/cjs/components/stack/index.cjs +13 -0
  244. package/dist/cjs/components/stack/stack-separator.cjs +17 -0
  245. package/dist/cjs/components/stack/stack.cjs +62 -0
  246. package/dist/cjs/components/stack/v-stack.cjs +14 -0
  247. package/dist/cjs/components/stat/index.cjs +18 -0
  248. package/dist/cjs/components/stat/namespace.cjs +14 -0
  249. package/dist/cjs/components/stat/stat.cjs +81 -0
  250. package/dist/cjs/components/status/index.cjs +12 -0
  251. package/dist/cjs/components/status/namespace.cjs +9 -0
  252. package/dist/cjs/components/status/status.cjs +22 -0
  253. package/dist/cjs/components/steps/index.cjs +40 -0
  254. package/dist/cjs/components/steps/namespace.cjs +24 -0
  255. package/dist/cjs/components/steps/steps.cjs +99 -0
  256. package/dist/cjs/components/sticky/index.cjs +14 -0
  257. package/dist/cjs/components/strong/index.cjs +11 -0
  258. package/dist/cjs/components/switch/index.cjs +28 -0
  259. package/dist/cjs/components/switch/namespace.cjs +16 -0
  260. package/dist/cjs/components/switch/switch.cjs +75 -0
  261. package/dist/cjs/components/table/index.cjs +21 -0
  262. package/dist/cjs/components/table/namespace.cjs +18 -0
  263. package/dist/cjs/components/table/table.cjs +92 -0
  264. package/dist/cjs/components/tabs/index.cjs +30 -0
  265. package/dist/cjs/components/tabs/namespace.cjs +19 -0
  266. package/dist/cjs/components/tabs/tabs.cjs +50 -0
  267. package/dist/cjs/components/tag/index.cjs +15 -0
  268. package/dist/cjs/components/tag/namespace.cjs +12 -0
  269. package/dist/cjs/components/tag/tag.cjs +35 -0
  270. package/dist/cjs/components/tags-input/index.cjs +36 -0
  271. package/dist/cjs/components/tags-input/namespace.cjs +22 -0
  272. package/dist/cjs/components/tags-input/tags-input.cjs +65 -0
  273. package/dist/cjs/components/text/index.cjs +13 -0
  274. package/dist/cjs/components/textarea/index.cjs +8 -0
  275. package/dist/cjs/components/textarea/textarea.cjs +16 -0
  276. package/dist/cjs/components/theme.cjs +33 -0
  277. package/dist/cjs/components/timeline/index.cjs +18 -0
  278. package/dist/cjs/components/timeline/namespace.cjs +15 -0
  279. package/dist/cjs/components/timeline/timeline.cjs +42 -0
  280. package/dist/cjs/components/toast/index.cjs +21 -0
  281. package/dist/cjs/components/toast/namespace.cjs +12 -0
  282. package/dist/cjs/components/toast/toast.cjs +72 -0
  283. package/dist/cjs/components/toggle/index.cjs +22 -0
  284. package/dist/cjs/components/toggle/namespace.cjs +10 -0
  285. package/dist/cjs/components/toggle/toggle.cjs +31 -0
  286. package/dist/cjs/components/tooltip/index.cjs +27 -0
  287. package/dist/cjs/components/tooltip/namespace.cjs +15 -0
  288. package/dist/cjs/components/tooltip/tooltip.cjs +44 -0
  289. package/dist/cjs/components/tree-view/index.cjs +54 -0
  290. package/dist/cjs/components/tree-view/namespace.cjs +39 -0
  291. package/dist/cjs/components/tree-view/tree-view.cjs +89 -0
  292. package/dist/cjs/components/visually-hidden/index.cjs +8 -0
  293. package/dist/cjs/components/visually-hidden/visually-hidden.cjs +23 -0
  294. package/dist/cjs/components/wrap/index.cjs +8 -0
  295. package/dist/cjs/components/wrap/wrap.cjs +50 -0
  296. package/dist/cjs/create-context.cjs +35 -0
  297. package/dist/cjs/hooks/index.cjs +38 -0
  298. package/dist/cjs/hooks/use-breakpoint.cjs +47 -0
  299. package/dist/cjs/hooks/use-callback-ref.cjs +16 -0
  300. package/dist/cjs/hooks/use-const.cjs +14 -0
  301. package/dist/cjs/hooks/use-controllable-state.cjs +42 -0
  302. package/dist/cjs/hooks/use-disclosure.cjs +37 -0
  303. package/dist/cjs/hooks/use-element-rect.cjs +26 -0
  304. package/dist/cjs/hooks/use-force-update.cjs +10 -0
  305. package/dist/cjs/hooks/use-list-collection.cjs +10 -0
  306. package/dist/cjs/hooks/use-live-ref.cjs +12 -0
  307. package/dist/cjs/hooks/use-media-query.cjs +56 -0
  308. package/dist/cjs/hooks/use-overlay.cjs +177 -0
  309. package/dist/cjs/hooks/use-previous.cjs +16 -0
  310. package/dist/cjs/hooks/use-safe-layout-effect.cjs +8 -0
  311. package/dist/cjs/hooks/use-update-effect.cjs +25 -0
  312. package/dist/cjs/index.cjs +1687 -0
  313. package/dist/cjs/merge-props.cjs +36 -0
  314. package/dist/cjs/merge-refs.cjs +70 -0
  315. package/dist/cjs/preset-base.cjs +1101 -0
  316. package/dist/cjs/preset.cjs +13 -0
  317. package/dist/cjs/styled-system/breakpoints.cjs +114 -0
  318. package/dist/cjs/styled-system/calc.cjs +44 -0
  319. package/dist/cjs/styled-system/color-mix.cjs +35 -0
  320. package/dist/cjs/styled-system/composition.cjs +2 -0
  321. package/dist/cjs/styled-system/conditions.cjs +45 -0
  322. package/dist/cjs/styled-system/config.cjs +38 -0
  323. package/dist/cjs/styled-system/create-recipe-context.cjs +76 -0
  324. package/dist/cjs/styled-system/create-slot-recipe-context.cjs +143 -0
  325. package/dist/cjs/styled-system/css-var.cjs +20 -0
  326. package/dist/cjs/styled-system/css.cjs +73 -0
  327. package/dist/cjs/styled-system/css.types.cjs +2 -0
  328. package/dist/cjs/styled-system/cva.cjs +126 -0
  329. package/dist/cjs/styled-system/display-name.cjs +22 -0
  330. package/dist/cjs/styled-system/empty.cjs +9 -0
  331. package/dist/cjs/styled-system/esc.cjs +14 -0
  332. package/dist/cjs/styled-system/expand-reference.cjs +135 -0
  333. package/dist/cjs/styled-system/factory.cjs +261 -0
  334. package/dist/cjs/styled-system/factory.types.cjs +2 -0
  335. package/dist/cjs/styled-system/generated/conditions.gen.cjs +2 -0
  336. package/dist/cjs/styled-system/generated/prop-types.gen.cjs +2 -0
  337. package/dist/cjs/styled-system/generated/recipes.gen.cjs +2 -0
  338. package/dist/cjs/styled-system/generated/system.gen.cjs +2 -0
  339. package/dist/cjs/styled-system/generated/token.gen.cjs +2 -0
  340. package/dist/cjs/styled-system/index.cjs +44 -0
  341. package/dist/cjs/styled-system/layers.cjs +30 -0
  342. package/dist/cjs/styled-system/map-to-json.cjs +15 -0
  343. package/dist/cjs/styled-system/merge-config.cjs +44 -0
  344. package/dist/cjs/styled-system/normalize.cjs +18 -0
  345. package/dist/cjs/styled-system/preflight.cjs +167 -0
  346. package/dist/cjs/styled-system/provider.cjs +18 -0
  347. package/dist/cjs/styled-system/recipe-props.cjs +15 -0
  348. package/dist/cjs/styled-system/recipe.types.cjs +2 -0
  349. package/dist/cjs/styled-system/references.cjs +41 -0
  350. package/dist/cjs/styled-system/resolve-token-value.cjs +28 -0
  351. package/dist/cjs/styled-system/selectors.cjs +2 -0
  352. package/dist/cjs/styled-system/serialize.cjs +71 -0
  353. package/dist/cjs/styled-system/singleton.cjs +15 -0
  354. package/dist/cjs/styled-system/sort-at-params.cjs +71 -0
  355. package/dist/cjs/styled-system/sort-at-rules.cjs +35 -0
  356. package/dist/cjs/styled-system/sva.cjs +87 -0
  357. package/dist/cjs/styled-system/system.cjs +285 -0
  358. package/dist/cjs/styled-system/token-dictionary.cjs +440 -0
  359. package/dist/cjs/styled-system/token-middleware.cjs +152 -0
  360. package/dist/cjs/styled-system/token-transforms.cjs +81 -0
  361. package/dist/cjs/styled-system/types.cjs +2 -0
  362. package/dist/cjs/styled-system/unit-conversion.cjs +58 -0
  363. package/dist/cjs/styled-system/use-recipe.cjs +17 -0
  364. package/dist/cjs/styled-system/use-resolved-props.cjs +68 -0
  365. package/dist/cjs/styled-system/use-slot-recipe.cjs +17 -0
  366. package/dist/cjs/styled-system/use-token.cjs +15 -0
  367. package/dist/cjs/styled-system/utility.cjs +176 -0
  368. package/dist/cjs/theme/breakpoints.cjs +11 -0
  369. package/dist/cjs/theme/global-css.cjs +58 -0
  370. package/dist/cjs/theme/index.cjs +237 -0
  371. package/dist/cjs/theme/layer-styles.cjs +116 -0
  372. package/dist/cjs/theme/motion-styles.cjs +54 -0
  373. package/dist/cjs/theme/recipes/accordion.cjs +144 -0
  374. package/dist/cjs/theme/recipes/action-bar.cjs +86 -0
  375. package/dist/cjs/theme/recipes/alert.cjs +155 -0
  376. package/dist/cjs/theme/recipes/avatar.cjs +142 -0
  377. package/dist/cjs/theme/recipes/badge.cjs +73 -0
  378. package/dist/cjs/theme/recipes/blockquote.cjs +82 -0
  379. package/dist/cjs/theme/recipes/breadcrumb.cjs +99 -0
  380. package/dist/cjs/theme/recipes/button.cjs +184 -0
  381. package/dist/cjs/theme/recipes/card.cjs +102 -0
  382. package/dist/cjs/theme/recipes/carousel.cjs +66 -0
  383. package/dist/cjs/theme/recipes/checkbox-card.cjs +209 -0
  384. package/dist/cjs/theme/recipes/checkbox.cjs +68 -0
  385. package/dist/cjs/theme/recipes/checkmark.cjs +95 -0
  386. package/dist/cjs/theme/recipes/code-block.cjs +227 -0
  387. package/dist/cjs/theme/recipes/code.cjs +19 -0
  388. package/dist/cjs/theme/recipes/collapsible.cjs +30 -0
  389. package/dist/cjs/theme/recipes/color-picker.cjs +262 -0
  390. package/dist/cjs/theme/recipes/color-swatch.cjs +43 -0
  391. package/dist/cjs/theme/recipes/combobox.cjs +292 -0
  392. package/dist/cjs/theme/recipes/container.cjs +30 -0
  393. package/dist/cjs/theme/recipes/data-list.cjs +98 -0
  394. package/dist/cjs/theme/recipes/date-picker.cjs +392 -0
  395. package/dist/cjs/theme/recipes/dialog.cjs +232 -0
  396. package/dist/cjs/theme/recipes/drawer.cjs +214 -0
  397. package/dist/cjs/theme/recipes/editable.cjs +88 -0
  398. package/dist/cjs/theme/recipes/empty-state.cjs +90 -0
  399. package/dist/cjs/theme/recipes/field.cjs +70 -0
  400. package/dist/cjs/theme/recipes/fieldset.cjs +64 -0
  401. package/dist/cjs/theme/recipes/file-upload.cjs +111 -0
  402. package/dist/cjs/theme/recipes/floating-panel.cjs +80 -0
  403. package/dist/cjs/theme/recipes/heading.cjs +31 -0
  404. package/dist/cjs/theme/recipes/hover-card.cjs +71 -0
  405. package/dist/cjs/theme/recipes/icon.cjs +30 -0
  406. package/dist/cjs/theme/recipes/input-addon.cjs +45 -0
  407. package/dist/cjs/theme/recipes/input.cjs +103 -0
  408. package/dist/cjs/theme/recipes/kbd.cjs +61 -0
  409. package/dist/cjs/theme/recipes/link.cjs +39 -0
  410. package/dist/cjs/theme/recipes/list.cjs +66 -0
  411. package/dist/cjs/theme/recipes/listbox.cjs +132 -0
  412. package/dist/cjs/theme/recipes/mark.cjs +30 -0
  413. package/dist/cjs/theme/recipes/marquee.cjs +93 -0
  414. package/dist/cjs/theme/recipes/menu.cjs +148 -0
  415. package/dist/cjs/theme/recipes/native-select.cjs +156 -0
  416. package/dist/cjs/theme/recipes/number-input.cjs +117 -0
  417. package/dist/cjs/theme/recipes/pin-input.cjs +52 -0
  418. package/dist/cjs/theme/recipes/popover.cjs +91 -0
  419. package/dist/cjs/theme/recipes/progress-circle.cjs +96 -0
  420. package/dist/cjs/theme/recipes/progress.cjs +127 -0
  421. package/dist/cjs/theme/recipes/qr-code.cjs +64 -0
  422. package/dist/cjs/theme/recipes/radio-card.cjs +219 -0
  423. package/dist/cjs/theme/recipes/radio-group.cjs +66 -0
  424. package/dist/cjs/theme/recipes/radiomark.cjs +106 -0
  425. package/dist/cjs/theme/recipes/rating-group.cjs +89 -0
  426. package/dist/cjs/theme/recipes/scroll-area.cjs +140 -0
  427. package/dist/cjs/theme/recipes/segment-group.cjs +128 -0
  428. package/dist/cjs/theme/recipes/select.cjs +296 -0
  429. package/dist/cjs/theme/recipes/separator.cjs +53 -0
  430. package/dist/cjs/theme/recipes/skeleton.cjs +54 -0
  431. package/dist/cjs/theme/recipes/skip-nav-link.cjs +36 -0
  432. package/dist/cjs/theme/recipes/slider.cjs +200 -0
  433. package/dist/cjs/theme/recipes/spinner.cjs +36 -0
  434. package/dist/cjs/theme/recipes/splitter.cjs +80 -0
  435. package/dist/cjs/theme/recipes/stat.cjs +84 -0
  436. package/dist/cjs/theme/recipes/status.cjs +48 -0
  437. package/dist/cjs/theme/recipes/steps.cjs +219 -0
  438. package/dist/cjs/theme/recipes/switch.cjs +164 -0
  439. package/dist/cjs/theme/recipes/table.cjs +165 -0
  440. package/dist/cjs/theme/recipes/tabs.cjs +275 -0
  441. package/dist/cjs/theme/recipes/tag.cjs +130 -0
  442. package/dist/cjs/theme/recipes/tags-input.cjs +239 -0
  443. package/dist/cjs/theme/recipes/textarea.cjs +90 -0
  444. package/dist/cjs/theme/recipes/timeline.cjs +159 -0
  445. package/dist/cjs/theme/recipes/toast.cjs +102 -0
  446. package/dist/cjs/theme/recipes/tooltip.cjs +44 -0
  447. package/dist/cjs/theme/recipes/tree-view.cjs +168 -0
  448. package/dist/cjs/theme/recipes.cjs +45 -0
  449. package/dist/cjs/theme/recipes.export.cjs +43 -0
  450. package/dist/cjs/theme/semantic-tokens/colors.cjs +355 -0
  451. package/dist/cjs/theme/semantic-tokens/radii.cjs +11 -0
  452. package/dist/cjs/theme/semantic-tokens/shadows.cjs +56 -0
  453. package/dist/cjs/theme/slot-recipes.cjs +119 -0
  454. package/dist/cjs/theme/slot-recipes.export.cjs +115 -0
  455. package/dist/cjs/theme/text-styles.cjs +50 -0
  456. package/dist/cjs/theme/tokens/animations.cjs +12 -0
  457. package/dist/cjs/theme/tokens/aspect-ratios.cjs +14 -0
  458. package/dist/cjs/theme/tokens/blurs.cjs +16 -0
  459. package/dist/cjs/theme/tokens/borders.cjs +13 -0
  460. package/dist/cjs/theme/tokens/colors.cjs +168 -0
  461. package/dist/cjs/theme/tokens/cursor.cjs +16 -0
  462. package/dist/cjs/theme/tokens/durations.cjs +15 -0
  463. package/dist/cjs/theme/tokens/easings.cjs +12 -0
  464. package/dist/cjs/theme/tokens/font-sizes.cjs +22 -0
  465. package/dist/cjs/theme/tokens/font-weights.cjs +17 -0
  466. package/dist/cjs/theme/tokens/fonts.cjs +18 -0
  467. package/dist/cjs/theme/tokens/keyframes.cjs +171 -0
  468. package/dist/cjs/theme/tokens/letter-spacing.cjs +13 -0
  469. package/dist/cjs/theme/tokens/line-heights.cjs +13 -0
  470. package/dist/cjs/theme/tokens/radius.cjs +19 -0
  471. package/dist/cjs/theme/tokens/sizes.cjs +71 -0
  472. package/dist/cjs/theme/tokens/spacing.cjs +42 -0
  473. package/dist/cjs/theme/tokens/z-indices.cjs +21 -0
  474. package/dist/cjs/utils/attr.cjs +5 -0
  475. package/dist/cjs/utils/call-all.cjs +9 -0
  476. package/dist/cjs/utils/clone.cjs +13 -0
  477. package/dist/cjs/utils/compact.cjs +11 -0
  478. package/dist/cjs/utils/create-props.cjs +5 -0
  479. package/dist/cjs/utils/cx.cjs +16 -0
  480. package/dist/cjs/utils/entries.cjs +12 -0
  481. package/dist/cjs/utils/flatten.cjs +19 -0
  482. package/dist/cjs/utils/index.cjs +46 -0
  483. package/dist/cjs/utils/interop.cjs +7 -0
  484. package/dist/cjs/utils/is.cjs +11 -0
  485. package/dist/cjs/utils/memo.cjs +66 -0
  486. package/dist/cjs/utils/merge.cjs +35 -0
  487. package/dist/cjs/utils/omit.cjs +13 -0
  488. package/dist/cjs/utils/ref.cjs +32 -0
  489. package/dist/cjs/utils/split-props.cjs +29 -0
  490. package/dist/cjs/utils/types.cjs +2 -0
  491. package/dist/cjs/utils/uniq.cjs +11 -0
  492. package/dist/cjs/utils/unit.cjs +10 -0
  493. package/dist/cjs/utils/walk-object.cjs +40 -0
  494. package/dist/esm/anatomy.js +244 -0
  495. package/dist/esm/collection.js +1 -0
  496. package/dist/esm/components/absolute-center/absolute-center.js +40 -0
  497. package/dist/esm/components/absolute-center/index.js +1 -0
  498. package/dist/esm/components/accordion/accordion.js +36 -0
  499. package/dist/esm/components/accordion/index.js +4 -0
  500. package/dist/esm/components/accordion/namespace.js +1 -0
  501. package/dist/esm/components/action-bar/action-bar.js +35 -0
  502. package/dist/esm/components/action-bar/index.js +4 -0
  503. package/dist/esm/components/action-bar/namespace.js +1 -0
  504. package/dist/esm/components/alert/alert.js +59 -0
  505. package/dist/esm/components/alert/index.js +3 -0
  506. package/dist/esm/components/alert/namespace.js +1 -0
  507. package/dist/esm/components/aspect-ratio/aspect-ratio.js +52 -0
  508. package/dist/esm/components/aspect-ratio/index.js +1 -0
  509. package/dist/esm/components/avatar/avatar.js +95 -0
  510. package/dist/esm/components/avatar/index.js +4 -0
  511. package/dist/esm/components/avatar/namespace.js +1 -0
  512. package/dist/esm/components/badge/badge.js +10 -0
  513. package/dist/esm/components/badge/index.js +1 -0
  514. package/dist/esm/components/bleed/bleed.js +45 -0
  515. package/dist/esm/components/bleed/index.js +1 -0
  516. package/dist/esm/components/blockquote/blockquote.js +23 -0
  517. package/dist/esm/components/blockquote/index.js +3 -0
  518. package/dist/esm/components/blockquote/namespace.js +1 -0
  519. package/dist/esm/components/box/index.js +7 -0
  520. package/dist/esm/components/breadcrumb/breadcrumb.js +48 -0
  521. package/dist/esm/components/breadcrumb/index.js +3 -0
  522. package/dist/esm/components/breadcrumb/namespace.js +1 -0
  523. package/dist/esm/components/button/button-group.js +19 -0
  524. package/dist/esm/components/button/button.js +57 -0
  525. package/dist/esm/components/button/close-button.js +10 -0
  526. package/dist/esm/components/button/icon-button.js +21 -0
  527. package/dist/esm/components/button/index.js +4 -0
  528. package/dist/esm/components/card/card.js +33 -0
  529. package/dist/esm/components/card/index.js +3 -0
  530. package/dist/esm/components/card/namespace.js +1 -0
  531. package/dist/esm/components/carousel/carousel.js +64 -0
  532. package/dist/esm/components/carousel/index.js +4 -0
  533. package/dist/esm/components/carousel/namespace.js +1 -0
  534. package/dist/esm/components/center/center.js +20 -0
  535. package/dist/esm/components/center/index.js +1 -0
  536. package/dist/esm/components/checkbox/checkbox.js +89 -0
  537. package/dist/esm/components/checkbox/index.js +4 -0
  538. package/dist/esm/components/checkbox/namespace.js +1 -0
  539. package/dist/esm/components/checkbox-card/checkbox-card.js +58 -0
  540. package/dist/esm/components/checkbox-card/index.js +4 -0
  541. package/dist/esm/components/checkbox-card/namespace.js +1 -0
  542. package/dist/esm/components/checkmark/checkmark.js +44 -0
  543. package/dist/esm/components/checkmark/index.js +1 -0
  544. package/dist/esm/components/circle/index.js +13 -0
  545. package/dist/esm/components/client-only/client-only.js +14 -0
  546. package/dist/esm/components/client-only/index.js +1 -0
  547. package/dist/esm/components/clipboard/clipboard.js +37 -0
  548. package/dist/esm/components/clipboard/index.js +4 -0
  549. package/dist/esm/components/clipboard/namespace.js +1 -0
  550. package/dist/esm/components/code/code.js +10 -0
  551. package/dist/esm/components/code/index.js +1 -0
  552. package/dist/esm/components/code-block/adapters.js +96 -0
  553. package/dist/esm/components/code-block/code-block-adapter-context.js +14 -0
  554. package/dist/esm/components/code-block/code-block-adapter-provider.js +11 -0
  555. package/dist/esm/components/code-block/code-block-context.js +9 -0
  556. package/dist/esm/components/code-block/code-block.js +244 -0
  557. package/dist/esm/components/code-block/index.js +5 -0
  558. package/dist/esm/components/code-block/namespace.js +2 -0
  559. package/dist/esm/components/code-block/types.js +1 -0
  560. package/dist/esm/components/code-block/use-code-highlight.js +28 -0
  561. package/dist/esm/components/collapsible/collapsible.js +19 -0
  562. package/dist/esm/components/collapsible/index.js +4 -0
  563. package/dist/esm/components/collapsible/namespace.js +1 -0
  564. package/dist/esm/components/color-picker/color-picker.js +104 -0
  565. package/dist/esm/components/color-picker/index.js +4 -0
  566. package/dist/esm/components/color-picker/namespace.js +1 -0
  567. package/dist/esm/components/color-swatch/index.js +53 -0
  568. package/dist/esm/components/combobox/combobox.js +75 -0
  569. package/dist/esm/components/combobox/index.js +4 -0
  570. package/dist/esm/components/combobox/namespace.js +1 -0
  571. package/dist/esm/components/container/container.js +10 -0
  572. package/dist/esm/components/container/index.js +1 -0
  573. package/dist/esm/components/data-list/data-list.js +22 -0
  574. package/dist/esm/components/data-list/index.js +3 -0
  575. package/dist/esm/components/data-list/namespace.js +1 -0
  576. package/dist/esm/components/date-picker/date-picker.js +144 -0
  577. package/dist/esm/components/date-picker/index.js +4 -0
  578. package/dist/esm/components/date-picker/namespace.js +2 -0
  579. package/dist/esm/components/dialog/dialog.js +64 -0
  580. package/dist/esm/components/dialog/index.js +4 -0
  581. package/dist/esm/components/dialog/namespace.js +1 -0
  582. package/dist/esm/components/download-trigger/index.js +9 -0
  583. package/dist/esm/components/drawer/drawer.js +64 -0
  584. package/dist/esm/components/drawer/index.js +4 -0
  585. package/dist/esm/components/drawer/namespace.js +1 -0
  586. package/dist/esm/components/editable/editable.js +49 -0
  587. package/dist/esm/components/editable/index.js +4 -0
  588. package/dist/esm/components/editable/namespace.js +1 -0
  589. package/dist/esm/components/em/index.js +11 -0
  590. package/dist/esm/components/empty-state/empty-state.js +20 -0
  591. package/dist/esm/components/empty-state/index.js +3 -0
  592. package/dist/esm/components/empty-state/namespace.js +1 -0
  593. package/dist/esm/components/environment/index.js +1 -0
  594. package/dist/esm/components/field/field.js +60 -0
  595. package/dist/esm/components/field/index.js +4 -0
  596. package/dist/esm/components/field/namespace.js +2 -0
  597. package/dist/esm/components/fieldset/fieldset.js +16 -0
  598. package/dist/esm/components/fieldset/index.js +4 -0
  599. package/dist/esm/components/fieldset/namespace.js +1 -0
  600. package/dist/esm/components/file-upload/file-upload.js +98 -0
  601. package/dist/esm/components/file-upload/index.js +4 -0
  602. package/dist/esm/components/file-upload/namespace.js +1 -0
  603. package/dist/esm/components/flex/flex.js +40 -0
  604. package/dist/esm/components/flex/index.js +1 -0
  605. package/dist/esm/components/float/float.js +73 -0
  606. package/dist/esm/components/float/index.js +1 -0
  607. package/dist/esm/components/floating-panel/floating-panel.js +40 -0
  608. package/dist/esm/components/floating-panel/index.js +4 -0
  609. package/dist/esm/components/floating-panel/namespace.js +2 -0
  610. package/dist/esm/components/focus-trap/focus-trap.js +7 -0
  611. package/dist/esm/components/focus-trap/index.js +1 -0
  612. package/dist/esm/components/for/for.js +9 -0
  613. package/dist/esm/components/for/index.js +1 -0
  614. package/dist/esm/components/format/index.js +6 -0
  615. package/dist/esm/components/grid/grid-item.js +44 -0
  616. package/dist/esm/components/grid/grid.js +44 -0
  617. package/dist/esm/components/grid/index.js +2 -0
  618. package/dist/esm/components/group/group.js +145 -0
  619. package/dist/esm/components/group/index.js +1 -0
  620. package/dist/esm/components/heading/index.js +10 -0
  621. package/dist/esm/components/highlight/highlight.js +23 -0
  622. package/dist/esm/components/highlight/index.js +2 -0
  623. package/dist/esm/components/hover-card/hover-card.js +30 -0
  624. package/dist/esm/components/hover-card/index.js +4 -0
  625. package/dist/esm/components/hover-card/namespace.js +1 -0
  626. package/dist/esm/components/icon/create-icon.js +28 -0
  627. package/dist/esm/components/icon/icon.js +31 -0
  628. package/dist/esm/components/icon/index.js +2 -0
  629. package/dist/esm/components/icons.js +219 -0
  630. package/dist/esm/components/image/image.js +24 -0
  631. package/dist/esm/components/image/index.js +1 -0
  632. package/dist/esm/components/index.js +289 -0
  633. package/dist/esm/components/input/index.js +1 -0
  634. package/dist/esm/components/input/input.js +11 -0
  635. package/dist/esm/components/input-addon/index.js +1 -0
  636. package/dist/esm/components/input-addon/input-addon.js +16 -0
  637. package/dist/esm/components/input-element/index.js +1 -0
  638. package/dist/esm/components/input-element/input-element.js +28 -0
  639. package/dist/esm/components/input-group/index.js +1 -0
  640. package/dist/esm/components/input-group/input-group.js +49 -0
  641. package/dist/esm/components/kbd/index.js +1 -0
  642. package/dist/esm/components/kbd/kbd.js +10 -0
  643. package/dist/esm/components/link/index.js +2 -0
  644. package/dist/esm/components/link/link-box.js +62 -0
  645. package/dist/esm/components/link/link.js +10 -0
  646. package/dist/esm/components/list/index.js +3 -0
  647. package/dist/esm/components/list/list.js +22 -0
  648. package/dist/esm/components/list/namespace.js +1 -0
  649. package/dist/esm/components/listbox/index.js +4 -0
  650. package/dist/esm/components/listbox/listbox.js +61 -0
  651. package/dist/esm/components/listbox/namespace.js +1 -0
  652. package/dist/esm/components/loader/index.js +2 -0
  653. package/dist/esm/components/loader/loader-overlay.js +17 -0
  654. package/dist/esm/components/loader/loader.js +28 -0
  655. package/dist/esm/components/locale/index.js +1 -0
  656. package/dist/esm/components/mark/index.js +10 -0
  657. package/dist/esm/components/marquee/index.js +4 -0
  658. package/dist/esm/components/marquee/marquee.js +33 -0
  659. package/dist/esm/components/marquee/namespace.js +1 -0
  660. package/dist/esm/components/menu/index.js +4 -0
  661. package/dist/esm/components/menu/menu.js +90 -0
  662. package/dist/esm/components/menu/namespace.js +1 -0
  663. package/dist/esm/components/native-select/index.js +3 -0
  664. package/dist/esm/components/native-select/namespace.js +1 -0
  665. package/dist/esm/components/native-select/native-select.js +71 -0
  666. package/dist/esm/components/number-input/index.js +4 -0
  667. package/dist/esm/components/number-input/namespace.js +1 -0
  668. package/dist/esm/components/number-input/number-input.js +35 -0
  669. package/dist/esm/components/pagination/index.js +4 -0
  670. package/dist/esm/components/pagination/namespace.js +1 -0
  671. package/dist/esm/components/pagination/pagination.js +68 -0
  672. package/dist/esm/components/pin-input/index.js +4 -0
  673. package/dist/esm/components/pin-input/namespace.js +1 -0
  674. package/dist/esm/components/pin-input/pin-input.js +32 -0
  675. package/dist/esm/components/popover/index.js +4 -0
  676. package/dist/esm/components/popover/namespace.js +1 -0
  677. package/dist/esm/components/popover/popover.js +59 -0
  678. package/dist/esm/components/portal/index.js +1 -0
  679. package/dist/esm/components/presence/index.js +7 -0
  680. package/dist/esm/components/progress/index.js +4 -0
  681. package/dist/esm/components/progress/namespace.js +1 -0
  682. package/dist/esm/components/progress/progress.js +35 -0
  683. package/dist/esm/components/progress-circle/index.js +3 -0
  684. package/dist/esm/components/progress-circle/namespace.js +1 -0
  685. package/dist/esm/components/progress-circle/progress-circle.js +21 -0
  686. package/dist/esm/components/qr-code/index.js +4 -0
  687. package/dist/esm/components/qr-code/namespace.js +2 -0
  688. package/dist/esm/components/qr-code/qr-code.js +38 -0
  689. package/dist/esm/components/quote/index.js +12 -0
  690. package/dist/esm/components/radio-card/index.js +4 -0
  691. package/dist/esm/components/radio-card/namespace.js +1 -0
  692. package/dist/esm/components/radio-card/radio-card.js +89 -0
  693. package/dist/esm/components/radio-group/index.js +4 -0
  694. package/dist/esm/components/radio-group/namespace.js +1 -0
  695. package/dist/esm/components/radio-group/radio-group.js +46 -0
  696. package/dist/esm/components/radiomark/index.js +1 -0
  697. package/dist/esm/components/radiomark/radiomark.js +27 -0
  698. package/dist/esm/components/rating-group/index.js +4 -0
  699. package/dist/esm/components/rating-group/namespace.js +1 -0
  700. package/dist/esm/components/rating-group/rating-group.js +55 -0
  701. package/dist/esm/components/scroll-area/index.js +4 -0
  702. package/dist/esm/components/scroll-area/namespace.js +1 -0
  703. package/dist/esm/components/scroll-area/scroll-area.js +30 -0
  704. package/dist/esm/components/segment-group/index.js +4 -0
  705. package/dist/esm/components/segment-group/namespace.js +1 -0
  706. package/dist/esm/components/segment-group/segment-group.js +50 -0
  707. package/dist/esm/components/select/index.js +4 -0
  708. package/dist/esm/components/select/namespace.js +1 -0
  709. package/dist/esm/components/select/select.js +84 -0
  710. package/dist/esm/components/separator/index.js +1 -0
  711. package/dist/esm/components/separator/separator.js +33 -0
  712. package/dist/esm/components/show/index.js +1 -0
  713. package/dist/esm/components/show/show.js +14 -0
  714. package/dist/esm/components/simple-grid/index.js +1 -0
  715. package/dist/esm/components/simple-grid/simple-grid.js +34 -0
  716. package/dist/esm/components/skeleton/index.js +1 -0
  717. package/dist/esm/components/skeleton/skeleton.js +37 -0
  718. package/dist/esm/components/skip-nav/index.js +2 -0
  719. package/dist/esm/components/skip-nav/skip-nav-content.js +23 -0
  720. package/dist/esm/components/skip-nav/skip-nav-link.js +26 -0
  721. package/dist/esm/components/slider/index.js +4 -0
  722. package/dist/esm/components/slider/namespace.js +1 -0
  723. package/dist/esm/components/slider/slider.js +73 -0
  724. package/dist/esm/components/spacer/index.js +1 -0
  725. package/dist/esm/components/spacer/spacer.js +13 -0
  726. package/dist/esm/components/span/index.js +7 -0
  727. package/dist/esm/components/spinner/index.js +1 -0
  728. package/dist/esm/components/spinner/spinner.js +10 -0
  729. package/dist/esm/components/splitter/index.js +4 -0
  730. package/dist/esm/components/splitter/namespace.js +1 -0
  731. package/dist/esm/components/splitter/splitter.js +36 -0
  732. package/dist/esm/components/square/index.js +28 -0
  733. package/dist/esm/components/stack/get-separator-style.js +38 -0
  734. package/dist/esm/components/stack/h-stack.js +12 -0
  735. package/dist/esm/components/stack/index.js +4 -0
  736. package/dist/esm/components/stack/stack-separator.js +15 -0
  737. package/dist/esm/components/stack/stack.js +60 -0
  738. package/dist/esm/components/stack/v-stack.js +12 -0
  739. package/dist/esm/components/stat/index.js +3 -0
  740. package/dist/esm/components/stat/namespace.js +1 -0
  741. package/dist/esm/components/stat/stat.js +70 -0
  742. package/dist/esm/components/status/index.js +3 -0
  743. package/dist/esm/components/status/namespace.js +1 -0
  744. package/dist/esm/components/status/status.js +17 -0
  745. package/dist/esm/components/steps/index.js +4 -0
  746. package/dist/esm/components/steps/namespace.js +1 -0
  747. package/dist/esm/components/steps/steps.js +79 -0
  748. package/dist/esm/components/sticky/index.js +12 -0
  749. package/dist/esm/components/strong/index.js +9 -0
  750. package/dist/esm/components/switch/index.js +4 -0
  751. package/dist/esm/components/switch/namespace.js +1 -0
  752. package/dist/esm/components/switch/switch.js +63 -0
  753. package/dist/esm/components/table/index.js +3 -0
  754. package/dist/esm/components/table/namespace.js +1 -0
  755. package/dist/esm/components/table/table.js +78 -0
  756. package/dist/esm/components/tabs/index.js +4 -0
  757. package/dist/esm/components/tabs/namespace.js +2 -0
  758. package/dist/esm/components/tabs/tabs.js +40 -0
  759. package/dist/esm/components/tag/index.js +3 -0
  760. package/dist/esm/components/tag/namespace.js +1 -0
  761. package/dist/esm/components/tag/tag.js +27 -0
  762. package/dist/esm/components/tags-input/index.js +4 -0
  763. package/dist/esm/components/tags-input/namespace.js +1 -0
  764. package/dist/esm/components/tags-input/tags-input.js +47 -0
  765. package/dist/esm/components/text/index.js +10 -0
  766. package/dist/esm/components/textarea/index.js +1 -0
  767. package/dist/esm/components/textarea/textarea.js +13 -0
  768. package/dist/esm/components/theme.js +31 -0
  769. package/dist/esm/components/timeline/index.js +3 -0
  770. package/dist/esm/components/timeline/namespace.js +1 -0
  771. package/dist/esm/components/timeline/timeline.js +31 -0
  772. package/dist/esm/components/toast/index.js +4 -0
  773. package/dist/esm/components/toast/namespace.js +1 -0
  774. package/dist/esm/components/toast/toast.js +60 -0
  775. package/dist/esm/components/toggle/index.js +4 -0
  776. package/dist/esm/components/toggle/namespace.js +1 -0
  777. package/dist/esm/components/toggle/toggle.js +24 -0
  778. package/dist/esm/components/tooltip/index.js +4 -0
  779. package/dist/esm/components/tooltip/namespace.js +1 -0
  780. package/dist/esm/components/tooltip/tooltip.js +33 -0
  781. package/dist/esm/components/tree-view/index.js +4 -0
  782. package/dist/esm/components/tree-view/namespace.js +2 -0
  783. package/dist/esm/components/tree-view/tree-view.js +70 -0
  784. package/dist/esm/components/visually-hidden/index.js +1 -0
  785. package/dist/esm/components/visually-hidden/visually-hidden.js +20 -0
  786. package/dist/esm/components/wrap/index.js +1 -0
  787. package/dist/esm/components/wrap/wrap.js +47 -0
  788. package/dist/esm/create-context.js +33 -0
  789. package/dist/esm/hooks/index.js +14 -0
  790. package/dist/esm/hooks/use-breakpoint.js +44 -0
  791. package/dist/esm/hooks/use-callback-ref.js +14 -0
  792. package/dist/esm/hooks/use-const.js +12 -0
  793. package/dist/esm/hooks/use-controllable-state.js +39 -0
  794. package/dist/esm/hooks/use-disclosure.js +35 -0
  795. package/dist/esm/hooks/use-element-rect.js +24 -0
  796. package/dist/esm/hooks/use-force-update.js +8 -0
  797. package/dist/esm/hooks/use-list-collection.js +1 -0
  798. package/dist/esm/hooks/use-live-ref.js +10 -0
  799. package/dist/esm/hooks/use-media-query.js +54 -0
  800. package/dist/esm/hooks/use-overlay.js +156 -0
  801. package/dist/esm/hooks/use-previous.js +14 -0
  802. package/dist/esm/hooks/use-safe-layout-effect.js +6 -0
  803. package/dist/esm/hooks/use-update-effect.js +23 -0
  804. package/dist/esm/index.js +320 -0
  805. package/dist/esm/merge-props.js +34 -0
  806. package/dist/esm/merge-refs.js +48 -0
  807. package/dist/esm/preset-base.js +1098 -0
  808. package/dist/esm/preset.js +9 -0
  809. package/dist/esm/styled-system/breakpoints.js +112 -0
  810. package/dist/esm/styled-system/calc.js +42 -0
  811. package/dist/esm/styled-system/color-mix.js +32 -0
  812. package/dist/esm/styled-system/composition.js +1 -0
  813. package/dist/esm/styled-system/conditions.js +43 -0
  814. package/dist/esm/styled-system/config.js +24 -0
  815. package/dist/esm/styled-system/create-recipe-context.js +74 -0
  816. package/dist/esm/styled-system/create-slot-recipe-context.js +141 -0
  817. package/dist/esm/styled-system/css-var.js +18 -0
  818. package/dist/esm/styled-system/css.js +71 -0
  819. package/dist/esm/styled-system/css.types.js +1 -0
  820. package/dist/esm/styled-system/cva.js +124 -0
  821. package/dist/esm/styled-system/display-name.js +17 -0
  822. package/dist/esm/styled-system/empty.js +6 -0
  823. package/dist/esm/styled-system/esc.js +12 -0
  824. package/dist/esm/styled-system/expand-reference.js +133 -0
  825. package/dist/esm/styled-system/factory.js +240 -0
  826. package/dist/esm/styled-system/factory.types.js +1 -0
  827. package/dist/esm/styled-system/generated/conditions.gen.js +1 -0
  828. package/dist/esm/styled-system/generated/prop-types.gen.js +1 -0
  829. package/dist/esm/styled-system/generated/recipes.gen.js +1 -0
  830. package/dist/esm/styled-system/generated/system.gen.js +1 -0
  831. package/dist/esm/styled-system/generated/token.gen.js +1 -0
  832. package/dist/esm/styled-system/index.js +12 -0
  833. package/dist/esm/styled-system/layers.js +28 -0
  834. package/dist/esm/styled-system/map-to-json.js +13 -0
  835. package/dist/esm/styled-system/merge-config.js +42 -0
  836. package/dist/esm/styled-system/normalize.js +16 -0
  837. package/dist/esm/styled-system/preflight.js +165 -0
  838. package/dist/esm/styled-system/provider.js +15 -0
  839. package/dist/esm/styled-system/recipe-props.js +12 -0
  840. package/dist/esm/styled-system/recipe.types.js +1 -0
  841. package/dist/esm/styled-system/references.js +36 -0
  842. package/dist/esm/styled-system/resolve-token-value.js +25 -0
  843. package/dist/esm/styled-system/selectors.js +1 -0
  844. package/dist/esm/styled-system/serialize.js +69 -0
  845. package/dist/esm/styled-system/singleton.js +10 -0
  846. package/dist/esm/styled-system/sort-at-params.js +69 -0
  847. package/dist/esm/styled-system/sort-at-rules.js +33 -0
  848. package/dist/esm/styled-system/sva.js +84 -0
  849. package/dist/esm/styled-system/system.js +282 -0
  850. package/dist/esm/styled-system/token-dictionary.js +437 -0
  851. package/dist/esm/styled-system/token-middleware.js +146 -0
  852. package/dist/esm/styled-system/token-transforms.js +76 -0
  853. package/dist/esm/styled-system/types.js +1 -0
  854. package/dist/esm/styled-system/unit-conversion.js +53 -0
  855. package/dist/esm/styled-system/use-recipe.js +15 -0
  856. package/dist/esm/styled-system/use-resolved-props.js +65 -0
  857. package/dist/esm/styled-system/use-slot-recipe.js +15 -0
  858. package/dist/esm/styled-system/use-token.js +13 -0
  859. package/dist/esm/styled-system/utility.js +174 -0
  860. package/dist/esm/theme/breakpoints.js +9 -0
  861. package/dist/esm/theme/global-css.js +56 -0
  862. package/dist/esm/theme/index.js +149 -0
  863. package/dist/esm/theme/layer-styles.js +114 -0
  864. package/dist/esm/theme/motion-styles.js +52 -0
  865. package/dist/esm/theme/recipes/accordion.js +142 -0
  866. package/dist/esm/theme/recipes/action-bar.js +84 -0
  867. package/dist/esm/theme/recipes/alert.js +153 -0
  868. package/dist/esm/theme/recipes/avatar.js +140 -0
  869. package/dist/esm/theme/recipes/badge.js +71 -0
  870. package/dist/esm/theme/recipes/blockquote.js +80 -0
  871. package/dist/esm/theme/recipes/breadcrumb.js +97 -0
  872. package/dist/esm/theme/recipes/button.js +182 -0
  873. package/dist/esm/theme/recipes/card.js +100 -0
  874. package/dist/esm/theme/recipes/carousel.js +64 -0
  875. package/dist/esm/theme/recipes/checkbox-card.js +207 -0
  876. package/dist/esm/theme/recipes/checkbox.js +66 -0
  877. package/dist/esm/theme/recipes/checkmark.js +93 -0
  878. package/dist/esm/theme/recipes/code-block.js +225 -0
  879. package/dist/esm/theme/recipes/code.js +17 -0
  880. package/dist/esm/theme/recipes/collapsible.js +28 -0
  881. package/dist/esm/theme/recipes/color-picker.js +260 -0
  882. package/dist/esm/theme/recipes/color-swatch.js +41 -0
  883. package/dist/esm/theme/recipes/combobox.js +290 -0
  884. package/dist/esm/theme/recipes/container.js +28 -0
  885. package/dist/esm/theme/recipes/data-list.js +96 -0
  886. package/dist/esm/theme/recipes/date-picker.js +390 -0
  887. package/dist/esm/theme/recipes/dialog.js +230 -0
  888. package/dist/esm/theme/recipes/drawer.js +212 -0
  889. package/dist/esm/theme/recipes/editable.js +86 -0
  890. package/dist/esm/theme/recipes/empty-state.js +88 -0
  891. package/dist/esm/theme/recipes/field.js +68 -0
  892. package/dist/esm/theme/recipes/fieldset.js +62 -0
  893. package/dist/esm/theme/recipes/file-upload.js +109 -0
  894. package/dist/esm/theme/recipes/floating-panel.js +78 -0
  895. package/dist/esm/theme/recipes/heading.js +29 -0
  896. package/dist/esm/theme/recipes/hover-card.js +69 -0
  897. package/dist/esm/theme/recipes/icon.js +28 -0
  898. package/dist/esm/theme/recipes/input-addon.js +43 -0
  899. package/dist/esm/theme/recipes/input.js +101 -0
  900. package/dist/esm/theme/recipes/kbd.js +59 -0
  901. package/dist/esm/theme/recipes/link.js +37 -0
  902. package/dist/esm/theme/recipes/list.js +64 -0
  903. package/dist/esm/theme/recipes/listbox.js +130 -0
  904. package/dist/esm/theme/recipes/mark.js +28 -0
  905. package/dist/esm/theme/recipes/marquee.js +91 -0
  906. package/dist/esm/theme/recipes/menu.js +146 -0
  907. package/dist/esm/theme/recipes/native-select.js +154 -0
  908. package/dist/esm/theme/recipes/number-input.js +115 -0
  909. package/dist/esm/theme/recipes/pin-input.js +50 -0
  910. package/dist/esm/theme/recipes/popover.js +89 -0
  911. package/dist/esm/theme/recipes/progress-circle.js +94 -0
  912. package/dist/esm/theme/recipes/progress.js +125 -0
  913. package/dist/esm/theme/recipes/qr-code.js +62 -0
  914. package/dist/esm/theme/recipes/radio-card.js +217 -0
  915. package/dist/esm/theme/recipes/radio-group.js +64 -0
  916. package/dist/esm/theme/recipes/radiomark.js +104 -0
  917. package/dist/esm/theme/recipes/rating-group.js +87 -0
  918. package/dist/esm/theme/recipes/scroll-area.js +138 -0
  919. package/dist/esm/theme/recipes/segment-group.js +126 -0
  920. package/dist/esm/theme/recipes/select.js +294 -0
  921. package/dist/esm/theme/recipes/separator.js +51 -0
  922. package/dist/esm/theme/recipes/skeleton.js +52 -0
  923. package/dist/esm/theme/recipes/skip-nav-link.js +34 -0
  924. package/dist/esm/theme/recipes/slider.js +198 -0
  925. package/dist/esm/theme/recipes/spinner.js +34 -0
  926. package/dist/esm/theme/recipes/splitter.js +78 -0
  927. package/dist/esm/theme/recipes/stat.js +82 -0
  928. package/dist/esm/theme/recipes/status.js +46 -0
  929. package/dist/esm/theme/recipes/steps.js +217 -0
  930. package/dist/esm/theme/recipes/switch.js +162 -0
  931. package/dist/esm/theme/recipes/table.js +163 -0
  932. package/dist/esm/theme/recipes/tabs.js +273 -0
  933. package/dist/esm/theme/recipes/tag.js +128 -0
  934. package/dist/esm/theme/recipes/tags-input.js +237 -0
  935. package/dist/esm/theme/recipes/textarea.js +88 -0
  936. package/dist/esm/theme/recipes/timeline.js +157 -0
  937. package/dist/esm/theme/recipes/toast.js +100 -0
  938. package/dist/esm/theme/recipes/tooltip.js +42 -0
  939. package/dist/esm/theme/recipes/tree-view.js +166 -0
  940. package/dist/esm/theme/recipes.export.js +19 -0
  941. package/dist/esm/theme/recipes.js +43 -0
  942. package/dist/esm/theme/semantic-tokens/colors.js +353 -0
  943. package/dist/esm/theme/semantic-tokens/radii.js +9 -0
  944. package/dist/esm/theme/semantic-tokens/shadows.js +54 -0
  945. package/dist/esm/theme/slot-recipes.export.js +55 -0
  946. package/dist/esm/theme/slot-recipes.js +117 -0
  947. package/dist/esm/theme/text-styles.js +48 -0
  948. package/dist/esm/theme/tokens/animations.js +10 -0
  949. package/dist/esm/theme/tokens/aspect-ratios.js +12 -0
  950. package/dist/esm/theme/tokens/blurs.js +14 -0
  951. package/dist/esm/theme/tokens/borders.js +11 -0
  952. package/dist/esm/theme/tokens/colors.js +166 -0
  953. package/dist/esm/theme/tokens/cursor.js +14 -0
  954. package/dist/esm/theme/tokens/durations.js +13 -0
  955. package/dist/esm/theme/tokens/easings.js +10 -0
  956. package/dist/esm/theme/tokens/font-sizes.js +20 -0
  957. package/dist/esm/theme/tokens/font-weights.js +15 -0
  958. package/dist/esm/theme/tokens/fonts.js +16 -0
  959. package/dist/esm/theme/tokens/keyframes.js +169 -0
  960. package/dist/esm/theme/tokens/letter-spacing.js +11 -0
  961. package/dist/esm/theme/tokens/line-heights.js +11 -0
  962. package/dist/esm/theme/tokens/radius.js +17 -0
  963. package/dist/esm/theme/tokens/sizes.js +69 -0
  964. package/dist/esm/theme/tokens/spacing.js +40 -0
  965. package/dist/esm/theme/tokens/z-indices.js +19 -0
  966. package/dist/esm/utils/attr.js +3 -0
  967. package/dist/esm/utils/call-all.js +7 -0
  968. package/dist/esm/utils/clone.js +11 -0
  969. package/dist/esm/utils/compact.js +9 -0
  970. package/dist/esm/utils/create-props.js +3 -0
  971. package/dist/esm/utils/cx.js +14 -0
  972. package/dist/esm/utils/entries.js +10 -0
  973. package/dist/esm/utils/flatten.js +17 -0
  974. package/dist/esm/utils/index.js +18 -0
  975. package/dist/esm/utils/interop.js +5 -0
  976. package/dist/esm/utils/is.js +6 -0
  977. package/dist/esm/utils/memo.js +64 -0
  978. package/dist/esm/utils/merge.js +33 -0
  979. package/dist/esm/utils/omit.js +11 -0
  980. package/dist/esm/utils/ref.js +11 -0
  981. package/dist/esm/utils/split-props.js +26 -0
  982. package/dist/esm/utils/types.js +1 -0
  983. package/dist/esm/utils/uniq.js +9 -0
  984. package/dist/esm/utils/unit.js +8 -0
  985. package/dist/esm/utils/walk-object.js +37 -0
  986. package/dist/types/anatomy.d.ts +56 -0
  987. package/dist/types/collection.d.ts +2 -0
  988. package/dist/types/components/absolute-center/absolute-center.d.ts +15 -0
  989. package/dist/types/components/absolute-center/index.d.ts +2 -0
  990. package/dist/types/components/accordion/accordion.d.ts +37 -0
  991. package/dist/types/components/accordion/index.d.ts +5 -0
  992. package/dist/types/components/accordion/namespace.d.ts +2 -0
  993. package/dist/types/components/action-bar/action-bar.d.ts +35 -0
  994. package/dist/types/components/action-bar/index.d.ts +5 -0
  995. package/dist/types/components/action-bar/namespace.d.ts +3 -0
  996. package/dist/types/components/alert/alert.d.ts +25 -0
  997. package/dist/types/components/alert/index.d.ts +3 -0
  998. package/dist/types/components/alert/namespace.d.ts +2 -0
  999. package/dist/types/components/aspect-ratio/aspect-ratio.d.ts +10 -0
  1000. package/dist/types/components/aspect-ratio/index.d.ts +2 -0
  1001. package/dist/types/components/avatar/avatar.d.ts +37 -0
  1002. package/dist/types/components/avatar/index.d.ts +5 -0
  1003. package/dist/types/components/avatar/namespace.d.ts +2 -0
  1004. package/dist/types/components/badge/badge.d.ts +8 -0
  1005. package/dist/types/components/badge/index.d.ts +2 -0
  1006. package/dist/types/components/bleed/bleed.d.ts +28 -0
  1007. package/dist/types/components/bleed/index.d.ts +2 -0
  1008. package/dist/types/components/blockquote/blockquote.d.ts +18 -0
  1009. package/dist/types/components/blockquote/index.d.ts +3 -0
  1010. package/dist/types/components/blockquote/namespace.d.ts +2 -0
  1011. package/dist/types/components/box/index.d.ts +10 -0
  1012. package/dist/types/components/breadcrumb/breadcrumb.d.ts +27 -0
  1013. package/dist/types/components/breadcrumb/index.d.ts +3 -0
  1014. package/dist/types/components/breadcrumb/namespace.d.ts +2 -0
  1015. package/dist/types/components/button/button-group.d.ts +5 -0
  1016. package/dist/types/components/button/button.d.ts +27 -0
  1017. package/dist/types/components/button/close-button.d.ts +5 -0
  1018. package/dist/types/components/button/icon-button.d.ts +4 -0
  1019. package/dist/types/components/button/index.d.ts +8 -0
  1020. package/dist/types/components/card/card.d.ts +24 -0
  1021. package/dist/types/components/card/index.d.ts +3 -0
  1022. package/dist/types/components/card/namespace.d.ts +2 -0
  1023. package/dist/types/components/carousel/carousel.d.ts +58 -0
  1024. package/dist/types/components/carousel/index.d.ts +5 -0
  1025. package/dist/types/components/carousel/namespace.d.ts +2 -0
  1026. package/dist/types/components/center/center.d.ts +12 -0
  1027. package/dist/types/components/center/index.d.ts +2 -0
  1028. package/dist/types/components/checkbox/checkbox.d.ts +35 -0
  1029. package/dist/types/components/checkbox/index.d.ts +5 -0
  1030. package/dist/types/components/checkbox/namespace.d.ts +2 -0
  1031. package/dist/types/components/checkbox-card/checkbox-card.d.ts +38 -0
  1032. package/dist/types/components/checkbox-card/index.d.ts +5 -0
  1033. package/dist/types/components/checkbox-card/namespace.d.ts +2 -0
  1034. package/dist/types/components/checkmark/checkmark.d.ts +16 -0
  1035. package/dist/types/components/checkmark/index.d.ts +2 -0
  1036. package/dist/types/components/circle/index.d.ts +4 -0
  1037. package/dist/types/components/client-only/client-only.d.ts +14 -0
  1038. package/dist/types/components/client-only/index.d.ts +2 -0
  1039. package/dist/types/components/clipboard/clipboard.d.ts +38 -0
  1040. package/dist/types/components/clipboard/index.d.ts +5 -0
  1041. package/dist/types/components/clipboard/namespace.d.ts +2 -0
  1042. package/dist/types/components/code/code.d.ts +7 -0
  1043. package/dist/types/components/code/index.d.ts +2 -0
  1044. package/dist/types/components/code-block/adapters.d.ts +33 -0
  1045. package/dist/types/components/code-block/code-block-adapter-context.d.ts +4 -0
  1046. package/dist/types/components/code-block/code-block-adapter-provider.d.ts +6 -0
  1047. package/dist/types/components/code-block/code-block-context.d.ts +13 -0
  1048. package/dist/types/components/code-block/code-block.d.ts +85 -0
  1049. package/dist/types/components/code-block/index.d.ts +6 -0
  1050. package/dist/types/components/code-block/namespace.d.ts +3 -0
  1051. package/dist/types/components/code-block/types.d.ts +67 -0
  1052. package/dist/types/components/code-block/use-code-highlight.d.ts +7 -0
  1053. package/dist/types/components/collapsible/collapsible.d.ts +28 -0
  1054. package/dist/types/components/collapsible/index.d.ts +5 -0
  1055. package/dist/types/components/collapsible/namespace.d.ts +2 -0
  1056. package/dist/types/components/color-picker/color-picker.d.ts +113 -0
  1057. package/dist/types/components/color-picker/index.d.ts +5 -0
  1058. package/dist/types/components/color-picker/namespace.d.ts +3 -0
  1059. package/dist/types/components/color-swatch/index.d.ts +13 -0
  1060. package/dist/types/components/combobox/combobox.d.ts +78 -0
  1061. package/dist/types/components/combobox/index.d.ts +5 -0
  1062. package/dist/types/components/combobox/namespace.d.ts +3 -0
  1063. package/dist/types/components/container/container.d.ts +7 -0
  1064. package/dist/types/components/container/index.d.ts +2 -0
  1065. package/dist/types/components/data-list/data-list.d.ts +18 -0
  1066. package/dist/types/components/data-list/index.d.ts +3 -0
  1067. package/dist/types/components/data-list/namespace.d.ts +2 -0
  1068. package/dist/types/components/date-picker/date-picker.d.ts +144 -0
  1069. package/dist/types/components/date-picker/index.d.ts +5 -0
  1070. package/dist/types/components/date-picker/namespace.d.ts +4 -0
  1071. package/dist/types/components/dialog/dialog.d.ts +54 -0
  1072. package/dist/types/components/dialog/index.d.ts +5 -0
  1073. package/dist/types/components/dialog/namespace.d.ts +3 -0
  1074. package/dist/types/components/download-trigger/index.d.ts +7 -0
  1075. package/dist/types/components/drawer/drawer.d.ts +54 -0
  1076. package/dist/types/components/drawer/index.d.ts +5 -0
  1077. package/dist/types/components/drawer/namespace.d.ts +3 -0
  1078. package/dist/types/components/editable/editable.d.ts +44 -0
  1079. package/dist/types/components/editable/index.d.ts +5 -0
  1080. package/dist/types/components/editable/namespace.d.ts +3 -0
  1081. package/dist/types/components/em/index.d.ts +4 -0
  1082. package/dist/types/components/empty-state/empty-state.d.ts +21 -0
  1083. package/dist/types/components/empty-state/index.d.ts +3 -0
  1084. package/dist/types/components/empty-state/namespace.d.ts +2 -0
  1085. package/dist/types/components/environment/index.d.ts +2 -0
  1086. package/dist/types/components/field/field.d.ts +27 -0
  1087. package/dist/types/components/field/index.d.ts +5 -0
  1088. package/dist/types/components/field/namespace.d.ts +4 -0
  1089. package/dist/types/components/fieldset/fieldset.d.ts +22 -0
  1090. package/dist/types/components/fieldset/index.d.ts +4 -0
  1091. package/dist/types/components/fieldset/namespace.d.ts +2 -0
  1092. package/dist/types/components/file-upload/file-upload.d.ts +78 -0
  1093. package/dist/types/components/file-upload/index.d.ts +5 -0
  1094. package/dist/types/components/file-upload/namespace.d.ts +3 -0
  1095. package/dist/types/components/flex/flex.d.ts +14 -0
  1096. package/dist/types/components/flex/index.d.ts +2 -0
  1097. package/dist/types/components/float/float.d.ts +23 -0
  1098. package/dist/types/components/float/index.d.ts +2 -0
  1099. package/dist/types/components/floating-panel/floating-panel.d.ts +56 -0
  1100. package/dist/types/components/floating-panel/index.d.ts +5 -0
  1101. package/dist/types/components/floating-panel/namespace.d.ts +4 -0
  1102. package/dist/types/components/focus-trap/focus-trap.d.ts +5 -0
  1103. package/dist/types/components/focus-trap/index.d.ts +2 -0
  1104. package/dist/types/components/for/for.d.ts +16 -0
  1105. package/dist/types/components/for/index.d.ts +2 -0
  1106. package/dist/types/components/format/index.d.ts +13 -0
  1107. package/dist/types/components/grid/grid-item.d.ts +12 -0
  1108. package/dist/types/components/grid/grid.d.ts +15 -0
  1109. package/dist/types/components/grid/index.d.ts +4 -0
  1110. package/dist/types/components/group/group.d.ts +28 -0
  1111. package/dist/types/components/group/index.d.ts +1 -0
  1112. package/dist/types/components/heading/index.d.ts +6 -0
  1113. package/dist/types/components/highlight/highlight.d.ts +16 -0
  1114. package/dist/types/components/highlight/index.d.ts +4 -0
  1115. package/dist/types/components/hover-card/hover-card.d.ts +36 -0
  1116. package/dist/types/components/hover-card/index.d.ts +5 -0
  1117. package/dist/types/components/hover-card/namespace.d.ts +3 -0
  1118. package/dist/types/components/icon/create-icon.d.ts +27 -0
  1119. package/dist/types/components/icon/icon.d.ts +11 -0
  1120. package/dist/types/components/icon/index.d.ts +3 -0
  1121. package/dist/types/components/icons.d.ts +33 -0
  1122. package/dist/types/components/image/image.d.ts +24 -0
  1123. package/dist/types/components/image/index.d.ts +2 -0
  1124. package/dist/types/components/index.d.ts +116 -0
  1125. package/dist/types/components/input/index.d.ts +2 -0
  1126. package/dist/types/components/input/input.d.ts +7 -0
  1127. package/dist/types/components/input-addon/index.d.ts +2 -0
  1128. package/dist/types/components/input-addon/input-addon.d.ts +4 -0
  1129. package/dist/types/components/input-element/index.d.ts +2 -0
  1130. package/dist/types/components/input-element/input-element.d.ts +6 -0
  1131. package/dist/types/components/input-group/index.d.ts +2 -0
  1132. package/dist/types/components/input-group/input-group.d.ts +50 -0
  1133. package/dist/types/components/kbd/index.d.ts +2 -0
  1134. package/dist/types/components/kbd/kbd.d.ts +7 -0
  1135. package/dist/types/components/link/index.d.ts +4 -0
  1136. package/dist/types/components/link/link-box.d.ts +12 -0
  1137. package/dist/types/components/link/link.d.ts +7 -0
  1138. package/dist/types/components/list/index.d.ts +3 -0
  1139. package/dist/types/components/list/list.d.ts +15 -0
  1140. package/dist/types/components/list/namespace.d.ts +2 -0
  1141. package/dist/types/components/listbox/index.d.ts +5 -0
  1142. package/dist/types/components/listbox/listbox.d.ts +59 -0
  1143. package/dist/types/components/listbox/namespace.d.ts +3 -0
  1144. package/dist/types/components/loader/index.d.ts +4 -0
  1145. package/dist/types/components/loader/loader-overlay.d.ts +4 -0
  1146. package/dist/types/components/loader/loader.d.ts +23 -0
  1147. package/dist/types/components/locale/index.d.ts +2 -0
  1148. package/dist/types/components/mark/index.d.ts +6 -0
  1149. package/dist/types/components/marquee/index.d.ts +5 -0
  1150. package/dist/types/components/marquee/marquee.d.ts +29 -0
  1151. package/dist/types/components/marquee/namespace.d.ts +2 -0
  1152. package/dist/types/components/menu/index.d.ts +5 -0
  1153. package/dist/types/components/menu/menu.d.ts +80 -0
  1154. package/dist/types/components/menu/namespace.d.ts +3 -0
  1155. package/dist/types/components/native-select/index.d.ts +3 -0
  1156. package/dist/types/components/native-select/namespace.d.ts +2 -0
  1157. package/dist/types/components/native-select/native-select.d.ts +21 -0
  1158. package/dist/types/components/number-input/index.d.ts +5 -0
  1159. package/dist/types/components/number-input/namespace.d.ts +2 -0
  1160. package/dist/types/components/number-input/number-input.d.ts +44 -0
  1161. package/dist/types/components/pagination/index.d.ts +5 -0
  1162. package/dist/types/components/pagination/namespace.d.ts +2 -0
  1163. package/dist/types/components/pagination/pagination.d.ts +57 -0
  1164. package/dist/types/components/pin-input/index.d.ts +5 -0
  1165. package/dist/types/components/pin-input/namespace.d.ts +2 -0
  1166. package/dist/types/components/pin-input/pin-input.d.ts +29 -0
  1167. package/dist/types/components/popover/index.d.ts +5 -0
  1168. package/dist/types/components/popover/namespace.d.ts +3 -0
  1169. package/dist/types/components/popover/popover.d.ts +60 -0
  1170. package/dist/types/components/portal/index.d.ts +1 -0
  1171. package/dist/types/components/presence/index.d.ts +6 -0
  1172. package/dist/types/components/progress/index.d.ts +5 -0
  1173. package/dist/types/components/progress/namespace.d.ts +2 -0
  1174. package/dist/types/components/progress/progress.d.ts +29 -0
  1175. package/dist/types/components/progress-circle/index.d.ts +3 -0
  1176. package/dist/types/components/progress-circle/namespace.d.ts +2 -0
  1177. package/dist/types/components/progress-circle/progress-circle.d.ts +32 -0
  1178. package/dist/types/components/qr-code/index.d.ts +5 -0
  1179. package/dist/types/components/qr-code/namespace.d.ts +3 -0
  1180. package/dist/types/components/qr-code/qr-code.d.ts +28 -0
  1181. package/dist/types/components/quote/index.d.ts +4 -0
  1182. package/dist/types/components/radio-card/index.d.ts +5 -0
  1183. package/dist/types/components/radio-card/namespace.d.ts +2 -0
  1184. package/dist/types/components/radio-card/radio-card.d.ts +53 -0
  1185. package/dist/types/components/radio-group/index.d.ts +5 -0
  1186. package/dist/types/components/radio-group/namespace.d.ts +2 -0
  1187. package/dist/types/components/radio-group/radio-group.d.ts +43 -0
  1188. package/dist/types/components/radiomark/index.d.ts +2 -0
  1189. package/dist/types/components/radiomark/radiomark.d.ts +12 -0
  1190. package/dist/types/components/rating-group/index.d.ts +5 -0
  1191. package/dist/types/components/rating-group/namespace.d.ts +2 -0
  1192. package/dist/types/components/rating-group/rating-group.d.ts +39 -0
  1193. package/dist/types/components/scroll-area/index.d.ts +5 -0
  1194. package/dist/types/components/scroll-area/namespace.d.ts +2 -0
  1195. package/dist/types/components/scroll-area/scroll-area.d.ts +32 -0
  1196. package/dist/types/components/segment-group/index.d.ts +5 -0
  1197. package/dist/types/components/segment-group/namespace.d.ts +2 -0
  1198. package/dist/types/components/segment-group/segment-group.d.ts +39 -0
  1199. package/dist/types/components/select/index.d.ts +5 -0
  1200. package/dist/types/components/select/namespace.d.ts +3 -0
  1201. package/dist/types/components/select/select.d.ts +77 -0
  1202. package/dist/types/components/separator/index.d.ts +2 -0
  1203. package/dist/types/components/separator/separator.d.ts +7 -0
  1204. package/dist/types/components/show/index.d.ts +2 -0
  1205. package/dist/types/components/show/show.d.ts +16 -0
  1206. package/dist/types/components/simple-grid/index.d.ts +2 -0
  1207. package/dist/types/components/simple-grid/simple-grid.d.ts +26 -0
  1208. package/dist/types/components/skeleton/index.d.ts +2 -0
  1209. package/dist/types/components/skeleton/skeleton.d.ts +17 -0
  1210. package/dist/types/components/skip-nav/index.d.ts +4 -0
  1211. package/dist/types/components/skip-nav/skip-nav-content.d.ts +9 -0
  1212. package/dist/types/components/skip-nav/skip-nav-link.d.ts +10 -0
  1213. package/dist/types/components/slider/index.d.ts +5 -0
  1214. package/dist/types/components/slider/namespace.d.ts +2 -0
  1215. package/dist/types/components/slider/slider.d.ts +61 -0
  1216. package/dist/types/components/spacer/index.d.ts +2 -0
  1217. package/dist/types/components/spacer/spacer.d.ts +10 -0
  1218. package/dist/types/components/span/index.d.ts +4 -0
  1219. package/dist/types/components/spinner/index.d.ts +2 -0
  1220. package/dist/types/components/spinner/spinner.d.ts +5 -0
  1221. package/dist/types/components/splitter/index.d.ts +5 -0
  1222. package/dist/types/components/splitter/namespace.d.ts +2 -0
  1223. package/dist/types/components/splitter/splitter.d.ts +37 -0
  1224. package/dist/types/components/square/index.d.ts +8 -0
  1225. package/dist/types/components/stack/get-separator-style.d.ts +10 -0
  1226. package/dist/types/components/stack/h-stack.d.ts +7 -0
  1227. package/dist/types/components/stack/index.d.ts +6 -0
  1228. package/dist/types/components/stack/stack-separator.d.ts +4 -0
  1229. package/dist/types/components/stack/stack.d.ts +44 -0
  1230. package/dist/types/components/stack/v-stack.d.ts +7 -0
  1231. package/dist/types/components/stat/index.d.ts +3 -0
  1232. package/dist/types/components/stat/namespace.d.ts +2 -0
  1233. package/dist/types/components/stat/stat.d.ts +30 -0
  1234. package/dist/types/components/status/index.d.ts +3 -0
  1235. package/dist/types/components/status/namespace.d.ts +2 -0
  1236. package/dist/types/components/status/status.d.ts +12 -0
  1237. package/dist/types/components/steps/index.d.ts +5 -0
  1238. package/dist/types/components/steps/namespace.d.ts +2 -0
  1239. package/dist/types/components/steps/steps.d.ts +68 -0
  1240. package/dist/types/components/sticky/index.d.ts +4 -0
  1241. package/dist/types/components/strong/index.d.ts +4 -0
  1242. package/dist/types/components/switch/index.d.ts +5 -0
  1243. package/dist/types/components/switch/namespace.d.ts +2 -0
  1244. package/dist/types/components/switch/switch.d.ts +37 -0
  1245. package/dist/types/components/table/index.d.ts +3 -0
  1246. package/dist/types/components/table/namespace.d.ts +2 -0
  1247. package/dist/types/components/table/table.d.ts +43 -0
  1248. package/dist/types/components/tabs/index.d.ts +5 -0
  1249. package/dist/types/components/tabs/namespace.d.ts +4 -0
  1250. package/dist/types/components/tabs/tabs.d.ts +31 -0
  1251. package/dist/types/components/tag/index.d.ts +3 -0
  1252. package/dist/types/components/tag/namespace.d.ts +2 -0
  1253. package/dist/types/components/tag/tag.d.ts +21 -0
  1254. package/dist/types/components/tags-input/index.d.ts +5 -0
  1255. package/dist/types/components/tags-input/namespace.d.ts +2 -0
  1256. package/dist/types/components/tags-input/tags-input.d.ts +53 -0
  1257. package/dist/types/components/text/index.d.ts +6 -0
  1258. package/dist/types/components/textarea/index.d.ts +2 -0
  1259. package/dist/types/components/textarea/textarea.d.ts +8 -0
  1260. package/dist/types/components/theme.d.ts +12 -0
  1261. package/dist/types/components/timeline/index.d.ts +3 -0
  1262. package/dist/types/components/timeline/namespace.d.ts +2 -0
  1263. package/dist/types/components/timeline/timeline.d.ts +30 -0
  1264. package/dist/types/components/toast/index.d.ts +6 -0
  1265. package/dist/types/components/toast/namespace.d.ts +2 -0
  1266. package/dist/types/components/toast/toast.d.ts +29 -0
  1267. package/dist/types/components/toggle/index.d.ts +5 -0
  1268. package/dist/types/components/toggle/namespace.d.ts +2 -0
  1269. package/dist/types/components/toggle/toggle.d.ts +20 -0
  1270. package/dist/types/components/tooltip/index.d.ts +5 -0
  1271. package/dist/types/components/tooltip/namespace.d.ts +2 -0
  1272. package/dist/types/components/tooltip/tooltip.d.ts +36 -0
  1273. package/dist/types/components/tree-view/index.d.ts +5 -0
  1274. package/dist/types/components/tree-view/namespace.d.ts +4 -0
  1275. package/dist/types/components/tree-view/tree-view.d.ts +68 -0
  1276. package/dist/types/components/visually-hidden/index.d.ts +1 -0
  1277. package/dist/types/components/visually-hidden/visually-hidden.d.ts +18 -0
  1278. package/dist/types/components/wrap/index.d.ts +2 -0
  1279. package/dist/types/components/wrap/wrap.d.ts +12 -0
  1280. package/dist/types/create-context.d.ts +14 -0
  1281. package/dist/types/hooks/index.d.ts +14 -0
  1282. package/dist/types/hooks/use-breakpoint.d.ts +32 -0
  1283. package/dist/types/hooks/use-callback-ref.d.ts +5 -0
  1284. package/dist/types/hooks/use-const.d.ts +3 -0
  1285. package/dist/types/hooks/use-controllable-state.d.ts +18 -0
  1286. package/dist/types/hooks/use-disclosure.d.ts +20 -0
  1287. package/dist/types/hooks/use-element-rect.d.ts +4 -0
  1288. package/dist/types/hooks/use-force-update.d.ts +1 -0
  1289. package/dist/types/hooks/use-list-collection.d.ts +3 -0
  1290. package/dist/types/hooks/use-live-ref.d.ts +1 -0
  1291. package/dist/types/hooks/use-media-query.d.ts +6 -0
  1292. package/dist/types/hooks/use-overlay.d.ts +46 -0
  1293. package/dist/types/hooks/use-previous.d.ts +4 -0
  1294. package/dist/types/hooks/use-safe-layout-effect.d.ts +2 -0
  1295. package/dist/types/hooks/use-update-effect.d.ts +2 -0
  1296. package/dist/types/index.d.mts +9 -0
  1297. package/dist/types/index.d.ts +9 -0
  1298. package/dist/types/merge-props.d.ts +7 -0
  1299. package/dist/types/merge-refs.d.ts +6 -0
  1300. package/dist/types/preset-base.d.ts +107 -0
  1301. package/dist/types/preset.d.ts +3 -0
  1302. package/dist/types/styled-system/breakpoints.d.ts +2 -0
  1303. package/dist/types/styled-system/calc.d.ts +19 -0
  1304. package/dist/types/styled-system/color-mix.d.ts +11 -0
  1305. package/dist/types/styled-system/composition.d.ts +27 -0
  1306. package/dist/types/styled-system/conditions.d.ts +2 -0
  1307. package/dist/types/styled-system/config.d.ts +22 -0
  1308. package/dist/types/styled-system/create-recipe-context.d.ts +17 -0
  1309. package/dist/types/styled-system/create-slot-recipe-context.d.ts +36 -0
  1310. package/dist/types/styled-system/css-var.d.ts +9 -0
  1311. package/dist/types/styled-system/css.d.ts +9 -0
  1312. package/dist/types/styled-system/css.types.d.ts +46 -0
  1313. package/dist/types/styled-system/cva.d.ts +11 -0
  1314. package/dist/types/styled-system/display-name.d.ts +11 -0
  1315. package/dist/types/styled-system/empty.d.ts +3 -0
  1316. package/dist/types/styled-system/esc.d.ts +1 -0
  1317. package/dist/types/styled-system/expand-reference.d.ts +6 -0
  1318. package/dist/types/styled-system/factory.d.ts +2 -0
  1319. package/dist/types/styled-system/factory.types.d.ts +52 -0
  1320. package/dist/types/styled-system/generated/conditions.gen.d.ts +262 -0
  1321. package/dist/types/styled-system/generated/prop-types.gen.d.ts +217 -0
  1322. package/dist/types/styled-system/generated/recipes.gen.d.ts +1062 -0
  1323. package/dist/types/styled-system/generated/system.gen.d.ts +719 -0
  1324. package/dist/types/styled-system/generated/token.gen.d.ts +44 -0
  1325. package/dist/types/styled-system/index.d.ts +19 -0
  1326. package/dist/types/styled-system/layers.d.ts +2 -0
  1327. package/dist/types/styled-system/map-to-json.d.ts +4 -0
  1328. package/dist/types/styled-system/merge-config.d.ts +2 -0
  1329. package/dist/types/styled-system/normalize.d.ts +6 -0
  1330. package/dist/types/styled-system/preflight.d.ts +3 -0
  1331. package/dist/types/styled-system/provider.d.ts +8 -0
  1332. package/dist/types/styled-system/recipe-props.d.ts +12 -0
  1333. package/dist/types/styled-system/recipe.types.d.ts +122 -0
  1334. package/dist/types/styled-system/references.d.ts +5 -0
  1335. package/dist/types/styled-system/resolve-token-value.d.ts +2 -0
  1336. package/dist/types/styled-system/selectors.d.ts +9 -0
  1337. package/dist/types/styled-system/serialize.d.ts +3 -0
  1338. package/dist/types/styled-system/singleton.d.ts +13 -0
  1339. package/dist/types/styled-system/sort-at-params.d.ts +1 -0
  1340. package/dist/types/styled-system/sort-at-rules.d.ts +2 -0
  1341. package/dist/types/styled-system/sva.d.ts +11 -0
  1342. package/dist/types/styled-system/system.d.ts +3 -0
  1343. package/dist/types/styled-system/token-dictionary.d.ts +10 -0
  1344. package/dist/types/styled-system/token-middleware.d.ts +6 -0
  1345. package/dist/types/styled-system/token-transforms.d.ts +5 -0
  1346. package/dist/types/styled-system/types.d.ts +284 -0
  1347. package/dist/types/styled-system/unit-conversion.d.ts +4 -0
  1348. package/dist/types/styled-system/use-recipe.d.ts +14 -0
  1349. package/dist/types/styled-system/use-resolved-props.d.ts +7 -0
  1350. package/dist/types/styled-system/use-slot-recipe.d.ts +15 -0
  1351. package/dist/types/styled-system/use-token.d.ts +1 -0
  1352. package/dist/types/styled-system/utility.d.ts +7 -0
  1353. package/dist/types/theme/breakpoints.d.ts +7 -0
  1354. package/dist/types/theme/global-css.d.ts +1 -0
  1355. package/dist/types/theme/index.d.ts +1881 -0
  1356. package/dist/types/theme/layer-styles.d.ts +1 -0
  1357. package/dist/types/theme/motion-styles.d.ts +1 -0
  1358. package/dist/types/theme/recipes/accordion.d.ts +75 -0
  1359. package/dist/types/theme/recipes/action-bar.d.ts +24 -0
  1360. package/dist/types/theme/recipes/alert.d.ts +119 -0
  1361. package/dist/types/theme/recipes/avatar.d.ts +97 -0
  1362. package/dist/types/theme/recipes/badge.d.ts +50 -0
  1363. package/dist/types/theme/recipes/blockquote.d.ts +52 -0
  1364. package/dist/types/theme/recipes/breadcrumb.d.ts +46 -0
  1365. package/dist/types/theme/recipes/button.d.ts +143 -0
  1366. package/dist/types/theme/recipes/card.d.ts +48 -0
  1367. package/dist/types/theme/recipes/carousel.d.ts +1 -0
  1368. package/dist/types/theme/recipes/checkbox-card.d.ts +188 -0
  1369. package/dist/types/theme/recipes/checkbox.d.ts +80 -0
  1370. package/dist/types/theme/recipes/checkmark.d.ts +59 -0
  1371. package/dist/types/theme/recipes/code-block.d.ts +43 -0
  1372. package/dist/types/theme/recipes/code.d.ts +50 -0
  1373. package/dist/types/theme/recipes/collapsible.d.ts +1 -0
  1374. package/dist/types/theme/recipes/color-picker.d.ts +172 -0
  1375. package/dist/types/theme/recipes/color-swatch.d.ts +42 -0
  1376. package/dist/types/theme/recipes/combobox.d.ts +128 -0
  1377. package/dist/types/theme/recipes/container.d.ts +14 -0
  1378. package/dist/types/theme/recipes/data-list.d.ts +70 -0
  1379. package/dist/types/theme/recipes/date-picker.d.ts +110 -0
  1380. package/dist/types/theme/recipes/dialog.d.ts +148 -0
  1381. package/dist/types/theme/recipes/drawer.d.ts +117 -0
  1382. package/dist/types/theme/recipes/editable.d.ts +37 -0
  1383. package/dist/types/theme/recipes/empty-state.d.ts +49 -0
  1384. package/dist/types/theme/recipes/field.d.ts +20 -0
  1385. package/dist/types/theme/recipes/fieldset.d.ts +37 -0
  1386. package/dist/types/theme/recipes/file-upload.d.ts +1 -0
  1387. package/dist/types/theme/recipes/floating-panel.d.ts +1 -0
  1388. package/dist/types/theme/recipes/heading.d.ts +37 -0
  1389. package/dist/types/theme/recipes/hover-card.d.ts +24 -0
  1390. package/dist/types/theme/recipes/icon.d.ts +23 -0
  1391. package/dist/types/theme/recipes/input-addon.d.ts +58 -0
  1392. package/dist/types/theme/recipes/input.d.ts +70 -0
  1393. package/dist/types/theme/recipes/kbd.d.ts +36 -0
  1394. package/dist/types/theme/recipes/link.d.ts +18 -0
  1395. package/dist/types/theme/recipes/list.d.ts +37 -0
  1396. package/dist/types/theme/recipes/listbox.d.ts +33 -0
  1397. package/dist/types/theme/recipes/mark.d.ts +16 -0
  1398. package/dist/types/theme/recipes/marquee.d.ts +1 -0
  1399. package/dist/types/theme/recipes/menu.d.ts +47 -0
  1400. package/dist/types/theme/recipes/native-select.d.ts +108 -0
  1401. package/dist/types/theme/recipes/number-input.d.ts +137 -0
  1402. package/dist/types/theme/recipes/pin-input.d.ts +329 -0
  1403. package/dist/types/theme/recipes/popover.d.ts +24 -0
  1404. package/dist/types/theme/recipes/progress-circle.d.ts +49 -0
  1405. package/dist/types/theme/recipes/progress.d.ts +82 -0
  1406. package/dist/types/theme/recipes/qr-code.d.ts +44 -0
  1407. package/dist/types/theme/recipes/radio-card.d.ts +196 -0
  1408. package/dist/types/theme/recipes/radio-group.d.ts +77 -0
  1409. package/dist/types/theme/recipes/radiomark.d.ts +61 -0
  1410. package/dist/types/theme/recipes/rating-group.d.ts +24 -0
  1411. package/dist/types/theme/recipes/scroll-area.d.ts +41 -0
  1412. package/dist/types/theme/recipes/segment-group.d.ts +36 -0
  1413. package/dist/types/theme/recipes/select.d.ts +159 -0
  1414. package/dist/types/theme/recipes/separator.d.ts +35 -0
  1415. package/dist/types/theme/recipes/skeleton.d.ts +40 -0
  1416. package/dist/types/theme/recipes/skip-nav-link.d.ts +1 -0
  1417. package/dist/types/theme/recipes/slider.d.ts +121 -0
  1418. package/dist/types/theme/recipes/spinner.d.ts +22 -0
  1419. package/dist/types/theme/recipes/splitter.d.ts +1 -0
  1420. package/dist/types/theme/recipes/stat.d.ts +19 -0
  1421. package/dist/types/theme/recipes/status.d.ts +19 -0
  1422. package/dist/types/theme/recipes/steps.d.ts +142 -0
  1423. package/dist/types/theme/recipes/switch.d.ts +77 -0
  1424. package/dist/types/theme/recipes/table.d.ts +120 -0
  1425. package/dist/types/theme/recipes/tabs.d.ts +201 -0
  1426. package/dist/types/theme/recipes/tag.d.ts +87 -0
  1427. package/dist/types/theme/recipes/tags-input.d.ts +116 -0
  1428. package/dist/types/theme/recipes/textarea.d.ts +59 -0
  1429. package/dist/types/theme/recipes/timeline.d.ts +79 -0
  1430. package/dist/types/theme/recipes/toast.d.ts +1 -0
  1431. package/dist/types/theme/recipes/tooltip.d.ts +1 -0
  1432. package/dist/types/theme/recipes/tree-view.d.ts +55 -0
  1433. package/dist/types/theme/recipes.d.ts +836 -0
  1434. package/dist/types/theme/recipes.export.d.ts +19 -0
  1435. package/dist/types/theme/semantic-tokens/colors.d.ts +670 -0
  1436. package/dist/types/theme/semantic-tokens/radii.d.ts +11 -0
  1437. package/dist/types/theme/semantic-tokens/shadows.d.ts +50 -0
  1438. package/dist/types/theme/slot-recipes.d.ts +4153 -0
  1439. package/dist/types/theme/slot-recipes.export.d.ts +55 -0
  1440. package/dist/types/theme/text-styles.d.ts +1 -0
  1441. package/dist/types/theme/tokens/animations.d.ts +14 -0
  1442. package/dist/types/theme/tokens/aspect-ratios.d.ts +20 -0
  1443. package/dist/types/theme/tokens/blurs.d.ts +26 -0
  1444. package/dist/types/theme/tokens/borders.d.ts +17 -0
  1445. package/dist/types/theme/tokens/colors.d.ts +434 -0
  1446. package/dist/types/theme/tokens/cursor.d.ts +26 -0
  1447. package/dist/types/theme/tokens/durations.d.ts +23 -0
  1448. package/dist/types/theme/tokens/easings.d.ts +14 -0
  1449. package/dist/types/theme/tokens/font-sizes.d.ts +44 -0
  1450. package/dist/types/theme/tokens/font-weights.d.ts +29 -0
  1451. package/dist/types/theme/tokens/fonts.d.ts +11 -0
  1452. package/dist/types/theme/tokens/keyframes.d.ts +1 -0
  1453. package/dist/types/theme/tokens/letter-spacing.d.ts +17 -0
  1454. package/dist/types/theme/tokens/line-heights.d.ts +17 -0
  1455. package/dist/types/theme/tokens/radius.d.ts +35 -0
  1456. package/dist/types/theme/tokens/sizes.d.ts +260 -0
  1457. package/dist/types/theme/tokens/spacing.d.ts +104 -0
  1458. package/dist/types/theme/tokens/z-indices.d.ts +41 -0
  1459. package/dist/types/utils/attr.d.ts +3 -0
  1460. package/dist/types/utils/call-all.d.ts +2 -0
  1461. package/dist/types/utils/clone.d.ts +1 -0
  1462. package/dist/types/utils/compact.d.ts +1 -0
  1463. package/dist/types/utils/create-props.d.ts +3 -0
  1464. package/dist/types/utils/cx.d.ts +1 -0
  1465. package/dist/types/utils/entries.d.ts +5 -0
  1466. package/dist/types/utils/flatten.d.ts +2 -0
  1467. package/dist/types/utils/index.d.ts +19 -0
  1468. package/dist/types/utils/interop.d.ts +1 -0
  1469. package/dist/types/utils/is.d.ts +6 -0
  1470. package/dist/types/utils/memo.d.ts +1 -0
  1471. package/dist/types/utils/merge.d.ts +1 -0
  1472. package/dist/types/utils/omit.d.ts +1 -0
  1473. package/dist/types/utils/ref.d.ts +2 -0
  1474. package/dist/types/utils/split-props.d.ts +9 -0
  1475. package/dist/types/utils/types.d.ts +9 -0
  1476. package/dist/types/utils/uniq.d.ts +1 -0
  1477. package/dist/types/utils/unit.d.ts +1 -0
  1478. package/dist/types/utils/walk-object.d.ts +12 -0
  1479. package/package.json +146 -54
  1480. package/LICENSE +0 -21
  1481. package/dist/index.cjs +0 -6576
  1482. package/dist/index.cjs.map +0 -1
  1483. package/dist/index.css +0 -3826
  1484. package/dist/index.css.map +0 -1
  1485. package/dist/index.d.cts +0 -815
  1486. package/dist/index.d.ts +0 -815
  1487. package/dist/index.js +0 -6616
  1488. package/dist/index.js.map +0 -1
@@ -0,0 +1,719 @@
1
+ import type { ConditionalValue, CssProperties } from "../css.types";
2
+ import type { UtilityValues } from "./prop-types.gen";
3
+ import type { Token } from "./token.gen";
4
+ type AnyString = string & {};
5
+ type AnyNumber = number & {};
6
+ type CssVars = `var(--${string})`;
7
+ type CssVarValue = ConditionalValue<Token | CssVars | AnyString | AnyNumber>;
8
+ type CssVarKey = `--${string}`;
9
+ export type CssVarProperties = {
10
+ [key in CssVarKey]?: CssVarValue | undefined;
11
+ };
12
+ export interface SystemProperties {
13
+ WebkitAppearance?: ConditionalValue<CssProperties["WebkitAppearance"] | undefined | AnyString> | undefined;
14
+ WebkitBorderBefore?: ConditionalValue<CssProperties["WebkitBorderBefore"] | undefined | AnyString> | undefined;
15
+ WebkitBorderBeforeColor?: ConditionalValue<CssProperties["WebkitBorderBeforeColor"] | undefined | AnyString> | undefined;
16
+ WebkitBorderBeforeStyle?: ConditionalValue<CssProperties["WebkitBorderBeforeStyle"] | undefined | AnyString> | undefined;
17
+ WebkitBorderBeforeWidth?: ConditionalValue<CssProperties["WebkitBorderBeforeWidth"] | undefined | AnyString> | undefined;
18
+ WebkitBoxReflect?: ConditionalValue<CssProperties["WebkitBoxReflect"] | undefined | AnyString> | undefined;
19
+ WebkitLineClamp?: ConditionalValue<CssProperties["WebkitLineClamp"] | undefined | AnyString> | undefined;
20
+ WebkitMask?: ConditionalValue<CssProperties["WebkitMask"] | undefined | AnyString> | undefined;
21
+ WebkitMaskAttachment?: ConditionalValue<CssProperties["WebkitMaskAttachment"] | undefined | AnyString> | undefined;
22
+ WebkitMaskClip?: ConditionalValue<CssProperties["WebkitMaskClip"] | undefined | AnyString> | undefined;
23
+ WebkitMaskComposite?: ConditionalValue<CssProperties["WebkitMaskComposite"] | undefined | AnyString> | undefined;
24
+ WebkitMaskImage?: ConditionalValue<CssProperties["WebkitMaskImage"] | undefined | AnyString> | undefined;
25
+ WebkitMaskOrigin?: ConditionalValue<CssProperties["WebkitMaskOrigin"] | undefined | AnyString> | undefined;
26
+ WebkitMaskPosition?: ConditionalValue<CssProperties["WebkitMaskPosition"] | undefined | AnyString> | undefined;
27
+ WebkitMaskPositionX?: ConditionalValue<CssProperties["WebkitMaskPositionX"] | undefined | AnyString> | undefined;
28
+ WebkitMaskPositionY?: ConditionalValue<CssProperties["WebkitMaskPositionY"] | undefined | AnyString> | undefined;
29
+ WebkitMaskRepeat?: ConditionalValue<CssProperties["WebkitMaskRepeat"] | undefined | AnyString> | undefined;
30
+ WebkitMaskRepeatX?: ConditionalValue<CssProperties["WebkitMaskRepeatX"] | undefined | AnyString> | undefined;
31
+ WebkitMaskRepeatY?: ConditionalValue<CssProperties["WebkitMaskRepeatY"] | undefined | AnyString> | undefined;
32
+ WebkitMaskSize?: ConditionalValue<CssProperties["WebkitMaskSize"] | undefined | AnyString> | undefined;
33
+ WebkitOverflowScrolling?: ConditionalValue<CssProperties["WebkitOverflowScrolling"] | undefined | AnyString> | undefined;
34
+ WebkitTapHighlightColor?: ConditionalValue<CssProperties["WebkitTapHighlightColor"] | undefined | AnyString> | undefined;
35
+ WebkitTextFillColor?: ConditionalValue<CssProperties["WebkitTextFillColor"] | undefined | AnyString> | undefined;
36
+ WebkitTextStroke?: ConditionalValue<CssProperties["WebkitTextStroke"] | undefined | AnyString> | undefined;
37
+ WebkitTextStrokeColor?: ConditionalValue<CssProperties["WebkitTextStrokeColor"] | undefined | AnyString> | undefined;
38
+ WebkitTextStrokeWidth?: ConditionalValue<CssProperties["WebkitTextStrokeWidth"] | undefined | AnyString> | undefined;
39
+ WebkitTouchCallout?: ConditionalValue<CssProperties["WebkitTouchCallout"] | undefined | AnyString> | undefined;
40
+ WebkitUserModify?: ConditionalValue<CssProperties["WebkitUserModify"] | undefined | AnyString> | undefined;
41
+ WebkitUserSelect?: ConditionalValue<CssProperties["WebkitUserSelect"] | undefined | AnyString> | undefined;
42
+ accentColor?: ConditionalValue<UtilityValues["accentColor"] | CssVars | CssProperties["accentColor"] | undefined | AnyString> | undefined;
43
+ alignContent?: ConditionalValue<CssProperties["alignContent"] | undefined | AnyString> | undefined;
44
+ alignItems?: ConditionalValue<CssProperties["alignItems"] | undefined | AnyString> | undefined;
45
+ alignSelf?: ConditionalValue<CssProperties["alignSelf"] | undefined | AnyString> | undefined;
46
+ alignTracks?: ConditionalValue<CssProperties["alignTracks"] | undefined | AnyString> | undefined;
47
+ all?: ConditionalValue<CssProperties["all"] | undefined | AnyString> | undefined;
48
+ anchorName?: ConditionalValue<CssProperties["anchorName"] | undefined | AnyString> | undefined;
49
+ anchorScope?: ConditionalValue<CssProperties["anchorScope"] | undefined | AnyString> | undefined;
50
+ animation?: ConditionalValue<UtilityValues["animation"] | CssVars | CssProperties["animation"] | undefined | AnyString> | undefined;
51
+ animationComposition?: ConditionalValue<CssProperties["animationComposition"] | undefined | AnyString> | undefined;
52
+ animationDelay?: ConditionalValue<UtilityValues["animationDelay"] | CssVars | CssProperties["animationDelay"] | undefined | AnyString> | undefined;
53
+ animationDirection?: ConditionalValue<CssProperties["animationDirection"] | undefined | AnyString> | undefined;
54
+ animationDuration?: ConditionalValue<UtilityValues["animationDuration"] | CssVars | CssProperties["animationDuration"] | undefined | AnyString> | undefined;
55
+ animationFillMode?: ConditionalValue<CssProperties["animationFillMode"] | undefined | AnyString> | undefined;
56
+ animationIterationCount?: ConditionalValue<CssProperties["animationIterationCount"] | undefined | AnyString> | undefined;
57
+ animationName?: ConditionalValue<UtilityValues["animationName"] | CssVars | CssProperties["animationName"] | undefined | AnyString> | undefined;
58
+ animationPlayState?: ConditionalValue<CssProperties["animationPlayState"] | undefined | AnyString> | undefined;
59
+ animationRange?: ConditionalValue<CssProperties["animationRange"] | undefined | AnyString> | undefined;
60
+ animationRangeEnd?: ConditionalValue<CssProperties["animationRangeEnd"] | undefined | AnyString> | undefined;
61
+ animationRangeStart?: ConditionalValue<CssProperties["animationRangeStart"] | undefined | AnyString> | undefined;
62
+ animationTimeline?: ConditionalValue<CssProperties["animationTimeline"] | undefined | AnyString> | undefined;
63
+ animationTimingFunction?: ConditionalValue<UtilityValues["animationTimingFunction"] | CssVars | CssProperties["animationTimingFunction"] | undefined | AnyString> | undefined;
64
+ appearance?: ConditionalValue<CssProperties["appearance"] | undefined | AnyString> | undefined;
65
+ aspectRatio?: ConditionalValue<UtilityValues["aspectRatio"] | CssVars | CssProperties["aspectRatio"] | undefined | AnyString> | undefined;
66
+ backdropFilter?: ConditionalValue<CssProperties["backdropFilter"] | undefined | AnyString> | undefined;
67
+ backfaceVisibility?: ConditionalValue<CssProperties["backfaceVisibility"] | undefined | AnyString> | undefined;
68
+ background?: ConditionalValue<UtilityValues["background"] | CssVars | CssProperties["background"] | undefined | AnyString> | undefined;
69
+ backgroundAttachment?: ConditionalValue<CssProperties["backgroundAttachment"] | undefined | AnyString> | undefined;
70
+ backgroundBlendMode?: ConditionalValue<CssProperties["backgroundBlendMode"] | undefined | AnyString> | undefined;
71
+ backgroundClip?: ConditionalValue<UtilityValues["backgroundClip"] | CssVars | CssProperties["backgroundClip"] | undefined | AnyString> | undefined;
72
+ backgroundColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssVars | CssProperties["backgroundColor"] | undefined | AnyString> | undefined;
73
+ backgroundImage?: ConditionalValue<UtilityValues["backgroundImage"] | CssVars | CssProperties["backgroundImage"] | undefined | AnyString> | undefined;
74
+ backgroundOrigin?: ConditionalValue<CssProperties["backgroundOrigin"] | undefined | AnyString> | undefined;
75
+ backgroundPosition?: ConditionalValue<CssProperties["backgroundPosition"] | undefined | AnyString> | undefined;
76
+ backgroundPositionX?: ConditionalValue<CssProperties["backgroundPositionX"] | undefined | AnyString> | undefined;
77
+ backgroundPositionY?: ConditionalValue<CssProperties["backgroundPositionY"] | undefined | AnyString> | undefined;
78
+ backgroundRepeat?: ConditionalValue<CssProperties["backgroundRepeat"] | undefined | AnyString> | undefined;
79
+ backgroundSize?: ConditionalValue<CssProperties["backgroundSize"] | undefined | AnyString> | undefined;
80
+ blockSize?: ConditionalValue<UtilityValues["blockSize"] | CssVars | CssProperties["blockSize"] | undefined | AnyString> | undefined;
81
+ border?: ConditionalValue<UtilityValues["border"] | CssVars | CssProperties["border"] | undefined | AnyString> | undefined;
82
+ borderBlock?: ConditionalValue<UtilityValues["borderBlock"] | CssVars | CssProperties["borderBlock"] | undefined | AnyString> | undefined;
83
+ borderBlockColor?: ConditionalValue<CssProperties["borderBlockColor"] | undefined | AnyString> | undefined;
84
+ borderBlockEnd?: ConditionalValue<UtilityValues["borderBlockEnd"] | CssVars | CssProperties["borderBlockEnd"] | undefined | AnyString> | undefined;
85
+ borderBlockEndColor?: ConditionalValue<UtilityValues["borderBlockEndColor"] | CssVars | CssProperties["borderBlockEndColor"] | undefined | AnyString> | undefined;
86
+ borderBlockEndStyle?: ConditionalValue<UtilityValues["borderBlockEndStyle"] | CssVars | CssProperties["borderBlockEndStyle"] | undefined | AnyString> | undefined;
87
+ borderBlockEndWidth?: ConditionalValue<UtilityValues["borderBlockEndWidth"] | CssVars | CssProperties["borderBlockEndWidth"] | undefined | AnyString> | undefined;
88
+ borderBlockStart?: ConditionalValue<UtilityValues["borderBlockStart"] | CssVars | CssProperties["borderBlockStart"] | undefined | AnyString> | undefined;
89
+ borderBlockStartColor?: ConditionalValue<UtilityValues["borderBlockStartColor"] | CssVars | CssProperties["borderBlockStartColor"] | undefined | AnyString> | undefined;
90
+ borderBlockStartStyle?: ConditionalValue<UtilityValues["borderBlockStartStyle"] | CssVars | CssProperties["borderBlockStartStyle"] | undefined | AnyString> | undefined;
91
+ borderBlockStartWidth?: ConditionalValue<UtilityValues["borderBlockStartWidth"] | CssVars | CssProperties["borderBlockStartWidth"] | undefined | AnyString> | undefined;
92
+ borderBlockStyle?: ConditionalValue<CssProperties["borderBlockStyle"] | undefined | AnyString> | undefined;
93
+ borderBlockWidth?: ConditionalValue<UtilityValues["borderBlockWidth"] | CssVars | CssProperties["borderBlockWidth"] | undefined | AnyString> | undefined;
94
+ borderBottom?: ConditionalValue<UtilityValues["borderBottom"] | CssVars | CssProperties["borderBottom"] | undefined | AnyString> | undefined;
95
+ borderBottomColor?: ConditionalValue<UtilityValues["borderBottomColor"] | CssVars | CssProperties["borderBottomColor"] | undefined | AnyString> | undefined;
96
+ borderBottomLeftRadius?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | CssVars | CssProperties["borderBottomLeftRadius"] | undefined | AnyString> | undefined;
97
+ borderBottomRightRadius?: ConditionalValue<UtilityValues["borderBottomRightRadius"] | CssVars | CssProperties["borderBottomRightRadius"] | undefined | AnyString> | undefined;
98
+ borderBottomStyle?: ConditionalValue<UtilityValues["borderBottomStyle"] | CssVars | CssProperties["borderBottomStyle"] | undefined | AnyString> | undefined;
99
+ borderBottomWidth?: ConditionalValue<UtilityValues["borderBottomWidth"] | CssVars | CssProperties["borderBottomWidth"] | undefined | AnyString> | undefined;
100
+ borderCollapse?: ConditionalValue<CssProperties["borderCollapse"] | undefined | AnyString> | undefined;
101
+ borderColor?: ConditionalValue<UtilityValues["borderColor"] | CssVars | CssProperties["borderColor"] | undefined | AnyString> | undefined;
102
+ borderEndEndRadius?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssVars | CssProperties["borderEndEndRadius"] | undefined | AnyString> | undefined;
103
+ borderEndStartRadius?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssVars | CssProperties["borderEndStartRadius"] | undefined | AnyString> | undefined;
104
+ borderImage?: ConditionalValue<CssProperties["borderImage"] | undefined | AnyString> | undefined;
105
+ borderImageOutset?: ConditionalValue<CssProperties["borderImageOutset"] | undefined | AnyString> | undefined;
106
+ borderImageRepeat?: ConditionalValue<CssProperties["borderImageRepeat"] | undefined | AnyString> | undefined;
107
+ borderImageSlice?: ConditionalValue<CssProperties["borderImageSlice"] | undefined | AnyString> | undefined;
108
+ borderImageSource?: ConditionalValue<CssProperties["borderImageSource"] | undefined | AnyString> | undefined;
109
+ borderImageWidth?: ConditionalValue<CssProperties["borderImageWidth"] | undefined | AnyString> | undefined;
110
+ borderInline?: ConditionalValue<UtilityValues["borderInline"] | CssVars | CssProperties["borderInline"] | undefined | AnyString> | undefined;
111
+ borderInlineColor?: ConditionalValue<CssProperties["borderInlineColor"] | undefined | AnyString> | undefined;
112
+ borderInlineEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssVars | CssProperties["borderInlineEnd"] | undefined | AnyString> | undefined;
113
+ borderInlineEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssVars | CssProperties["borderInlineEndColor"] | undefined | AnyString> | undefined;
114
+ borderInlineEndStyle?: ConditionalValue<UtilityValues["borderInlineEndStyle"] | CssVars | CssProperties["borderInlineEndStyle"] | undefined | AnyString> | undefined;
115
+ borderInlineEndWidth?: ConditionalValue<UtilityValues["borderInlineEndWidth"] | CssVars | CssProperties["borderInlineEndWidth"] | undefined | AnyString> | undefined;
116
+ borderInlineStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssVars | CssProperties["borderInlineStart"] | undefined | AnyString> | undefined;
117
+ borderInlineStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | CssVars | CssProperties["borderInlineStartColor"] | undefined | AnyString> | undefined;
118
+ borderInlineStartStyle?: ConditionalValue<UtilityValues["borderInlineStartStyle"] | CssVars | CssProperties["borderInlineStartStyle"] | undefined | AnyString> | undefined;
119
+ borderInlineStartWidth?: ConditionalValue<UtilityValues["borderInlineStartWidth"] | CssVars | CssProperties["borderInlineStartWidth"] | undefined | AnyString> | undefined;
120
+ borderInlineStyle?: ConditionalValue<CssProperties["borderInlineStyle"] | undefined | AnyString> | undefined;
121
+ borderInlineWidth?: ConditionalValue<UtilityValues["borderInlineWidth"] | CssVars | CssProperties["borderInlineWidth"] | undefined | AnyString> | undefined;
122
+ borderLeft?: ConditionalValue<UtilityValues["borderLeft"] | CssVars | CssProperties["borderLeft"] | undefined | AnyString> | undefined;
123
+ borderLeftColor?: ConditionalValue<UtilityValues["borderLeftColor"] | CssVars | CssProperties["borderLeftColor"] | undefined | AnyString> | undefined;
124
+ borderLeftStyle?: ConditionalValue<UtilityValues["borderLeftStyle"] | CssVars | CssProperties["borderLeftStyle"] | undefined | AnyString> | undefined;
125
+ borderLeftWidth?: ConditionalValue<UtilityValues["borderLeftWidth"] | CssVars | CssProperties["borderLeftWidth"] | undefined | AnyString> | undefined;
126
+ borderRadius?: ConditionalValue<UtilityValues["borderRadius"] | CssVars | CssProperties["borderRadius"] | undefined | AnyString> | undefined;
127
+ borderRight?: ConditionalValue<UtilityValues["borderRight"] | CssVars | CssProperties["borderRight"] | undefined | AnyString> | undefined;
128
+ borderRightColor?: ConditionalValue<UtilityValues["borderRightColor"] | CssVars | CssProperties["borderRightColor"] | undefined | AnyString> | undefined;
129
+ borderRightStyle?: ConditionalValue<UtilityValues["borderRightStyle"] | CssVars | CssProperties["borderRightStyle"] | undefined | AnyString> | undefined;
130
+ borderRightWidth?: ConditionalValue<UtilityValues["borderRightWidth"] | CssVars | CssProperties["borderRightWidth"] | undefined | AnyString> | undefined;
131
+ borderSpacing?: ConditionalValue<UtilityValues["borderSpacing"] | CssVars | CssProperties["borderSpacing"] | undefined | AnyString> | undefined;
132
+ borderStartEndRadius?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssVars | CssProperties["borderStartEndRadius"] | undefined | AnyString> | undefined;
133
+ borderStartStartRadius?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssVars | CssProperties["borderStartStartRadius"] | undefined | AnyString> | undefined;
134
+ borderStyle?: ConditionalValue<UtilityValues["borderStyle"] | CssVars | CssProperties["borderStyle"] | undefined | AnyString> | undefined;
135
+ borderTop?: ConditionalValue<UtilityValues["borderTop"] | CssVars | CssProperties["borderTop"] | undefined | AnyString> | undefined;
136
+ borderTopColor?: ConditionalValue<UtilityValues["borderTopColor"] | CssVars | CssProperties["borderTopColor"] | undefined | AnyString> | undefined;
137
+ borderTopLeftRadius?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssVars | CssProperties["borderTopLeftRadius"] | undefined | AnyString> | undefined;
138
+ borderTopRightRadius?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssVars | CssProperties["borderTopRightRadius"] | undefined | AnyString> | undefined;
139
+ borderTopStyle?: ConditionalValue<UtilityValues["borderTopStyle"] | CssVars | CssProperties["borderTopStyle"] | undefined | AnyString> | undefined;
140
+ borderTopWidth?: ConditionalValue<UtilityValues["borderTopWidth"] | CssVars | CssProperties["borderTopWidth"] | undefined | AnyString> | undefined;
141
+ borderWidth?: ConditionalValue<UtilityValues["borderWidth"] | CssVars | CssProperties["borderWidth"] | undefined | AnyString> | undefined;
142
+ bottom?: ConditionalValue<UtilityValues["bottom"] | CssVars | CssProperties["bottom"] | undefined | AnyString> | undefined;
143
+ boxAlign?: ConditionalValue<CssProperties["boxAlign"] | undefined | AnyString> | undefined;
144
+ boxDecorationBreak?: ConditionalValue<CssProperties["boxDecorationBreak"] | undefined | AnyString> | undefined;
145
+ boxDirection?: ConditionalValue<CssProperties["boxDirection"] | undefined | AnyString> | undefined;
146
+ boxFlex?: ConditionalValue<CssProperties["boxFlex"] | undefined | AnyString> | undefined;
147
+ boxFlexGroup?: ConditionalValue<CssProperties["boxFlexGroup"] | undefined | AnyString> | undefined;
148
+ boxLines?: ConditionalValue<CssProperties["boxLines"] | undefined | AnyString> | undefined;
149
+ boxOrdinalGroup?: ConditionalValue<CssProperties["boxOrdinalGroup"] | undefined | AnyString> | undefined;
150
+ boxOrient?: ConditionalValue<CssProperties["boxOrient"] | undefined | AnyString> | undefined;
151
+ boxPack?: ConditionalValue<CssProperties["boxPack"] | undefined | AnyString> | undefined;
152
+ boxShadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["boxShadow"] | undefined | AnyString> | undefined;
153
+ boxSizing?: ConditionalValue<CssProperties["boxSizing"] | undefined | AnyString> | undefined;
154
+ breakAfter?: ConditionalValue<CssProperties["breakAfter"] | undefined | AnyString> | undefined;
155
+ breakBefore?: ConditionalValue<CssProperties["breakBefore"] | undefined | AnyString> | undefined;
156
+ breakInside?: ConditionalValue<CssProperties["breakInside"] | undefined | AnyString> | undefined;
157
+ captionSide?: ConditionalValue<CssProperties["captionSide"] | undefined | AnyString> | undefined;
158
+ caret?: ConditionalValue<CssProperties["caret"] | undefined | AnyString> | undefined;
159
+ caretColor?: ConditionalValue<UtilityValues["caretColor"] | CssVars | CssProperties["caretColor"] | undefined | AnyString> | undefined;
160
+ caretShape?: ConditionalValue<CssProperties["caretShape"] | undefined | AnyString> | undefined;
161
+ clear?: ConditionalValue<CssProperties["clear"] | undefined | AnyString> | undefined;
162
+ clip?: ConditionalValue<CssProperties["clip"] | undefined | AnyString> | undefined;
163
+ clipPath?: ConditionalValue<CssProperties["clipPath"] | undefined | AnyString> | undefined;
164
+ clipRule?: ConditionalValue<CssProperties["clipRule"] | undefined | AnyString> | undefined;
165
+ color?: ConditionalValue<UtilityValues["color"] | CssVars | CssProperties["color"] | undefined | AnyString> | undefined;
166
+ colorInterpolationFilters?: ConditionalValue<CssProperties["colorInterpolationFilters"] | undefined | AnyString> | undefined;
167
+ colorScheme?: ConditionalValue<CssProperties["colorScheme"] | undefined | AnyString> | undefined;
168
+ columnCount?: ConditionalValue<CssProperties["columnCount"] | undefined | AnyString> | undefined;
169
+ columnFill?: ConditionalValue<CssProperties["columnFill"] | undefined | AnyString> | undefined;
170
+ columnGap?: ConditionalValue<UtilityValues["columnGap"] | CssVars | CssProperties["columnGap"] | undefined | AnyString> | undefined;
171
+ columnRule?: ConditionalValue<CssProperties["columnRule"] | undefined | AnyString> | undefined;
172
+ columnRuleColor?: ConditionalValue<CssProperties["columnRuleColor"] | undefined | AnyString> | undefined;
173
+ columnRuleStyle?: ConditionalValue<CssProperties["columnRuleStyle"] | undefined | AnyString> | undefined;
174
+ columnRuleWidth?: ConditionalValue<CssProperties["columnRuleWidth"] | undefined | AnyString> | undefined;
175
+ columnSpan?: ConditionalValue<CssProperties["columnSpan"] | undefined | AnyString> | undefined;
176
+ columnWidth?: ConditionalValue<CssProperties["columnWidth"] | undefined | AnyString> | undefined;
177
+ columns?: ConditionalValue<CssProperties["columns"] | undefined | AnyString> | undefined;
178
+ contain?: ConditionalValue<CssProperties["contain"] | undefined | AnyString> | undefined;
179
+ containIntrinsicBlockSize?: ConditionalValue<CssProperties["containIntrinsicBlockSize"] | undefined | AnyString> | undefined;
180
+ containIntrinsicHeight?: ConditionalValue<CssProperties["containIntrinsicHeight"] | undefined | AnyString> | undefined;
181
+ containIntrinsicInlineSize?: ConditionalValue<CssProperties["containIntrinsicInlineSize"] | undefined | AnyString> | undefined;
182
+ containIntrinsicSize?: ConditionalValue<CssProperties["containIntrinsicSize"] | undefined | AnyString> | undefined;
183
+ containIntrinsicWidth?: ConditionalValue<CssProperties["containIntrinsicWidth"] | undefined | AnyString> | undefined;
184
+ container?: ConditionalValue<CssProperties["container"] | undefined | AnyString> | undefined;
185
+ containerName?: ConditionalValue<CssProperties["containerName"] | undefined | AnyString> | undefined;
186
+ containerType?: ConditionalValue<CssProperties["containerType"] | undefined | AnyString> | undefined;
187
+ content?: ConditionalValue<CssProperties["content"] | undefined | AnyString> | undefined;
188
+ contentVisibility?: ConditionalValue<CssProperties["contentVisibility"] | undefined | AnyString> | undefined;
189
+ counterIncrement?: ConditionalValue<CssProperties["counterIncrement"] | undefined | AnyString> | undefined;
190
+ counterReset?: ConditionalValue<CssProperties["counterReset"] | undefined | AnyString> | undefined;
191
+ counterSet?: ConditionalValue<CssProperties["counterSet"] | undefined | AnyString> | undefined;
192
+ cursor?: ConditionalValue<UtilityValues["cursor"] | CssVars | CssProperties["cursor"] | undefined | AnyString> | undefined;
193
+ cx?: ConditionalValue<CssProperties["cx"] | undefined | AnyString> | undefined;
194
+ cy?: ConditionalValue<CssProperties["cy"] | undefined | AnyString> | undefined;
195
+ d?: ConditionalValue<CssProperties["d"] | undefined | AnyString> | undefined;
196
+ direction?: ConditionalValue<CssProperties["direction"] | undefined | AnyString> | undefined;
197
+ display?: ConditionalValue<CssProperties["display"] | undefined | AnyString> | undefined;
198
+ dominantBaseline?: ConditionalValue<CssProperties["dominantBaseline"] | undefined | AnyString> | undefined;
199
+ emptyCells?: ConditionalValue<CssProperties["emptyCells"] | undefined | AnyString> | undefined;
200
+ fieldSizing?: ConditionalValue<CssProperties["fieldSizing"] | undefined | AnyString> | undefined;
201
+ fill?: ConditionalValue<UtilityValues["fill"] | CssVars | CssProperties["fill"] | undefined | AnyString> | undefined;
202
+ fillOpacity?: ConditionalValue<CssProperties["fillOpacity"] | undefined | AnyString> | undefined;
203
+ fillRule?: ConditionalValue<CssProperties["fillRule"] | undefined | AnyString> | undefined;
204
+ filter?: ConditionalValue<CssProperties["filter"] | undefined | AnyString> | undefined;
205
+ flex?: ConditionalValue<CssProperties["flex"] | undefined | AnyString> | undefined;
206
+ flexBasis?: ConditionalValue<UtilityValues["flexBasis"] | CssVars | CssProperties["flexBasis"] | undefined | AnyString> | undefined;
207
+ flexDirection?: ConditionalValue<CssProperties["flexDirection"] | undefined | AnyString> | undefined;
208
+ flexFlow?: ConditionalValue<CssProperties["flexFlow"] | undefined | AnyString> | undefined;
209
+ flexGrow?: ConditionalValue<CssProperties["flexGrow"] | undefined | AnyString> | undefined;
210
+ flexShrink?: ConditionalValue<CssProperties["flexShrink"] | undefined | AnyString> | undefined;
211
+ flexWrap?: ConditionalValue<CssProperties["flexWrap"] | undefined | AnyString> | undefined;
212
+ float?: ConditionalValue<CssProperties["float"] | undefined | AnyString> | undefined;
213
+ floodColor?: ConditionalValue<CssProperties["floodColor"] | undefined | AnyString> | undefined;
214
+ floodOpacity?: ConditionalValue<CssProperties["floodOpacity"] | undefined | AnyString> | undefined;
215
+ font?: ConditionalValue<CssProperties["font"] | undefined | AnyString> | undefined;
216
+ fontFamily?: ConditionalValue<UtilityValues["fontFamily"] | CssVars | CssProperties["fontFamily"] | undefined | AnyString> | undefined;
217
+ fontFeatureSettings?: ConditionalValue<CssProperties["fontFeatureSettings"] | undefined | AnyString> | undefined;
218
+ fontKerning?: ConditionalValue<CssProperties["fontKerning"] | undefined | AnyString> | undefined;
219
+ fontLanguageOverride?: ConditionalValue<CssProperties["fontLanguageOverride"] | undefined | AnyString> | undefined;
220
+ fontOpticalSizing?: ConditionalValue<CssProperties["fontOpticalSizing"] | undefined | AnyString> | undefined;
221
+ fontPalette?: ConditionalValue<CssProperties["fontPalette"] | undefined | AnyString> | undefined;
222
+ fontSize?: ConditionalValue<UtilityValues["fontSize"] | CssVars | CssProperties["fontSize"] | undefined | AnyString> | undefined;
223
+ fontSizeAdjust?: ConditionalValue<CssProperties["fontSizeAdjust"] | undefined | AnyString> | undefined;
224
+ fontSmooth?: ConditionalValue<CssProperties["fontSmooth"] | undefined | AnyString> | undefined;
225
+ fontStretch?: ConditionalValue<CssProperties["fontStretch"] | undefined | AnyString> | undefined;
226
+ fontStyle?: ConditionalValue<CssProperties["fontStyle"] | undefined | AnyString> | undefined;
227
+ fontSynthesis?: ConditionalValue<CssProperties["fontSynthesis"] | undefined | AnyString> | undefined;
228
+ fontSynthesisPosition?: ConditionalValue<CssProperties["fontSynthesisPosition"] | undefined | AnyString> | undefined;
229
+ fontSynthesisSmallCaps?: ConditionalValue<CssProperties["fontSynthesisSmallCaps"] | undefined | AnyString> | undefined;
230
+ fontSynthesisStyle?: ConditionalValue<CssProperties["fontSynthesisStyle"] | undefined | AnyString> | undefined;
231
+ fontSynthesisWeight?: ConditionalValue<CssProperties["fontSynthesisWeight"] | undefined | AnyString> | undefined;
232
+ fontVariant?: ConditionalValue<CssProperties["fontVariant"] | undefined | AnyString> | undefined;
233
+ fontVariantAlternates?: ConditionalValue<CssProperties["fontVariantAlternates"] | undefined | AnyString> | undefined;
234
+ fontVariantCaps?: ConditionalValue<CssProperties["fontVariantCaps"] | undefined | AnyString> | undefined;
235
+ fontVariantEastAsian?: ConditionalValue<CssProperties["fontVariantEastAsian"] | undefined | AnyString> | undefined;
236
+ fontVariantEmoji?: ConditionalValue<CssProperties["fontVariantEmoji"] | undefined | AnyString> | undefined;
237
+ fontVariantLigatures?: ConditionalValue<CssProperties["fontVariantLigatures"] | undefined | AnyString> | undefined;
238
+ fontVariantNumeric?: ConditionalValue<CssProperties["fontVariantNumeric"] | undefined | AnyString> | undefined;
239
+ fontVariantPosition?: ConditionalValue<CssProperties["fontVariantPosition"] | undefined | AnyString> | undefined;
240
+ fontVariationSettings?: ConditionalValue<CssProperties["fontVariationSettings"] | undefined | AnyString> | undefined;
241
+ fontWeight?: ConditionalValue<UtilityValues["fontWeight"] | CssVars | CssProperties["fontWeight"] | undefined | AnyString> | undefined;
242
+ forcedColorAdjust?: ConditionalValue<CssProperties["forcedColorAdjust"] | undefined | AnyString> | undefined;
243
+ gap?: ConditionalValue<UtilityValues["gap"] | CssVars | CssProperties["gap"] | undefined | AnyString> | undefined;
244
+ grid?: ConditionalValue<CssProperties["grid"] | undefined | AnyString> | undefined;
245
+ gridArea?: ConditionalValue<CssProperties["gridArea"] | undefined | AnyString> | undefined;
246
+ gridAutoColumns?: ConditionalValue<CssProperties["gridAutoColumns"] | undefined | AnyString> | undefined;
247
+ gridAutoFlow?: ConditionalValue<CssProperties["gridAutoFlow"] | undefined | AnyString> | undefined;
248
+ gridAutoRows?: ConditionalValue<CssProperties["gridAutoRows"] | undefined | AnyString> | undefined;
249
+ gridColumn?: ConditionalValue<CssProperties["gridColumn"] | undefined | AnyString> | undefined;
250
+ gridColumnEnd?: ConditionalValue<CssProperties["gridColumnEnd"] | undefined | AnyString> | undefined;
251
+ gridColumnGap?: ConditionalValue<UtilityValues["gridColumnGap"] | CssVars | CssProperties["gridColumnGap"] | undefined | AnyString> | undefined;
252
+ gridColumnStart?: ConditionalValue<CssProperties["gridColumnStart"] | undefined | AnyString> | undefined;
253
+ gridGap?: ConditionalValue<UtilityValues["gridGap"] | CssVars | CssProperties["gridGap"] | undefined | AnyString> | undefined;
254
+ gridRow?: ConditionalValue<CssProperties["gridRow"] | undefined | AnyString> | undefined;
255
+ gridRowEnd?: ConditionalValue<CssProperties["gridRowEnd"] | undefined | AnyString> | undefined;
256
+ gridRowGap?: ConditionalValue<UtilityValues["gridRowGap"] | CssVars | CssProperties["gridRowGap"] | undefined | AnyString> | undefined;
257
+ gridRowStart?: ConditionalValue<CssProperties["gridRowStart"] | undefined | AnyString> | undefined;
258
+ gridTemplate?: ConditionalValue<CssProperties["gridTemplate"] | undefined | AnyString> | undefined;
259
+ gridTemplateAreas?: ConditionalValue<CssProperties["gridTemplateAreas"] | undefined | AnyString> | undefined;
260
+ gridTemplateColumns?: ConditionalValue<CssProperties["gridTemplateColumns"] | undefined | AnyString> | undefined;
261
+ gridTemplateRows?: ConditionalValue<CssProperties["gridTemplateRows"] | undefined | AnyString> | undefined;
262
+ hangingPunctuation?: ConditionalValue<CssProperties["hangingPunctuation"] | undefined | AnyString> | undefined;
263
+ height?: ConditionalValue<UtilityValues["height"] | CssVars | CssProperties["height"] | undefined | AnyString> | undefined;
264
+ hyphenateCharacter?: ConditionalValue<CssProperties["hyphenateCharacter"] | undefined | AnyString> | undefined;
265
+ hyphenateLimitChars?: ConditionalValue<CssProperties["hyphenateLimitChars"] | undefined | AnyString> | undefined;
266
+ hyphens?: ConditionalValue<CssProperties["hyphens"] | undefined | AnyString> | undefined;
267
+ imageOrientation?: ConditionalValue<CssProperties["imageOrientation"] | undefined | AnyString> | undefined;
268
+ imageRendering?: ConditionalValue<CssProperties["imageRendering"] | undefined | AnyString> | undefined;
269
+ imageResolution?: ConditionalValue<CssProperties["imageResolution"] | undefined | AnyString> | undefined;
270
+ imeMode?: ConditionalValue<CssProperties["imeMode"] | undefined | AnyString> | undefined;
271
+ initialLetter?: ConditionalValue<CssProperties["initialLetter"] | undefined | AnyString> | undefined;
272
+ initialLetterAlign?: ConditionalValue<CssProperties["initialLetterAlign"] | undefined | AnyString> | undefined;
273
+ inlineSize?: ConditionalValue<UtilityValues["inlineSize"] | CssVars | CssProperties["inlineSize"] | undefined | AnyString> | undefined;
274
+ inset?: ConditionalValue<UtilityValues["inset"] | CssVars | CssProperties["inset"] | undefined | AnyString> | undefined;
275
+ insetBlock?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties["insetBlock"] | undefined | AnyString> | undefined;
276
+ insetBlockEnd?: ConditionalValue<UtilityValues["insetBlockEnd"] | CssVars | CssProperties["insetBlockEnd"] | undefined | AnyString> | undefined;
277
+ insetBlockStart?: ConditionalValue<UtilityValues["insetBlockStart"] | CssVars | CssProperties["insetBlockStart"] | undefined | AnyString> | undefined;
278
+ insetInline?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties["insetInline"] | undefined | AnyString> | undefined;
279
+ insetInlineEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"] | undefined | AnyString> | undefined;
280
+ insetInlineStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"] | undefined | AnyString> | undefined;
281
+ interpolateSize?: ConditionalValue<CssProperties["interpolateSize"] | undefined | AnyString> | undefined;
282
+ isolation?: ConditionalValue<CssProperties["isolation"] | undefined | AnyString> | undefined;
283
+ justifyContent?: ConditionalValue<CssProperties["justifyContent"] | undefined | AnyString> | undefined;
284
+ justifyItems?: ConditionalValue<CssProperties["justifyItems"] | undefined | AnyString> | undefined;
285
+ justifySelf?: ConditionalValue<CssProperties["justifySelf"] | undefined | AnyString> | undefined;
286
+ justifyTracks?: ConditionalValue<CssProperties["justifyTracks"] | undefined | AnyString> | undefined;
287
+ left?: ConditionalValue<UtilityValues["left"] | CssVars | CssProperties["left"] | undefined | AnyString> | undefined;
288
+ letterSpacing?: ConditionalValue<UtilityValues["letterSpacing"] | CssVars | CssProperties["letterSpacing"] | undefined | AnyString> | undefined;
289
+ lightingColor?: ConditionalValue<CssProperties["lightingColor"] | undefined | AnyString> | undefined;
290
+ lineBreak?: ConditionalValue<CssProperties["lineBreak"] | undefined | AnyString> | undefined;
291
+ lineClamp?: ConditionalValue<CssProperties["lineClamp"] | undefined | AnyString> | undefined;
292
+ lineHeight?: ConditionalValue<UtilityValues["lineHeight"] | CssVars | CssProperties["lineHeight"] | undefined | AnyString> | undefined;
293
+ lineHeightStep?: ConditionalValue<CssProperties["lineHeightStep"] | undefined | AnyString> | undefined;
294
+ listStyle?: ConditionalValue<CssProperties["listStyle"] | undefined | AnyString> | undefined;
295
+ listStyleImage?: ConditionalValue<UtilityValues["listStyleImage"] | CssVars | CssProperties["listStyleImage"] | undefined | AnyString> | undefined;
296
+ listStylePosition?: ConditionalValue<CssProperties["listStylePosition"] | undefined | AnyString> | undefined;
297
+ listStyleType?: ConditionalValue<CssProperties["listStyleType"] | undefined | AnyString> | undefined;
298
+ margin?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"] | undefined | AnyString> | undefined;
299
+ marginBlock?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | undefined | AnyString> | undefined;
300
+ marginBlockEnd?: ConditionalValue<UtilityValues["marginBlockEnd"] | CssVars | CssProperties["marginBlockEnd"] | undefined | AnyString> | undefined;
301
+ marginBlockStart?: ConditionalValue<UtilityValues["marginBlockStart"] | CssVars | CssProperties["marginBlockStart"] | undefined | AnyString> | undefined;
302
+ marginBottom?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["marginBottom"] | undefined | AnyString> | undefined;
303
+ marginInline?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | undefined | AnyString> | undefined;
304
+ marginInlineEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | undefined | AnyString> | undefined;
305
+ marginInlineStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | undefined | AnyString> | undefined;
306
+ marginLeft?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["marginLeft"] | undefined | AnyString> | undefined;
307
+ marginRight?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["marginRight"] | undefined | AnyString> | undefined;
308
+ marginTop?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marginTop"] | undefined | AnyString> | undefined;
309
+ marginTrim?: ConditionalValue<CssProperties["marginTrim"] | undefined | AnyString> | undefined;
310
+ marker?: ConditionalValue<CssProperties["marker"] | undefined | AnyString> | undefined;
311
+ markerEnd?: ConditionalValue<CssProperties["markerEnd"] | undefined | AnyString> | undefined;
312
+ markerMid?: ConditionalValue<CssProperties["markerMid"] | undefined | AnyString> | undefined;
313
+ markerStart?: ConditionalValue<CssProperties["markerStart"] | undefined | AnyString> | undefined;
314
+ mask?: ConditionalValue<CssProperties["mask"] | undefined | AnyString> | undefined;
315
+ maskBorder?: ConditionalValue<CssProperties["maskBorder"] | undefined | AnyString> | undefined;
316
+ maskBorderMode?: ConditionalValue<CssProperties["maskBorderMode"] | undefined | AnyString> | undefined;
317
+ maskBorderOutset?: ConditionalValue<CssProperties["maskBorderOutset"] | undefined | AnyString> | undefined;
318
+ maskBorderRepeat?: ConditionalValue<CssProperties["maskBorderRepeat"] | undefined | AnyString> | undefined;
319
+ maskBorderSlice?: ConditionalValue<CssProperties["maskBorderSlice"] | undefined | AnyString> | undefined;
320
+ maskBorderSource?: ConditionalValue<CssProperties["maskBorderSource"] | undefined | AnyString> | undefined;
321
+ maskBorderWidth?: ConditionalValue<CssProperties["maskBorderWidth"] | undefined | AnyString> | undefined;
322
+ maskClip?: ConditionalValue<CssProperties["maskClip"] | undefined | AnyString> | undefined;
323
+ maskComposite?: ConditionalValue<CssProperties["maskComposite"] | undefined | AnyString> | undefined;
324
+ maskImage?: ConditionalValue<CssProperties["maskImage"] | undefined | AnyString> | undefined;
325
+ maskMode?: ConditionalValue<CssProperties["maskMode"] | undefined | AnyString> | undefined;
326
+ maskOrigin?: ConditionalValue<CssProperties["maskOrigin"] | undefined | AnyString> | undefined;
327
+ maskPosition?: ConditionalValue<CssProperties["maskPosition"] | undefined | AnyString> | undefined;
328
+ maskRepeat?: ConditionalValue<CssProperties["maskRepeat"] | undefined | AnyString> | undefined;
329
+ maskSize?: ConditionalValue<CssProperties["maskSize"] | undefined | AnyString> | undefined;
330
+ maskType?: ConditionalValue<CssProperties["maskType"] | undefined | AnyString> | undefined;
331
+ masonryAutoFlow?: ConditionalValue<CssProperties["masonryAutoFlow"] | undefined | AnyString> | undefined;
332
+ mathDepth?: ConditionalValue<CssProperties["mathDepth"] | undefined | AnyString> | undefined;
333
+ mathShift?: ConditionalValue<CssProperties["mathShift"] | undefined | AnyString> | undefined;
334
+ mathStyle?: ConditionalValue<CssProperties["mathStyle"] | undefined | AnyString> | undefined;
335
+ maxBlockSize?: ConditionalValue<UtilityValues["maxBlockSize"] | CssVars | CssProperties["maxBlockSize"] | undefined | AnyString> | undefined;
336
+ maxHeight?: ConditionalValue<UtilityValues["maxHeight"] | CssVars | CssProperties["maxHeight"] | undefined | AnyString> | undefined;
337
+ maxInlineSize?: ConditionalValue<UtilityValues["maxInlineSize"] | CssVars | CssProperties["maxInlineSize"] | undefined | AnyString> | undefined;
338
+ maxLines?: ConditionalValue<CssProperties["maxLines"] | undefined | AnyString> | undefined;
339
+ maxWidth?: ConditionalValue<UtilityValues["maxWidth"] | CssVars | CssProperties["maxWidth"] | undefined | AnyString> | undefined;
340
+ minBlockSize?: ConditionalValue<UtilityValues["minBlockSize"] | CssVars | CssProperties["minBlockSize"] | undefined | AnyString> | undefined;
341
+ minHeight?: ConditionalValue<UtilityValues["minHeight"] | CssVars | CssProperties["minHeight"] | undefined | AnyString> | undefined;
342
+ minInlineSize?: ConditionalValue<UtilityValues["minInlineSize"] | CssVars | CssProperties["minInlineSize"] | undefined | AnyString> | undefined;
343
+ minWidth?: ConditionalValue<UtilityValues["minWidth"] | CssVars | CssProperties["minWidth"] | undefined | AnyString> | undefined;
344
+ mixBlendMode?: ConditionalValue<CssProperties["mixBlendMode"] | undefined | AnyString> | undefined;
345
+ objectFit?: ConditionalValue<CssProperties["objectFit"] | undefined | AnyString> | undefined;
346
+ objectPosition?: ConditionalValue<CssProperties["objectPosition"] | undefined | AnyString> | undefined;
347
+ offset?: ConditionalValue<CssProperties["offset"] | undefined | AnyString> | undefined;
348
+ offsetAnchor?: ConditionalValue<CssProperties["offsetAnchor"] | undefined | AnyString> | undefined;
349
+ offsetDistance?: ConditionalValue<CssProperties["offsetDistance"] | undefined | AnyString> | undefined;
350
+ offsetPath?: ConditionalValue<CssProperties["offsetPath"] | undefined | AnyString> | undefined;
351
+ offsetPosition?: ConditionalValue<CssProperties["offsetPosition"] | undefined | AnyString> | undefined;
352
+ offsetRotate?: ConditionalValue<CssProperties["offsetRotate"] | undefined | AnyString> | undefined;
353
+ opacity?: ConditionalValue<UtilityValues["opacity"] | CssVars | CssProperties["opacity"] | undefined | AnyString> | undefined;
354
+ order?: ConditionalValue<CssProperties["order"] | undefined | AnyString> | undefined;
355
+ orphans?: ConditionalValue<CssProperties["orphans"] | undefined | AnyString> | undefined;
356
+ outline?: ConditionalValue<CssProperties["outline"] | undefined | AnyString> | undefined;
357
+ outlineColor?: ConditionalValue<UtilityValues["outlineColor"] | CssVars | CssProperties["outlineColor"] | undefined | AnyString> | undefined;
358
+ outlineOffset?: ConditionalValue<CssProperties["outlineOffset"] | undefined | AnyString> | undefined;
359
+ outlineStyle?: ConditionalValue<CssProperties["outlineStyle"] | undefined | AnyString> | undefined;
360
+ outlineWidth?: ConditionalValue<CssProperties["outlineWidth"] | undefined | AnyString> | undefined;
361
+ overflow?: ConditionalValue<CssProperties["overflow"] | undefined | AnyString> | undefined;
362
+ overflowAnchor?: ConditionalValue<CssProperties["overflowAnchor"] | undefined | AnyString> | undefined;
363
+ overflowBlock?: ConditionalValue<CssProperties["overflowBlock"] | undefined | AnyString> | undefined;
364
+ overflowClipBox?: ConditionalValue<CssProperties["overflowClipBox"] | undefined | AnyString> | undefined;
365
+ overflowClipMargin?: ConditionalValue<CssProperties["overflowClipMargin"] | undefined | AnyString> | undefined;
366
+ overflowInline?: ConditionalValue<CssProperties["overflowInline"] | undefined | AnyString> | undefined;
367
+ overflowWrap?: ConditionalValue<CssProperties["overflowWrap"] | undefined | AnyString> | undefined;
368
+ overflowX?: ConditionalValue<CssProperties["overflowX"] | undefined | AnyString> | undefined;
369
+ overflowY?: ConditionalValue<CssProperties["overflowY"] | undefined | AnyString> | undefined;
370
+ overlay?: ConditionalValue<CssProperties["overlay"] | undefined | AnyString> | undefined;
371
+ overscrollBehavior?: ConditionalValue<CssProperties["overscrollBehavior"] | undefined | AnyString> | undefined;
372
+ overscrollBehaviorBlock?: ConditionalValue<CssProperties["overscrollBehaviorBlock"] | undefined | AnyString> | undefined;
373
+ overscrollBehaviorInline?: ConditionalValue<CssProperties["overscrollBehaviorInline"] | undefined | AnyString> | undefined;
374
+ overscrollBehaviorX?: ConditionalValue<CssProperties["overscrollBehaviorX"] | undefined | AnyString> | undefined;
375
+ overscrollBehaviorY?: ConditionalValue<CssProperties["overscrollBehaviorY"] | undefined | AnyString> | undefined;
376
+ padding?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding"] | undefined | AnyString> | undefined;
377
+ paddingBlock?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | undefined | AnyString> | undefined;
378
+ paddingBlockEnd?: ConditionalValue<UtilityValues["paddingBlockEnd"] | CssVars | CssProperties["paddingBlockEnd"] | undefined | AnyString> | undefined;
379
+ paddingBlockStart?: ConditionalValue<UtilityValues["paddingBlockStart"] | CssVars | CssProperties["paddingBlockStart"] | undefined | AnyString> | undefined;
380
+ paddingBottom?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["paddingBottom"] | undefined | AnyString> | undefined;
381
+ paddingInline?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | undefined | AnyString> | undefined;
382
+ paddingInlineEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | undefined | AnyString> | undefined;
383
+ paddingInlineStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | undefined | AnyString> | undefined;
384
+ paddingLeft?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["paddingLeft"] | undefined | AnyString> | undefined;
385
+ paddingRight?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["paddingRight"] | undefined | AnyString> | undefined;
386
+ paddingTop?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["paddingTop"] | undefined | AnyString> | undefined;
387
+ page?: ConditionalValue<CssProperties["page"] | undefined | AnyString> | undefined;
388
+ pageBreakAfter?: ConditionalValue<CssProperties["pageBreakAfter"] | undefined | AnyString> | undefined;
389
+ pageBreakBefore?: ConditionalValue<CssProperties["pageBreakBefore"] | undefined | AnyString> | undefined;
390
+ pageBreakInside?: ConditionalValue<CssProperties["pageBreakInside"] | undefined | AnyString> | undefined;
391
+ paintOrder?: ConditionalValue<CssProperties["paintOrder"] | undefined | AnyString> | undefined;
392
+ perspective?: ConditionalValue<CssProperties["perspective"] | undefined | AnyString> | undefined;
393
+ perspectiveOrigin?: ConditionalValue<CssProperties["perspectiveOrigin"] | undefined | AnyString> | undefined;
394
+ placeContent?: ConditionalValue<CssProperties["placeContent"] | undefined | AnyString> | undefined;
395
+ placeItems?: ConditionalValue<CssProperties["placeItems"] | undefined | AnyString> | undefined;
396
+ placeSelf?: ConditionalValue<CssProperties["placeSelf"] | undefined | AnyString> | undefined;
397
+ pointerEvents?: ConditionalValue<CssProperties["pointerEvents"] | undefined | AnyString> | undefined;
398
+ position?: ConditionalValue<CssProperties["position"] | undefined | AnyString> | undefined;
399
+ positionAnchor?: ConditionalValue<CssProperties["positionAnchor"] | undefined | AnyString> | undefined;
400
+ positionArea?: ConditionalValue<CssProperties["positionArea"] | undefined | AnyString> | undefined;
401
+ positionTry?: ConditionalValue<CssProperties["positionTry"] | undefined | AnyString> | undefined;
402
+ positionTryFallbacks?: ConditionalValue<CssProperties["positionTryFallbacks"] | undefined | AnyString> | undefined;
403
+ positionTryOrder?: ConditionalValue<CssProperties["positionTryOrder"] | undefined | AnyString> | undefined;
404
+ positionVisibility?: ConditionalValue<CssProperties["positionVisibility"] | undefined | AnyString> | undefined;
405
+ printColorAdjust?: ConditionalValue<CssProperties["printColorAdjust"] | undefined | AnyString> | undefined;
406
+ quotes?: ConditionalValue<CssProperties["quotes"] | undefined | AnyString> | undefined;
407
+ r?: ConditionalValue<CssProperties["r"] | undefined | AnyString> | undefined;
408
+ resize?: ConditionalValue<CssProperties["resize"] | undefined | AnyString> | undefined;
409
+ right?: ConditionalValue<UtilityValues["right"] | CssVars | CssProperties["right"] | undefined | AnyString> | undefined;
410
+ rotate?: ConditionalValue<CssProperties["rotate"] | undefined | AnyString> | undefined;
411
+ rowGap?: ConditionalValue<UtilityValues["rowGap"] | CssVars | CssProperties["rowGap"] | undefined | AnyString> | undefined;
412
+ rubyAlign?: ConditionalValue<CssProperties["rubyAlign"] | undefined | AnyString> | undefined;
413
+ rubyMerge?: ConditionalValue<CssProperties["rubyMerge"] | undefined | AnyString> | undefined;
414
+ rubyPosition?: ConditionalValue<CssProperties["rubyPosition"] | undefined | AnyString> | undefined;
415
+ rx?: ConditionalValue<CssProperties["rx"] | undefined | AnyString> | undefined;
416
+ ry?: ConditionalValue<CssProperties["ry"] | undefined | AnyString> | undefined;
417
+ scale?: ConditionalValue<CssProperties["scale"] | undefined | AnyString> | undefined;
418
+ scrollBehavior?: ConditionalValue<CssProperties["scrollBehavior"] | undefined | AnyString> | undefined;
419
+ scrollMargin?: ConditionalValue<UtilityValues["scrollMargin"] | CssVars | CssProperties["scrollMargin"] | undefined | AnyString> | undefined;
420
+ scrollMarginBlock?: ConditionalValue<CssProperties["scrollMarginBlock"] | undefined | AnyString> | undefined;
421
+ scrollMarginBlockEnd?: ConditionalValue<CssProperties["scrollMarginBlockEnd"] | undefined | AnyString> | undefined;
422
+ scrollMarginBlockStart?: ConditionalValue<CssProperties["scrollMarginBlockStart"] | undefined | AnyString> | undefined;
423
+ scrollMarginBottom?: ConditionalValue<UtilityValues["scrollMarginBottom"] | CssVars | CssProperties["scrollMarginBottom"] | undefined | AnyString> | undefined;
424
+ scrollMarginInline?: ConditionalValue<CssProperties["scrollMarginInline"] | undefined | AnyString> | undefined;
425
+ scrollMarginInlineEnd?: ConditionalValue<CssProperties["scrollMarginInlineEnd"] | undefined | AnyString> | undefined;
426
+ scrollMarginInlineStart?: ConditionalValue<CssProperties["scrollMarginInlineStart"] | undefined | AnyString> | undefined;
427
+ scrollMarginLeft?: ConditionalValue<UtilityValues["scrollMarginLeft"] | CssVars | CssProperties["scrollMarginLeft"] | undefined | AnyString> | undefined;
428
+ scrollMarginRight?: ConditionalValue<UtilityValues["scrollMarginRight"] | CssVars | CssProperties["scrollMarginRight"] | undefined | AnyString> | undefined;
429
+ scrollMarginTop?: ConditionalValue<UtilityValues["scrollMarginTop"] | CssVars | CssProperties["scrollMarginTop"] | undefined | AnyString> | undefined;
430
+ scrollPadding?: ConditionalValue<UtilityValues["scrollPadding"] | CssVars | CssProperties["scrollPadding"] | undefined | AnyString> | undefined;
431
+ scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"] | undefined | AnyString> | undefined;
432
+ scrollPaddingBlockEnd?: ConditionalValue<CssProperties["scrollPaddingBlockEnd"] | undefined | AnyString> | undefined;
433
+ scrollPaddingBlockStart?: ConditionalValue<CssProperties["scrollPaddingBlockStart"] | undefined | AnyString> | undefined;
434
+ scrollPaddingBottom?: ConditionalValue<UtilityValues["scrollPaddingBottom"] | CssVars | CssProperties["scrollPaddingBottom"] | undefined | AnyString> | undefined;
435
+ scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"] | undefined | AnyString> | undefined;
436
+ scrollPaddingInlineEnd?: ConditionalValue<CssProperties["scrollPaddingInlineEnd"] | undefined | AnyString> | undefined;
437
+ scrollPaddingInlineStart?: ConditionalValue<CssProperties["scrollPaddingInlineStart"] | undefined | AnyString> | undefined;
438
+ scrollPaddingLeft?: ConditionalValue<UtilityValues["scrollPaddingLeft"] | CssVars | CssProperties["scrollPaddingLeft"] | undefined | AnyString> | undefined;
439
+ scrollPaddingRight?: ConditionalValue<UtilityValues["scrollPaddingRight"] | CssVars | CssProperties["scrollPaddingRight"] | undefined | AnyString> | undefined;
440
+ scrollPaddingTop?: ConditionalValue<UtilityValues["scrollPaddingTop"] | CssVars | CssProperties["scrollPaddingTop"] | undefined | AnyString> | undefined;
441
+ scrollSnapAlign?: ConditionalValue<CssProperties["scrollSnapAlign"] | undefined | AnyString> | undefined;
442
+ scrollSnapCoordinate?: ConditionalValue<CssProperties["scrollSnapCoordinate"] | undefined | AnyString> | undefined;
443
+ scrollSnapDestination?: ConditionalValue<CssProperties["scrollSnapDestination"] | undefined | AnyString> | undefined;
444
+ scrollSnapPointsX?: ConditionalValue<CssProperties["scrollSnapPointsX"] | undefined | AnyString> | undefined;
445
+ scrollSnapPointsY?: ConditionalValue<CssProperties["scrollSnapPointsY"] | undefined | AnyString> | undefined;
446
+ scrollSnapStop?: ConditionalValue<CssProperties["scrollSnapStop"] | undefined | AnyString> | undefined;
447
+ scrollSnapType?: ConditionalValue<UtilityValues["scrollSnapType"] | CssVars | CssProperties["scrollSnapType"] | undefined | AnyString> | undefined;
448
+ scrollSnapTypeX?: ConditionalValue<CssProperties["scrollSnapTypeX"] | undefined | AnyString> | undefined;
449
+ scrollSnapTypeY?: ConditionalValue<CssProperties["scrollSnapTypeY"] | undefined | AnyString> | undefined;
450
+ scrollTimeline?: ConditionalValue<CssProperties["scrollTimeline"] | undefined | AnyString> | undefined;
451
+ scrollTimelineAxis?: ConditionalValue<CssProperties["scrollTimelineAxis"] | undefined | AnyString> | undefined;
452
+ scrollTimelineName?: ConditionalValue<CssProperties["scrollTimelineName"] | undefined | AnyString> | undefined;
453
+ scrollbarColor?: ConditionalValue<UtilityValues["scrollbarColor"] | CssVars | CssProperties["scrollbarColor"] | undefined | AnyString> | undefined;
454
+ scrollbarGutter?: ConditionalValue<UtilityValues["scrollbarGutter"] | CssVars | CssProperties["scrollbarGutter"] | undefined | AnyString> | undefined;
455
+ scrollbarWidth?: ConditionalValue<UtilityValues["scrollbarWidth"] | CssVars | CssProperties["scrollbarWidth"] | undefined | AnyString> | undefined;
456
+ shapeImageThreshold?: ConditionalValue<CssProperties["shapeImageThreshold"] | undefined | AnyString> | undefined;
457
+ shapeMargin?: ConditionalValue<CssProperties["shapeMargin"] | undefined | AnyString> | undefined;
458
+ shapeOutside?: ConditionalValue<CssProperties["shapeOutside"] | undefined | AnyString> | undefined;
459
+ shapeRendering?: ConditionalValue<CssProperties["shapeRendering"] | undefined | AnyString> | undefined;
460
+ stopColor?: ConditionalValue<CssProperties["stopColor"] | undefined | AnyString> | undefined;
461
+ stopOpacity?: ConditionalValue<CssProperties["stopOpacity"] | undefined | AnyString> | undefined;
462
+ stroke?: ConditionalValue<UtilityValues["stroke"] | CssVars | CssProperties["stroke"] | undefined | AnyString> | undefined;
463
+ strokeDasharray?: ConditionalValue<CssProperties["strokeDasharray"] | undefined | AnyString> | undefined;
464
+ strokeDashoffset?: ConditionalValue<CssProperties["strokeDashoffset"] | undefined | AnyString> | undefined;
465
+ strokeLinecap?: ConditionalValue<CssProperties["strokeLinecap"] | undefined | AnyString> | undefined;
466
+ strokeLinejoin?: ConditionalValue<CssProperties["strokeLinejoin"] | undefined | AnyString> | undefined;
467
+ strokeMiterlimit?: ConditionalValue<CssProperties["strokeMiterlimit"] | undefined | AnyString> | undefined;
468
+ strokeOpacity?: ConditionalValue<CssProperties["strokeOpacity"] | undefined | AnyString> | undefined;
469
+ strokeWidth?: ConditionalValue<CssProperties["strokeWidth"] | undefined | AnyString> | undefined;
470
+ tabSize?: ConditionalValue<CssProperties["tabSize"] | undefined | AnyString> | undefined;
471
+ tableLayout?: ConditionalValue<CssProperties["tableLayout"] | undefined | AnyString> | undefined;
472
+ textAlign?: ConditionalValue<CssProperties["textAlign"] | undefined | AnyString> | undefined;
473
+ textAlignLast?: ConditionalValue<CssProperties["textAlignLast"] | undefined | AnyString> | undefined;
474
+ textAnchor?: ConditionalValue<CssProperties["textAnchor"] | undefined | AnyString> | undefined;
475
+ textBox?: ConditionalValue<CssProperties["textBox"] | undefined | AnyString> | undefined;
476
+ textBoxEdge?: ConditionalValue<CssProperties["textBoxEdge"] | undefined | AnyString> | undefined;
477
+ textBoxTrim?: ConditionalValue<CssProperties["textBoxTrim"] | undefined | AnyString> | undefined;
478
+ textCombineUpright?: ConditionalValue<CssProperties["textCombineUpright"] | undefined | AnyString> | undefined;
479
+ textDecoration?: ConditionalValue<CssProperties["textDecoration"] | undefined | AnyString> | undefined;
480
+ textDecorationColor?: ConditionalValue<UtilityValues["textDecorationColor"] | CssVars | CssProperties["textDecorationColor"] | undefined | AnyString> | undefined;
481
+ textDecorationLine?: ConditionalValue<CssProperties["textDecorationLine"] | undefined | AnyString> | undefined;
482
+ textDecorationSkip?: ConditionalValue<CssProperties["textDecorationSkip"] | undefined | AnyString> | undefined;
483
+ textDecorationSkipInk?: ConditionalValue<CssProperties["textDecorationSkipInk"] | undefined | AnyString> | undefined;
484
+ textDecorationStyle?: ConditionalValue<CssProperties["textDecorationStyle"] | undefined | AnyString> | undefined;
485
+ textDecorationThickness?: ConditionalValue<CssProperties["textDecorationThickness"] | undefined | AnyString> | undefined;
486
+ textEmphasis?: ConditionalValue<CssProperties["textEmphasis"] | undefined | AnyString> | undefined;
487
+ textEmphasisColor?: ConditionalValue<CssProperties["textEmphasisColor"] | undefined | AnyString> | undefined;
488
+ textEmphasisPosition?: ConditionalValue<CssProperties["textEmphasisPosition"] | undefined | AnyString> | undefined;
489
+ textEmphasisStyle?: ConditionalValue<CssProperties["textEmphasisStyle"] | undefined | AnyString> | undefined;
490
+ textIndent?: ConditionalValue<UtilityValues["textIndent"] | CssVars | CssProperties["textIndent"] | undefined | AnyString> | undefined;
491
+ textJustify?: ConditionalValue<CssProperties["textJustify"] | undefined | AnyString> | undefined;
492
+ textOrientation?: ConditionalValue<CssProperties["textOrientation"] | undefined | AnyString> | undefined;
493
+ textOverflow?: ConditionalValue<CssProperties["textOverflow"] | undefined | AnyString> | undefined;
494
+ textRendering?: ConditionalValue<CssProperties["textRendering"] | undefined | AnyString> | undefined;
495
+ textShadow?: ConditionalValue<UtilityValues["textShadow"] | CssVars | CssProperties["textShadow"] | undefined | AnyString> | undefined;
496
+ textSizeAdjust?: ConditionalValue<CssProperties["textSizeAdjust"] | undefined | AnyString> | undefined;
497
+ textSpacingTrim?: ConditionalValue<CssProperties["textSpacingTrim"] | undefined | AnyString> | undefined;
498
+ textTransform?: ConditionalValue<CssProperties["textTransform"] | undefined | AnyString> | undefined;
499
+ textUnderlineOffset?: ConditionalValue<CssProperties["textUnderlineOffset"] | undefined | AnyString> | undefined;
500
+ textUnderlinePosition?: ConditionalValue<CssProperties["textUnderlinePosition"] | undefined | AnyString> | undefined;
501
+ textWrap?: ConditionalValue<CssProperties["textWrap"] | undefined | AnyString> | undefined;
502
+ textWrapMode?: ConditionalValue<CssProperties["textWrapMode"] | undefined | AnyString> | undefined;
503
+ textWrapStyle?: ConditionalValue<CssProperties["textWrapStyle"] | undefined | AnyString> | undefined;
504
+ timelineScope?: ConditionalValue<CssProperties["timelineScope"] | undefined | AnyString> | undefined;
505
+ top?: ConditionalValue<UtilityValues["top"] | CssVars | CssProperties["top"] | undefined | AnyString> | undefined;
506
+ touchAction?: ConditionalValue<CssProperties["touchAction"] | undefined | AnyString> | undefined;
507
+ transform?: ConditionalValue<CssProperties["transform"] | undefined | AnyString> | undefined;
508
+ transformBox?: ConditionalValue<CssProperties["transformBox"] | undefined | AnyString> | undefined;
509
+ transformOrigin?: ConditionalValue<CssProperties["transformOrigin"] | undefined | AnyString> | undefined;
510
+ transformStyle?: ConditionalValue<CssProperties["transformStyle"] | undefined | AnyString> | undefined;
511
+ transition?: ConditionalValue<UtilityValues["transition"] | CssVars | CssProperties["transition"] | undefined | AnyString> | undefined;
512
+ transitionBehavior?: ConditionalValue<CssProperties["transitionBehavior"] | undefined | AnyString> | undefined;
513
+ transitionDelay?: ConditionalValue<CssProperties["transitionDelay"] | undefined | AnyString> | undefined;
514
+ transitionDuration?: ConditionalValue<UtilityValues["transitionDuration"] | CssVars | CssProperties["transitionDuration"] | undefined | AnyString> | undefined;
515
+ transitionProperty?: ConditionalValue<UtilityValues["transitionProperty"] | CssVars | CssProperties["transitionProperty"] | undefined | AnyString> | undefined;
516
+ transitionTimingFunction?: ConditionalValue<UtilityValues["transitionTimingFunction"] | CssVars | CssProperties["transitionTimingFunction"] | undefined | AnyString> | undefined;
517
+ translate?: ConditionalValue<CssProperties["translate"] | undefined | AnyString> | undefined;
518
+ unicodeBidi?: ConditionalValue<CssProperties["unicodeBidi"] | undefined | AnyString> | undefined;
519
+ userSelect?: ConditionalValue<CssProperties["userSelect"] | undefined | AnyString> | undefined;
520
+ vectorEffect?: ConditionalValue<CssProperties["vectorEffect"] | undefined | AnyString> | undefined;
521
+ verticalAlign?: ConditionalValue<CssProperties["verticalAlign"] | undefined | AnyString> | undefined;
522
+ viewTimeline?: ConditionalValue<CssProperties["viewTimeline"] | undefined | AnyString> | undefined;
523
+ viewTimelineAxis?: ConditionalValue<CssProperties["viewTimelineAxis"] | undefined | AnyString> | undefined;
524
+ viewTimelineInset?: ConditionalValue<CssProperties["viewTimelineInset"] | undefined | AnyString> | undefined;
525
+ viewTimelineName?: ConditionalValue<CssProperties["viewTimelineName"] | undefined | AnyString> | undefined;
526
+ viewTransitionName?: ConditionalValue<CssProperties["viewTransitionName"] | undefined | AnyString> | undefined;
527
+ visibility?: ConditionalValue<CssProperties["visibility"] | undefined | AnyString> | undefined;
528
+ whiteSpace?: ConditionalValue<CssProperties["whiteSpace"] | undefined | AnyString> | undefined;
529
+ whiteSpaceCollapse?: ConditionalValue<CssProperties["whiteSpaceCollapse"] | undefined | AnyString> | undefined;
530
+ widows?: ConditionalValue<CssProperties["widows"] | undefined | AnyString> | undefined;
531
+ width?: ConditionalValue<UtilityValues["width"] | CssVars | CssProperties["width"] | undefined | AnyString> | undefined;
532
+ willChange?: ConditionalValue<CssProperties["willChange"] | undefined | AnyString> | undefined;
533
+ wordBreak?: ConditionalValue<CssProperties["wordBreak"] | undefined | AnyString> | undefined;
534
+ wordSpacing?: ConditionalValue<CssProperties["wordSpacing"] | undefined | AnyString> | undefined;
535
+ wordWrap?: ConditionalValue<CssProperties["wordWrap"] | undefined | AnyString> | undefined;
536
+ writingMode?: ConditionalValue<CssProperties["writingMode"] | undefined | AnyString> | undefined;
537
+ x?: ConditionalValue<CssProperties["x"] | undefined | AnyString> | undefined;
538
+ y?: ConditionalValue<CssProperties["y"] | undefined | AnyString> | undefined;
539
+ zIndex?: ConditionalValue<UtilityValues["zIndex"] | CssVars | CssProperties["zIndex"] | undefined | AnyString> | undefined;
540
+ zoom?: ConditionalValue<CssProperties["zoom"] | undefined | AnyString> | undefined;
541
+ alignmentBaseline?: ConditionalValue<CssProperties["alignmentBaseline"] | undefined | AnyString> | undefined;
542
+ baselineShift?: ConditionalValue<CssProperties["baselineShift"] | undefined | AnyString> | undefined;
543
+ colorInterpolation?: ConditionalValue<CssProperties["colorInterpolation"] | undefined | AnyString> | undefined;
544
+ colorRendering?: ConditionalValue<CssProperties["colorRendering"] | undefined | AnyString> | undefined;
545
+ glyphOrientationVertical?: ConditionalValue<CssProperties["glyphOrientationVertical"] | undefined | AnyString> | undefined;
546
+ bg?: ConditionalValue<UtilityValues["background"] | CssVars | CssProperties["background"] | undefined | AnyString> | undefined;
547
+ bgColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssVars | CssProperties["backgroundColor"] | undefined | AnyString> | undefined;
548
+ bgSize?: ConditionalValue<CssProperties["backgroundSize"] | undefined | AnyString> | undefined;
549
+ bgPos?: ConditionalValue<CssProperties["backgroundPosition"] | undefined | AnyString> | undefined;
550
+ bgRepeat?: ConditionalValue<CssProperties["backgroundRepeat"] | undefined | AnyString> | undefined;
551
+ bgAttachment?: ConditionalValue<CssProperties["backgroundAttachment"] | undefined | AnyString> | undefined;
552
+ bgClip?: ConditionalValue<UtilityValues["backgroundClip"] | CssVars | CssProperties["backgroundClip"] | undefined | AnyString> | undefined;
553
+ bgGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | CssVars | undefined | AnyString> | undefined;
554
+ bgImg?: ConditionalValue<UtilityValues["backgroundImage"] | CssVars | CssProperties["backgroundImage"] | undefined | AnyString> | undefined;
555
+ bgImage?: ConditionalValue<UtilityValues["backgroundImage"] | CssVars | CssProperties["backgroundImage"] | undefined | AnyString> | undefined;
556
+ borderStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssVars | CssProperties["borderInlineStart"] | undefined | AnyString> | undefined;
557
+ borderEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssVars | CssProperties["borderInlineEnd"] | undefined | AnyString> | undefined;
558
+ borderX?: ConditionalValue<UtilityValues["borderInline"] | CssVars | CssProperties["borderInline"] | undefined | AnyString> | undefined;
559
+ borderY?: ConditionalValue<UtilityValues["borderBlock"] | CssVars | CssProperties["borderBlock"] | undefined | AnyString> | undefined;
560
+ borderStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | CssVars | CssProperties["borderInlineStartColor"] | undefined | AnyString> | undefined;
561
+ borderEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssVars | CssProperties["borderInlineEndColor"] | undefined | AnyString> | undefined;
562
+ borderStartStyle?: ConditionalValue<UtilityValues["borderInlineStartStyle"] | CssVars | CssProperties["borderInlineStartStyle"] | undefined | AnyString> | undefined;
563
+ borderEndStyle?: ConditionalValue<UtilityValues["borderInlineEndStyle"] | CssVars | CssProperties["borderInlineEndStyle"] | undefined | AnyString> | undefined;
564
+ rounded?: ConditionalValue<UtilityValues["borderRadius"] | CssVars | CssProperties["borderRadius"] | undefined | AnyString> | undefined;
565
+ roundedTopLeft?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssVars | CssProperties["borderTopLeftRadius"] | undefined | AnyString> | undefined;
566
+ roundedStartStart?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssVars | CssProperties["borderStartStartRadius"] | undefined | AnyString> | undefined;
567
+ borderTopStartRadius?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssVars | CssProperties["borderStartStartRadius"] | undefined | AnyString> | undefined;
568
+ roundedEndStart?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssVars | CssProperties["borderEndStartRadius"] | undefined | AnyString> | undefined;
569
+ borderBottomStartRadius?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssVars | CssProperties["borderEndStartRadius"] | undefined | AnyString> | undefined;
570
+ roundedTopRight?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssVars | CssProperties["borderTopRightRadius"] | undefined | AnyString> | undefined;
571
+ roundedStartEnd?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssVars | CssProperties["borderStartEndRadius"] | undefined | AnyString> | undefined;
572
+ borderTopEndRadius?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssVars | CssProperties["borderStartEndRadius"] | undefined | AnyString> | undefined;
573
+ roundedEndEnd?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssVars | CssProperties["borderEndEndRadius"] | undefined | AnyString> | undefined;
574
+ borderBottomEndRadius?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssVars | CssProperties["borderEndEndRadius"] | undefined | AnyString> | undefined;
575
+ roundedBottomLeft?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | CssVars | CssProperties["borderBottomLeftRadius"] | undefined | AnyString> | undefined;
576
+ roundedBottomRight?: ConditionalValue<UtilityValues["borderBottomRightRadius"] | CssVars | CssProperties["borderBottomRightRadius"] | undefined | AnyString> | undefined;
577
+ roundedStart?: ConditionalValue<UtilityValues["borderInlineStartRadius"] | CssVars | undefined | AnyString> | undefined;
578
+ borderStartRadius?: ConditionalValue<UtilityValues["borderInlineStartRadius"] | CssVars | undefined | AnyString> | undefined;
579
+ roundedEnd?: ConditionalValue<UtilityValues["borderInlineEndRadius"] | CssVars | undefined | AnyString> | undefined;
580
+ borderEndRadius?: ConditionalValue<UtilityValues["borderInlineEndRadius"] | CssVars | undefined | AnyString> | undefined;
581
+ roundedTop?: ConditionalValue<UtilityValues["borderTopRadius"] | CssVars | undefined | AnyString> | undefined;
582
+ roundedBottom?: ConditionalValue<UtilityValues["borderBottomRadius"] | CssVars | undefined | AnyString> | undefined;
583
+ roundedLeft?: ConditionalValue<UtilityValues["borderLeftRadius"] | CssVars | undefined | AnyString> | undefined;
584
+ roundedRight?: ConditionalValue<UtilityValues["borderRightRadius"] | CssVars | undefined | AnyString> | undefined;
585
+ borderXWidth?: ConditionalValue<UtilityValues["borderInlineWidth"] | CssVars | CssProperties["borderInlineWidth"] | undefined | AnyString> | undefined;
586
+ borderStartWidth?: ConditionalValue<UtilityValues["borderInlineStartWidth"] | CssVars | CssProperties["borderInlineStartWidth"] | undefined | AnyString> | undefined;
587
+ borderEndWidth?: ConditionalValue<UtilityValues["borderInlineEndWidth"] | CssVars | CssProperties["borderInlineEndWidth"] | undefined | AnyString> | undefined;
588
+ borderYWidth?: ConditionalValue<UtilityValues["borderBlockWidth"] | CssVars | CssProperties["borderBlockWidth"] | undefined | AnyString> | undefined;
589
+ shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["boxShadow"] | undefined | AnyString> | undefined;
590
+ shadowColor?: ConditionalValue<UtilityValues["boxShadowColor"] | CssVars | undefined | AnyString> | undefined;
591
+ blendMode?: ConditionalValue<CssProperties["mixBlendMode"] | undefined | AnyString> | undefined;
592
+ bgBlendMode?: ConditionalValue<CssProperties["backgroundBlendMode"] | undefined | AnyString> | undefined;
593
+ gapY?: ConditionalValue<UtilityValues["rowGap"] | CssVars | CssProperties["rowGap"] | undefined | AnyString> | undefined;
594
+ gapX?: ConditionalValue<UtilityValues["columnGap"] | CssVars | CssProperties["columnGap"] | undefined | AnyString> | undefined;
595
+ flexDir?: ConditionalValue<CssProperties["flexDirection"] | undefined | AnyString> | undefined;
596
+ w?: ConditionalValue<UtilityValues["width"] | CssVars | CssProperties["width"] | undefined | AnyString> | undefined;
597
+ h?: ConditionalValue<UtilityValues["height"] | CssVars | CssProperties["height"] | undefined | AnyString> | undefined;
598
+ minW?: ConditionalValue<UtilityValues["minWidth"] | CssVars | CssProperties["minWidth"] | undefined | AnyString> | undefined;
599
+ minH?: ConditionalValue<UtilityValues["minHeight"] | CssVars | CssProperties["minHeight"] | undefined | AnyString> | undefined;
600
+ maxW?: ConditionalValue<UtilityValues["maxWidth"] | CssVars | CssProperties["maxWidth"] | undefined | AnyString> | undefined;
601
+ maxH?: ConditionalValue<UtilityValues["maxHeight"] | CssVars | CssProperties["maxHeight"] | undefined | AnyString> | undefined;
602
+ overscroll?: ConditionalValue<CssProperties["overscrollBehavior"] | undefined | AnyString> | undefined;
603
+ overscrollX?: ConditionalValue<CssProperties["overscrollBehaviorX"] | undefined | AnyString> | undefined;
604
+ overscrollY?: ConditionalValue<CssProperties["overscrollBehaviorY"] | undefined | AnyString> | undefined;
605
+ scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"] | undefined | AnyString> | undefined;
606
+ scrollPaddingY?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"] | undefined | AnyString> | undefined;
607
+ listStylePos?: ConditionalValue<CssProperties["listStylePosition"] | undefined | AnyString> | undefined;
608
+ listStyleImg?: ConditionalValue<UtilityValues["listStyleImage"] | CssVars | CssProperties["listStyleImage"] | undefined | AnyString> | undefined;
609
+ pos?: ConditionalValue<CssProperties["position"] | undefined | AnyString> | undefined;
610
+ insetX?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties["insetInline"] | undefined | AnyString> | undefined;
611
+ insetY?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties["insetBlock"] | undefined | AnyString> | undefined;
612
+ insetStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"] | undefined | AnyString> | undefined;
613
+ insetEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"] | undefined | AnyString> | undefined;
614
+ m?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"] | undefined | AnyString> | undefined;
615
+ mt?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marginTop"] | undefined | AnyString> | undefined;
616
+ mr?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["marginRight"] | undefined | AnyString> | undefined;
617
+ mb?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["marginBottom"] | undefined | AnyString> | undefined;
618
+ ml?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["marginLeft"] | undefined | AnyString> | undefined;
619
+ ms?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | undefined | AnyString> | undefined;
620
+ marginStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | undefined | AnyString> | undefined;
621
+ me?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | undefined | AnyString> | undefined;
622
+ marginEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | undefined | AnyString> | undefined;
623
+ mx?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | undefined | AnyString> | undefined;
624
+ marginX?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | undefined | AnyString> | undefined;
625
+ my?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | undefined | AnyString> | undefined;
626
+ marginY?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | undefined | AnyString> | undefined;
627
+ p?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding"] | undefined | AnyString> | undefined;
628
+ pt?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["paddingTop"] | undefined | AnyString> | undefined;
629
+ pr?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["paddingRight"] | undefined | AnyString> | undefined;
630
+ pb?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["paddingBottom"] | undefined | AnyString> | undefined;
631
+ pl?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["paddingLeft"] | undefined | AnyString> | undefined;
632
+ ps?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | undefined | AnyString> | undefined;
633
+ paddingStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | undefined | AnyString> | undefined;
634
+ pe?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | undefined | AnyString> | undefined;
635
+ paddingEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | undefined | AnyString> | undefined;
636
+ px?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | undefined | AnyString> | undefined;
637
+ paddingX?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | undefined | AnyString> | undefined;
638
+ py?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | undefined | AnyString> | undefined;
639
+ paddingY?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | undefined | AnyString> | undefined;
640
+ textDecor?: ConditionalValue<CssProperties["textDecoration"] | undefined | AnyString> | undefined;
641
+ backgroundGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | CssVars | undefined | AnyString> | undefined;
642
+ gradientFrom?: ConditionalValue<UtilityValues["gradientFrom"] | CssVars | undefined | AnyString> | undefined;
643
+ gradientTo?: ConditionalValue<UtilityValues["gradientTo"] | CssVars | undefined | AnyString> | undefined;
644
+ gradientVia?: ConditionalValue<UtilityValues["gradientVia"] | CssVars | undefined | AnyString> | undefined;
645
+ borderInlineStartRadius?: ConditionalValue<UtilityValues["borderInlineStartRadius"] | CssVars | undefined | AnyString> | undefined;
646
+ borderInlineEndRadius?: ConditionalValue<UtilityValues["borderInlineEndRadius"] | CssVars | undefined | AnyString> | undefined;
647
+ borderTopRadius?: ConditionalValue<UtilityValues["borderTopRadius"] | CssVars | undefined | AnyString> | undefined;
648
+ borderBottomRadius?: ConditionalValue<UtilityValues["borderBottomRadius"] | CssVars | undefined | AnyString> | undefined;
649
+ borderLeftRadius?: ConditionalValue<UtilityValues["borderLeftRadius"] | CssVars | undefined | AnyString> | undefined;
650
+ borderRightRadius?: ConditionalValue<UtilityValues["borderRightRadius"] | CssVars | undefined | AnyString> | undefined;
651
+ divideX?: ConditionalValue<UtilityValues["divideX"] | CssVars | undefined | AnyString> | undefined;
652
+ divideY?: ConditionalValue<UtilityValues["divideY"] | CssVars | undefined | AnyString> | undefined;
653
+ divideColor?: ConditionalValue<UtilityValues["divideColor"] | CssVars | undefined | AnyString> | undefined;
654
+ divideStyle?: ConditionalValue<UtilityValues["divideStyle"] | CssVars | undefined | AnyString> | undefined;
655
+ boxShadowColor?: ConditionalValue<UtilityValues["boxShadowColor"] | CssVars | undefined | AnyString> | undefined;
656
+ blur?: ConditionalValue<UtilityValues["blur"] | CssVars | undefined | AnyString> | undefined;
657
+ brightness?: ConditionalValue<string | number | undefined | AnyString> | undefined;
658
+ contrast?: ConditionalValue<string | number | undefined | AnyString> | undefined;
659
+ grayscale?: ConditionalValue<string | number | undefined | AnyString> | undefined;
660
+ hueRotate?: ConditionalValue<string | number | undefined | AnyString> | undefined;
661
+ invert?: ConditionalValue<string | number | undefined | AnyString> | undefined;
662
+ saturate?: ConditionalValue<string | number | undefined | AnyString> | undefined;
663
+ sepia?: ConditionalValue<string | number | undefined | AnyString> | undefined;
664
+ dropShadow?: ConditionalValue<string | number | undefined | AnyString> | undefined;
665
+ backdropBlur?: ConditionalValue<UtilityValues["backdropBlur"] | CssVars | undefined | AnyString> | undefined;
666
+ backdropBrightness?: ConditionalValue<string | number | undefined | AnyString> | undefined;
667
+ backdropContrast?: ConditionalValue<string | number | undefined | AnyString> | undefined;
668
+ backdropGrayscale?: ConditionalValue<string | number | undefined | AnyString> | undefined;
669
+ backdropHueRotate?: ConditionalValue<string | number | undefined | AnyString> | undefined;
670
+ backdropInvert?: ConditionalValue<string | number | undefined | AnyString> | undefined;
671
+ backdropOpacity?: ConditionalValue<string | number | undefined | AnyString> | undefined;
672
+ backdropSaturate?: ConditionalValue<string | number | undefined | AnyString> | undefined;
673
+ backdropSepia?: ConditionalValue<string | number | undefined | AnyString> | undefined;
674
+ focusRing?: ConditionalValue<UtilityValues["focusRing"] | CssVars | undefined | AnyString> | undefined;
675
+ focusVisibleRing?: ConditionalValue<UtilityValues["focusVisibleRing"] | CssVars | undefined | AnyString> | undefined;
676
+ focusRingColor?: ConditionalValue<UtilityValues["focusRingColor"] | CssVars | undefined | AnyString> | undefined;
677
+ focusRingOffset?: ConditionalValue<UtilityValues["focusRingOffset"] | CssVars | undefined | AnyString> | undefined;
678
+ focusRingWidth?: ConditionalValue<UtilityValues["focusRingWidth"] | CssVars | undefined | AnyString> | undefined;
679
+ focusRingStyle?: ConditionalValue<UtilityValues["focusRingStyle"] | CssVars | undefined | AnyString> | undefined;
680
+ boxSize?: ConditionalValue<UtilityValues["boxSize"] | CssVars | undefined | AnyString> | undefined;
681
+ hideFrom?: ConditionalValue<UtilityValues["hideFrom"] | CssVars | undefined | AnyString> | undefined;
682
+ hideBelow?: ConditionalValue<UtilityValues["hideBelow"] | CssVars | undefined | AnyString> | undefined;
683
+ scrollbar?: ConditionalValue<UtilityValues["scrollbar"] | CssVars | undefined | AnyString> | undefined;
684
+ scrollMarginX?: ConditionalValue<UtilityValues["scrollMarginX"] | CssVars | undefined | AnyString> | undefined;
685
+ scrollMarginY?: ConditionalValue<UtilityValues["scrollMarginY"] | CssVars | undefined | AnyString> | undefined;
686
+ scrollSnapStrictness?: ConditionalValue<UtilityValues["scrollSnapStrictness"] | CssVars | undefined | AnyString> | undefined;
687
+ scrollSnapMargin?: ConditionalValue<UtilityValues["scrollSnapMargin"] | CssVars | undefined | AnyString> | undefined;
688
+ scrollSnapMarginTop?: ConditionalValue<UtilityValues["scrollSnapMarginTop"] | CssVars | undefined | AnyString> | undefined;
689
+ scrollSnapMarginBottom?: ConditionalValue<UtilityValues["scrollSnapMarginBottom"] | CssVars | undefined | AnyString> | undefined;
690
+ scrollSnapMarginLeft?: ConditionalValue<UtilityValues["scrollSnapMarginLeft"] | CssVars | undefined | AnyString> | undefined;
691
+ scrollSnapMarginRight?: ConditionalValue<UtilityValues["scrollSnapMarginRight"] | CssVars | undefined | AnyString> | undefined;
692
+ ring?: ConditionalValue<string | number | undefined | AnyString> | undefined;
693
+ ringColor?: ConditionalValue<UtilityValues["ringColor"] | CssVars | undefined | AnyString> | undefined;
694
+ ringOffset?: ConditionalValue<string | number | undefined | AnyString> | undefined;
695
+ ringOffsetColor?: ConditionalValue<UtilityValues["ringOffsetColor"] | CssVars | undefined | AnyString> | undefined;
696
+ ringInset?: ConditionalValue<string | number | undefined | AnyString> | undefined;
697
+ skewX?: ConditionalValue<string | number | undefined | AnyString> | undefined;
698
+ skewY?: ConditionalValue<string | number | undefined | AnyString> | undefined;
699
+ scaleX?: ConditionalValue<string | number | undefined | AnyString> | undefined;
700
+ scaleY?: ConditionalValue<string | number | undefined | AnyString> | undefined;
701
+ spaceXReverse?: ConditionalValue<UtilityValues["spaceXReverse"] | CssVars | undefined | AnyString> | undefined;
702
+ spaceX?: ConditionalValue<UtilityValues["spaceX"] | CssVars | undefined | AnyString> | undefined;
703
+ spaceYReverse?: ConditionalValue<UtilityValues["spaceYReverse"] | CssVars | undefined | AnyString> | undefined;
704
+ spaceY?: ConditionalValue<UtilityValues["spaceY"] | CssVars | undefined | AnyString> | undefined;
705
+ rotateX?: ConditionalValue<string | number | undefined | AnyString> | undefined;
706
+ rotateY?: ConditionalValue<string | number | undefined | AnyString> | undefined;
707
+ translateX?: ConditionalValue<UtilityValues["translateX"] | CssVars | undefined | AnyString> | undefined;
708
+ translateY?: ConditionalValue<UtilityValues["translateY"] | CssVars | undefined | AnyString> | undefined;
709
+ truncate?: ConditionalValue<UtilityValues["truncate"] | CssVars | undefined | AnyString> | undefined;
710
+ borderSpacingX?: ConditionalValue<UtilityValues["borderSpacingX"] | CssVars | undefined | AnyString> | undefined;
711
+ borderSpacingY?: ConditionalValue<UtilityValues["borderSpacingY"] | CssVars | undefined | AnyString> | undefined;
712
+ srOnly?: ConditionalValue<UtilityValues["srOnly"] | CssVars | undefined | AnyString> | undefined;
713
+ debug?: ConditionalValue<UtilityValues["debug"] | CssVars | undefined | AnyString> | undefined;
714
+ colorPalette?: ConditionalValue<UtilityValues["colorPalette"] | CssVars | undefined | AnyString> | undefined;
715
+ textStyle?: ConditionalValue<UtilityValues["textStyle"] | CssVars | undefined | AnyString> | undefined;
716
+ layerStyle?: ConditionalValue<UtilityValues["layerStyle"] | CssVars | undefined | AnyString> | undefined;
717
+ animationStyle?: ConditionalValue<UtilityValues["animationStyle"] | CssVars | undefined | AnyString> | undefined;
718
+ }
719
+ export {};