@sanity/ui 3.0.0-static.14 → 3.0.0-static.16

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 (492) hide show
  1. package/README.md +8 -6
  2. package/dist/_chunks-cjs/_visual-editing.js +132 -145
  3. package/dist/_chunks-cjs/_visual-editing.js.map +1 -1
  4. package/dist/_chunks-cjs/refractor.js.map +1 -1
  5. package/dist/_chunks-es/_visual-editing.mjs +133 -146
  6. package/dist/_chunks-es/_visual-editing.mjs.map +1 -1
  7. package/dist/_chunks-es/refractor.mjs.map +1 -1
  8. package/dist/_visual-editing.d.mts +5 -15
  9. package/dist/_visual-editing.d.ts +5 -15
  10. package/dist/_visual-editing.js +0 -1
  11. package/dist/_visual-editing.js.map +1 -1
  12. package/dist/_visual-editing.mjs +1 -2
  13. package/dist/cli.js +1 -1
  14. package/dist/cli.js.map +1 -1
  15. package/dist/css.d.mts +12 -1
  16. package/dist/css.d.ts +12 -1
  17. package/dist/css.js +325 -430
  18. package/dist/css.js.map +1 -1
  19. package/dist/css.mjs +325 -430
  20. package/dist/css.mjs.map +1 -1
  21. package/dist/index.d.mts +10 -20
  22. package/dist/index.d.ts +10 -20
  23. package/dist/index.js +7 -41
  24. package/dist/index.js.map +1 -1
  25. package/dist/index.mjs +10 -44
  26. package/dist/index.mjs.map +1 -1
  27. package/dist/system.css +856 -84
  28. package/dist/system.min.css +1 -1
  29. package/exports/_visual-editing.ts +27 -27
  30. package/exports/index.ts +1 -1
  31. package/package.json +5 -5
  32. package/src/cli/index.ts +1 -13
  33. package/src/{ui → core}/_compat/index.ts +0 -1
  34. package/src/{ui → core}/_compat/theme/themeProvider.tsx +3 -3
  35. package/src/{ui → core}/components/tab/tabList.tsx +19 -4
  36. package/src/{ui → core}/index.ts +0 -1
  37. package/src/{ui → core}/primitives/box/box.tsx +3 -0
  38. package/src/{ui → core}/primitives/card/card.tsx +15 -21
  39. package/src/core/primitives/card/cardProvider.tsx +27 -0
  40. package/src/{ui → core}/primitives/card/types.ts +5 -4
  41. package/src/{ui → core}/primitives/popover/popover.tsx +1 -1
  42. package/src/{ui → core}/primitives/popover/popoverLayer.tsx +9 -20
  43. package/src/{ui → core}/primitives/tooltip/tooltip.tsx +2 -1
  44. package/src/{ui → core}/primitives/tooltip/tooltipLayer.tsx +11 -21
  45. package/src/{ui/utils/portal/portal.ts → core/utils/portal/portal.tsx} +8 -10
  46. package/src/css/_mergeStyles.ts +0 -7
  47. package/src/css/_system.style.ts +2 -0
  48. package/src/css/aspects/font/font.style.ts +0 -21
  49. package/src/css/aspects/font/font.ts +1 -6
  50. package/src/css/aspects/font/types.ts +0 -4
  51. package/src/css/aspects/index.ts +1 -0
  52. package/src/css/aspects/margin/margin.style.ts +0 -3
  53. package/src/css/aspects/textAlign/index.ts +2 -0
  54. package/src/css/aspects/textAlign/textAlign.style.ts +26 -0
  55. package/src/css/aspects/textAlign/textAlign.ts +8 -0
  56. package/src/css/aspects/textAlign/types.ts +7 -0
  57. package/src/css/primitives/_input/_input.style.ts +9 -11
  58. package/src/css/primitives/box/box.style.ts +5 -1
  59. package/src/css/primitives/box/box.ts +2 -0
  60. package/src/css/primitives/box/types.ts +2 -0
  61. package/src/css/primitives/heading/heading.ts +2 -1
  62. package/src/css/primitives/heading/types.ts +2 -1
  63. package/src/css/primitives/label/label.ts +2 -1
  64. package/src/css/primitives/label/types.ts +2 -1
  65. package/src/css/primitives/text/text.style.ts +0 -5
  66. package/src/css/primitives/text/text.ts +2 -1
  67. package/src/css/primitives/text/types.ts +2 -1
  68. package/src/css/primitives/textInput/textInput.style.ts +1 -120
  69. package/src/css/aspects/height/rules.ts +0 -7
  70. package/src/css/aspects/width/rules.ts +0 -8
  71. package/src/css/components/menu/rules.ts +0 -15
  72. package/src/css/primitives/avatar/rules.ts +0 -176
  73. package/src/css/primitives/button/rules.ts +0 -302
  74. package/src/css/primitives/checkbox/rules.ts +0 -152
  75. package/src/css/primitives/code/rules.ts +0 -96
  76. package/src/css/primitives/container/rules.ts +0 -8
  77. package/src/css/primitives/heading/rules.ts +0 -155
  78. package/src/css/primitives/kbd/rules.ts +0 -20
  79. package/src/css/primitives/label/rules.ts +0 -137
  80. package/src/css/primitives/radio/rules.ts +0 -121
  81. package/src/css/primitives/select/rules.ts +0 -22
  82. package/src/css/primitives/switch/rules.ts +0 -340
  83. package/src/css/primitives/text/rules.ts +0 -164
  84. package/src/css/primitives/textArea/rules.ts +0 -7
  85. package/src/css/primitives/textInput/rules.ts +0 -224
  86. package/src/css/primitives/tooltip/rules.ts +0 -19
  87. package/src/ui/RootClassNames.tsx +0 -44
  88. package/src/ui/_compat/studioTheme.ts +0 -7
  89. package/src/ui/primitives/card/cardProvider.tsx +0 -21
  90. /package/src/{ui → core}/StyleTags.tsx +0 -0
  91. /package/src/{ui → core}/_compat/helpers.ts +0 -0
  92. /package/src/{ui → core}/_compat/styles/_responsive.ts +0 -0
  93. /package/src/{ui → core}/_compat/styles/index.ts +0 -0
  94. /package/src/{ui → core}/_compat/theme/index.ts +0 -0
  95. /package/src/{ui → core}/_compat/theme/theme.test.tsx +0 -0
  96. /package/src/{ui → core}/_compat/theme/themeColorProvider.tsx +0 -0
  97. /package/src/{ui → core}/_compat/theme/themeContext.ts +0 -0
  98. /package/src/{ui → core}/_compat/theme/types.ts +0 -0
  99. /package/src/{ui → core}/_compat/theme/useRootTheme.ts +0 -0
  100. /package/src/{ui → core}/_compat/theme/useTheme.ts +0 -0
  101. /package/src/{ui → core}/_compat/types.ts +0 -0
  102. /package/src/{ui → core}/components/autocomplete/__mocks__/apiStore.ts +0 -0
  103. /package/src/{ui → core}/components/autocomplete/__mocks__/countries.ts +0 -0
  104. /package/src/{ui → core}/components/autocomplete/__workshop__/async.tsx +0 -0
  105. /package/src/{ui → core}/components/autocomplete/__workshop__/constrainedHeight.tsx +0 -0
  106. /package/src/{ui → core}/components/autocomplete/__workshop__/custom.tsx +0 -0
  107. /package/src/{ui → core}/components/autocomplete/__workshop__/example.tsx +0 -0
  108. /package/src/{ui → core}/components/autocomplete/__workshop__/focusAndBlur.tsx +0 -0
  109. /package/src/{ui → core}/components/autocomplete/__workshop__/fullscreen.tsx +0 -0
  110. /package/src/{ui → core}/components/autocomplete/__workshop__/index.ts +0 -0
  111. /package/src/{ui → core}/components/autocomplete/__workshop__/types.ts +0 -0
  112. /package/src/{ui → core}/components/autocomplete/autocomplete.tsx +0 -0
  113. /package/src/{ui → core}/components/autocomplete/autocompleteOption.tsx +0 -0
  114. /package/src/{ui → core}/components/autocomplete/autocompleteReducer.ts +0 -0
  115. /package/src/{ui → core}/components/autocomplete/constants.ts +0 -0
  116. /package/src/{ui → core}/components/autocomplete/index.ts +0 -0
  117. /package/src/{ui → core}/components/autocomplete/types.ts +0 -0
  118. /package/src/{ui → core}/components/breadcrumbs/__workshop__/example.tsx +0 -0
  119. /package/src/{ui → core}/components/breadcrumbs/__workshop__/index.ts +0 -0
  120. /package/src/{ui → core}/components/breadcrumbs/breadcrumbs.tsx +0 -0
  121. /package/src/{ui → core}/components/breadcrumbs/index.ts +0 -0
  122. /package/src/{ui → core}/components/dialog/__workshop__/activate.tsx +0 -0
  123. /package/src/{ui → core}/components/dialog/__workshop__/autoFocus.tsx +0 -0
  124. /package/src/{ui → core}/components/dialog/__workshop__/index.ts +0 -0
  125. /package/src/{ui → core}/components/dialog/__workshop__/layering.tsx +0 -0
  126. /package/src/{ui → core}/components/dialog/__workshop__/nested.tsx +0 -0
  127. /package/src/{ui → core}/components/dialog/__workshop__/onScroll.tsx +0 -0
  128. /package/src/{ui → core}/components/dialog/__workshop__/panes.tsx +0 -0
  129. /package/src/{ui → core}/components/dialog/__workshop__/position.tsx +0 -0
  130. /package/src/{ui → core}/components/dialog/__workshop__/props.tsx +0 -0
  131. /package/src/{ui → core}/components/dialog/__workshop__/provider.tsx +0 -0
  132. /package/src/{ui → core}/components/dialog/__workshop__/wrapped.tsx +0 -0
  133. /package/src/{ui → core}/components/dialog/dialog.tsx +0 -0
  134. /package/src/{ui → core}/components/dialog/dialogCard.tsx +0 -0
  135. /package/src/{ui → core}/components/dialog/dialogContext.ts +0 -0
  136. /package/src/{ui → core}/components/dialog/dialogProvider.tsx +0 -0
  137. /package/src/{ui → core}/components/dialog/index.ts +0 -0
  138. /package/src/{ui → core}/components/dialog/isTargetWithinScope.ts +0 -0
  139. /package/src/{ui → core}/components/dialog/useDialog.ts +0 -0
  140. /package/src/{ui → core}/components/hotkeys/__workshop__/index.ts +0 -0
  141. /package/src/{ui → core}/components/hotkeys/__workshop__/plain.tsx +0 -0
  142. /package/src/{ui → core}/components/hotkeys/hotkeys.tsx +0 -0
  143. /package/src/{ui → core}/components/hotkeys/index.ts +0 -0
  144. /package/src/{ui → core}/components/index.ts +0 -0
  145. /package/src/{ui → core}/components/menu/__workshop__/asComponent.tsx +0 -0
  146. /package/src/{ui → core}/components/menu/__workshop__/avatarMenu.tsx +0 -0
  147. /package/src/{ui → core}/components/menu/__workshop__/closableMenuButton.tsx +0 -0
  148. /package/src/{ui → core}/components/menu/__workshop__/constrainedInBoundary.tsx +0 -0
  149. /package/src/{ui → core}/components/menu/__workshop__/customMenuItem.tsx +0 -0
  150. /package/src/{ui → core}/components/menu/__workshop__/customSelectedState.tsx +0 -0
  151. /package/src/{ui → core}/components/menu/__workshop__/disableFocusOnClose.tsx +0 -0
  152. /package/src/{ui → core}/components/menu/__workshop__/groups.tsx +0 -0
  153. /package/src/{ui → core}/components/menu/__workshop__/index.ts +0 -0
  154. /package/src/{ui → core}/components/menu/__workshop__/menuButton.tsx +0 -0
  155. /package/src/{ui → core}/components/menu/__workshop__/menuGroupRight.tsx +0 -0
  156. /package/src/{ui → core}/components/menu/__workshop__/nestedMenu.tsx +0 -0
  157. /package/src/{ui → core}/components/menu/__workshop__/onCloseMenuButton.tsx +0 -0
  158. /package/src/{ui → core}/components/menu/__workshop__/selectedItem.tsx +0 -0
  159. /package/src/{ui → core}/components/menu/__workshop__/shouldFocus.tsx +0 -0
  160. /package/src/{ui → core}/components/menu/__workshop__/tones.tsx +0 -0
  161. /package/src/{ui → core}/components/menu/__workshop__/withoutArrow.tsx +0 -0
  162. /package/src/{ui → core}/components/menu/helpers.ts +0 -0
  163. /package/src/{ui → core}/components/menu/index.ts +0 -0
  164. /package/src/{ui → core}/components/menu/menu.test.tsx +0 -0
  165. /package/src/{ui → core}/components/menu/menu.tsx +0 -0
  166. /package/src/{ui → core}/components/menu/menuButton.tsx +0 -0
  167. /package/src/{ui → core}/components/menu/menuContext.ts +0 -0
  168. /package/src/{ui → core}/components/menu/menuDivider.tsx +0 -0
  169. /package/src/{ui → core}/components/menu/menuGroup.tsx +0 -0
  170. /package/src/{ui → core}/components/menu/menuItem.tsx +0 -0
  171. /package/src/{ui → core}/components/menu/useMenu.ts +0 -0
  172. /package/src/{ui → core}/components/menu/useMenuController.ts +0 -0
  173. /package/src/{ui → core}/components/skeleton/__workshop__/delay.tsx +0 -0
  174. /package/src/{ui → core}/components/skeleton/__workshop__/index.ts +0 -0
  175. /package/src/{ui → core}/components/skeleton/__workshop__/skeleton.tsx +0 -0
  176. /package/src/{ui → core}/components/skeleton/codeSkeleton.tsx +0 -0
  177. /package/src/{ui → core}/components/skeleton/headingSkeleton.tsx +0 -0
  178. /package/src/{ui → core}/components/skeleton/index.ts +0 -0
  179. /package/src/{ui → core}/components/skeleton/labelSkeleton.tsx +0 -0
  180. /package/src/{ui → core}/components/skeleton/skeleton.tsx +0 -0
  181. /package/src/{ui → core}/components/skeleton/textSkeleton.tsx +0 -0
  182. /package/src/{ui → core}/components/tab/__workshop__/example.tsx +0 -0
  183. /package/src/{ui → core}/components/tab/__workshop__/index.ts +0 -0
  184. /package/src/{ui → core}/components/tab/index.ts +0 -0
  185. /package/src/{ui → core}/components/tab/tab.tsx +0 -0
  186. /package/src/{ui → core}/components/tab/tabPanel.tsx +0 -0
  187. /package/src/{ui → core}/components/toast/__workshop__/hook.tsx +0 -0
  188. /package/src/{ui → core}/components/toast/__workshop__/index.ts +0 -0
  189. /package/src/{ui → core}/components/toast/__workshop__/toast.tsx +0 -0
  190. /package/src/{ui → core}/components/toast/index.ts +0 -0
  191. /package/src/{ui → core}/components/toast/toast.test.tsx +0 -0
  192. /package/src/{ui → core}/components/toast/toast.tsx +0 -0
  193. /package/src/{ui → core}/components/toast/toastContext.ts +0 -0
  194. /package/src/{ui → core}/components/toast/toastLayer.tsx +0 -0
  195. /package/src/{ui → core}/components/toast/toastProvider.tsx +0 -0
  196. /package/src/{ui → core}/components/toast/toastState.ts +0 -0
  197. /package/src/{ui → core}/components/toast/types.ts +0 -0
  198. /package/src/{ui → core}/components/toast/useToast.ts +0 -0
  199. /package/src/{ui → core}/components/tree/__workshop__/basic.perf.ts +0 -0
  200. /package/src/{ui → core}/components/tree/__workshop__/basic.tsx +0 -0
  201. /package/src/{ui → core}/components/tree/__workshop__/index.ts +0 -0
  202. /package/src/{ui → core}/components/tree/__workshop__/tabFromElement.tsx +0 -0
  203. /package/src/{ui → core}/components/tree/helpers.ts +0 -0
  204. /package/src/{ui → core}/components/tree/index.ts +0 -0
  205. /package/src/{ui → core}/components/tree/tree.tsx +0 -0
  206. /package/src/{ui → core}/components/tree/treeContext.ts +0 -0
  207. /package/src/{ui → core}/components/tree/treeGroup.tsx +0 -0
  208. /package/src/{ui → core}/components/tree/treeItem.tsx +0 -0
  209. /package/src/{ui → core}/components/tree/types.ts +0 -0
  210. /package/src/{ui → core}/components/tree/useTree.ts +0 -0
  211. /package/src/{ui → core}/constants.ts +0 -0
  212. /package/src/{ui → core}/global.ts +0 -0
  213. /package/src/{ui → core}/helpers/animation.ts +0 -0
  214. /package/src/{ui → core}/helpers/element.ts +0 -0
  215. /package/src/{ui → core}/helpers/focus.ts +0 -0
  216. /package/src/{ui → core}/helpers/index.ts +0 -0
  217. /package/src/{ui → core}/helpers/props.ts +0 -0
  218. /package/src/{ui → core}/helpers/scroll.ts +0 -0
  219. /package/src/{ui → core}/hooks/index.ts +0 -0
  220. /package/src/{ui → core}/hooks/useArrayProp.ts +0 -0
  221. /package/src/{ui → core}/hooks/useClickOutside.test.tsx +0 -0
  222. /package/src/{ui → core}/hooks/useClickOutside.ts +0 -0
  223. /package/src/{ui → core}/hooks/useClickOutsideEvent.test.tsx +0 -0
  224. /package/src/{ui → core}/hooks/useClickOutsideEvent.ts +0 -0
  225. /package/src/{ui → core}/hooks/useCustomValidity.ts +0 -0
  226. /package/src/{ui → core}/hooks/useDelayed.test.ts +0 -0
  227. /package/src/{ui → core}/hooks/useDelayedState.ts +0 -0
  228. /package/src/{ui → core}/hooks/useElementRect/__workshop__/example.tsx +0 -0
  229. /package/src/{ui → core}/hooks/useElementRect/__workshop__/index.ts +0 -0
  230. /package/src/{ui → core}/hooks/useElementRect/index.ts +0 -0
  231. /package/src/{ui → core}/hooks/useElementRect/useElementRect.ts +0 -0
  232. /package/src/{ui → core}/hooks/useElementSize.ts +0 -0
  233. /package/src/{ui → core}/hooks/useForwardedRef.ts +0 -0
  234. /package/src/{ui → core}/hooks/useGlobalKeyDown.ts +0 -0
  235. /package/src/{ui → core}/hooks/useIsomorphicEffect.ts +0 -0
  236. /package/src/{ui → core}/hooks/useMatchMedia.ts +0 -0
  237. /package/src/{ui → core}/hooks/useMediaIndex/__workshop__/index.ts +0 -0
  238. /package/src/{ui → core}/hooks/useMediaIndex/__workshop__/test.tsx +0 -0
  239. /package/src/{ui → core}/hooks/useMediaIndex/index.ts +0 -0
  240. /package/src/{ui → core}/hooks/useMediaIndex/useMediaIndex.test.tsx +0 -0
  241. /package/src/{ui → core}/hooks/useMediaIndex/useMediaIndex.ts +0 -0
  242. /package/src/{ui → core}/hooks/useMounted.ts +0 -0
  243. /package/src/{ui → core}/hooks/usePrefersDark.hydration.test.tsx +0 -0
  244. /package/src/{ui → core}/hooks/usePrefersDark.test.tsx +0 -0
  245. /package/src/{ui → core}/hooks/usePrefersDark.ts +0 -0
  246. /package/src/{ui → core}/hooks/usePrefersReducedMotion.hydration.test.tsx +0 -0
  247. /package/src/{ui → core}/hooks/usePrefersReducedMotion.test.tsx +0 -0
  248. /package/src/{ui → core}/hooks/usePrefersReducedMotion.ts +0 -0
  249. /package/src/{ui → core}/lib/createGlobalScopedContext.ts +0 -0
  250. /package/src/{ui → core}/lib/globalScope.ts +0 -0
  251. /package/src/{ui → core}/lib/isRecord.ts +0 -0
  252. /package/src/{ui → core}/middleware/origin.ts +0 -0
  253. /package/src/{ui → core}/observers/elementSizeObserver.ts +0 -0
  254. /package/src/{ui → core}/observers/index.ts +0 -0
  255. /package/src/{ui → core}/observers/resizeObserver.ts +0 -0
  256. /package/src/{ui → core}/primitives/_selectable/index.ts +0 -0
  257. /package/src/{ui → core}/primitives/_selectable/selectable.tsx +0 -0
  258. /package/src/{ui → core}/primitives/avatar/__workshop__/asButton.tsx +0 -0
  259. /package/src/{ui → core}/primitives/avatar/__workshop__/index.ts +0 -0
  260. /package/src/{ui → core}/primitives/avatar/__workshop__/stack.tsx +0 -0
  261. /package/src/{ui → core}/primitives/avatar/__workshop__/withinButton.tsx +0 -0
  262. /package/src/{ui → core}/primitives/avatar/__workshop__/withinMenuItem.tsx +0 -0
  263. /package/src/{ui → core}/primitives/avatar/avatar.tsx +0 -0
  264. /package/src/{ui → core}/primitives/avatar/avatarCounter.tsx +0 -0
  265. /package/src/{ui → core}/primitives/avatar/avatarStack.tsx +0 -0
  266. /package/src/{ui → core}/primitives/avatar/index.ts +0 -0
  267. /package/src/{ui → core}/primitives/avatar/types.ts +0 -0
  268. /package/src/{ui → core}/primitives/badge/__workshop__/index.ts +0 -0
  269. /package/src/{ui → core}/primitives/badge/__workshop__/props.tsx +0 -0
  270. /package/src/{ui → core}/primitives/badge/__workshop__/tones.tsx +0 -0
  271. /package/src/{ui → core}/primitives/badge/badge.test.tsx +0 -0
  272. /package/src/{ui → core}/primitives/badge/badge.tsx +0 -0
  273. /package/src/{ui → core}/primitives/badge/index.ts +0 -0
  274. /package/src/{ui → core}/primitives/badge/types.ts +0 -0
  275. /package/src/{ui → core}/primitives/box/__workshop__/index.ts +0 -0
  276. /package/src/{ui → core}/primitives/box/__workshop__/props.tsx +0 -0
  277. /package/src/{ui → core}/primitives/box/__workshop__/responsive.tsx +0 -0
  278. /package/src/{ui → core}/primitives/box/index.ts +0 -0
  279. /package/src/{ui → core}/primitives/button/__workshop__/custom.tsx +0 -0
  280. /package/src/{ui → core}/primitives/button/__workshop__/customIcons.tsx +0 -0
  281. /package/src/{ui → core}/primitives/button/__workshop__/disabled.tsx +0 -0
  282. /package/src/{ui → core}/primitives/button/__workshop__/index.ts +0 -0
  283. /package/src/{ui → core}/primitives/button/__workshop__/mixedChildren.tsx +0 -0
  284. /package/src/{ui → core}/primitives/button/__workshop__/props.tsx +0 -0
  285. /package/src/{ui → core}/primitives/button/__workshop__/sanityUploadButton.tsx +0 -0
  286. /package/src/{ui → core}/primitives/button/__workshop__/stacked.tsx +0 -0
  287. /package/src/{ui → core}/primitives/button/__workshop__/styled1.tsx +0 -0
  288. /package/src/{ui → core}/primitives/button/__workshop__/styled2.tsx +0 -0
  289. /package/src/{ui → core}/primitives/button/__workshop__/uploadButton.tsx +0 -0
  290. /package/src/{ui → core}/primitives/button/button.test.tsx +0 -0
  291. /package/src/{ui → core}/primitives/button/button.tsx +0 -0
  292. /package/src/{ui → core}/primitives/button/index.ts +0 -0
  293. /package/src/{ui → core}/primitives/card/__workshop__/allTones.tsx +0 -0
  294. /package/src/{ui → core}/primitives/card/__workshop__/asButton.tsx +0 -0
  295. /package/src/{ui → core}/primitives/card/__workshop__/asComponent.tsx +0 -0
  296. /package/src/{ui → core}/primitives/card/__workshop__/checkered.tsx +0 -0
  297. /package/src/{ui → core}/primitives/card/__workshop__/index.ts +0 -0
  298. /package/src/{ui → core}/primitives/card/__workshop__/interactive.tsx +0 -0
  299. /package/src/{ui → core}/primitives/card/__workshop__/listNavigation.tsx +0 -0
  300. /package/src/{ui → core}/primitives/card/__workshop__/props.tsx +0 -0
  301. /package/src/{ui → core}/primitives/card/__workshop__/selected.tsx +0 -0
  302. /package/src/{ui → core}/primitives/card/__workshop__/styled.tsx +0 -0
  303. /package/src/{ui → core}/primitives/card/cardContext.ts +0 -0
  304. /package/src/{ui → core}/primitives/card/index.ts +0 -0
  305. /package/src/{ui → core}/primitives/card/useCard.ts +0 -0
  306. /package/src/{ui → core}/primitives/checkbox/__workshop__/example.tsx +0 -0
  307. /package/src/{ui → core}/primitives/checkbox/__workshop__/index.ts +0 -0
  308. /package/src/{ui → core}/primitives/checkbox/__workshop__/props.tsx +0 -0
  309. /package/src/{ui → core}/primitives/checkbox/__workshop__/readOnly.tsx +0 -0
  310. /package/src/{ui → core}/primitives/checkbox/__workshop__/tones.tsx +0 -0
  311. /package/src/{ui → core}/primitives/checkbox/checkbox.tsx +0 -0
  312. /package/src/{ui → core}/primitives/checkbox/index.ts +0 -0
  313. /package/src/{ui → core}/primitives/code/__workshop__/index.ts +0 -0
  314. /package/src/{ui → core}/primitives/code/__workshop__/opticalAlignment.tsx +0 -0
  315. /package/src/{ui → core}/primitives/code/__workshop__/props.tsx +0 -0
  316. /package/src/{ui → core}/primitives/code/code.tsx +0 -0
  317. /package/src/{ui → core}/primitives/code/index.ts +0 -0
  318. /package/src/{ui → core}/primitives/code/refractor.tsx +0 -0
  319. /package/src/{ui → core}/primitives/container/__workshop__/example.tsx +0 -0
  320. /package/src/{ui → core}/primitives/container/__workshop__/index.ts +0 -0
  321. /package/src/{ui → core}/primitives/container/container.tsx +0 -0
  322. /package/src/{ui → core}/primitives/container/index.ts +0 -0
  323. /package/src/{ui → core}/primitives/container/types.ts +0 -0
  324. /package/src/{ui → core}/primitives/flex/__workshop__/example.tsx +0 -0
  325. /package/src/{ui → core}/primitives/flex/__workshop__/gap.tsx +0 -0
  326. /package/src/{ui → core}/primitives/flex/__workshop__/index.ts +0 -0
  327. /package/src/{ui → core}/primitives/flex/flex.tsx +0 -0
  328. /package/src/{ui → core}/primitives/flex/index.ts +0 -0
  329. /package/src/{ui → core}/primitives/grid/__workshop__/index.ts +0 -0
  330. /package/src/{ui → core}/primitives/grid/__workshop__/responsive.tsx +0 -0
  331. /package/src/{ui → core}/primitives/grid/grid.tsx +0 -0
  332. /package/src/{ui → core}/primitives/grid/index.ts +0 -0
  333. /package/src/{ui → core}/primitives/heading/__workshop__/index.ts +0 -0
  334. /package/src/{ui → core}/primitives/heading/__workshop__/opticalAlignment.tsx +0 -0
  335. /package/src/{ui → core}/primitives/heading/__workshop__/plain.tsx +0 -0
  336. /package/src/{ui → core}/primitives/heading/heading.tsx +0 -0
  337. /package/src/{ui → core}/primitives/heading/index.ts +0 -0
  338. /package/src/{ui → core}/primitives/index.ts +0 -0
  339. /package/src/{ui → core}/primitives/inline/__workshop__/index.ts +0 -0
  340. /package/src/{ui → core}/primitives/inline/__workshop__/plain.tsx +0 -0
  341. /package/src/{ui → core}/primitives/inline/index.ts +0 -0
  342. /package/src/{ui → core}/primitives/inline/inline.tsx +0 -0
  343. /package/src/{ui → core}/primitives/inline/types.ts +0 -0
  344. /package/src/{ui → core}/primitives/kbd/__workshop__/index.ts +0 -0
  345. /package/src/{ui → core}/primitives/kbd/__workshop__/plain.tsx +0 -0
  346. /package/src/{ui → core}/primitives/kbd/index.ts +0 -0
  347. /package/src/{ui → core}/primitives/kbd/kbd.tsx +0 -0
  348. /package/src/{ui → core}/primitives/label/__workshop__/index.ts +0 -0
  349. /package/src/{ui → core}/primitives/label/__workshop__/opticalAlignment.tsx +0 -0
  350. /package/src/{ui → core}/primitives/label/__workshop__/plain.tsx +0 -0
  351. /package/src/{ui → core}/primitives/label/index.ts +0 -0
  352. /package/src/{ui → core}/primitives/label/label.tsx +0 -0
  353. /package/src/{ui → core}/primitives/popover/__workshop__/AlignedStory.tsx +0 -0
  354. /package/src/{ui → core}/primitives/popover/__workshop__/MarginsStory.tsx +0 -0
  355. /package/src/{ui → core}/primitives/popover/__workshop__/MatchReferenceWidthStory.tsx +0 -0
  356. /package/src/{ui → core}/primitives/popover/__workshop__/OpenOnMountStory.tsx +0 -0
  357. /package/src/{ui → core}/primitives/popover/__workshop__/PlainStory.tsx +0 -0
  358. /package/src/{ui → core}/primitives/popover/__workshop__/RecursiveStory.tsx +0 -0
  359. /package/src/{ui → core}/primitives/popover/__workshop__/SidePanelStory.tsx +0 -0
  360. /package/src/{ui → core}/primitives/popover/__workshop__/TestStory.tsx +0 -0
  361. /package/src/{ui → core}/primitives/popover/__workshop__/index.ts +0 -0
  362. /package/src/{ui → core}/primitives/popover/constants.ts +0 -0
  363. /package/src/{ui → core}/primitives/popover/floating-ui/size.ts +0 -0
  364. /package/src/{ui → core}/primitives/popover/helpers.ts +0 -0
  365. /package/src/{ui → core}/primitives/popover/index.ts +0 -0
  366. /package/src/{ui → core}/primitives/popover/types.ts +0 -0
  367. /package/src/{ui → core}/primitives/radio/__workshop__/example.tsx +0 -0
  368. /package/src/{ui → core}/primitives/radio/__workshop__/index.ts +0 -0
  369. /package/src/{ui → core}/primitives/radio/__workshop__/plain.tsx +0 -0
  370. /package/src/{ui → core}/primitives/radio/index.ts +0 -0
  371. /package/src/{ui → core}/primitives/radio/radio.tsx +0 -0
  372. /package/src/{ui → core}/primitives/select/__workshop__/index.ts +0 -0
  373. /package/src/{ui → core}/primitives/select/__workshop__/plain.tsx +0 -0
  374. /package/src/{ui → core}/primitives/select/__workshop__/readOnly.tsx +0 -0
  375. /package/src/{ui → core}/primitives/select/index.ts +0 -0
  376. /package/src/{ui → core}/primitives/select/select.tsx +0 -0
  377. /package/src/{ui → core}/primitives/spinner/__workshop__/Props.tsx +0 -0
  378. /package/src/{ui → core}/primitives/spinner/__workshop__/index.ts +0 -0
  379. /package/src/{ui → core}/primitives/spinner/animatedSpinnerIcon.tsx +0 -0
  380. /package/src/{ui → core}/primitives/spinner/index.ts +0 -0
  381. /package/src/{ui → core}/primitives/spinner/spinner.tsx +0 -0
  382. /package/src/{ui → core}/primitives/stack/__workshop__/index.ts +0 -0
  383. /package/src/{ui → core}/primitives/stack/__workshop__/plain.tsx +0 -0
  384. /package/src/{ui → core}/primitives/stack/index.ts +0 -0
  385. /package/src/{ui → core}/primitives/stack/stack.tsx +0 -0
  386. /package/src/{ui → core}/primitives/switch/__workshop__/example.tsx +0 -0
  387. /package/src/{ui → core}/primitives/switch/__workshop__/index.ts +0 -0
  388. /package/src/{ui → core}/primitives/switch/__workshop__/props.tsx +0 -0
  389. /package/src/{ui → core}/primitives/switch/index.ts +0 -0
  390. /package/src/{ui → core}/primitives/switch/switch.tsx +0 -0
  391. /package/src/{ui → core}/primitives/text/__workshop__/colored.tsx +0 -0
  392. /package/src/{ui → core}/primitives/text/__workshop__/example.tsx +0 -0
  393. /package/src/{ui → core}/primitives/text/__workshop__/index.ts +0 -0
  394. /package/src/{ui → core}/primitives/text/__workshop__/opticalAlignment.tsx +0 -0
  395. /package/src/{ui → core}/primitives/text/index.ts +0 -0
  396. /package/src/{ui → core}/primitives/text/text.tsx +0 -0
  397. /package/src/{ui → core}/primitives/textArea/__workshop__/index.ts +0 -0
  398. /package/src/{ui → core}/primitives/textArea/__workshop__/plain.tsx +0 -0
  399. /package/src/{ui → core}/primitives/textArea/index.ts +0 -0
  400. /package/src/{ui → core}/primitives/textArea/textArea.tsx +0 -0
  401. /package/src/{ui → core}/primitives/textInput/__workshop__/clearButton.tsx +0 -0
  402. /package/src/{ui → core}/primitives/textInput/__workshop__/customValidity.tsx +0 -0
  403. /package/src/{ui → core}/primitives/textInput/__workshop__/index.ts +0 -0
  404. /package/src/{ui → core}/primitives/textInput/__workshop__/plain.tsx +0 -0
  405. /package/src/{ui → core}/primitives/textInput/__workshop__/readOnly.tsx +0 -0
  406. /package/src/{ui → core}/primitives/textInput/__workshop__/states.tsx +0 -0
  407. /package/src/{ui → core}/primitives/textInput/__workshop__/tones.tsx +0 -0
  408. /package/src/{ui → core}/primitives/textInput/__workshop__/typed.tsx +0 -0
  409. /package/src/{ui → core}/primitives/textInput/index.ts +0 -0
  410. /package/src/{ui → core}/primitives/textInput/textInput.tsx +0 -0
  411. /package/src/{ui → core}/primitives/tooltip/__workshop__/customPortal.tsx +0 -0
  412. /package/src/{ui → core}/primitives/tooltip/__workshop__/index.ts +0 -0
  413. /package/src/{ui → core}/primitives/tooltip/__workshop__/overflowingBoundary.tsx +0 -0
  414. /package/src/{ui → core}/primitives/tooltip/__workshop__/props.tsx +0 -0
  415. /package/src/{ui → core}/primitives/tooltip/__workshop__/resizableBoundary.tsx +0 -0
  416. /package/src/{ui → core}/primitives/tooltip/constants.ts +0 -0
  417. /package/src/{ui → core}/primitives/tooltip/index.ts +0 -0
  418. /package/src/{ui → core}/primitives/tooltip/tooltip.test.tsx +0 -0
  419. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/index.ts +0 -0
  420. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupContext.tsx +0 -0
  421. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx +0 -0
  422. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/types.ts +0 -0
  423. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/useTooltipDelayGroup.ts +0 -0
  424. /package/src/{ui → core}/primitives/types.ts +0 -0
  425. /package/src/{ui → core}/types/avatar.ts +0 -0
  426. /package/src/{ui → core}/types/badge.ts +0 -0
  427. /package/src/{ui → core}/types/box.ts +0 -0
  428. /package/src/{ui → core}/types/button.ts +0 -0
  429. /package/src/{ui → core}/types/card.ts +0 -0
  430. /package/src/{ui → core}/types/dialog.ts +0 -0
  431. /package/src/{ui → core}/types/flex.ts +0 -0
  432. /package/src/{ui → core}/types/grid.ts +0 -0
  433. /package/src/{ui → core}/types/gridItem.ts +0 -0
  434. /package/src/{ui → core}/types/index.ts +0 -0
  435. /package/src/{ui → core}/types/placement.ts +0 -0
  436. /package/src/{ui → core}/types/popover.ts +0 -0
  437. /package/src/{ui → core}/types/props.ts +0 -0
  438. /package/src/{ui → core}/types/radius.ts +0 -0
  439. /package/src/{ui → core}/types/selectable.ts +0 -0
  440. /package/src/{ui → core}/types/text.ts +0 -0
  441. /package/src/{ui → core}/utils/arrow/arrow.tsx +0 -0
  442. /package/src/{ui → core}/utils/arrow/cmds.ts +0 -0
  443. /package/src/{ui → core}/utils/arrow/index.ts +0 -0
  444. /package/src/{ui → core}/utils/boundaryElement/__workshop__/index.ts +0 -0
  445. /package/src/{ui → core}/utils/boundaryElement/__workshop__/plain.tsx +0 -0
  446. /package/src/{ui → core}/utils/boundaryElement/boundaryElement.test.tsx +0 -0
  447. /package/src/{ui → core}/utils/boundaryElement/boundaryElementContext.ts +0 -0
  448. /package/src/{ui → core}/utils/boundaryElement/boundaryElementProvider.tsx +0 -0
  449. /package/src/{ui → core}/utils/boundaryElement/index.ts +0 -0
  450. /package/src/{ui → core}/utils/boundaryElement/types.ts +0 -0
  451. /package/src/{ui → core}/utils/boundaryElement/useBoundaryElement.ts +0 -0
  452. /package/src/{ui → core}/utils/elementQuery/__workshop__/customMedia.tsx +0 -0
  453. /package/src/{ui → core}/utils/elementQuery/__workshop__/index.ts +0 -0
  454. /package/src/{ui → core}/utils/elementQuery/elementQuery.tsx +0 -0
  455. /package/src/{ui → core}/utils/elementQuery/helpers.ts +0 -0
  456. /package/src/{ui → core}/utils/elementQuery/index.ts +0 -0
  457. /package/src/{ui → core}/utils/errorBoundary.tsx +0 -0
  458. /package/src/{ui → core}/utils/getElementRef.ts +0 -0
  459. /package/src/{ui → core}/utils/index.ts +0 -0
  460. /package/src/{ui → core}/utils/layer/__workshop__/_debug.tsx +0 -0
  461. /package/src/{ui → core}/utils/layer/__workshop__/index.ts +0 -0
  462. /package/src/{ui → core}/utils/layer/__workshop__/multipleRoots.tsx +0 -0
  463. /package/src/{ui → core}/utils/layer/__workshop__/nested.tsx +0 -0
  464. /package/src/{ui → core}/utils/layer/__workshop__/responsiveZOffset.tsx +0 -0
  465. /package/src/{ui → core}/utils/layer/getLayerContext.test.ts +0 -0
  466. /package/src/{ui → core}/utils/layer/getLayerContext.ts +0 -0
  467. /package/src/{ui → core}/utils/layer/index.ts +0 -0
  468. /package/src/{ui → core}/utils/layer/layer.test.tsx +0 -0
  469. /package/src/{ui → core}/utils/layer/layer.tsx +0 -0
  470. /package/src/{ui → core}/utils/layer/layerCard.tsx +0 -0
  471. /package/src/{ui → core}/utils/layer/layerContext.ts +0 -0
  472. /package/src/{ui → core}/utils/layer/layerProvider.tsx +0 -0
  473. /package/src/{ui → core}/utils/layer/types.ts +0 -0
  474. /package/src/{ui → core}/utils/layer/useLayer.ts +0 -0
  475. /package/src/{ui → core}/utils/portal/__workshop__/index.ts +0 -0
  476. /package/src/{ui → core}/utils/portal/__workshop__/named.tsx +0 -0
  477. /package/src/{ui → core}/utils/portal/index.ts +0 -0
  478. /package/src/{ui → core}/utils/portal/portal.test.tsx +0 -0
  479. /package/src/{ui → core}/utils/portal/portalContext.ts +0 -0
  480. /package/src/{ui → core}/utils/portal/portalProvider.tsx +0 -0
  481. /package/src/{ui → core}/utils/portal/types.ts +0 -0
  482. /package/src/{ui → core}/utils/portal/usePortal.ts +0 -0
  483. /package/src/{ui → core}/utils/spanWithTextOverflow.tsx +0 -0
  484. /package/src/{ui → core}/utils/srOnly/index.ts +0 -0
  485. /package/src/{ui → core}/utils/srOnly/srOnly.tsx +0 -0
  486. /package/src/{ui → core}/utils/virtualList/__workshop__/changingProps.tsx +0 -0
  487. /package/src/{ui → core}/utils/virtualList/__workshop__/elementScroll.tsx +0 -0
  488. /package/src/{ui → core}/utils/virtualList/__workshop__/index.ts +0 -0
  489. /package/src/{ui → core}/utils/virtualList/__workshop__/infiniteList.tsx +0 -0
  490. /package/src/{ui → core}/utils/virtualList/__workshop__/windowScrolll.tsx +0 -0
  491. /package/src/{ui → core}/utils/virtualList/index.ts +0 -0
  492. /package/src/{ui → core}/utils/virtualList/virtualList.tsx +0 -0
package/dist/css.mjs CHANGED
@@ -30,7 +30,7 @@ function flexItem(props) {
30
30
  return composeClassNames(_resp("f", props.flex));
31
31
  }
32
32
  function font(props) {
33
- return composeClassNames("font", props.weight && `font-${props.weight}`, _resp("text-align", props.align));
33
+ return composeClassNames("font", props.weight && `font-${props.weight}`);
34
34
  }
35
35
  function gap(props) {
36
36
  return composeClassNames(_resp("g", props.gap), _resp("gx", props.gapX), _resp("gy", props.gapY));
@@ -74,6 +74,9 @@ function radius(props) {
74
74
  function shadow(props) {
75
75
  return composeClassNames(_resp("shadow", props.shadow));
76
76
  }
77
+ function textAlign(props) {
78
+ return composeClassNames(_resp("text-align", props.textAlign));
79
+ }
77
80
  const BREAKPOINTS = {
78
81
  1: 360,
79
82
  2: 600,
@@ -715,13 +718,12 @@ function compilePaletteProperties() {
715
718
  }
716
719
  function _mergeStyles(styles) {
717
720
  const keyframes2 = {}, layers = {}, rules2 = {};
718
- for (const s of styles)
719
- if (s) {
720
- Object.assign(keyframes2, s.keyframes);
721
- for (const layerName in s.layers)
722
- layers[layerName] || (layers[layerName] = {}), Object.assign(layers[layerName], s.layers[layerName]);
723
- Object.assign(rules2, s.rules);
724
- }
721
+ for (const s of styles) {
722
+ Object.assign(keyframes2, s.keyframes);
723
+ for (const layerName in s.layers)
724
+ layers[layerName] || (layers[layerName] = {}), Object.assign(layers[layerName], s.layers[layerName]);
725
+ Object.assign(rules2, s.rules);
726
+ }
725
727
  return {
726
728
  keyframes: keyframes2,
727
729
  layers,
@@ -1178,70 +1180,70 @@ function buildColorVariantVars(options) {
1178
1180
  }
1179
1181
  return vars2;
1180
1182
  }
1181
- const util$t = {};
1182
- _responsiveRule(util$t, "border", {
1183
+ const util$u = {};
1184
+ _responsiveRule(util$u, "border", {
1183
1185
  border: `1px solid ${vars.color.border}`
1184
1186
  });
1185
- _responsiveRule(util$t, "border-t", {
1187
+ _responsiveRule(util$u, "border-t", {
1186
1188
  borderTop: `1px solid ${vars.color.border}`
1187
1189
  });
1188
- _responsiveRule(util$t, "border-r", {
1190
+ _responsiveRule(util$u, "border-r", {
1189
1191
  borderRight: `1px solid ${vars.color.border}`
1190
1192
  });
1191
- _responsiveRule(util$t, "border-b", {
1193
+ _responsiveRule(util$u, "border-b", {
1192
1194
  borderBottom: `1px solid ${vars.color.border}`
1193
1195
  });
1194
- _responsiveRule(util$t, "border-l", {
1196
+ _responsiveRule(util$u, "border-l", {
1195
1197
  borderLeft: `1px solid ${vars.color.border}`
1196
1198
  });
1197
1199
  const borderStyle = {
1198
1200
  layers: {
1199
- util: util$t
1201
+ util: util$u
1200
1202
  }
1201
- }, util$s = {};
1202
- _responsiveRule(util$s, "block", {
1203
+ }, util$t = {};
1204
+ _responsiveRule(util$t, "block", {
1203
1205
  "@nest": {
1204
1206
  "&:not([hidden])": {
1205
1207
  display: "block"
1206
1208
  }
1207
1209
  }
1208
1210
  });
1209
- _responsiveRule(util$s, "flex", {
1211
+ _responsiveRule(util$t, "flex", {
1210
1212
  "@nest": {
1211
1213
  "&:not([hidden])": {
1212
1214
  display: "flex"
1213
1215
  }
1214
1216
  }
1215
1217
  });
1216
- _responsiveRule(util$s, "grid", {
1218
+ _responsiveRule(util$t, "grid", {
1217
1219
  "@nest": {
1218
1220
  "&:not([hidden])": {
1219
1221
  display: "grid"
1220
1222
  }
1221
1223
  }
1222
1224
  });
1223
- _responsiveRule(util$s, "inline-block", {
1225
+ _responsiveRule(util$t, "inline-block", {
1224
1226
  "@nest": {
1225
1227
  "&:not([hidden])": {
1226
1228
  display: "inline-block"
1227
1229
  }
1228
1230
  }
1229
1231
  });
1230
- _responsiveRule(util$s, "inline-flex", {
1232
+ _responsiveRule(util$t, "inline-flex", {
1231
1233
  "@nest": {
1232
1234
  "&:not([hidden])": {
1233
1235
  display: "inline-flex"
1234
1236
  }
1235
1237
  }
1236
1238
  });
1237
- _responsiveRule(util$s, "inline-grid", {
1239
+ _responsiveRule(util$t, "inline-grid", {
1238
1240
  "@nest": {
1239
1241
  "&:not([hidden])": {
1240
1242
  display: "inline-grid"
1241
1243
  }
1242
1244
  }
1243
1245
  });
1244
- _responsiveRule(util$s, "none", {
1246
+ _responsiveRule(util$t, "none", {
1245
1247
  "@nest": {
1246
1248
  "&:not([hidden])": {
1247
1249
  display: "none"
@@ -1250,125 +1252,125 @@ _responsiveRule(util$s, "none", {
1250
1252
  });
1251
1253
  const displayStyle = {
1252
1254
  layers: {
1253
- util: util$s
1255
+ util: util$t
1254
1256
  }
1255
- }, util$r = {};
1256
- _responsiveRule(util$r, "flex-align-flex-start", {
1257
+ }, util$s = {};
1258
+ _responsiveRule(util$s, "flex-align-flex-start", {
1257
1259
  alignItems: "flex-start"
1258
1260
  });
1259
- _responsiveRule(util$r, "flex-align-flex-end", {
1261
+ _responsiveRule(util$s, "flex-align-flex-end", {
1260
1262
  alignItems: "flex-end"
1261
1263
  });
1262
- _responsiveRule(util$r, "flex-align-center", {
1264
+ _responsiveRule(util$s, "flex-align-center", {
1263
1265
  alignItems: "center"
1264
1266
  });
1265
- _responsiveRule(util$r, "flex-align-stretch", {
1267
+ _responsiveRule(util$s, "flex-align-stretch", {
1266
1268
  alignItems: "stretch"
1267
1269
  });
1268
- _responsiveRule(util$r, "flex-align-baseline", {
1270
+ _responsiveRule(util$s, "flex-align-baseline", {
1269
1271
  alignItems: "baseline"
1270
1272
  });
1271
1273
  const flexAlignStyle = {
1272
1274
  layers: {
1273
- util: util$r
1275
+ util: util$s
1274
1276
  }
1275
- }, util$q = {};
1276
- _responsiveRule(util$q, "f-row", {
1277
+ }, util$r = {};
1278
+ _responsiveRule(util$r, "f-row", {
1277
1279
  flexDirection: "row"
1278
1280
  });
1279
- _responsiveRule(util$q, "f-column", {
1281
+ _responsiveRule(util$r, "f-column", {
1280
1282
  flexDirection: "column"
1281
1283
  });
1282
1284
  const flexDirectionStyle = {
1283
1285
  layers: {
1284
- util: util$q
1286
+ util: util$r
1285
1287
  }
1286
- }, util$p = {};
1287
- _responsiveRule(util$p, "flex-justify-flex-start", {
1288
+ }, util$q = {};
1289
+ _responsiveRule(util$q, "flex-justify-flex-start", {
1288
1290
  justifyContent: "flex-start"
1289
1291
  });
1290
- _responsiveRule(util$p, "flex-justify-flex-end", {
1292
+ _responsiveRule(util$q, "flex-justify-flex-end", {
1291
1293
  justifyContent: "flex-end"
1292
1294
  });
1293
- _responsiveRule(util$p, "flex-justify-center", {
1295
+ _responsiveRule(util$q, "flex-justify-center", {
1294
1296
  justifyContent: "center"
1295
1297
  });
1296
- _responsiveRule(util$p, "flex-justify-space-between", {
1298
+ _responsiveRule(util$q, "flex-justify-space-between", {
1297
1299
  justifyContent: "space-between"
1298
1300
  });
1299
- _responsiveRule(util$p, "flex-justify-space-around", {
1301
+ _responsiveRule(util$q, "flex-justify-space-around", {
1300
1302
  justifyContent: "space-around"
1301
1303
  });
1302
- _responsiveRule(util$p, "flex-justify-space-evenly", {
1304
+ _responsiveRule(util$q, "flex-justify-space-evenly", {
1303
1305
  justifyContent: "space-evenly"
1304
1306
  });
1305
1307
  const flexJustifyStyle = {
1306
1308
  layers: {
1307
- util: util$p
1309
+ util: util$q
1308
1310
  }
1309
- }, util$o = {};
1310
- _responsiveRule(util$o, "flex-nowrap", {
1311
+ }, util$p = {};
1312
+ _responsiveRule(util$p, "flex-nowrap", {
1311
1313
  flexWrap: "nowrap"
1312
1314
  });
1313
- _responsiveRule(util$o, "flex-wrap", {
1315
+ _responsiveRule(util$p, "flex-wrap", {
1314
1316
  flexWrap: "wrap"
1315
1317
  });
1316
- _responsiveRule(util$o, "flex-wrap-reverse", {
1318
+ _responsiveRule(util$p, "flex-wrap-reverse", {
1317
1319
  flexWrap: "wrap-reverse"
1318
1320
  });
1319
1321
  const flexWrapStyle = {
1320
1322
  layers: {
1321
- util: util$o
1323
+ util: util$p
1322
1324
  }
1323
- }, util$n = {};
1324
- _responsiveRule(util$n, "f-none", {
1325
+ }, util$o = {};
1326
+ _responsiveRule(util$o, "f-none", {
1325
1327
  flex: "none"
1326
1328
  });
1327
- _responsiveRule(util$n, "f-auto", {
1329
+ _responsiveRule(util$o, "f-auto", {
1328
1330
  flex: "auto"
1329
1331
  });
1330
- _responsiveRule(util$n, "f-initial", {
1332
+ _responsiveRule(util$o, "f-initial", {
1331
1333
  flex: "initial"
1332
1334
  });
1333
- _responsiveRule(util$n, "f-1", {
1335
+ _responsiveRule(util$o, "f-1", {
1334
1336
  flex: 1
1335
1337
  });
1336
- _responsiveRule(util$n, "f-2", {
1338
+ _responsiveRule(util$o, "f-2", {
1337
1339
  flex: 2
1338
1340
  });
1339
- _responsiveRule(util$n, "f-3", {
1341
+ _responsiveRule(util$o, "f-3", {
1340
1342
  flex: 3
1341
1343
  });
1342
- _responsiveRule(util$n, "f-4", {
1344
+ _responsiveRule(util$o, "f-4", {
1343
1345
  flex: 4
1344
1346
  });
1345
- _responsiveRule(util$n, "f-5", {
1347
+ _responsiveRule(util$o, "f-5", {
1346
1348
  flex: 5
1347
1349
  });
1348
- _responsiveRule(util$n, "f-6", {
1350
+ _responsiveRule(util$o, "f-6", {
1349
1351
  flex: 6
1350
1352
  });
1351
- _responsiveRule(util$n, "f-7", {
1353
+ _responsiveRule(util$o, "f-7", {
1352
1354
  flex: 7
1353
1355
  });
1354
- _responsiveRule(util$n, "f-8", {
1356
+ _responsiveRule(util$o, "f-8", {
1355
1357
  flex: 8
1356
1358
  });
1357
- _responsiveRule(util$n, "f-9", {
1359
+ _responsiveRule(util$o, "f-9", {
1358
1360
  flex: 9
1359
1361
  });
1360
- _responsiveRule(util$n, "f-10", {
1362
+ _responsiveRule(util$o, "f-10", {
1361
1363
  flex: 10
1362
1364
  });
1363
- _responsiveRule(util$n, "f-11", {
1365
+ _responsiveRule(util$o, "f-11", {
1364
1366
  flex: 11
1365
1367
  });
1366
- _responsiveRule(util$n, "f-12", {
1368
+ _responsiveRule(util$o, "f-12", {
1367
1369
  flex: 12
1368
1370
  });
1369
1371
  const flexStyle = {
1370
1372
  layers: {
1371
- util: util$n
1373
+ util: util$o
1372
1374
  }
1373
1375
  }, primitive$q = {
1374
1376
  ".font": {
@@ -1425,554 +1427,538 @@ const flexStyle = {
1425
1427
  ".font-bold": {
1426
1428
  "--font-weight": "var(--font-weight-bold)"
1427
1429
  }
1428
- };
1429
- _responsiveRule(primitive$q, "text-align-initial", {
1430
- textAlign: "initial"
1431
- });
1432
- _responsiveRule(primitive$q, "text-align-left", {
1433
- textAlign: "left"
1434
- });
1435
- _responsiveRule(primitive$q, "text-align-center", {
1436
- textAlign: "center"
1437
- });
1438
- _responsiveRule(primitive$q, "text-align-right", {
1439
- textAlign: "right"
1440
- });
1441
- _responsiveRule(primitive$q, "text-align-justify", {
1442
- textAlign: "justify"
1443
- });
1444
- const fontStyle = {
1430
+ }, fontStyle = {
1445
1431
  layers: {
1446
1432
  primitive: primitive$q
1447
1433
  }
1448
- }, util$m = {};
1434
+ }, util$n = {};
1449
1435
  for (const space of SPACE)
1450
- _responsiveRule(util$m, `g-${space}`, {
1436
+ _responsiveRule(util$n, `g-${space}`, {
1451
1437
  gap: vars.space[space]
1452
1438
  });
1453
1439
  for (const space of SPACE)
1454
- _responsiveRule(util$m, `gx-${space}`, {
1440
+ _responsiveRule(util$n, `gx-${space}`, {
1455
1441
  columnGap: vars.space[space]
1456
1442
  });
1457
1443
  for (const space of SPACE)
1458
- _responsiveRule(util$m, `gy-${space}`, {
1444
+ _responsiveRule(util$n, `gy-${space}`, {
1459
1445
  rowGap: vars.space[space]
1460
1446
  });
1461
1447
  const gapStyle = {
1462
1448
  layers: {
1463
- util: util$m
1449
+ util: util$n
1464
1450
  }
1465
- }, util$l = {};
1466
- _responsiveRule(util$l, "auto-cols-auto", {
1451
+ }, util$m = {};
1452
+ _responsiveRule(util$m, "auto-cols-auto", {
1467
1453
  gridAutoColumns: "auto"
1468
1454
  });
1469
- _responsiveRule(util$l, "auto-cols-min", {
1455
+ _responsiveRule(util$m, "auto-cols-min", {
1470
1456
  gridAutoColumns: "min-content"
1471
1457
  });
1472
- _responsiveRule(util$l, "auto-cols-max", {
1458
+ _responsiveRule(util$m, "auto-cols-max", {
1473
1459
  gridAutoColumns: "max-content"
1474
1460
  });
1475
- _responsiveRule(util$l, "auto-cols-fr", {
1461
+ _responsiveRule(util$m, "auto-cols-fr", {
1476
1462
  gridAutoColumns: "minmax(0, 1fr)"
1477
1463
  });
1478
1464
  const gridAutoColumnsStyle = {
1479
1465
  layers: {
1480
- util: util$l
1466
+ util: util$m
1481
1467
  }
1482
- }, util$k = {};
1483
- _responsiveRule(util$k, "auto-flow-row", {
1468
+ }, util$l = {};
1469
+ _responsiveRule(util$l, "auto-flow-row", {
1484
1470
  gridAutoFlow: "row"
1485
1471
  });
1486
- _responsiveRule(util$k, "auto-flow-column", {
1472
+ _responsiveRule(util$l, "auto-flow-column", {
1487
1473
  gridAutoFlow: "column"
1488
1474
  });
1489
- _responsiveRule(util$k, "auto-flow-row-dense", {
1475
+ _responsiveRule(util$l, "auto-flow-row-dense", {
1490
1476
  gridAutoFlow: "row dense"
1491
1477
  });
1492
- _responsiveRule(util$k, "auto-flow-column-dense", {
1478
+ _responsiveRule(util$l, "auto-flow-column-dense", {
1493
1479
  gridAutoFlow: "column dense"
1494
1480
  });
1495
1481
  const gridAutoFlowStyle = {
1496
1482
  layers: {
1497
- util: util$k
1483
+ util: util$l
1498
1484
  }
1499
- }, util$j = {};
1500
- _responsiveRule(util$j, "auto-rows-auto", {
1485
+ }, util$k = {};
1486
+ _responsiveRule(util$k, "auto-rows-auto", {
1501
1487
  gridAutoRows: "auto"
1502
1488
  });
1503
- _responsiveRule(util$j, "auto-rows-min", {
1489
+ _responsiveRule(util$k, "auto-rows-min", {
1504
1490
  gridAutoRows: "min-content"
1505
1491
  });
1506
- _responsiveRule(util$j, "auto-rows-max", {
1492
+ _responsiveRule(util$k, "auto-rows-max", {
1507
1493
  gridAutoRows: "max-content"
1508
1494
  });
1509
- _responsiveRule(util$j, "auto-rows-fr", {
1495
+ _responsiveRule(util$k, "auto-rows-fr", {
1510
1496
  gridAutoRows: "minmax(0, 1fr)"
1511
1497
  });
1512
1498
  const gridAutoRowsStyle = {
1513
1499
  layers: {
1514
- util: util$j
1500
+ util: util$k
1515
1501
  }
1516
- }, util$i = {};
1517
- _responsiveRule(util$i, "cols-1", {
1502
+ }, util$j = {};
1503
+ _responsiveRule(util$j, "cols-1", {
1518
1504
  gridTemplateColumns: "repeat(1, 1fr)"
1519
1505
  });
1520
- _responsiveRule(util$i, "cols-2", {
1506
+ _responsiveRule(util$j, "cols-2", {
1521
1507
  gridTemplateColumns: "repeat(2, 1fr)"
1522
1508
  });
1523
- _responsiveRule(util$i, "cols-3", {
1509
+ _responsiveRule(util$j, "cols-3", {
1524
1510
  gridTemplateColumns: "repeat(3, 1fr)"
1525
1511
  });
1526
- _responsiveRule(util$i, "cols-4", {
1512
+ _responsiveRule(util$j, "cols-4", {
1527
1513
  gridTemplateColumns: "repeat(4, 1fr)"
1528
1514
  });
1529
- _responsiveRule(util$i, "cols-5", {
1515
+ _responsiveRule(util$j, "cols-5", {
1530
1516
  gridTemplateColumns: "repeat(5, 1fr)"
1531
1517
  });
1532
- _responsiveRule(util$i, "cols-6", {
1518
+ _responsiveRule(util$j, "cols-6", {
1533
1519
  gridTemplateColumns: "repeat(6, 1fr)"
1534
1520
  });
1535
- _responsiveRule(util$i, "cols-7", {
1521
+ _responsiveRule(util$j, "cols-7", {
1536
1522
  gridTemplateColumns: "repeat(7, 1fr)"
1537
1523
  });
1538
- _responsiveRule(util$i, "cols-8", {
1524
+ _responsiveRule(util$j, "cols-8", {
1539
1525
  gridTemplateColumns: "repeat(8, 1fr)"
1540
1526
  });
1541
- _responsiveRule(util$i, "cols-9", {
1527
+ _responsiveRule(util$j, "cols-9", {
1542
1528
  gridTemplateColumns: "repeat(9, 1fr)"
1543
1529
  });
1544
- _responsiveRule(util$i, "cols-10", {
1530
+ _responsiveRule(util$j, "cols-10", {
1545
1531
  gridTemplateColumns: "repeat(10, 1fr)"
1546
1532
  });
1547
- _responsiveRule(util$i, "cols-12", {
1533
+ _responsiveRule(util$j, "cols-12", {
1548
1534
  gridTemplateColumns: "repeat(12, 1fr)"
1549
1535
  });
1550
1536
  const gridColumnsStyle = {
1551
1537
  layers: {
1552
- util: util$i
1538
+ util: util$j
1553
1539
  }
1554
- }, util$h = {};
1555
- _responsiveRule(util$h, "rows-1", {
1540
+ }, util$i = {};
1541
+ _responsiveRule(util$i, "rows-1", {
1556
1542
  gridTemplateRows: "repeat(1, 1fr)"
1557
1543
  });
1558
- _responsiveRule(util$h, "rows-2", {
1544
+ _responsiveRule(util$i, "rows-2", {
1559
1545
  gridTemplateRows: "repeat(2, 1fr)"
1560
1546
  });
1561
- _responsiveRule(util$h, "rows-3", {
1547
+ _responsiveRule(util$i, "rows-3", {
1562
1548
  gridTemplateRows: "repeat(3, 1fr)"
1563
1549
  });
1564
- _responsiveRule(util$h, "rows-4", {
1550
+ _responsiveRule(util$i, "rows-4", {
1565
1551
  gridTemplateRows: "repeat(4, 1fr)"
1566
1552
  });
1567
- _responsiveRule(util$h, "rows-5", {
1553
+ _responsiveRule(util$i, "rows-5", {
1568
1554
  gridTemplateRows: "repeat(5, 1fr)"
1569
1555
  });
1570
- _responsiveRule(util$h, "rows-6", {
1556
+ _responsiveRule(util$i, "rows-6", {
1571
1557
  gridTemplateRows: "repeat(6, 1fr)"
1572
1558
  });
1573
- _responsiveRule(util$h, "rows-7", {
1559
+ _responsiveRule(util$i, "rows-7", {
1574
1560
  gridTemplateRows: "repeat(7, 1fr)"
1575
1561
  });
1576
- _responsiveRule(util$h, "rows-8", {
1562
+ _responsiveRule(util$i, "rows-8", {
1577
1563
  gridTemplateRows: "repeat(8, 1fr)"
1578
1564
  });
1579
- _responsiveRule(util$h, "rows-9", {
1565
+ _responsiveRule(util$i, "rows-9", {
1580
1566
  gridTemplateRows: "repeat(9, 1fr)"
1581
1567
  });
1582
- _responsiveRule(util$h, "rows-10", {
1568
+ _responsiveRule(util$i, "rows-10", {
1583
1569
  gridTemplateRows: "repeat(10, 1fr)"
1584
1570
  });
1585
- _responsiveRule(util$h, "rows-12", {
1571
+ _responsiveRule(util$i, "rows-12", {
1586
1572
  gridTemplateRows: "repeat(12, 1fr)"
1587
1573
  });
1588
1574
  const gridRowsStyle = {
1589
1575
  layers: {
1590
- util: util$h
1576
+ util: util$i
1591
1577
  }
1592
- }, util$g = {};
1593
- _responsiveRule(util$g, "col-auto", {
1578
+ }, util$h = {};
1579
+ _responsiveRule(util$h, "col-auto", {
1594
1580
  gridColumn: "auto"
1595
1581
  });
1596
- _responsiveRule(util$g, "col-full", {
1582
+ _responsiveRule(util$h, "col-full", {
1597
1583
  gridColumn: "1 / -1"
1598
1584
  });
1599
- _responsiveRule(util$g, "col-1", {
1585
+ _responsiveRule(util$h, "col-1", {
1600
1586
  gridColumn: "span 1 / span 1"
1601
1587
  });
1602
- _responsiveRule(util$g, "col-2", {
1588
+ _responsiveRule(util$h, "col-2", {
1603
1589
  gridColumn: "span 2 / span 2"
1604
1590
  });
1605
- _responsiveRule(util$g, "col-3", {
1591
+ _responsiveRule(util$h, "col-3", {
1606
1592
  gridColumn: "span 3 / span 3"
1607
1593
  });
1608
- _responsiveRule(util$g, "col-4", {
1594
+ _responsiveRule(util$h, "col-4", {
1609
1595
  gridColumn: "span 4 / span 4"
1610
1596
  });
1611
- _responsiveRule(util$g, "col-5", {
1597
+ _responsiveRule(util$h, "col-5", {
1612
1598
  gridColumn: "span 5 / span 5"
1613
1599
  });
1614
- _responsiveRule(util$g, "col-6", {
1600
+ _responsiveRule(util$h, "col-6", {
1615
1601
  gridColumn: "span 6 / span 6"
1616
1602
  });
1617
- _responsiveRule(util$g, "col-7", {
1603
+ _responsiveRule(util$h, "col-7", {
1618
1604
  gridColumn: "span 7 / span 7"
1619
1605
  });
1620
- _responsiveRule(util$g, "col-8", {
1606
+ _responsiveRule(util$h, "col-8", {
1621
1607
  gridColumn: "span 8 / span 8"
1622
1608
  });
1623
- _responsiveRule(util$g, "col-9", {
1609
+ _responsiveRule(util$h, "col-9", {
1624
1610
  gridColumn: "span 9 / span 9"
1625
1611
  });
1626
- _responsiveRule(util$g, "col-10", {
1612
+ _responsiveRule(util$h, "col-10", {
1627
1613
  gridColumn: "span 10 / span 10"
1628
1614
  });
1629
- _responsiveRule(util$g, "col-12", {
1615
+ _responsiveRule(util$h, "col-12", {
1630
1616
  gridColumn: "span 12 / span 12"
1631
1617
  });
1632
1618
  const gridColumnStyle = {
1633
1619
  layers: {
1634
- util: util$g
1620
+ util: util$h
1635
1621
  }
1636
- }, util$f = {};
1637
- _responsiveRule(util$f, "col-end-auto", {
1622
+ }, util$g = {};
1623
+ _responsiveRule(util$g, "col-end-auto", {
1638
1624
  gridColumnEnd: "auto"
1639
1625
  });
1640
- _responsiveRule(util$f, "col-end-1", {
1626
+ _responsiveRule(util$g, "col-end-1", {
1641
1627
  gridColumnEnd: "1"
1642
1628
  });
1643
- _responsiveRule(util$f, "col-end-2", {
1629
+ _responsiveRule(util$g, "col-end-2", {
1644
1630
  gridColumnEnd: "2"
1645
1631
  });
1646
- _responsiveRule(util$f, "col-end-3", {
1632
+ _responsiveRule(util$g, "col-end-3", {
1647
1633
  gridColumnEnd: "3"
1648
1634
  });
1649
- _responsiveRule(util$f, "col-end-4", {
1635
+ _responsiveRule(util$g, "col-end-4", {
1650
1636
  gridColumnEnd: "4"
1651
1637
  });
1652
- _responsiveRule(util$f, "col-end-5", {
1638
+ _responsiveRule(util$g, "col-end-5", {
1653
1639
  gridColumnEnd: "5"
1654
1640
  });
1655
- _responsiveRule(util$f, "col-end-6", {
1641
+ _responsiveRule(util$g, "col-end-6", {
1656
1642
  gridColumnEnd: "6"
1657
1643
  });
1658
- _responsiveRule(util$f, "col-end-7", {
1644
+ _responsiveRule(util$g, "col-end-7", {
1659
1645
  gridColumnEnd: "7"
1660
1646
  });
1661
- _responsiveRule(util$f, "col-end-8", {
1647
+ _responsiveRule(util$g, "col-end-8", {
1662
1648
  gridColumnEnd: "8"
1663
1649
  });
1664
- _responsiveRule(util$f, "col-end-9", {
1650
+ _responsiveRule(util$g, "col-end-9", {
1665
1651
  gridColumnEnd: "9"
1666
1652
  });
1667
- _responsiveRule(util$f, "col-end-10", {
1653
+ _responsiveRule(util$g, "col-end-10", {
1668
1654
  gridColumnEnd: "10"
1669
1655
  });
1670
- _responsiveRule(util$f, "col-end-11", {
1656
+ _responsiveRule(util$g, "col-end-11", {
1671
1657
  gridColumnEnd: "11"
1672
1658
  });
1673
- _responsiveRule(util$f, "col-end-12", {
1659
+ _responsiveRule(util$g, "col-end-12", {
1674
1660
  gridColumnEnd: "12"
1675
1661
  });
1676
1662
  const gridColumnEndStyle = {
1677
1663
  layers: {
1678
- util: util$f
1664
+ util: util$g
1679
1665
  }
1680
- }, util$e = {};
1681
- _responsiveRule(util$e, "col-start-auto", {
1666
+ }, util$f = {};
1667
+ _responsiveRule(util$f, "col-start-auto", {
1682
1668
  gridColumnStart: "auto"
1683
1669
  });
1684
- _responsiveRule(util$e, "col-start-1", {
1670
+ _responsiveRule(util$f, "col-start-1", {
1685
1671
  gridColumnStart: "1"
1686
1672
  });
1687
- _responsiveRule(util$e, "col-start-2", {
1673
+ _responsiveRule(util$f, "col-start-2", {
1688
1674
  gridColumnStart: "2"
1689
1675
  });
1690
- _responsiveRule(util$e, "col-start-3", {
1676
+ _responsiveRule(util$f, "col-start-3", {
1691
1677
  gridColumnStart: "3"
1692
1678
  });
1693
- _responsiveRule(util$e, "col-start-4", {
1679
+ _responsiveRule(util$f, "col-start-4", {
1694
1680
  gridColumnStart: "4"
1695
1681
  });
1696
- _responsiveRule(util$e, "col-start-5", {
1682
+ _responsiveRule(util$f, "col-start-5", {
1697
1683
  gridColumnStart: "5"
1698
1684
  });
1699
- _responsiveRule(util$e, "col-start-6", {
1685
+ _responsiveRule(util$f, "col-start-6", {
1700
1686
  gridColumnStart: "6"
1701
1687
  });
1702
- _responsiveRule(util$e, "col-start-7", {
1688
+ _responsiveRule(util$f, "col-start-7", {
1703
1689
  gridColumnStart: "7"
1704
1690
  });
1705
- _responsiveRule(util$e, "col-start-8", {
1691
+ _responsiveRule(util$f, "col-start-8", {
1706
1692
  gridColumnStart: "8"
1707
1693
  });
1708
- _responsiveRule(util$e, "col-start-9", {
1694
+ _responsiveRule(util$f, "col-start-9", {
1709
1695
  gridColumnStart: "9"
1710
1696
  });
1711
- _responsiveRule(util$e, "col-start-10", {
1697
+ _responsiveRule(util$f, "col-start-10", {
1712
1698
  gridColumnStart: "10"
1713
1699
  });
1714
- _responsiveRule(util$e, "col-start-11", {
1700
+ _responsiveRule(util$f, "col-start-11", {
1715
1701
  gridColumnStart: "11"
1716
1702
  });
1717
- _responsiveRule(util$e, "col-start-12", {
1703
+ _responsiveRule(util$f, "col-start-12", {
1718
1704
  gridColumnStart: "12"
1719
1705
  });
1720
1706
  const gridColumnStartStyle = {
1721
1707
  layers: {
1722
- util: util$e
1708
+ util: util$f
1723
1709
  }
1724
- }, util$d = {};
1725
- _responsiveRule(util$d, "row-auto", {
1710
+ }, util$e = {};
1711
+ _responsiveRule(util$e, "row-auto", {
1726
1712
  gridRow: "auto"
1727
1713
  });
1728
- _responsiveRule(util$d, "row-full", {
1714
+ _responsiveRule(util$e, "row-full", {
1729
1715
  gridRow: "1 / -1"
1730
1716
  });
1731
- _responsiveRule(util$d, "row-1", {
1717
+ _responsiveRule(util$e, "row-1", {
1732
1718
  gridRow: "span 1 / span 1"
1733
1719
  });
1734
- _responsiveRule(util$d, "row-2", {
1720
+ _responsiveRule(util$e, "row-2", {
1735
1721
  gridRow: "span 2 / span 2"
1736
1722
  });
1737
- _responsiveRule(util$d, "row-3", {
1723
+ _responsiveRule(util$e, "row-3", {
1738
1724
  gridRow: "span 3 / span 3"
1739
1725
  });
1740
- _responsiveRule(util$d, "row-4", {
1726
+ _responsiveRule(util$e, "row-4", {
1741
1727
  gridRow: "span 4 / span 4"
1742
1728
  });
1743
- _responsiveRule(util$d, "row-5", {
1729
+ _responsiveRule(util$e, "row-5", {
1744
1730
  gridRow: "span 5 / span 5"
1745
1731
  });
1746
- _responsiveRule(util$d, "row-6", {
1732
+ _responsiveRule(util$e, "row-6", {
1747
1733
  gridRow: "span 6 / span 6"
1748
1734
  });
1749
- _responsiveRule(util$d, "row-7", {
1735
+ _responsiveRule(util$e, "row-7", {
1750
1736
  gridRow: "span 7 / span 7"
1751
1737
  });
1752
- _responsiveRule(util$d, "row-8", {
1738
+ _responsiveRule(util$e, "row-8", {
1753
1739
  gridRow: "span 8 / span 8"
1754
1740
  });
1755
- _responsiveRule(util$d, "row-9", {
1741
+ _responsiveRule(util$e, "row-9", {
1756
1742
  gridRow: "span 9 / span 9"
1757
1743
  });
1758
- _responsiveRule(util$d, "row-10", {
1744
+ _responsiveRule(util$e, "row-10", {
1759
1745
  gridRow: "span 10 / span 10"
1760
1746
  });
1761
- _responsiveRule(util$d, "row-12", {
1747
+ _responsiveRule(util$e, "row-12", {
1762
1748
  gridRow: "span 12 / span 12"
1763
1749
  });
1764
1750
  const gridRowStyle = {
1765
1751
  layers: {
1766
- util: util$d
1752
+ util: util$e
1767
1753
  }
1768
- }, util$c = {};
1769
- _responsiveRule(util$c, "row-end-auto", {
1754
+ }, util$d = {};
1755
+ _responsiveRule(util$d, "row-end-auto", {
1770
1756
  gridRowEnd: "auto"
1771
1757
  });
1772
- _responsiveRule(util$c, "row-end-1", {
1758
+ _responsiveRule(util$d, "row-end-1", {
1773
1759
  gridRowEnd: "1"
1774
1760
  });
1775
- _responsiveRule(util$c, "row-end-2", {
1761
+ _responsiveRule(util$d, "row-end-2", {
1776
1762
  gridRowEnd: "2"
1777
1763
  });
1778
- _responsiveRule(util$c, "row-end-3", {
1764
+ _responsiveRule(util$d, "row-end-3", {
1779
1765
  gridRowEnd: "3"
1780
1766
  });
1781
- _responsiveRule(util$c, "row-end-4", {
1767
+ _responsiveRule(util$d, "row-end-4", {
1782
1768
  gridRowEnd: "4"
1783
1769
  });
1784
- _responsiveRule(util$c, "row-end-5", {
1770
+ _responsiveRule(util$d, "row-end-5", {
1785
1771
  gridRowEnd: "5"
1786
1772
  });
1787
- _responsiveRule(util$c, "row-end-6", {
1773
+ _responsiveRule(util$d, "row-end-6", {
1788
1774
  gridRowEnd: "6"
1789
1775
  });
1790
- _responsiveRule(util$c, "row-end-7", {
1776
+ _responsiveRule(util$d, "row-end-7", {
1791
1777
  gridRowEnd: "7"
1792
1778
  });
1793
- _responsiveRule(util$c, "row-end-8", {
1779
+ _responsiveRule(util$d, "row-end-8", {
1794
1780
  gridRowEnd: "8"
1795
1781
  });
1796
- _responsiveRule(util$c, "row-end-9", {
1782
+ _responsiveRule(util$d, "row-end-9", {
1797
1783
  gridRowEnd: "9"
1798
1784
  });
1799
- _responsiveRule(util$c, "row-end-10", {
1785
+ _responsiveRule(util$d, "row-end-10", {
1800
1786
  gridRowEnd: "10"
1801
1787
  });
1802
- _responsiveRule(util$c, "row-end-11", {
1788
+ _responsiveRule(util$d, "row-end-11", {
1803
1789
  gridRowEnd: "11"
1804
1790
  });
1805
- _responsiveRule(util$c, "row-end-12", {
1791
+ _responsiveRule(util$d, "row-end-12", {
1806
1792
  gridRowEnd: "12"
1807
1793
  });
1808
1794
  const gridRowEndStyle = {
1809
1795
  layers: {
1810
- util: util$c
1796
+ util: util$d
1811
1797
  }
1812
- }, util$b = {};
1813
- _responsiveRule(util$b, "row-start-auto", {
1798
+ }, util$c = {};
1799
+ _responsiveRule(util$c, "row-start-auto", {
1814
1800
  gridRowStart: "auto"
1815
1801
  });
1816
- _responsiveRule(util$b, "row-start-1", {
1802
+ _responsiveRule(util$c, "row-start-1", {
1817
1803
  gridRowStart: "1"
1818
1804
  });
1819
- _responsiveRule(util$b, "row-start-2", {
1805
+ _responsiveRule(util$c, "row-start-2", {
1820
1806
  gridRowStart: "2"
1821
1807
  });
1822
- _responsiveRule(util$b, "row-start-3", {
1808
+ _responsiveRule(util$c, "row-start-3", {
1823
1809
  gridRowStart: "3"
1824
1810
  });
1825
- _responsiveRule(util$b, "row-start-4", {
1811
+ _responsiveRule(util$c, "row-start-4", {
1826
1812
  gridRowStart: "4"
1827
1813
  });
1828
- _responsiveRule(util$b, "row-start-5", {
1814
+ _responsiveRule(util$c, "row-start-5", {
1829
1815
  gridRowStart: "5"
1830
1816
  });
1831
- _responsiveRule(util$b, "row-start-6", {
1817
+ _responsiveRule(util$c, "row-start-6", {
1832
1818
  gridRowStart: "6"
1833
1819
  });
1834
- _responsiveRule(util$b, "row-start-7", {
1820
+ _responsiveRule(util$c, "row-start-7", {
1835
1821
  gridRowStart: "7"
1836
1822
  });
1837
- _responsiveRule(util$b, "row-start-8", {
1823
+ _responsiveRule(util$c, "row-start-8", {
1838
1824
  gridRowStart: "8"
1839
1825
  });
1840
- _responsiveRule(util$b, "row-start-9", {
1826
+ _responsiveRule(util$c, "row-start-9", {
1841
1827
  gridRowStart: "9"
1842
1828
  });
1843
- _responsiveRule(util$b, "row-start-10", {
1829
+ _responsiveRule(util$c, "row-start-10", {
1844
1830
  gridRowStart: "10"
1845
1831
  });
1846
- _responsiveRule(util$b, "row-start-11", {
1832
+ _responsiveRule(util$c, "row-start-11", {
1847
1833
  gridRowStart: "11"
1848
1834
  });
1849
- _responsiveRule(util$b, "row-start-12", {
1835
+ _responsiveRule(util$c, "row-start-12", {
1850
1836
  gridRowStart: "12"
1851
1837
  });
1852
1838
  const gridRowStartStyle = {
1853
1839
  layers: {
1854
- util: util$b
1840
+ util: util$c
1855
1841
  }
1856
- }, util$a = {};
1857
- _responsiveRule(util$a, "h-fill", {
1842
+ }, util$b = {};
1843
+ _responsiveRule(util$b, "h-fill", {
1858
1844
  height: "100%"
1859
1845
  });
1860
- _responsiveRule(util$a, "h-stretch", {
1846
+ _responsiveRule(util$b, "h-stretch", {
1861
1847
  height: "stretch"
1862
1848
  });
1863
1849
  const heightStyle = {
1864
1850
  layers: {
1865
- util: util$a
1851
+ util: util$b
1866
1852
  }
1867
- }, util$9 = {};
1868
- _responsiveRule(util$9, "inset-0", {
1853
+ }, util$a = {};
1854
+ _responsiveRule(util$a, "inset-0", {
1869
1855
  top: 0,
1870
1856
  left: 0,
1871
1857
  right: 0,
1872
1858
  bottom: 0
1873
1859
  });
1874
- _responsiveRule(util$9, "top-0", {
1860
+ _responsiveRule(util$a, "top-0", {
1875
1861
  top: 0
1876
1862
  });
1877
- _responsiveRule(util$9, "right-0", {
1863
+ _responsiveRule(util$a, "right-0", {
1878
1864
  right: 0
1879
1865
  });
1880
- _responsiveRule(util$9, "bottom-0", {
1866
+ _responsiveRule(util$a, "bottom-0", {
1881
1867
  bottom: 0
1882
1868
  });
1883
- _responsiveRule(util$9, "left-0", {
1869
+ _responsiveRule(util$a, "left-0", {
1884
1870
  left: 0
1885
1871
  });
1886
1872
  const insetStyle = {
1887
1873
  layers: {
1888
- util: util$9
1874
+ util: util$a
1889
1875
  }
1890
- }, util$8 = {};
1876
+ }, util$9 = {};
1891
1877
  for (const space of SPACE)
1892
- _responsiveRule(util$8, `m-${space}`, {
1878
+ _responsiveRule(util$9, `m-${space}`, {
1893
1879
  margin: vars.space[space]
1894
1880
  });
1895
1881
  for (const space of SPACE)
1896
- _responsiveRule(util$8, `mx-${space}`, {
1882
+ _responsiveRule(util$9, `mx-${space}`, {
1897
1883
  marginLeft: vars.space[space],
1898
1884
  marginRight: vars.space[space]
1899
1885
  });
1900
1886
  for (const space of SPACE)
1901
- _responsiveRule(util$8, `my-${space}`, {
1887
+ _responsiveRule(util$9, `my-${space}`, {
1902
1888
  marginTop: vars.space[space],
1903
1889
  marginBottom: vars.space[space]
1904
1890
  });
1905
1891
  for (const space of SPACE)
1906
- _responsiveRule(util$8, `mt-${space}`, {
1892
+ _responsiveRule(util$9, `mt-${space}`, {
1907
1893
  marginTop: vars.space[space]
1908
1894
  });
1909
1895
  for (const space of SPACE)
1910
- _responsiveRule(util$8, `mr-${space}`, {
1896
+ _responsiveRule(util$9, `mr-${space}`, {
1911
1897
  marginRight: vars.space[space]
1912
1898
  });
1913
1899
  for (const space of SPACE)
1914
- _responsiveRule(util$8, `mb-${space}`, {
1900
+ _responsiveRule(util$9, `mb-${space}`, {
1915
1901
  marginBottom: vars.space[space]
1916
1902
  });
1917
1903
  for (const space of SPACE)
1918
- _responsiveRule(util$8, `ml-${space}`, {
1904
+ _responsiveRule(util$9, `ml-${space}`, {
1919
1905
  marginLeft: vars.space[space]
1920
1906
  });
1921
1907
  const marginStyle = {
1922
1908
  layers: {
1923
- util: util$8
1909
+ util: util$9
1924
1910
  }
1925
- }, util$7 = {};
1926
- _responsiveRule(util$7, "max-w-0", {
1911
+ }, util$8 = {};
1912
+ _responsiveRule(util$8, "max-w-0", {
1927
1913
  maxWidth: vars.container[0]
1928
1914
  });
1929
- _responsiveRule(util$7, "max-w-1", {
1915
+ _responsiveRule(util$8, "max-w-1", {
1930
1916
  maxWidth: vars.container[1]
1931
1917
  });
1932
- _responsiveRule(util$7, "max-w-2", {
1918
+ _responsiveRule(util$8, "max-w-2", {
1933
1919
  maxWidth: vars.container[2]
1934
1920
  });
1935
- _responsiveRule(util$7, "max-w-3", {
1921
+ _responsiveRule(util$8, "max-w-3", {
1936
1922
  maxWidth: vars.container[3]
1937
1923
  });
1938
- _responsiveRule(util$7, "max-w-4", {
1924
+ _responsiveRule(util$8, "max-w-4", {
1939
1925
  maxWidth: vars.container[4]
1940
1926
  });
1941
- _responsiveRule(util$7, "max-w-5", {
1927
+ _responsiveRule(util$8, "max-w-5", {
1942
1928
  maxWidth: vars.container[5]
1943
1929
  });
1944
- _responsiveRule(util$7, "max-w-auto", {
1930
+ _responsiveRule(util$8, "max-w-auto", {
1945
1931
  maxWidth: "none"
1946
1932
  });
1947
- _responsiveRule(util$7, "max-w-fill", {
1933
+ _responsiveRule(util$8, "max-w-fill", {
1948
1934
  maxWidth: "100%"
1949
1935
  });
1950
1936
  const maxWidthStyle = {
1951
1937
  layers: {
1952
- util: util$7
1938
+ util: util$8
1953
1939
  }
1954
- }, util$6 = {};
1955
- _responsiveRule(util$6, "min-w-0", {
1940
+ }, util$7 = {};
1941
+ _responsiveRule(util$7, "min-w-0", {
1956
1942
  minWidth: "0"
1957
1943
  });
1958
- _responsiveRule(util$6, "min-w-auto", {
1944
+ _responsiveRule(util$7, "min-w-auto", {
1959
1945
  minWidth: "auto"
1960
1946
  });
1961
- _responsiveRule(util$6, "min-w-full", {
1947
+ _responsiveRule(util$7, "min-w-full", {
1962
1948
  minWidth: "100%"
1963
1949
  });
1964
- _responsiveRule(util$6, "min-w-min", {
1950
+ _responsiveRule(util$7, "min-w-min", {
1965
1951
  minWidth: "min-content"
1966
1952
  });
1967
- _responsiveRule(util$6, "min-w-max", {
1953
+ _responsiveRule(util$7, "min-w-max", {
1968
1954
  minWidth: "max-content"
1969
1955
  });
1970
- _responsiveRule(util$6, "min-w-fit", {
1956
+ _responsiveRule(util$7, "min-w-fit", {
1971
1957
  minWidth: "fit-content"
1972
1958
  });
1973
1959
  const minWidthStyle = {
1974
1960
  layers: {
1975
- util: util$6
1961
+ util: util$7
1976
1962
  }
1977
1963
  }, rules$2 = {
1978
1964
  ".outline-none": {
@@ -1982,57 +1968,57 @@ const minWidthStyle = {
1982
1968
  layers: {
1983
1969
  util: rules$2
1984
1970
  }
1985
- }, util$5 = {};
1986
- _responsiveRule(util$5, "overflow-visible", {
1971
+ }, util$6 = {};
1972
+ _responsiveRule(util$6, "overflow-visible", {
1987
1973
  overflow: "visible"
1988
1974
  });
1989
- _responsiveRule(util$5, "overflow-hidden", {
1975
+ _responsiveRule(util$6, "overflow-hidden", {
1990
1976
  overflow: "hidden"
1991
1977
  });
1992
- _responsiveRule(util$5, "overflow-scroll", {
1978
+ _responsiveRule(util$6, "overflow-scroll", {
1993
1979
  overflow: "scroll"
1994
1980
  });
1995
- _responsiveRule(util$5, "overflow-auto", {
1981
+ _responsiveRule(util$6, "overflow-auto", {
1996
1982
  overflow: "auto"
1997
1983
  });
1998
1984
  const overflowStyle = {
1999
1985
  layers: {
2000
- util: util$5
1986
+ util: util$6
2001
1987
  }
2002
- }, util$4 = {};
1988
+ }, util$5 = {};
2003
1989
  for (const space of SPACE)
2004
- _responsiveRule(util$4, `p-${space}`, {
1990
+ _responsiveRule(util$5, `p-${space}`, {
2005
1991
  padding: vars.space[space]
2006
1992
  });
2007
1993
  for (const space of SPACE)
2008
- _responsiveRule(util$4, `px-${space}`, {
1994
+ _responsiveRule(util$5, `px-${space}`, {
2009
1995
  paddingLeft: vars.space[space],
2010
1996
  paddingRight: vars.space[space]
2011
1997
  });
2012
1998
  for (const space of SPACE)
2013
- _responsiveRule(util$4, `py-${space}`, {
1999
+ _responsiveRule(util$5, `py-${space}`, {
2014
2000
  paddingTop: vars.space[space],
2015
2001
  paddingBottom: vars.space[space]
2016
2002
  });
2017
2003
  for (const space of SPACE)
2018
- _responsiveRule(util$4, `pt-${space}`, {
2004
+ _responsiveRule(util$5, `pt-${space}`, {
2019
2005
  paddingTop: vars.space[space]
2020
2006
  });
2021
2007
  for (const space of SPACE)
2022
- _responsiveRule(util$4, `pr-${space}`, {
2008
+ _responsiveRule(util$5, `pr-${space}`, {
2023
2009
  paddingRight: vars.space[space]
2024
2010
  });
2025
2011
  for (const space of SPACE)
2026
- _responsiveRule(util$4, `pb-${space}`, {
2012
+ _responsiveRule(util$5, `pb-${space}`, {
2027
2013
  paddingBottom: vars.space[space]
2028
2014
  });
2029
2015
  for (const space of SPACE)
2030
- _responsiveRule(util$4, `pl-${space}`, {
2016
+ _responsiveRule(util$5, `pl-${space}`, {
2031
2017
  paddingLeft: vars.space[space]
2032
2018
  });
2033
2019
  const paddingStyle = {
2034
2020
  layers: {
2035
- util: util$4
2021
+ util: util$5
2036
2022
  }
2037
2023
  }, rules$1 = {
2038
2024
  ".pointer-events-none": {
@@ -2045,63 +2031,83 @@ const paddingStyle = {
2045
2031
  layers: {
2046
2032
  util: rules$1
2047
2033
  }
2048
- }, util$3 = {};
2049
- _responsiveRule(util$3, "position-absolute", {
2034
+ }, util$4 = {};
2035
+ _responsiveRule(util$4, "position-absolute", {
2050
2036
  position: "absolute"
2051
2037
  });
2052
- _responsiveRule(util$3, "position-fixed", {
2038
+ _responsiveRule(util$4, "position-fixed", {
2053
2039
  position: "fixed"
2054
2040
  });
2055
- _responsiveRule(util$3, "position-relative", {
2041
+ _responsiveRule(util$4, "position-relative", {
2056
2042
  position: "relative"
2057
2043
  });
2058
- _responsiveRule(util$3, "position-static", {
2044
+ _responsiveRule(util$4, "position-static", {
2059
2045
  position: "static"
2060
2046
  });
2061
- _responsiveRule(util$3, "position-sticky", {
2047
+ _responsiveRule(util$4, "position-sticky", {
2062
2048
  position: "sticky"
2063
2049
  });
2064
2050
  const positionStyle = {
2065
2051
  layers: {
2066
- util: util$3
2052
+ util: util$4
2067
2053
  }
2068
- }, util$2 = {};
2069
- _responsiveRule(util$2, "r-0", {
2054
+ }, util$3 = {};
2055
+ _responsiveRule(util$3, "r-0", {
2070
2056
  borderRadius: vars.radius[0]
2071
2057
  });
2072
- _responsiveRule(util$2, "r-1", {
2058
+ _responsiveRule(util$3, "r-1", {
2073
2059
  borderRadius: vars.radius[1]
2074
2060
  });
2075
- _responsiveRule(util$2, "r-2", {
2061
+ _responsiveRule(util$3, "r-2", {
2076
2062
  borderRadius: vars.radius[2]
2077
2063
  });
2078
- _responsiveRule(util$2, "r-3", {
2064
+ _responsiveRule(util$3, "r-3", {
2079
2065
  borderRadius: vars.radius[3]
2080
2066
  });
2081
- _responsiveRule(util$2, "r-4", {
2067
+ _responsiveRule(util$3, "r-4", {
2082
2068
  borderRadius: vars.radius[4]
2083
2069
  });
2084
- _responsiveRule(util$2, "r-5", {
2070
+ _responsiveRule(util$3, "r-5", {
2085
2071
  borderRadius: vars.radius[5]
2086
2072
  });
2087
- _responsiveRule(util$2, "r-6", {
2073
+ _responsiveRule(util$3, "r-6", {
2088
2074
  borderRadius: vars.radius[6]
2089
2075
  });
2090
- _responsiveRule(util$2, "r-full", {
2076
+ _responsiveRule(util$3, "r-full", {
2091
2077
  borderRadius: "9999px"
2092
2078
  });
2093
2079
  const radiusStyle = {
2094
2080
  layers: {
2095
- util: util$2
2081
+ util: util$3
2096
2082
  }
2097
- }, util$1 = {};
2083
+ }, util$2 = {};
2098
2084
  for (const shadow2 of SHADOW)
2099
- shadow2 === 0 ? _responsiveRule(util$1, "shadow-0", {
2085
+ shadow2 === 0 ? _responsiveRule(util$2, "shadow-0", {
2100
2086
  boxShadow: "none"
2101
- }) : _responsiveRule(util$1, `shadow-${shadow2}`, {
2087
+ }) : _responsiveRule(util$2, `shadow-${shadow2}`, {
2102
2088
  boxShadow: [`0 0 0 ${vars.card.shadow.outline} ${vars.color.shadow.outline}`, `${vars.shadow[shadow2].umbra} ${vars.color.shadow.umbra}`, `${vars.shadow[shadow2].penumbra} ${vars.color.shadow.penumbra}`, `${vars.shadow[shadow2].ambient} ${vars.color.shadow.ambient}`].join(", ")
2103
2089
  });
2104
2090
  const shadowStyle = {
2091
+ layers: {
2092
+ util: util$2
2093
+ }
2094
+ }, util$1 = {};
2095
+ _responsiveRule(util$1, "text-align-initial", {
2096
+ textAlign: "initial"
2097
+ });
2098
+ _responsiveRule(util$1, "text-align-left", {
2099
+ textAlign: "left"
2100
+ });
2101
+ _responsiveRule(util$1, "text-align-center", {
2102
+ textAlign: "center"
2103
+ });
2104
+ _responsiveRule(util$1, "text-align-right", {
2105
+ textAlign: "right"
2106
+ });
2107
+ _responsiveRule(util$1, "text-align-justify", {
2108
+ textAlign: "justify"
2109
+ });
2110
+ const textAlignStyle = {
2105
2111
  layers: {
2106
2112
  util: util$1
2107
2113
  }
@@ -2516,24 +2522,24 @@ const skeletonStyle = {
2516
2522
  }
2517
2523
  }
2518
2524
  };
2519
- for (const textSize of FONT_TEXT_SIZE) {
2520
- const source = vars.font.text.sizes[textSize];
2521
- primitive$o[`.input-${textSize}`] = {
2525
+ for (const size of FONT_TEXT_SIZE) {
2526
+ const source = vars.font.text.sizes[size];
2527
+ _responsiveRule(primitive$o, `input-${size}`, {
2522
2528
  [varNames.input.fontSize]: source.fontSize,
2523
2529
  [varNames.input.lineHeight]: source.lineHeight,
2524
2530
  [varNames.input.letterSpacing]: source.letterSpacing,
2525
2531
  [varNames.input.ascenderHeight]: source.ascenderHeight,
2526
2532
  [varNames.input.descenderHeight]: source.descenderHeight
2527
- };
2533
+ });
2528
2534
  }
2529
2535
  for (const space of SPACE)
2530
- primitive$o[`.input-p-${space}`] = {
2536
+ _responsiveRule(primitive$o, `input-p-${space}`, {
2531
2537
  [varNames.input.padding]: vars.space[space]
2532
- };
2538
+ });
2533
2539
  for (const space of SPACE)
2534
- primitive$o[`.input-g-${space}`] = {
2540
+ _responsiveRule(primitive$o, `input-g-${space}`, {
2535
2541
  [varNames.input.gap]: vars.space[space]
2536
- };
2542
+ });
2537
2543
  const _inputStyle = {
2538
2544
  layers: {
2539
2545
  primitive: primitive$o
@@ -2803,7 +2809,10 @@ const badgeStyle = {
2803
2809
  // todo: move to aspects
2804
2810
  minHeight: 0,
2805
2811
  "@nest": {
2806
- "&:is(ul), &:is(ol)": {
2812
+ "iframe&": {
2813
+ border: "none"
2814
+ },
2815
+ "ul&, ol&": {
2807
2816
  listStyle: "none"
2808
2817
  },
2809
2818
  "&.muted": {
@@ -3794,12 +3803,8 @@ const labelStyle = {
3794
3803
  }
3795
3804
  }
3796
3805
  },
3797
- // 'text-accent': {
3798
- // '--color-fg': 'var(--color-accent-fg)',
3799
- // },
3800
3806
  ".text-muted": {
3801
3807
  color: "var(--color-muted-fg)"
3802
- // '--color-fg': 'var(--color-tinted-default-fg-4)',
3803
3808
  }
3804
3809
  };
3805
3810
  for (const size of FONT_TEXT_SIZE)
@@ -3859,126 +3864,7 @@ const textStyle = {
3859
3864
  }
3860
3865
  }
3861
3866
  },
3862
- ".text-input-presentation": {
3863
- // position: 'absolute',
3864
- // top: 0,
3865
- // left: 0,
3866
- // right: 0,
3867
- // bottom: 0,
3868
- // display: 'block',
3869
- // pointerEvents: 'none',
3870
- // zIndex: 0,
3871
- // backgroundColor: 'var(--input-bg-color)',
3872
- // 'boxShadow': 'var(--input-box-shadow)',
3873
- // '--input-border-color': 'var(--color-input-default-enabled-border)',
3874
- // '--input-border-color': 'var(--color-tinted-default-border-1)',
3875
- // '--input-box-shadow': 'inset 0 0 0 1px var(--input-border-color)',
3876
- // border-top-left-radius: ${$hasPrefix ? 0 : undefined};
3877
- // border-bottom-left-radius: ${$hasPrefix ? 0 : undefined};
3878
- // border-top-right-radius: ${$hasSuffix ? 0 : undefined};
3879
- // border-bottom-right-radius: ${$hasSuffix ? 0 : undefined};
3880
- // '@nest': {
3881
- // 'input:hover + &': {
3882
- // '--input-border-color': 'var(--color-tinted-default-border-2)',
3883
- // },
3884
- // 'input:focus + &': {
3885
- // '--input-border-color': 'var(--color-tinted-default-border-2)',
3886
- // },
3887
- // },
3888
- // &[data-scheme='${$scheme}'][data-tone='${$tone}'] {
3889
- // --card-bg-color: ${color.input.default.enabled.bg};
3890
- // --card-fg-color: ${color.input.default.enabled.fg};
3891
- // /* enabled */
3892
- // *:not(:disabled) + &[data-border] {
3893
- // --input-box-shadow: ${focusRingBorderStyle({
3894
- // color: color.input.default.enabled.border,
3895
- // width: input.border.width,
3896
- // })};
3897
- // }
3898
- // /* invalid */
3899
- // *:not(:disabled):invalid + & {
3900
- // --card-bg-color: ${color.input.invalid.enabled.bg};
3901
- // --card-fg-color: ${color.input.invalid.enabled.fg};
3902
- // &[data-border] {
3903
- // --input-box-shadow: ${focusRingBorderStyle({
3904
- // color: color.input.invalid.enabled.border,
3905
- // width: input.border.width,
3906
- // })};
3907
- // }
3908
- // }
3909
- // /* focused */
3910
- // *:not(:disabled):focus + & {
3911
- // &[data-border] {
3912
- // --input-box-shadow: ${$unstableDisableFocusRing
3913
- // ? undefined
3914
- // : focusRingStyle({
3915
- // border: {color: color.input.default.enabled.border, width: input.border.width},
3916
- // focusRing: input.text.focusRing,
3917
- // })};
3918
- // }
3919
- // &:not([data-border]) {
3920
- // --input-box-shadow: ${$unstableDisableFocusRing
3921
- // ? undefined
3922
- // : focusRingStyle({focusRing: input.text.focusRing})};
3923
- // }
3924
- // }
3925
- // /* disabled */
3926
- // *:not(:invalid):disabled + & {
3927
- // --card-bg-color: ${color.input.default.disabled.bg} !important;
3928
- // --card-fg-color: ${color.input.default.disabled.fg} !important;
3929
- // --card-icon-color: ${color.input.default.disabled.fg} !important;
3930
- // &[data-border] {
3931
- // --input-box-shadow: ${focusRingBorderStyle({
3932
- // color: color.input.default.disabled.border,
3933
- // width: input.border.width,
3934
- // })};
3935
- // }
3936
- // }
3937
- // *:invalid:disabled + & {
3938
- // --card-bg-color: ${color.input.invalid.disabled.bg} !important;
3939
- // --card-fg-color: ${color.input.invalid.disabled.fg} !important;
3940
- // --card-icon-color: ${color.input.invalid.disabled.fg} !important;
3941
- // &[data-border] {
3942
- // --input-box-shadow: ${focusRingBorderStyle({
3943
- // color: color.input.invalid.disabled.border,
3944
- // width: input.border.width,
3945
- // })};
3946
- // }
3947
- // }
3948
- // /* readOnly */
3949
- // *:not(:invalid):read-only + & {
3950
- // --card-bg-color: ${color.input.default.readOnly.bg} !important;
3951
- // --card-fg-color: ${color.input.default.readOnly.fg} !important;
3952
- // }
3953
- // *:invalid:read-only + & {
3954
- // --card-bg-color: ${color.input.invalid.readOnly.bg} !important;
3955
- // --card-fg-color: ${color.input.invalid.readOnly.fg} !important;
3956
- // }
3957
- // /* hovered */
3958
- // @media (hover: hover) {
3959
- // *:not(:disabled):not(:read-only):not(:invalid):hover + & {
3960
- // --card-bg-color: ${color.input.default.hovered.bg};
3961
- // --card-fg-color: ${color.input.default.hovered.fg};
3962
- // }
3963
- // *:invalid:not(:disabled):not(:read-only):hover + & {
3964
- // --card-bg-color: ${color.input.invalid.hovered.bg};
3965
- // --card-fg-color: ${color.input.invalid.hovered.fg};
3966
- // }
3967
- // *:not(:disabled):not(:read-only):not(:invalid):not(:focus):hover + &[data-border] {
3968
- // --input-box-shadow: ${focusRingBorderStyle({
3969
- // color: color.input.default.hovered.border,
3970
- // width: input.border.width,
3971
- // })};
3972
- // }
3973
- // *:invalid:not(:disabled):not(:read-only):not(:focus):hover + &[data-border] {
3974
- // --input-box-shadow: ${focusRingBorderStyle({
3975
- // color: color.input.invalid.hovered.border,
3976
- // width: input.border.width,
3977
- // })};
3978
- // }
3979
- // }
3980
- // }
3981
- }
3867
+ ".text-input-presentation": {}
3982
3868
  }, textInputStyle = {
3983
3869
  layers: {
3984
3870
  primitive: primitive$3
@@ -4179,6 +4065,7 @@ const textStyle = {
4179
4065
  positionStyle,
4180
4066
  radiusStyle,
4181
4067
  shadowStyle,
4068
+ textAlignStyle,
4182
4069
  textOverflowStyle,
4183
4070
  widthStyle,
4184
4071
  // utils
@@ -4670,6 +4557,7 @@ function box(props) {
4670
4557
  pointerEvents(props),
4671
4558
  position(props),
4672
4559
  radius(props),
4560
+ textAlign(props),
4673
4561
  width(props)
4674
4562
  );
4675
4563
  }
@@ -4701,13 +4589,17 @@ function container(props) {
4701
4589
  }));
4702
4590
  }
4703
4591
  function heading(props) {
4704
- return _comp("block", "heading", font(props), props.accent && "heading-accent", props.muted && "heading-muted", _resp("heading", props.size), flexItem(props));
4592
+ return _comp("block", "heading", font(props), props.accent && "heading-accent", props.muted && "heading-muted", _resp("heading", props.size), flexItem(props), textAlign({
4593
+ textAlign: props.align
4594
+ }));
4705
4595
  }
4706
4596
  function kbd(props) {
4707
4597
  return _comp("kbd", radius(props));
4708
4598
  }
4709
4599
  function label(props) {
4710
- return _comp("label", "block", font(props), props.accent && "label-accent", props.muted && "label-muted", _resp("label", props.size));
4600
+ return _comp("label", "block", font(props), props.accent && "label-accent", props.muted && "label-muted", _resp("label", props.size), textAlign({
4601
+ textAlign: props.align
4602
+ }));
4711
4603
  }
4712
4604
  function popover() {
4713
4605
  return _comp("popover");
@@ -4749,7 +4641,9 @@ function _switchTrack() {
4749
4641
  return _comp("switch-track");
4750
4642
  }
4751
4643
  function text(props) {
4752
- return _comp("text", "block", flexItem(props), font(props), props.accent && "text-accent", props.muted && "text-muted", _resp("text", props.size));
4644
+ return _comp("text", "block", flexItem(props), font(props), props.accent && "text-accent", props.muted && "text-muted", _resp("text", props.size), textAlign({
4645
+ textAlign: props.align
4646
+ }));
4753
4647
  }
4754
4648
  function textArea(props) {
4755
4649
  return composeClassNames(_comp("text-area"), _input(props));
@@ -4853,6 +4747,7 @@ export {
4853
4747
  srOnly,
4854
4748
  stack,
4855
4749
  text,
4750
+ textAlign,
4856
4751
  textArea,
4857
4752
  textInput,
4858
4753
  textOverflow,