@sanity/ui 3.0.0-static.3 → 3.0.0-static.31

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 (1359) hide show
  1. package/README.md +7 -9
  2. package/dist/_chunks-cjs/_visual-editing.cjs +2357 -0
  3. package/dist/_chunks-cjs/_visual-editing.cjs.map +1 -0
  4. package/dist/_chunks-cjs/refractor.cjs +26 -0
  5. package/dist/_chunks-cjs/refractor.cjs.map +1 -0
  6. package/dist/_chunks-es/_visual-editing.js +2370 -0
  7. package/dist/_chunks-es/_visual-editing.js.map +1 -0
  8. package/dist/_chunks-es/refractor.js +25 -0
  9. package/dist/_chunks-es/refractor.js.map +1 -0
  10. package/dist/_visual-editing.cjs +30 -0
  11. package/dist/_visual-editing.cjs.map +1 -0
  12. package/dist/_visual-editing.d.cts +894 -0
  13. package/dist/_visual-editing.d.ts +504 -418
  14. package/dist/_visual-editing.js +29 -30
  15. package/dist/_visual-editing.js.map +1 -1
  16. package/dist/css/index.cjs +617 -0
  17. package/dist/css/index.cjs.map +1 -0
  18. package/dist/css/index.css +1 -0
  19. package/dist/css/index.d.cts +14902 -0
  20. package/dist/css/index.d.ts +14902 -0
  21. package/dist/css/index.js +617 -0
  22. package/dist/css/index.js.map +1 -0
  23. package/dist/css/layers.css +4 -0
  24. package/dist/css/primitives/popover/popover.css +4 -0
  25. package/dist/index.cjs +2472 -0
  26. package/dist/index.cjs.map +1 -0
  27. package/dist/index.d.cts +3212 -0
  28. package/dist/index.d.ts +1336 -993
  29. package/dist/index.js +1616 -692
  30. package/dist/index.js.map +1 -1
  31. package/dist/theme.cjs +4791 -0
  32. package/dist/theme.cjs.map +1 -0
  33. package/dist/theme.d.cts +1903 -0
  34. package/dist/theme.d.ts +329 -309
  35. package/dist/theme.js +3188 -1384
  36. package/dist/theme.js.map +1 -1
  37. package/exports/_visual-editing.ts +26 -27
  38. package/exports/index.ts +1 -1
  39. package/package.json +81 -93
  40. package/src/core/__DEV__.ts +5 -0
  41. package/src/core/_compat/helpers.ts +72 -0
  42. package/src/core/_compat/styles/_responsive.ts +19 -0
  43. package/src/core/_compat/theme/theme.test.tsx +73 -0
  44. package/src/core/_compat/theme/themeColorProvider.tsx +24 -0
  45. package/src/core/_compat/theme/themeContext.ts +10 -0
  46. package/src/core/_compat/theme/themeProvider.tsx +68 -0
  47. package/src/core/_compat/theme/types.ts +10 -0
  48. package/src/core/_compat/theme/useRootTheme.ts +15 -0
  49. package/src/core/_compat/theme/useTheme.ts +12 -0
  50. package/src/core/_compat/types.ts +191 -0
  51. package/src/core/components/autocomplete/__workshop__/async.tsx +156 -0
  52. package/src/core/components/autocomplete/__workshop__/constrainedHeight.tsx +131 -0
  53. package/src/core/components/autocomplete/__workshop__/custom.tsx +91 -0
  54. package/src/core/components/autocomplete/__workshop__/example.tsx +80 -0
  55. package/src/core/components/autocomplete/__workshop__/focusAndBlur.tsx +36 -0
  56. package/src/core/components/autocomplete/__workshop__/fullscreen.tsx +292 -0
  57. package/src/core/components/autocomplete/__workshop__/index.ts +39 -0
  58. package/src/core/components/autocomplete/autocomplete.tsx +690 -0
  59. package/src/core/components/autocomplete/autocompleteOption.tsx +45 -0
  60. package/src/core/components/autocomplete/autocompleteReducer.ts +47 -0
  61. package/src/core/components/autocomplete/constants.ts +28 -0
  62. package/src/core/components/autocomplete/types.ts +103 -0
  63. package/src/core/components/breadcrumbs/__workshop__/example.tsx +61 -0
  64. package/src/core/components/breadcrumbs/breadcrumbs.tsx +136 -0
  65. package/src/core/components/dialog/__workshop__/activate.tsx +141 -0
  66. package/src/core/components/dialog/__workshop__/autoFocus.tsx +29 -0
  67. package/src/core/components/dialog/__workshop__/onScroll.tsx +51 -0
  68. package/src/core/components/dialog/__workshop__/panes.tsx +89 -0
  69. package/src/core/components/dialog/__workshop__/position.tsx +30 -0
  70. package/src/core/components/dialog/__workshop__/props.tsx +77 -0
  71. package/src/core/components/dialog/__workshop__/wrapped.tsx +76 -0
  72. package/src/core/components/dialog/dialog.tsx +233 -0
  73. package/src/core/components/dialog/dialogCard.tsx +233 -0
  74. package/src/core/components/dialog/dialogContext.ts +22 -0
  75. package/src/core/components/dialog/dialogProvider.tsx +34 -0
  76. package/src/core/components/dialog/isTargetWithinScope.ts +14 -0
  77. package/src/core/components/dialog/types.ts +2 -0
  78. package/src/core/components/dialog/useDialog.ts +11 -0
  79. package/src/core/components/hotkeys/hotkeys.tsx +71 -0
  80. package/src/core/components/menu/__workshop__/asComponent.tsx +45 -0
  81. package/src/core/components/menu/__workshop__/avatarMenu.tsx +57 -0
  82. package/src/core/components/menu/__workshop__/closableMenuButton.tsx +47 -0
  83. package/src/core/components/menu/__workshop__/constrainedInBoundary.tsx +133 -0
  84. package/src/core/components/menu/__workshop__/customMenuItem.tsx +45 -0
  85. package/src/core/components/menu/__workshop__/customSelectedState.tsx +35 -0
  86. package/src/core/components/menu/__workshop__/disableFocusOnClose.tsx +40 -0
  87. package/src/core/components/menu/__workshop__/groups.tsx +156 -0
  88. package/src/core/components/menu/__workshop__/menuButton.tsx +80 -0
  89. package/src/core/components/menu/__workshop__/menuGroupRight.tsx +65 -0
  90. package/src/core/components/menu/__workshop__/nestedMenu.tsx +22 -0
  91. package/src/core/components/menu/__workshop__/onCloseMenuButton.tsx +50 -0
  92. package/src/core/components/menu/__workshop__/selectedItem.tsx +69 -0
  93. package/src/core/components/menu/__workshop__/shouldFocus.tsx +42 -0
  94. package/src/core/components/menu/__workshop__/tones.tsx +25 -0
  95. package/src/core/components/menu/__workshop__/withoutArrow.tsx +32 -0
  96. package/src/core/components/menu/helpers.ts +82 -0
  97. package/src/core/components/menu/menu.test.tsx +128 -0
  98. package/src/core/components/menu/menu.tsx +194 -0
  99. package/src/core/components/menu/menuButton.tsx +271 -0
  100. package/src/core/components/menu/menuContext.ts +31 -0
  101. package/src/core/components/menu/menuDivider.tsx +32 -0
  102. package/src/core/components/menu/menuGroup.tsx +238 -0
  103. package/src/core/components/menu/menuItem.tsx +194 -0
  104. package/src/core/components/menu/useMenu.ts +21 -0
  105. package/src/core/components/menu/useMenuController.ts +241 -0
  106. package/src/core/components/tab/__workshop__/example.tsx +79 -0
  107. package/src/core/components/tab/tab.tsx +107 -0
  108. package/src/core/components/tab/tabList.tsx +95 -0
  109. package/src/core/components/tab/tabPanel.tsx +47 -0
  110. package/src/core/components/toast/__workshop__/hook.tsx +71 -0
  111. package/src/core/components/toast/__workshop__/toast.tsx +26 -0
  112. package/src/core/components/toast/toast.test.tsx +102 -0
  113. package/src/core/components/toast/toast.tsx +189 -0
  114. package/src/core/components/toast/toastContext.ts +7 -0
  115. package/src/core/components/toast/toastLayer.tsx +54 -0
  116. package/src/core/components/toast/toastProvider.tsx +112 -0
  117. package/src/core/components/toast/types.ts +24 -0
  118. package/src/core/components/toast/useToast.ts +23 -0
  119. package/src/core/components/tree/__workshop__/basic.perf.ts +19 -0
  120. package/src/core/components/tree/__workshop__/basic.tsx +105 -0
  121. package/src/core/components/tree/__workshop__/tabFromElement.tsx +84 -0
  122. package/src/core/components/tree/helpers.ts +105 -0
  123. package/src/core/components/tree/tree.tsx +249 -0
  124. package/src/core/components/tree/treeContext.ts +10 -0
  125. package/src/core/components/tree/treeGroup.tsx +48 -0
  126. package/src/core/components/tree/treeItem.tsx +237 -0
  127. package/src/core/components/tree/types.ts +24 -0
  128. package/src/core/components/tree/useTree.ts +17 -0
  129. package/src/core/components/virtualList/__workshop__/index.ts +29 -0
  130. package/src/core/components/virtualList/__workshop__/infiniteList.tsx +48 -0
  131. package/src/core/components/virtualList/virtualList.tsx +209 -0
  132. package/src/core/constants.ts +85 -0
  133. package/src/core/helpers/focus.ts +92 -0
  134. package/src/core/helpers/props.ts +28 -0
  135. package/src/core/hooks/useArrayProp.ts +26 -0
  136. package/src/core/hooks/useClickOutside.test.tsx +481 -0
  137. package/src/core/hooks/useClickOutside.ts +113 -0
  138. package/src/core/hooks/useClickOutsideEvent.test.tsx +114 -0
  139. package/src/core/hooks/useClickOutsideEvent.ts +67 -0
  140. package/src/core/hooks/useDelayed.test.ts +67 -0
  141. package/src/core/hooks/useDelayedState.ts +28 -0
  142. package/src/core/hooks/useElementRect/__workshop__/example.tsx +30 -0
  143. package/src/core/hooks/useElementSize.ts +19 -0
  144. package/src/core/hooks/useForwardedRef.ts +19 -0
  145. package/src/core/hooks/useMediaIndex/__workshop__/test.tsx +14 -0
  146. package/src/core/hooks/useMediaIndex/useMediaIndex.test.tsx +21 -0
  147. package/src/core/hooks/useMediaIndex/useMediaIndex.ts +102 -0
  148. package/src/core/hooks/usePrefersDark.hydration.test.tsx +56 -0
  149. package/src/core/hooks/usePrefersDark.test.tsx +20 -0
  150. package/src/core/hooks/usePrefersReducedMotion.hydration.test.tsx +56 -0
  151. package/src/core/hooks/usePrefersReducedMotion.test.tsx +20 -0
  152. package/src/core/hooks/useResponsiveProp.ts +28 -0
  153. package/src/core/index.ts +136 -0
  154. package/src/core/lib/createGlobalScopedContext.ts +37 -0
  155. package/src/core/lib/globalScope.ts +19 -0
  156. package/src/core/lib/isArray.ts +3 -0
  157. package/src/core/middleware/origin.ts +47 -0
  158. package/src/core/observers/elementSize.ts +116 -0
  159. package/src/core/primitives/arrow/arrow.tsx +74 -0
  160. package/src/core/primitives/avatar/__workshop__/asButton.tsx +14 -0
  161. package/src/core/primitives/avatar/__workshop__/stack.tsx +25 -0
  162. package/src/core/primitives/avatar/__workshop__/withinButton.tsx +55 -0
  163. package/src/core/primitives/avatar/__workshop__/withinMenuItem.tsx +72 -0
  164. package/src/core/primitives/avatar/avatar.tsx +154 -0
  165. package/src/core/primitives/avatar/avatarCounter.tsx +69 -0
  166. package/src/core/primitives/avatar/avatarStack.tsx +81 -0
  167. package/src/core/primitives/avatar/types.ts +34 -0
  168. package/src/core/primitives/badge/__workshop__/props.tsx +19 -0
  169. package/src/core/primitives/badge/__workshop__/tones.tsx +16 -0
  170. package/src/core/primitives/badge/badge.test.tsx +15 -0
  171. package/src/core/primitives/badge/badge.tsx +60 -0
  172. package/src/core/primitives/badge/types.ts +18 -0
  173. package/src/core/primitives/box/__workshop__/props.tsx +20 -0
  174. package/src/core/primitives/box/__workshop__/responsive.tsx +20 -0
  175. package/src/core/primitives/box/box.tsx +219 -0
  176. package/src/core/primitives/button/__workshop__/custom.tsx +27 -0
  177. package/src/core/primitives/button/__workshop__/customIcons.tsx +30 -0
  178. package/src/core/primitives/button/__workshop__/disabled.tsx +54 -0
  179. package/src/core/primitives/button/__workshop__/index.ts +64 -0
  180. package/src/core/primitives/button/__workshop__/props.tsx +55 -0
  181. package/src/core/primitives/button/__workshop__/sanityUploadButton.tsx +36 -0
  182. package/src/core/primitives/button/__workshop__/stacked.tsx +58 -0
  183. package/src/core/primitives/button/__workshop__/textOverflow.tsx +13 -0
  184. package/src/core/primitives/button/__workshop__/uploadButton.tsx +29 -0
  185. package/src/core/primitives/button/button.test.tsx +29 -0
  186. package/src/core/primitives/button/button.tsx +196 -0
  187. package/src/core/primitives/button/types.ts +22 -0
  188. package/src/core/primitives/card/__workshop__/asButton.tsx +107 -0
  189. package/src/core/primitives/card/__workshop__/asComponent.tsx +27 -0
  190. package/src/core/primitives/card/__workshop__/checkered.tsx +26 -0
  191. package/src/core/primitives/card/__workshop__/index.ts +18 -0
  192. package/src/core/primitives/card/__workshop__/interactive.tsx +29 -0
  193. package/src/core/primitives/card/__workshop__/listNavigation.tsx +78 -0
  194. package/src/core/primitives/card/__workshop__/props.tsx +52 -0
  195. package/src/core/primitives/card/__workshop__/selected.tsx +62 -0
  196. package/src/core/primitives/card/__workshop__/tones.tsx +27 -0
  197. package/src/core/primitives/card/card.tsx +106 -0
  198. package/src/core/primitives/card/cardContext.ts +10 -0
  199. package/src/core/primitives/card/cardProvider.tsx +27 -0
  200. package/src/core/primitives/card/types.ts +31 -0
  201. package/src/core/primitives/card/useCard.ts +9 -0
  202. package/src/core/primitives/checkbox/__workshop__/props.tsx +35 -0
  203. package/src/core/primitives/checkbox/__workshop__/tones.tsx +27 -0
  204. package/src/core/primitives/checkbox/checkbox.tsx +80 -0
  205. package/src/core/primitives/code/__workshop__/opticalAlignment.tsx +23 -0
  206. package/src/core/primitives/code/__workshop__/props.tsx +18 -0
  207. package/src/core/primitives/code/code.tsx +46 -0
  208. package/src/core/primitives/code/refractor.tsx +18 -0
  209. package/src/core/primitives/container/__workshop__/example.tsx +20 -0
  210. package/src/core/primitives/container/container.tsx +37 -0
  211. package/src/core/primitives/flex/__workshop__/example.tsx +34 -0
  212. package/src/core/primitives/flex/flex.tsx +56 -0
  213. package/src/core/primitives/flex/types.ts +27 -0
  214. package/src/core/primitives/grid/grid.tsx +33 -0
  215. package/src/core/primitives/heading/__workshop__/opticalAlignment.tsx +54 -0
  216. package/src/core/primitives/heading/__workshop__/plain.tsx +29 -0
  217. package/src/core/primitives/heading/heading.tsx +80 -0
  218. package/src/core/primitives/inline/__workshop__/plain.tsx +24 -0
  219. package/src/core/primitives/inline/inline.tsx +69 -0
  220. package/src/core/primitives/kbd/kbd.tsx +55 -0
  221. package/src/core/primitives/label/__workshop__/plain.tsx +28 -0
  222. package/src/core/primitives/label/label.tsx +77 -0
  223. package/src/core/primitives/layer/__workshop__/index.ts +24 -0
  224. package/src/core/primitives/layer/__workshop__/multipleRoots.tsx +49 -0
  225. package/src/core/primitives/layer/__workshop__/nested.tsx +98 -0
  226. package/src/core/primitives/layer/__workshop__/responsiveZOffset.tsx +17 -0
  227. package/src/core/primitives/layer/getLayerContext.test.ts +32 -0
  228. package/src/core/primitives/layer/getLayerContext.ts +21 -0
  229. package/src/core/primitives/layer/layer.test.tsx +109 -0
  230. package/src/core/primitives/layer/layer.tsx +42 -0
  231. package/src/core/primitives/layer/layerCard.tsx +90 -0
  232. package/src/core/primitives/layer/layerContext.ts +7 -0
  233. package/src/core/primitives/layer/layerProvider.tsx +114 -0
  234. package/src/core/primitives/layer/useLayer.ts +24 -0
  235. package/src/core/primitives/popover/__workshop__/AlignedStory.tsx +77 -0
  236. package/src/core/primitives/popover/__workshop__/MatchReferenceWidthStory.tsx +32 -0
  237. package/src/core/primitives/popover/__workshop__/PlainStory.tsx +71 -0
  238. package/src/core/primitives/popover/__workshop__/RecursiveStory.tsx +69 -0
  239. package/src/core/primitives/popover/__workshop__/SidePanelStory.tsx +96 -0
  240. package/src/core/primitives/popover/__workshop__/TestStory.tsx +100 -0
  241. package/src/core/primitives/popover/constants.ts +22 -0
  242. package/src/core/primitives/popover/floating-ui/size.ts +83 -0
  243. package/src/core/primitives/popover/helpers.ts +32 -0
  244. package/src/core/primitives/popover/popover.tsx +428 -0
  245. package/src/core/primitives/popover/popoverLayer.tsx +149 -0
  246. package/src/core/primitives/popover/types.ts +12 -0
  247. package/src/core/primitives/radio/__workshop__/example.tsx +63 -0
  248. package/src/core/primitives/radio/__workshop__/plain.tsx +28 -0
  249. package/src/core/primitives/radio/radio.tsx +64 -0
  250. package/src/core/primitives/root/Root.tsx +84 -0
  251. package/src/core/primitives/root/RootProvider.tsx +40 -0
  252. package/src/core/primitives/root/__workshop__/boundary.tsx +5 -0
  253. package/src/core/primitives/root/__workshop__/index.ts +8 -0
  254. package/src/core/primitives/select/__workshop__/plain.tsx +39 -0
  255. package/src/core/primitives/select/__workshop__/readOnly.tsx +23 -0
  256. package/src/core/primitives/select/select.tsx +85 -0
  257. package/src/core/primitives/selectable/selectable.tsx +50 -0
  258. package/src/core/primitives/selectable/types.ts +7 -0
  259. package/src/core/primitives/skeleton/__workshop__/delay.tsx +70 -0
  260. package/src/core/primitives/skeleton/__workshop__/index.ts +11 -0
  261. package/src/core/primitives/skeleton/__workshop__/skeleton.tsx +64 -0
  262. package/src/core/primitives/skeleton/codeSkeleton.tsx +49 -0
  263. package/src/core/primitives/skeleton/headingSkeleton.tsx +48 -0
  264. package/src/core/primitives/skeleton/labelSkeleton.tsx +47 -0
  265. package/src/core/primitives/skeleton/skeleton.tsx +71 -0
  266. package/src/core/primitives/skeleton/textSkeleton.tsx +49 -0
  267. package/src/core/primitives/spinner/__workshop__/Props.tsx +15 -0
  268. package/src/core/primitives/spinner/animatedSpinnerIcon.tsx +14 -0
  269. package/src/core/primitives/spinner/spinner.tsx +45 -0
  270. package/src/core/primitives/srOnly/srOnly.tsx +33 -0
  271. package/src/core/primitives/stack/__workshop__/plain.tsx +32 -0
  272. package/src/core/primitives/stack/stack.tsx +65 -0
  273. package/src/core/primitives/switch/switch.tsx +84 -0
  274. package/src/core/primitives/text/__workshop__/colored.tsx +23 -0
  275. package/src/core/primitives/text/__workshop__/example.tsx +28 -0
  276. package/src/core/primitives/text/__workshop__/opticalAlignment.tsx +23 -0
  277. package/src/core/primitives/text/text.tsx +74 -0
  278. package/src/core/primitives/textArea/__workshop__/plain.tsx +61 -0
  279. package/src/core/primitives/textArea/textArea.tsx +94 -0
  280. package/src/core/primitives/textInput/__workshop__/customValidity.tsx +17 -0
  281. package/src/core/primitives/textInput/__workshop__/plain.tsx +110 -0
  282. package/src/core/primitives/textInput/__workshop__/states.tsx +53 -0
  283. package/src/core/primitives/textInput/__workshop__/tones.tsx +277 -0
  284. package/src/core/primitives/textInput/__workshop__/typed.tsx +23 -0
  285. package/src/core/primitives/textInput/textInput.tsx +261 -0
  286. package/src/core/primitives/tooltip/__workshop__/customPortal.tsx +102 -0
  287. package/src/core/primitives/tooltip/__workshop__/overflowingBoundary.tsx +74 -0
  288. package/src/core/primitives/tooltip/__workshop__/props.tsx +112 -0
  289. package/src/core/primitives/tooltip/__workshop__/resizableBoundary.tsx +86 -0
  290. package/src/core/primitives/tooltip/constants.ts +23 -0
  291. package/src/core/primitives/tooltip/tooltip.test.tsx +454 -0
  292. package/src/core/primitives/tooltip/tooltip.tsx +489 -0
  293. package/src/core/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupContext.tsx +11 -0
  294. package/src/core/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx +53 -0
  295. package/src/core/primitives/tooltip/tooltipDelayGroup/useTooltipDelayGroup.ts +13 -0
  296. package/src/core/primitives/tooltip/tooltipLayer.tsx +106 -0
  297. package/src/core/primitives/types.ts +153 -0
  298. package/src/core/types/props.ts +29 -0
  299. package/src/core/types/radius.ts +7 -0
  300. package/src/core/utils/boundaryElement/boundaryElement.test.tsx +101 -0
  301. package/src/core/utils/boundaryElement/boundaryElementContext.ts +7 -0
  302. package/src/core/utils/boundaryElement/boundaryElementProvider.tsx +18 -0
  303. package/src/core/utils/boundaryElement/types.ts +5 -0
  304. package/src/core/utils/boundaryElement/useBoundaryElement.ts +24 -0
  305. package/src/core/utils/elementQuery/__workshop__/customMedia.tsx +41 -0
  306. package/src/core/utils/elementQuery/elementQuery.tsx +75 -0
  307. package/src/core/utils/errorBoundary.tsx +50 -0
  308. package/src/core/utils/getElementRef.ts +29 -0
  309. package/src/core/utils/portal/__workshop__/named.tsx +63 -0
  310. package/src/core/utils/portal/portal.test.tsx +104 -0
  311. package/src/core/utils/portal/portal.tsx +40 -0
  312. package/src/core/utils/portal/portalContext.ts +34 -0
  313. package/src/core/utils/portal/portalProvider.tsx +73 -0
  314. package/src/core/utils/portal/types.ts +7 -0
  315. package/src/core/utils/portal/usePortal.ts +23 -0
  316. package/src/css/_assign.ts +3 -0
  317. package/src/css/_composeClassNames.ts +12 -0
  318. package/src/css/_fromEntries.ts +3 -0
  319. package/src/css/_getClassNames.ts +9 -0
  320. package/src/css/_responsiveClassName.ts +45 -0
  321. package/src/css/_responsiveStyle.css.ts +34 -0
  322. package/src/css/_style.css.ts +9 -0
  323. package/src/css/components/breadcrumbs/breadcrumbs.css.ts +6 -0
  324. package/src/css/components/breadcrumbs/breadcrumbs.ts +5 -3
  325. package/src/css/components/dialog/dialog.css.ts +106 -0
  326. package/src/css/components/dialog/dialog.ts +42 -14
  327. package/src/css/components/menu/menu.css.ts +14 -0
  328. package/src/css/components/menu/menu.ts +8 -5
  329. package/src/css/components/skeleton/skeleton.css.ts +132 -0
  330. package/src/css/components/skeleton/skeleton.ts +16 -9
  331. package/src/css/components/skeleton/types.ts +16 -6
  332. package/src/css/components/toast/toast.css.ts +17 -0
  333. package/src/css/components/toast/toast.ts +5 -15
  334. package/src/css/components/tree/tree.css.ts +65 -0
  335. package/src/css/components/tree/tree.ts +5 -3
  336. package/src/css/constants.ts +10 -1
  337. package/src/css/defaultTheme.css.ts +521 -0
  338. package/src/css/index.ts +141 -39
  339. package/src/css/layers.css.ts +9 -0
  340. package/src/css/primitives/_arrow/_arrow.css.ts +68 -0
  341. package/src/css/primitives/_arrow/_arrow.ts +16 -4
  342. package/src/css/primitives/_input/_input.css.ts +261 -0
  343. package/src/css/primitives/_input/input.ts +16 -12
  344. package/src/css/primitives/_input/types.ts +4 -3
  345. package/src/css/primitives/_selectable/_selectable.css.ts +131 -0
  346. package/src/css/primitives/_selectable/selectable.ts +5 -5
  347. package/src/css/primitives/_selectable/types.ts +3 -2
  348. package/src/css/primitives/avatar/avatar.css.ts +198 -0
  349. package/src/css/primitives/avatar/avatar.ts +52 -11
  350. package/src/css/primitives/avatar/types.ts +5 -3
  351. package/src/css/primitives/badge/badge.css.ts +27 -0
  352. package/src/css/primitives/badge/badge.ts +4 -4
  353. package/src/css/primitives/badge/types.ts +4 -5
  354. package/src/css/primitives/box/box.css.ts +19 -0
  355. package/src/css/primitives/box/box.ts +63 -31
  356. package/src/css/primitives/box/types.ts +56 -30
  357. package/src/css/primitives/button/button.css.ts +287 -0
  358. package/src/css/primitives/button/button.ts +19 -34
  359. package/src/css/primitives/button/types.ts +12 -0
  360. package/src/css/primitives/card/__workshop__/color.tsx +75 -0
  361. package/src/css/primitives/card/__workshop__/index.ts +14 -0
  362. package/src/css/primitives/card/card.css.ts +370 -0
  363. package/src/css/primitives/card/card.ts +9 -10
  364. package/src/css/primitives/card/types.ts +4 -6
  365. package/src/css/primitives/checkbox/checkbox.css.ts +193 -0
  366. package/src/css/primitives/checkbox/checkbox.ts +13 -5
  367. package/src/css/primitives/code/code.css.ts +271 -0
  368. package/src/css/primitives/code/code.ts +15 -5
  369. package/src/css/primitives/code/types.ts +5 -3
  370. package/src/css/primitives/container/container.css.ts +4 -0
  371. package/src/css/primitives/container/container.ts +14 -4
  372. package/src/css/primitives/container/types.ts +4 -2
  373. package/src/css/primitives/heading/heading.css.ts +85 -0
  374. package/src/css/primitives/heading/heading.ts +16 -11
  375. package/src/css/primitives/heading/types.ts +8 -3
  376. package/src/css/primitives/kbd/kbd.css.ts +16 -0
  377. package/src/css/primitives/kbd/kbd.ts +6 -4
  378. package/src/css/primitives/kbd/types.ts +2 -3
  379. package/src/css/primitives/label/label.css.ts +86 -0
  380. package/src/css/primitives/label/label.ts +16 -10
  381. package/src/css/primitives/label/types.ts +15 -5
  382. package/src/css/primitives/popover/popover.css.ts +6 -0
  383. package/src/css/primitives/popover/popover.ts +10 -3
  384. package/src/css/primitives/radio/radio.css.ts +78 -0
  385. package/src/css/primitives/radio/radio.ts +15 -3
  386. package/src/css/primitives/root/root.css.ts +15 -0
  387. package/src/css/primitives/root/root.ts +17 -0
  388. package/src/css/primitives/root/types.ts +10 -0
  389. package/src/css/primitives/select/select.css.ts +24 -0
  390. package/src/css/primitives/select/select.ts +8 -6
  391. package/src/css/primitives/select/types.ts +1 -1
  392. package/src/css/primitives/spinner/spinner.css.ts +23 -0
  393. package/src/css/primitives/spinner/spinner.ts +9 -5
  394. package/src/css/primitives/spinner/types.ts +4 -0
  395. package/src/css/primitives/srOnly/srOnly.css.ts +10 -0
  396. package/src/css/primitives/srOnly/srOnly.ts +7 -0
  397. package/src/css/primitives/stack/stack.css.ts +6 -0
  398. package/src/css/primitives/stack/stack.ts +7 -0
  399. package/src/css/primitives/switch/switch.css.ts +98 -0
  400. package/src/css/primitives/switch/switch.ts +13 -7
  401. package/src/css/primitives/text/text.css.ts +85 -0
  402. package/src/css/primitives/text/text.ts +18 -11
  403. package/src/css/primitives/text/types.ts +12 -3
  404. package/src/css/primitives/textArea/textArea.css.ts +4 -0
  405. package/src/css/primitives/textArea/textArea.ts +6 -5
  406. package/src/css/primitives/textArea/types.ts +5 -3
  407. package/src/css/primitives/textInput/textInput.css.ts +41 -0
  408. package/src/css/primitives/textInput/textInput.ts +21 -5
  409. package/src/css/primitives/textInput/types.ts +3 -7
  410. package/src/css/primitives/tooltip/tooltip.css.ts +4 -0
  411. package/src/css/primitives/tooltip/tooltip.ts +6 -7
  412. package/src/css/primitives/tooltip/types.ts +4 -0
  413. package/src/css/props/alignItems/alignItems.css.ts +22 -0
  414. package/src/css/props/alignItems/alignItems.ts +8 -0
  415. package/src/css/props/alignItems/types.ts +9 -0
  416. package/src/css/props/border/border.css.ts +65 -0
  417. package/src/css/props/border/border.ts +36 -0
  418. package/src/css/props/border/types.ts +13 -0
  419. package/src/css/props/boxSizing/boxSizing.css.ts +11 -0
  420. package/src/css/props/boxSizing/boxSizing.ts +10 -0
  421. package/src/css/props/boxSizing/types.ts +7 -0
  422. package/src/css/props/display/display.css.ts +56 -0
  423. package/src/css/props/display/display.ts +17 -0
  424. package/src/css/props/display/types.ts +16 -0
  425. package/src/css/props/flex/flex.css.ts +52 -0
  426. package/src/css/props/flex/flex.ts +8 -0
  427. package/src/css/props/flex/types.ts +9 -0
  428. package/src/css/props/flexDirection/flexDirection.css.ts +19 -0
  429. package/src/css/props/flexDirection/flexDirection.ts +8 -0
  430. package/src/css/props/flexDirection/types.ts +9 -0
  431. package/src/css/props/flexWrap/flexWrap.css.ts +16 -0
  432. package/src/css/props/flexWrap/flexWrap.ts +8 -0
  433. package/src/css/props/flexWrap/types.ts +9 -0
  434. package/src/css/props/font/font.css.ts +93 -0
  435. package/src/css/props/font/font.ts +8 -0
  436. package/src/css/props/font/types.ts +6 -0
  437. package/src/css/props/gap/gap.css.ts +40 -0
  438. package/src/css/props/gap/gap.ts +13 -0
  439. package/src/css/props/gap/types.ts +10 -0
  440. package/src/css/props/gridAutoColumns/gridAutoColumns.css.ts +19 -0
  441. package/src/css/props/gridAutoColumns/gridAutoColumns.ts +8 -0
  442. package/src/css/props/gridAutoColumns/types.ts +19 -0
  443. package/src/css/props/gridAutoFlow/gridAutoFlow.css.ts +19 -0
  444. package/src/css/props/gridAutoFlow/gridAutoFlow.ts +8 -0
  445. package/src/css/props/gridAutoFlow/types.ts +13 -0
  446. package/src/css/props/gridAutoRows/gridAutoRows.css.ts +19 -0
  447. package/src/css/props/gridAutoRows/gridAutoRows.ts +8 -0
  448. package/src/css/props/gridAutoRows/types.ts +13 -0
  449. package/src/css/props/gridColumn/gridColumn.css.ts +49 -0
  450. package/src/css/props/gridColumn/gridColumn.ts +8 -0
  451. package/src/css/props/gridColumn/types.ts +19 -0
  452. package/src/css/props/gridColumnEnd/gridColumnEnd.css.ts +46 -0
  453. package/src/css/props/gridColumnEnd/gridColumnEnd.ts +8 -0
  454. package/src/css/props/gridColumnEnd/types.ts +19 -0
  455. package/src/css/props/gridColumnStart/gridColumnStart.css.ts +46 -0
  456. package/src/css/props/gridColumnStart/gridColumnStart.ts +11 -0
  457. package/src/css/props/gridColumnStart/types.ts +19 -0
  458. package/src/css/props/gridRow/gridRow.css.ts +49 -0
  459. package/src/css/props/gridRow/gridRow.ts +8 -0
  460. package/src/css/props/gridRow/types.ts +19 -0
  461. package/src/css/props/gridRowEnd/gridRowEnd.css.ts +46 -0
  462. package/src/css/props/gridRowEnd/gridRowEnd.ts +8 -0
  463. package/src/css/props/gridRowEnd/types.ts +19 -0
  464. package/src/css/props/gridRowStart/gridRowStart.css.ts +46 -0
  465. package/src/css/props/gridRowStart/gridRowStart.ts +8 -0
  466. package/src/css/props/gridRowStart/types.ts +19 -0
  467. package/src/css/props/gridTemplateColumns/gridTemplateColumns.css.ts +43 -0
  468. package/src/css/props/gridTemplateColumns/gridTemplateColumns.ts +8 -0
  469. package/src/css/props/gridTemplateColumns/types.ts +19 -0
  470. package/src/css/props/gridTemplateRows/gridTemplateRows.css.ts +43 -0
  471. package/src/css/props/gridTemplateRows/gridTemplateRows.ts +8 -0
  472. package/src/css/props/gridTemplateRows/types.ts +19 -0
  473. package/src/css/props/height/height.css.ts +25 -0
  474. package/src/css/props/height/height.ts +8 -0
  475. package/src/css/props/height/types.ts +15 -0
  476. package/src/css/props/inset/inset.css.ts +37 -0
  477. package/src/css/props/inset/inset.ts +21 -0
  478. package/src/css/props/inset/types.ts +13 -0
  479. package/src/css/props/justifyContent/justifyContent.css.ts +25 -0
  480. package/src/css/props/justifyContent/justifyContent.ts +8 -0
  481. package/src/css/props/justifyContent/types.ts +15 -0
  482. package/src/css/props/margin/margin.css.ts +117 -0
  483. package/src/css/props/margin/margin.ts +25 -0
  484. package/src/css/props/margin/types.ts +17 -0
  485. package/src/css/props/maxWidth/maxWidth.css.ts +32 -0
  486. package/src/css/props/maxWidth/maxWidth.ts +8 -0
  487. package/src/css/props/maxWidth/types.ts +11 -0
  488. package/src/css/props/minHeight/minHeight.css.ts +13 -0
  489. package/src/css/props/minHeight/minHeight.ts +8 -0
  490. package/src/css/props/minHeight/types.ts +9 -0
  491. package/src/css/props/minWidth/minWidth.css.ts +25 -0
  492. package/src/css/props/minWidth/minWidth.ts +8 -0
  493. package/src/css/props/minWidth/types.ts +9 -0
  494. package/src/css/props/outline/outline.css.ts +10 -0
  495. package/src/css/props/outline/outline.ts +8 -0
  496. package/src/css/props/outline/types.ts +7 -0
  497. package/src/css/props/overflow/overflow.css.ts +16 -0
  498. package/src/css/props/overflow/overflow.ts +8 -0
  499. package/src/css/props/overflow/types.ts +17 -0
  500. package/src/css/props/padding/padding.css.ts +87 -0
  501. package/src/css/props/padding/padding.ts +25 -0
  502. package/src/css/props/padding/types.ts +17 -0
  503. package/src/css/props/pointerEvents/pointerEvents.css.ts +13 -0
  504. package/src/css/props/pointerEvents/pointerEvents.ts +8 -0
  505. package/src/css/props/position/position.css.ts +22 -0
  506. package/src/css/props/position/position.ts +8 -0
  507. package/src/css/props/position/types.ts +9 -0
  508. package/src/css/props/radius/radius.css.ts +21 -0
  509. package/src/css/props/radius/radius.ts +8 -0
  510. package/src/css/props/radius/types.ts +8 -0
  511. package/src/css/props/shadow/shadow.css.ts +23 -0
  512. package/src/css/props/shadow/shadow.ts +8 -0
  513. package/src/css/props/shadow/types.ts +8 -0
  514. package/src/css/props/textAlign/textAlign.css.ts +22 -0
  515. package/src/css/props/textAlign/textAlign.ts +8 -0
  516. package/src/css/props/textAlign/types.ts +7 -0
  517. package/src/css/props/textOverflow/textOverflow.css.ts +19 -0
  518. package/src/css/props/textOverflow/textOverflow.ts +8 -0
  519. package/src/css/props/textOverflow/types.ts +12 -0
  520. package/src/css/props/width/types.ts +11 -0
  521. package/src/css/props/width/width.css.ts +31 -0
  522. package/src/css/props/width/width.ts +8 -0
  523. package/src/css/types.ts +221 -810
  524. package/src/css/util.ts +3 -8
  525. package/src/css/vars.css.ts +676 -0
  526. package/src/theme/getScopedTheme.ts +4 -4
  527. package/src/theme/index.ts +0 -5
  528. package/src/theme/types.ts +6 -10
  529. package/src/theme/v0/color/_generic.ts +1 -1
  530. package/src/theme/v0/color/button.ts +1 -1
  531. package/src/theme/v0/color/card.ts +1 -1
  532. package/src/theme/v0/color/color.ts +11 -11
  533. package/src/theme/v0/color/input.ts +1 -1
  534. package/src/theme/v0/color/muted.ts +1 -1
  535. package/src/theme/v0/color/selectable.ts +1 -1
  536. package/src/theme/v0/color/solid.ts +1 -1
  537. package/src/theme/v0/color/spot.ts +1 -1
  538. package/src/theme/v0/css.ts +2 -0
  539. package/src/theme/v0/focusRing.ts +1 -3
  540. package/src/theme/v0/font.ts +6 -19
  541. package/src/theme/v0/layer.ts +1 -3
  542. package/src/theme/v0/shadow.ts +2 -6
  543. package/src/theme/v0/styles.ts +1 -1
  544. package/src/theme/v0/theme.ts +7 -7
  545. package/src/theme/v2/avatar.ts +2 -4
  546. package/src/theme/v2/build/_deprecated/color/_selectable/createSelectableTones.ts +76 -0
  547. package/src/theme/v2/build/_deprecated/color/_solid/createSolidTones.ts +54 -0
  548. package/src/theme/v2/build/_deprecated/color/button/createButtonModes.ts +22 -0
  549. package/src/theme/v2/build/_deprecated/color/button/createButtonTones.ts +55 -0
  550. package/src/theme/v2/build/_deprecated/color/card/createCardStates.ts +60 -0
  551. package/src/theme/v2/build/_deprecated/color/color.test.ts +63 -0
  552. package/src/theme/v2/build/_deprecated/color/defaults.ts +390 -0
  553. package/src/theme/v2/build/_deprecated/color/factory.ts +141 -0
  554. package/src/theme/v2/build/_deprecated/color/input/createInputModes.ts +86 -0
  555. package/src/theme/v2/build/_deprecated/color/muted/createMuted.ts +54 -0
  556. package/src/theme/v2/build/_deprecated/color/spot/createSpot.ts +20 -0
  557. package/src/theme/v2/build/buildColorTheme.test.ts +185 -0
  558. package/src/theme/v2/build/buildColorTheme.ts +494 -0
  559. package/src/theme/v2/build/buildTheme.test.ts +89 -0
  560. package/src/theme/v2/build/buildTheme.ts +37 -0
  561. package/src/theme/v2/build/colorToken/colorToken.ts +19 -0
  562. package/src/theme/v2/build/colorToken/compileColorToken.ts +21 -0
  563. package/src/theme/v2/build/colorToken/types.ts +6 -0
  564. package/src/theme/v2/build/lib/color-fns/blend/mix.ts +21 -0
  565. package/src/theme/v2/build/lib/color-fns/blend/multiply.ts +18 -0
  566. package/src/theme/v2/build/lib/color-fns/blend/screen.ts +18 -0
  567. package/src/theme/v2/build/lib/color-fns/color-fns.test.ts +68 -0
  568. package/src/theme/v2/build/lib/color-fns/contrastRatio.ts +34 -0
  569. package/src/theme/v2/build/lib/color-fns/convert.ts +150 -0
  570. package/src/theme/v2/build/lib/color-fns/parse.ts +60 -0
  571. package/src/theme/v2/build/merge.ts +28 -0
  572. package/src/theme/v2/build/mixThemeColor.test.ts +23 -0
  573. package/src/theme/v2/build/mixThemeColor.ts +53 -0
  574. package/src/theme/v2/build/renderColorTheme.ts +532 -0
  575. package/src/theme/v2/build/renderColorValue.ts +85 -0
  576. package/src/theme/v2/build/resolveColorTokens.ts +268 -0
  577. package/src/theme/v2/color/_helpers.ts +2 -2
  578. package/src/theme/v2/color/_system.ts +2 -4
  579. package/src/theme/v2/color/avatar.ts +3 -7
  580. package/src/theme/v2/color/badge.ts +3 -7
  581. package/src/theme/v2/color/button.ts +5 -11
  582. package/src/theme/v2/color/color.ts +10 -16
  583. package/src/theme/v2/color/input.ts +8 -10
  584. package/src/theme/v2/color/kbd.ts +1 -3
  585. package/src/theme/v2/color/selectable.ts +4 -8
  586. package/src/theme/v2/color/state.ts +5 -7
  587. package/src/theme/v2/color/syntax.ts +1 -3
  588. package/src/theme/v2/config/helpers.ts +48 -0
  589. package/src/theme/v2/config/system.ts +114 -0
  590. package/src/theme/v2/config/tokens/color/types.ts +137 -0
  591. package/src/theme/v2/config/tokens/index.ts +3 -0
  592. package/src/theme/v2/config/tokens/parseTokenValue.test.ts +44 -0
  593. package/src/theme/v2/config/tokens/parseTokenValue.ts +133 -0
  594. package/src/theme/v2/config/tokens/types.ts +53 -0
  595. package/src/theme/v2/config/types.ts +47 -0
  596. package/src/theme/v2/defaults/colorPalette.ts +5 -0
  597. package/src/theme/v2/defaults/colorTokens.ts +648 -0
  598. package/src/theme/v2/defaults/config.ts +84 -0
  599. package/src/theme/v2/defaults/fonts.ts +227 -0
  600. package/src/theme/v2/index.ts +2 -0
  601. package/src/theme/v2/input.ts +2 -4
  602. package/src/theme/v2/theme.ts +10 -14
  603. package/src/theme/v3/_constants.ts +29 -0
  604. package/src/theme/v3/_parseColorToken.ts +180 -0
  605. package/src/theme/v3/buildTheme_v3.ts +20 -11
  606. package/src/theme/v3/color/_constants.ts +15 -0
  607. package/src/theme/v3/color/avatar.ts +14 -0
  608. package/src/theme/v3/color/card.ts +58 -95
  609. package/src/theme/v3/color/color.ts +75 -71
  610. package/src/theme/v3/color/element.ts +8 -8
  611. package/src/theme/v3/color/index.ts +2 -2
  612. package/src/theme/v3/color/token.ts +19 -4
  613. package/src/theme/v3/color/tokens.ts +2 -2
  614. package/src/theme/v3/defaultFonts.ts +250 -0
  615. package/src/theme/v3/defaultTokens.ts +199 -0
  616. package/src/theme/v3/index.ts +4 -1
  617. package/src/theme/v3/merge.ts +2 -0
  618. package/src/theme/v3/palette/constants.ts +15 -0
  619. package/src/theme/v3/palette/types.ts +7 -0
  620. package/src/theme/v3/resolveTokens.ts +70 -65
  621. package/src/theme/v3/tokens.ts +2 -2
  622. package/src/theme/v3/types.ts +97 -12
  623. package/src/theme/versioning/getTheme_v2.ts +3 -3
  624. package/src/theme/versioning/is_v0.ts +2 -2
  625. package/src/theme/versioning/is_v2.ts +2 -2
  626. package/src/theme/versioning/themeColor_v0_v2.ts +2 -2
  627. package/src/theme/versioning/themeColor_v2_v2_9.ts +1 -1
  628. package/src/theme/versioning/themeColor_v3_v2.ts +229 -52
  629. package/src/theme/versioning/v0_v2.ts +3 -3
  630. package/src/theme/versioning/v2_v0.ts +4 -4
  631. package/src/theme/versioning/v3_v2.ts +62 -40
  632. package/bin/ui.js +0 -5
  633. package/dist/_chunks-cjs/_visual-editing.js +0 -3100
  634. package/dist/_chunks-cjs/_visual-editing.js.map +0 -1
  635. package/dist/_chunks-cjs/buildCommand.js +0 -32
  636. package/dist/_chunks-cjs/buildCommand.js.map +0 -1
  637. package/dist/_chunks-cjs/refractor.js +0 -27
  638. package/dist/_chunks-cjs/refractor.js.map +0 -1
  639. package/dist/_chunks-cjs/v3_v2.js +0 -251
  640. package/dist/_chunks-cjs/v3_v2.js.map +0 -1
  641. package/dist/_chunks-es/_visual-editing.mjs +0 -3107
  642. package/dist/_chunks-es/_visual-editing.mjs.map +0 -1
  643. package/dist/_chunks-es/refractor.mjs +0 -26
  644. package/dist/_chunks-es/refractor.mjs.map +0 -1
  645. package/dist/_chunks-es/v3_v2.mjs +0 -252
  646. package/dist/_chunks-es/v3_v2.mjs.map +0 -1
  647. package/dist/_visual-editing.d.mts +0 -808
  648. package/dist/_visual-editing.mjs +0 -31
  649. package/dist/_visual-editing.mjs.map +0 -1
  650. package/dist/cli.d.ts +0 -1
  651. package/dist/cli.js +0 -357
  652. package/dist/cli.js.map +0 -1
  653. package/dist/css.d.mts +0 -2197
  654. package/dist/css.d.ts +0 -2197
  655. package/dist/css.js +0 -4769
  656. package/dist/css.js.map +0 -1
  657. package/dist/css.mjs +0 -4770
  658. package/dist/css.mjs.map +0 -1
  659. package/dist/index.d.mts +0 -2869
  660. package/dist/index.mjs +0 -1545
  661. package/dist/index.mjs.map +0 -1
  662. package/dist/sanity-palette.css +0 -9
  663. package/dist/sanity-theme.css +0 -1
  664. package/dist/system.css +0 -22813
  665. package/dist/theme.d.mts +0 -1883
  666. package/dist/theme.mjs +0 -2989
  667. package/dist/theme.mjs.map +0 -1
  668. package/src/cli/buildCommand.ts +0 -48
  669. package/src/cli/index.ts +0 -38
  670. package/src/css/_comp.test.ts +0 -7
  671. package/src/css/_comp.ts +0 -10
  672. package/src/css/_mergeStyles.ts +0 -31
  673. package/src/css/_resp.ts +0 -38
  674. package/src/css/_responsiveRule.ts +0 -38
  675. package/src/css/aspects/border/border.style.ts +0 -13
  676. package/src/css/aspects/border/border.ts +0 -14
  677. package/src/css/aspects/border/index.ts +0 -2
  678. package/src/css/aspects/border/types.ts +0 -10
  679. package/src/css/aspects/display/display.style.ts +0 -34
  680. package/src/css/aspects/display/display.ts +0 -7
  681. package/src/css/aspects/display/index.ts +0 -2
  682. package/src/css/aspects/display/types.ts +0 -17
  683. package/src/css/aspects/flex/flex.style.ts +0 -30
  684. package/src/css/aspects/flex/flex.ts +0 -13
  685. package/src/css/aspects/flex/flexAlign.style.ts +0 -12
  686. package/src/css/aspects/flex/flexDirection.style.ts +0 -11
  687. package/src/css/aspects/flex/flexJustify.style.ts +0 -13
  688. package/src/css/aspects/flex/flexWrap.style.ts +0 -10
  689. package/src/css/aspects/flex/index.ts +0 -2
  690. package/src/css/aspects/flex/types.ts +0 -35
  691. package/src/css/aspects/flexItem/flex.style.ts +0 -22
  692. package/src/css/aspects/flexItem/flexItem.ts +0 -8
  693. package/src/css/aspects/flexItem/index.ts +0 -2
  694. package/src/css/aspects/flexItem/types.ts +0 -27
  695. package/src/css/aspects/font/font.style.ts +0 -151
  696. package/src/css/aspects/font/font.ts +0 -12
  697. package/src/css/aspects/font/index.ts +0 -2
  698. package/src/css/aspects/font/types.ts +0 -12
  699. package/src/css/aspects/gap/gap.style.ts +0 -21
  700. package/src/css/aspects/gap/gap.ts +0 -8
  701. package/src/css/aspects/gap/index.ts +0 -2
  702. package/src/css/aspects/gap/types.ts +0 -10
  703. package/src/css/aspects/grid/grid.ts +0 -13
  704. package/src/css/aspects/grid/gridAutoColumns.style.ts +0 -11
  705. package/src/css/aspects/grid/gridAutoFlow.style.ts +0 -11
  706. package/src/css/aspects/grid/gridAutoRows.style.ts +0 -11
  707. package/src/css/aspects/grid/gridColumns.style.ts +0 -18
  708. package/src/css/aspects/grid/gridRows.style.ts +0 -18
  709. package/src/css/aspects/grid/index.ts +0 -2
  710. package/src/css/aspects/grid/types.ts +0 -29
  711. package/src/css/aspects/gridItem/gridColumn.style.ts +0 -20
  712. package/src/css/aspects/gridItem/gridColumnEnd.style.ts +0 -20
  713. package/src/css/aspects/gridItem/gridColumnStart.style.ts +0 -20
  714. package/src/css/aspects/gridItem/gridItem.ts +0 -15
  715. package/src/css/aspects/gridItem/gridRow.style.ts +0 -20
  716. package/src/css/aspects/gridItem/gridRowEnd.style.ts +0 -20
  717. package/src/css/aspects/gridItem/gridRowStart.style.ts +0 -20
  718. package/src/css/aspects/gridItem/index.ts +0 -2
  719. package/src/css/aspects/gridItem/types.ts +0 -41
  720. package/src/css/aspects/height/height.style.ts +0 -9
  721. package/src/css/aspects/height/height.ts +0 -17
  722. package/src/css/aspects/height/index.ts +0 -1
  723. package/src/css/aspects/height/rules.ts +0 -7
  724. package/src/css/aspects/index.ts +0 -20
  725. package/src/css/aspects/inset/index.ts +0 -2
  726. package/src/css/aspects/inset/inset.style.ts +0 -12
  727. package/src/css/aspects/inset/inset.ts +0 -13
  728. package/src/css/aspects/inset/types.ts +0 -13
  729. package/src/css/aspects/margin/index.ts +0 -2
  730. package/src/css/aspects/margin/margin.style.ts +0 -46
  731. package/src/css/aspects/margin/margin.ts +0 -15
  732. package/src/css/aspects/margin/types.ts +0 -11
  733. package/src/css/aspects/maxWidth/index.ts +0 -2
  734. package/src/css/aspects/maxWidth/maxWidth.style.ts +0 -16
  735. package/src/css/aspects/maxWidth/maxWidth.ts +0 -6
  736. package/src/css/aspects/maxWidth/types.ts +0 -7
  737. package/src/css/aspects/outline/outline.style.ts +0 -9
  738. package/src/css/aspects/overflow/index.ts +0 -2
  739. package/src/css/aspects/overflow/overflow.style.ts +0 -11
  740. package/src/css/aspects/overflow/overflow.ts +0 -11
  741. package/src/css/aspects/overflow/types.ts +0 -11
  742. package/src/css/aspects/padding/index.ts +0 -2
  743. package/src/css/aspects/padding/padding.style.ts +0 -46
  744. package/src/css/aspects/padding/padding.ts +0 -15
  745. package/src/css/aspects/padding/types.ts +0 -14
  746. package/src/css/aspects/pointerEvents/index.ts +0 -2
  747. package/src/css/aspects/pointerEvents/pointerEvents.style.ts +0 -13
  748. package/src/css/aspects/pointerEvents/pointerEvents.ts +0 -6
  749. package/src/css/aspects/position/index.ts +0 -2
  750. package/src/css/aspects/position/position.style.ts +0 -12
  751. package/src/css/aspects/position/position.ts +0 -7
  752. package/src/css/aspects/position/types.ts +0 -9
  753. package/src/css/aspects/radius/index.ts +0 -2
  754. package/src/css/aspects/radius/radius.style.ts +0 -16
  755. package/src/css/aspects/radius/radius.ts +0 -8
  756. package/src/css/aspects/radius/types.ts +0 -8
  757. package/src/css/aspects/shadow/index.ts +0 -2
  758. package/src/css/aspects/shadow/shadow.style.ts +0 -49
  759. package/src/css/aspects/shadow/shadow.ts +0 -7
  760. package/src/css/aspects/shadow/types.ts +0 -8
  761. package/src/css/aspects/textOverflow/index.ts +0 -2
  762. package/src/css/aspects/textOverflow/textOverflow.style.ts +0 -21
  763. package/src/css/aspects/textOverflow/textOverflow.ts +0 -6
  764. package/src/css/aspects/textOverflow/types.ts +0 -8
  765. package/src/css/aspects/width/index.ts +0 -2
  766. package/src/css/aspects/width/rules.ts +0 -8
  767. package/src/css/aspects/width/types.ts +0 -9
  768. package/src/css/aspects/width/width.style.ts +0 -11
  769. package/src/css/aspects/width/width.ts +0 -6
  770. package/src/css/compile/compilePalette.ts +0 -60
  771. package/src/css/compile/compileRule.ts +0 -96
  772. package/src/css/compile/compileRules.test.ts +0 -36
  773. package/src/css/compile/compileRules.ts +0 -43
  774. package/src/css/compile/compileStyle.ts +0 -148
  775. package/src/css/compile/compileSystem.ts +0 -10
  776. package/src/css/compile/compileTheme.ts +0 -15
  777. package/src/css/compile/compileTheme_v3.ts +0 -410
  778. package/src/css/compile/types.ts +0 -6
  779. package/src/css/components/breadcrumbs/breadcrumbs.style.ts +0 -9
  780. package/src/css/components/breadcrumbs/index.ts +0 -1
  781. package/src/css/components/breadcrumbs/rules.ts +0 -25
  782. package/src/css/components/dialog/dialog.style.ts +0 -79
  783. package/src/css/components/dialog/index.ts +0 -1
  784. package/src/css/components/dialog/rules.ts +0 -78
  785. package/src/css/components/menu/index.ts +0 -1
  786. package/src/css/components/menu/menu.style.ts +0 -17
  787. package/src/css/components/menu/rules.ts +0 -15
  788. package/src/css/components/skeleton/index.ts +0 -2
  789. package/src/css/components/skeleton/rules.ts +0 -113
  790. package/src/css/components/skeleton/skeleton.style.ts +0 -96
  791. package/src/css/components/toast/index.ts +0 -1
  792. package/src/css/components/toast/rules.ts +0 -18
  793. package/src/css/components/toast/toast.style.ts +0 -20
  794. package/src/css/components/tree/index.ts +0 -1
  795. package/src/css/components/tree/rules.ts +0 -168
  796. package/src/css/components/tree/tree.style.ts +0 -55
  797. package/src/css/composeClassNames.ts +0 -17
  798. package/src/css/primitives/_arrow/_arrow.style.ts +0 -73
  799. package/src/css/primitives/_arrow/index.ts +0 -1
  800. package/src/css/primitives/_input/__workshop__/customInput.tsx +0 -16
  801. package/src/css/primitives/_input/__workshop__/index.ts +0 -14
  802. package/src/css/primitives/_input/_input.style.ts +0 -162
  803. package/src/css/primitives/_input/index.ts +0 -2
  804. package/src/css/primitives/_selectable/__style.ts +0 -117
  805. package/src/css/primitives/_selectable/_contants.ts +0 -11
  806. package/src/css/primitives/_selectable/_selectable.style.ts +0 -132
  807. package/src/css/primitives/_selectable/index.ts +0 -2
  808. package/src/css/primitives/avatar/avatar.style.ts +0 -175
  809. package/src/css/primitives/avatar/index.ts +0 -2
  810. package/src/css/primitives/avatar/rules.ts +0 -176
  811. package/src/css/primitives/badge/badge.style.ts +0 -22
  812. package/src/css/primitives/badge/index.ts +0 -2
  813. package/src/css/primitives/box/box.style.ts +0 -31
  814. package/src/css/primitives/box/index.ts +0 -2
  815. package/src/css/primitives/button/_constants.ts +0 -17
  816. package/src/css/primitives/button/button.style.ts +0 -182
  817. package/src/css/primitives/button/index.ts +0 -1
  818. package/src/css/primitives/button/rules.ts +0 -302
  819. package/src/css/primitives/card/_constants.ts +0 -13
  820. package/src/css/primitives/card/card.style.ts +0 -198
  821. package/src/css/primitives/card/index.ts +0 -2
  822. package/src/css/primitives/card/rules.ts +0 -473
  823. package/src/css/primitives/checkbox/__styles.ts +0 -129
  824. package/src/css/primitives/checkbox/checkbox.style.ts +0 -154
  825. package/src/css/primitives/checkbox/index.ts +0 -1
  826. package/src/css/primitives/checkbox/rules.ts +0 -152
  827. package/src/css/primitives/code/code.style.ts +0 -62
  828. package/src/css/primitives/code/index.ts +0 -2
  829. package/src/css/primitives/code/rules.ts +0 -96
  830. package/src/css/primitives/container/container.style.ts +0 -10
  831. package/src/css/primitives/container/index.ts +0 -2
  832. package/src/css/primitives/container/rules.ts +0 -8
  833. package/src/css/primitives/heading/heading.style.ts +0 -47
  834. package/src/css/primitives/heading/index.ts +0 -2
  835. package/src/css/primitives/heading/rules.ts +0 -155
  836. package/src/css/primitives/kbd/index.ts +0 -2
  837. package/src/css/primitives/kbd/kbd.style.ts +0 -22
  838. package/src/css/primitives/kbd/rules.ts +0 -20
  839. package/src/css/primitives/label/index.ts +0 -2
  840. package/src/css/primitives/label/label.style.ts +0 -48
  841. package/src/css/primitives/label/rules.ts +0 -137
  842. package/src/css/primitives/popover/index.ts +0 -1
  843. package/src/css/primitives/popover/popover.style.ts +0 -5
  844. package/src/css/primitives/popover/rules.ts +0 -5
  845. package/src/css/primitives/radio/index.ts +0 -1
  846. package/src/css/primitives/radio/radio.style.ts +0 -123
  847. package/src/css/primitives/radio/rules.ts +0 -121
  848. package/src/css/primitives/select/index.ts +0 -2
  849. package/src/css/primitives/select/rules.ts +0 -22
  850. package/src/css/primitives/select/select.style.ts +0 -24
  851. package/src/css/primitives/spinner/index.ts +0 -1
  852. package/src/css/primitives/spinner/rules.ts +0 -21
  853. package/src/css/primitives/spinner/spinner.style.ts +0 -22
  854. package/src/css/primitives/switch/index.ts +0 -1
  855. package/src/css/primitives/switch/rules.ts +0 -340
  856. package/src/css/primitives/switch/switch.style.ts +0 -169
  857. package/src/css/primitives/text/index.ts +0 -2
  858. package/src/css/primitives/text/rules.ts +0 -164
  859. package/src/css/primitives/text/text.style.ts +0 -56
  860. package/src/css/primitives/textArea/index.ts +0 -2
  861. package/src/css/primitives/textArea/rules.ts +0 -7
  862. package/src/css/primitives/textArea/textArea.style.ts +0 -9
  863. package/src/css/primitives/textInput/index.ts +0 -2
  864. package/src/css/primitives/textInput/rules.ts +0 -224
  865. package/src/css/primitives/textInput/textInput.style.ts +0 -167
  866. package/src/css/primitives/token/rules.ts +0 -45
  867. package/src/css/primitives/token/token.style.ts +0 -49
  868. package/src/css/primitives/tooltip/index.ts +0 -1
  869. package/src/css/primitives/tooltip/rules.ts +0 -19
  870. package/src/css/primitives/tooltip/tooltip.style.ts +0 -21
  871. package/src/css/responsiveRules.ts +0 -25
  872. package/src/css/scopeClassName.ts +0 -6
  873. package/src/css/system.style.ts +0 -154
  874. package/src/css/utils/srOnly/index.ts +0 -1
  875. package/src/css/utils/srOnly/srOnly.style.ts +0 -14
  876. package/src/css/utils/srOnly/srOnly.ts +0 -5
  877. package/src/css/varNames.ts +0 -486
  878. package/src/css/vars.ts +0 -456
  879. package/src/theme/_constants.ts +0 -26
  880. package/src/theme/_types.ts +0 -41
  881. package/src/theme/build/_deprecated/color/_selectable/createSelectableTones.ts +0 -76
  882. package/src/theme/build/_deprecated/color/_solid/createSolidTones.ts +0 -54
  883. package/src/theme/build/_deprecated/color/button/createButtonModes.ts +0 -17
  884. package/src/theme/build/_deprecated/color/button/createButtonTones.ts +0 -55
  885. package/src/theme/build/_deprecated/color/card/createCardStates.ts +0 -60
  886. package/src/theme/build/_deprecated/color/color.test.ts +0 -63
  887. package/src/theme/build/_deprecated/color/defaults.ts +0 -390
  888. package/src/theme/build/_deprecated/color/factory.ts +0 -141
  889. package/src/theme/build/_deprecated/color/input/createInputModes.ts +0 -81
  890. package/src/theme/build/_deprecated/color/muted/createMuted.ts +0 -54
  891. package/src/theme/build/_deprecated/color/spot/createSpot.ts +0 -20
  892. package/src/theme/build/buildColorTheme.test.ts +0 -183
  893. package/src/theme/build/buildColorTheme.ts +0 -494
  894. package/src/theme/build/buildTheme.test.ts +0 -87
  895. package/src/theme/build/buildTheme.ts +0 -12
  896. package/src/theme/build/colorToken/colorToken.ts +0 -19
  897. package/src/theme/build/colorToken/compileColorToken.ts +0 -21
  898. package/src/theme/build/colorToken/types.ts +0 -6
  899. package/src/theme/build/lib/color-fns/blend/mix.ts +0 -21
  900. package/src/theme/build/lib/color-fns/blend/multiply.ts +0 -18
  901. package/src/theme/build/lib/color-fns/blend/screen.ts +0 -18
  902. package/src/theme/build/lib/color-fns/color-fns.test.ts +0 -68
  903. package/src/theme/build/lib/color-fns/contrastRatio.ts +0 -31
  904. package/src/theme/build/lib/color-fns/convert.ts +0 -150
  905. package/src/theme/build/lib/color-fns/parse.ts +0 -60
  906. package/src/theme/build/merge.ts +0 -26
  907. package/src/theme/build/mixThemeColor.test.ts +0 -21
  908. package/src/theme/build/mixThemeColor.ts +0 -53
  909. package/src/theme/build/renderColorTheme.ts +0 -532
  910. package/src/theme/build/renderColorValue.ts +0 -85
  911. package/src/theme/build/resolveColorTokens.ts +0 -268
  912. package/src/theme/build/theme.test.ts +0 -27
  913. package/src/theme/config/helpers.ts +0 -55
  914. package/src/theme/config/system.ts +0 -115
  915. package/src/theme/config/tokens/color/types.ts +0 -133
  916. package/src/theme/config/tokens/index.ts +0 -4
  917. package/src/theme/config/tokens/parseTokenKey.test.ts +0 -64
  918. package/src/theme/config/tokens/parseTokenKey.ts +0 -67
  919. package/src/theme/config/tokens/parseTokenValue.test.ts +0 -42
  920. package/src/theme/config/tokens/parseTokenValue.ts +0 -133
  921. package/src/theme/config/tokens/types.ts +0 -53
  922. package/src/theme/config/types.ts +0 -45
  923. package/src/theme/defaults/colorPalette.ts +0 -5
  924. package/src/theme/defaults/colorTokens.ts +0 -648
  925. package/src/theme/defaults/config.ts +0 -84
  926. package/src/theme/defaults/fonts.ts +0 -228
  927. package/src/theme/palette/constants.ts +0 -15
  928. package/src/theme/palette/types.ts +0 -16
  929. package/src/theme/v3/buildTheme_v3.test.ts +0 -40
  930. package/src/theme/v3/color/buildColor_v3.ts +0 -193
  931. package/src/theme/v3/color/parseColor.test.ts +0 -79
  932. package/src/theme/v3/color/parseColor.ts +0 -167
  933. package/src/theme/v3/color/renderColor.test.ts +0 -19
  934. package/src/theme/v3/color/renderColor.ts +0 -33
  935. package/src/theme/v3/defaults.ts +0 -205
  936. package/src/ui/StyleTags.tsx +0 -24
  937. package/src/ui/_compat/index.ts +0 -9
  938. package/src/ui/_compat/styles/_responsive.ts +0 -19
  939. package/src/ui/_compat/styles/index.ts +0 -1
  940. package/src/ui/_compat/theme/index.ts +0 -5
  941. package/src/ui/_compat/theme/theme.test.tsx +0 -73
  942. package/src/ui/_compat/theme/themeColorProvider.tsx +0 -30
  943. package/src/ui/_compat/theme/themeContext.ts +0 -10
  944. package/src/ui/_compat/theme/themeProvider.tsx +0 -74
  945. package/src/ui/_compat/theme/types.ts +0 -12
  946. package/src/ui/_compat/theme/useRootTheme.ts +0 -17
  947. package/src/ui/_compat/theme/useTheme.ts +0 -16
  948. package/src/ui/_compat/types.ts +0 -274
  949. package/src/ui/components/autocomplete/__workshop__/async.tsx +0 -157
  950. package/src/ui/components/autocomplete/__workshop__/constrainedHeight.tsx +0 -131
  951. package/src/ui/components/autocomplete/__workshop__/custom.tsx +0 -90
  952. package/src/ui/components/autocomplete/__workshop__/example.tsx +0 -80
  953. package/src/ui/components/autocomplete/__workshop__/focusAndBlur.tsx +0 -36
  954. package/src/ui/components/autocomplete/__workshop__/fullscreen.tsx +0 -293
  955. package/src/ui/components/autocomplete/__workshop__/index.ts +0 -39
  956. package/src/ui/components/autocomplete/autocomplete.tsx +0 -731
  957. package/src/ui/components/autocomplete/autocompleteOption.tsx +0 -45
  958. package/src/ui/components/autocomplete/autocompleteReducer.ts +0 -47
  959. package/src/ui/components/autocomplete/constants.ts +0 -28
  960. package/src/ui/components/autocomplete/index.ts +0 -2
  961. package/src/ui/components/autocomplete/types.ts +0 -108
  962. package/src/ui/components/breadcrumbs/__workshop__/example.tsx +0 -62
  963. package/src/ui/components/breadcrumbs/breadcrumbs.tsx +0 -127
  964. package/src/ui/components/breadcrumbs/index.ts +0 -1
  965. package/src/ui/components/dialog/__workshop__/activate.tsx +0 -134
  966. package/src/ui/components/dialog/__workshop__/autoFocus.tsx +0 -29
  967. package/src/ui/components/dialog/__workshop__/onScroll.tsx +0 -39
  968. package/src/ui/components/dialog/__workshop__/panes.tsx +0 -82
  969. package/src/ui/components/dialog/__workshop__/position.tsx +0 -30
  970. package/src/ui/components/dialog/__workshop__/props.tsx +0 -77
  971. package/src/ui/components/dialog/__workshop__/wrapped.tsx +0 -76
  972. package/src/ui/components/dialog/dialog.tsx +0 -433
  973. package/src/ui/components/dialog/dialogContext.ts +0 -20
  974. package/src/ui/components/dialog/dialogProvider.tsx +0 -35
  975. package/src/ui/components/dialog/index.ts +0 -4
  976. package/src/ui/components/dialog/useDialog.ts +0 -11
  977. package/src/ui/components/hotkeys/hotkeys.tsx +0 -54
  978. package/src/ui/components/hotkeys/index.ts +0 -1
  979. package/src/ui/components/index.ts +0 -9
  980. package/src/ui/components/menu/__workshop__/asComponent.tsx +0 -45
  981. package/src/ui/components/menu/__workshop__/avatarMenu.tsx +0 -51
  982. package/src/ui/components/menu/__workshop__/closableMenuButton.tsx +0 -46
  983. package/src/ui/components/menu/__workshop__/constrainedInBoundary.tsx +0 -134
  984. package/src/ui/components/menu/__workshop__/customMenuItem.tsx +0 -45
  985. package/src/ui/components/menu/__workshop__/customSelectedState.tsx +0 -39
  986. package/src/ui/components/menu/__workshop__/disableFocusOnClose.tsx +0 -40
  987. package/src/ui/components/menu/__workshop__/groups.tsx +0 -156
  988. package/src/ui/components/menu/__workshop__/menuButton.tsx +0 -80
  989. package/src/ui/components/menu/__workshop__/menuGroupRight.tsx +0 -65
  990. package/src/ui/components/menu/__workshop__/nestedMenu.tsx +0 -22
  991. package/src/ui/components/menu/__workshop__/onCloseMenuButton.tsx +0 -41
  992. package/src/ui/components/menu/__workshop__/selectedItem.tsx +0 -69
  993. package/src/ui/components/menu/__workshop__/shouldFocus.tsx +0 -47
  994. package/src/ui/components/menu/__workshop__/tones.tsx +0 -25
  995. package/src/ui/components/menu/__workshop__/withoutArrow.tsx +0 -32
  996. package/src/ui/components/menu/helpers.ts +0 -82
  997. package/src/ui/components/menu/index.ts +0 -5
  998. package/src/ui/components/menu/menu.test.tsx +0 -128
  999. package/src/ui/components/menu/menu.tsx +0 -200
  1000. package/src/ui/components/menu/menuButton.tsx +0 -275
  1001. package/src/ui/components/menu/menuContext.ts +0 -31
  1002. package/src/ui/components/menu/menuDivider.tsx +0 -22
  1003. package/src/ui/components/menu/menuGroup.tsx +0 -228
  1004. package/src/ui/components/menu/menuItem.tsx +0 -180
  1005. package/src/ui/components/menu/useMenu.ts +0 -21
  1006. package/src/ui/components/menu/useMenuController.ts +0 -241
  1007. package/src/ui/components/skeleton/__workshop__/delay.tsx +0 -70
  1008. package/src/ui/components/skeleton/__workshop__/index.ts +0 -11
  1009. package/src/ui/components/skeleton/__workshop__/skeleton.tsx +0 -64
  1010. package/src/ui/components/skeleton/index.ts +0 -2
  1011. package/src/ui/components/skeleton/skeleton.tsx +0 -53
  1012. package/src/ui/components/skeleton/textSkeleton.tsx +0 -132
  1013. package/src/ui/components/tab/__workshop__/example.tsx +0 -79
  1014. package/src/ui/components/tab/index.ts +0 -3
  1015. package/src/ui/components/tab/tab.tsx +0 -105
  1016. package/src/ui/components/tab/tabList.tsx +0 -74
  1017. package/src/ui/components/tab/tabPanel.tsx +0 -40
  1018. package/src/ui/components/toast/__workshop__/hook.tsx +0 -71
  1019. package/src/ui/components/toast/__workshop__/toast.tsx +0 -26
  1020. package/src/ui/components/toast/index.ts +0 -4
  1021. package/src/ui/components/toast/toast.test.tsx +0 -101
  1022. package/src/ui/components/toast/toast.tsx +0 -211
  1023. package/src/ui/components/toast/toastContext.ts +0 -7
  1024. package/src/ui/components/toast/toastLayer.tsx +0 -38
  1025. package/src/ui/components/toast/toastProvider.tsx +0 -113
  1026. package/src/ui/components/toast/types.ts +0 -28
  1027. package/src/ui/components/toast/useToast.ts +0 -25
  1028. package/src/ui/components/tree/__workshop__/basic.perf.ts +0 -19
  1029. package/src/ui/components/tree/__workshop__/basic.tsx +0 -105
  1030. package/src/ui/components/tree/__workshop__/tabFromElement.tsx +0 -84
  1031. package/src/ui/components/tree/helpers.ts +0 -105
  1032. package/src/ui/components/tree/index.ts +0 -4
  1033. package/src/ui/components/tree/tree.tsx +0 -244
  1034. package/src/ui/components/tree/treeContext.ts +0 -10
  1035. package/src/ui/components/tree/treeGroup.tsx +0 -30
  1036. package/src/ui/components/tree/treeItem.tsx +0 -220
  1037. package/src/ui/components/tree/types.ts +0 -25
  1038. package/src/ui/components/tree/useTree.ts +0 -17
  1039. package/src/ui/constants.ts +0 -79
  1040. package/src/ui/global.ts +0 -6
  1041. package/src/ui/helpers/focus.ts +0 -100
  1042. package/src/ui/helpers/index.ts +0 -5
  1043. package/src/ui/helpers/props.ts +0 -10
  1044. package/src/ui/hooks/index.ts +0 -12
  1045. package/src/ui/hooks/useArrayProp.ts +0 -29
  1046. package/src/ui/hooks/useClickOutside.test.tsx +0 -482
  1047. package/src/ui/hooks/useClickOutside.ts +0 -117
  1048. package/src/ui/hooks/useClickOutsideEvent.test.tsx +0 -115
  1049. package/src/ui/hooks/useClickOutsideEvent.ts +0 -73
  1050. package/src/ui/hooks/useDelayed.test.ts +0 -68
  1051. package/src/ui/hooks/useDelayedState.ts +0 -28
  1052. package/src/ui/hooks/useElementRect/__workshop__/example.tsx +0 -32
  1053. package/src/ui/hooks/useElementRect/index.ts +0 -1
  1054. package/src/ui/hooks/useElementSize.ts +0 -19
  1055. package/src/ui/hooks/useForwardedRef.ts +0 -19
  1056. package/src/ui/hooks/useMediaIndex/__workshop__/test.tsx +0 -14
  1057. package/src/ui/hooks/useMediaIndex/index.ts +0 -1
  1058. package/src/ui/hooks/useMediaIndex/useMediaIndex.test.tsx +0 -36
  1059. package/src/ui/hooks/useMediaIndex/useMediaIndex.ts +0 -104
  1060. package/src/ui/hooks/usePrefersDark.hydration.test.tsx +0 -56
  1061. package/src/ui/hooks/usePrefersDark.test.tsx +0 -19
  1062. package/src/ui/hooks/usePrefersReducedMotion.hydration.test.tsx +0 -56
  1063. package/src/ui/hooks/usePrefersReducedMotion.test.tsx +0 -19
  1064. package/src/ui/index.ts +0 -9
  1065. package/src/ui/lib/createGlobalScopedContext.ts +0 -34
  1066. package/src/ui/lib/globalScope.ts +0 -19
  1067. package/src/ui/middleware/origin.ts +0 -47
  1068. package/src/ui/observers/elementSizeObserver.ts +0 -116
  1069. package/src/ui/observers/index.ts +0 -2
  1070. package/src/ui/primitives/_selectable/index.ts +0 -1
  1071. package/src/ui/primitives/_selectable/selectable.tsx +0 -31
  1072. package/src/ui/primitives/avatar/__workshop__/asButton.tsx +0 -14
  1073. package/src/ui/primitives/avatar/__workshop__/stack.tsx +0 -25
  1074. package/src/ui/primitives/avatar/__workshop__/withinButton.tsx +0 -63
  1075. package/src/ui/primitives/avatar/__workshop__/withinMenuItem.tsx +0 -72
  1076. package/src/ui/primitives/avatar/avatar.tsx +0 -158
  1077. package/src/ui/primitives/avatar/avatarCounter.tsx +0 -62
  1078. package/src/ui/primitives/avatar/avatarStack.tsx +0 -82
  1079. package/src/ui/primitives/avatar/index.ts +0 -4
  1080. package/src/ui/primitives/avatar/types.ts +0 -17
  1081. package/src/ui/primitives/badge/__workshop__/props.tsx +0 -30
  1082. package/src/ui/primitives/badge/__workshop__/tones.tsx +0 -21
  1083. package/src/ui/primitives/badge/badge.test.tsx +0 -16
  1084. package/src/ui/primitives/badge/badge.tsx +0 -64
  1085. package/src/ui/primitives/badge/index.ts +0 -1
  1086. package/src/ui/primitives/badge/types.ts +0 -8
  1087. package/src/ui/primitives/box/__workshop__/props.tsx +0 -20
  1088. package/src/ui/primitives/box/__workshop__/responsive.tsx +0 -20
  1089. package/src/ui/primitives/box/box.tsx +0 -155
  1090. package/src/ui/primitives/box/index.ts +0 -1
  1091. package/src/ui/primitives/button/__workshop__/custom.tsx +0 -50
  1092. package/src/ui/primitives/button/__workshop__/customIcons.tsx +0 -30
  1093. package/src/ui/primitives/button/__workshop__/disabled.tsx +0 -74
  1094. package/src/ui/primitives/button/__workshop__/index.ts +0 -59
  1095. package/src/ui/primitives/button/__workshop__/props.tsx +0 -58
  1096. package/src/ui/primitives/button/__workshop__/sanityUploadButton.tsx +0 -36
  1097. package/src/ui/primitives/button/__workshop__/stacked.tsx +0 -59
  1098. package/src/ui/primitives/button/__workshop__/uploadButton.tsx +0 -28
  1099. package/src/ui/primitives/button/button.test.tsx +0 -44
  1100. package/src/ui/primitives/button/button.tsx +0 -206
  1101. package/src/ui/primitives/button/index.ts +0 -1
  1102. package/src/ui/primitives/card/__workshop__/allTones.tsx +0 -27
  1103. package/src/ui/primitives/card/__workshop__/asButton.tsx +0 -107
  1104. package/src/ui/primitives/card/__workshop__/asComponent.tsx +0 -27
  1105. package/src/ui/primitives/card/__workshop__/checkered.tsx +0 -26
  1106. package/src/ui/primitives/card/__workshop__/index.ts +0 -18
  1107. package/src/ui/primitives/card/__workshop__/interactive.tsx +0 -30
  1108. package/src/ui/primitives/card/__workshop__/listNavigation.tsx +0 -80
  1109. package/src/ui/primitives/card/__workshop__/props.tsx +0 -55
  1110. package/src/ui/primitives/card/__workshop__/selected.tsx +0 -93
  1111. package/src/ui/primitives/card/card.tsx +0 -119
  1112. package/src/ui/primitives/card/cardContext.ts +0 -10
  1113. package/src/ui/primitives/card/cardProvider.tsx +0 -19
  1114. package/src/ui/primitives/card/index.ts +0 -4
  1115. package/src/ui/primitives/card/types.ts +0 -27
  1116. package/src/ui/primitives/card/useCard.ts +0 -7
  1117. package/src/ui/primitives/checkbox/__workshop__/props.tsx +0 -33
  1118. package/src/ui/primitives/checkbox/__workshop__/tones.tsx +0 -28
  1119. package/src/ui/primitives/checkbox/checkbox.tsx +0 -74
  1120. package/src/ui/primitives/checkbox/index.ts +0 -1
  1121. package/src/ui/primitives/code/__workshop__/opticalAlignment.tsx +0 -48
  1122. package/src/ui/primitives/code/__workshop__/props.tsx +0 -21
  1123. package/src/ui/primitives/code/code.tsx +0 -49
  1124. package/src/ui/primitives/code/index.ts +0 -1
  1125. package/src/ui/primitives/code/refractor.tsx +0 -20
  1126. package/src/ui/primitives/container/__workshop__/example.tsx +0 -20
  1127. package/src/ui/primitives/container/container.tsx +0 -35
  1128. package/src/ui/primitives/container/index.ts +0 -2
  1129. package/src/ui/primitives/flex/__workshop__/example.tsx +0 -34
  1130. package/src/ui/primitives/flex/flex.tsx +0 -29
  1131. package/src/ui/primitives/flex/index.ts +0 -1
  1132. package/src/ui/primitives/grid/grid.tsx +0 -30
  1133. package/src/ui/primitives/grid/index.ts +0 -1
  1134. package/src/ui/primitives/heading/__workshop__/opticalAlignment.tsx +0 -54
  1135. package/src/ui/primitives/heading/__workshop__/plain.tsx +0 -32
  1136. package/src/ui/primitives/heading/heading.tsx +0 -62
  1137. package/src/ui/primitives/heading/index.ts +0 -1
  1138. package/src/ui/primitives/index.ts +0 -27
  1139. package/src/ui/primitives/inline/__workshop__/plain.tsx +0 -27
  1140. package/src/ui/primitives/inline/index.ts +0 -1
  1141. package/src/ui/primitives/inline/inline.tsx +0 -50
  1142. package/src/ui/primitives/inline/types.ts +0 -6
  1143. package/src/ui/primitives/kbd/index.ts +0 -1
  1144. package/src/ui/primitives/kbd/kbd.tsx +0 -55
  1145. package/src/ui/primitives/label/__workshop__/plain.tsx +0 -37
  1146. package/src/ui/primitives/label/index.ts +0 -1
  1147. package/src/ui/primitives/label/label.tsx +0 -67
  1148. package/src/ui/primitives/popover/__workshop__/AlignedStory.tsx +0 -77
  1149. package/src/ui/primitives/popover/__workshop__/MatchReferenceWidthStory.tsx +0 -32
  1150. package/src/ui/primitives/popover/__workshop__/PlainStory.tsx +0 -71
  1151. package/src/ui/primitives/popover/__workshop__/RecursiveStory.tsx +0 -70
  1152. package/src/ui/primitives/popover/__workshop__/SidePanelStory.tsx +0 -93
  1153. package/src/ui/primitives/popover/__workshop__/TestStory.tsx +0 -98
  1154. package/src/ui/primitives/popover/constants.ts +0 -22
  1155. package/src/ui/primitives/popover/floating-ui/size.ts +0 -83
  1156. package/src/ui/primitives/popover/helpers.ts +0 -32
  1157. package/src/ui/primitives/popover/index.ts +0 -2
  1158. package/src/ui/primitives/popover/popover.tsx +0 -492
  1159. package/src/ui/primitives/popover/popoverCard.tsx +0 -155
  1160. package/src/ui/primitives/popover/types.ts +0 -6
  1161. package/src/ui/primitives/radio/__workshop__/example.tsx +0 -63
  1162. package/src/ui/primitives/radio/__workshop__/plain.tsx +0 -28
  1163. package/src/ui/primitives/radio/index.ts +0 -1
  1164. package/src/ui/primitives/radio/radio.tsx +0 -49
  1165. package/src/ui/primitives/select/__workshop__/plain.tsx +0 -30
  1166. package/src/ui/primitives/select/__workshop__/readOnly.tsx +0 -23
  1167. package/src/ui/primitives/select/index.ts +0 -1
  1168. package/src/ui/primitives/select/select.tsx +0 -85
  1169. package/src/ui/primitives/spinner/__workshop__/Props.tsx +0 -16
  1170. package/src/ui/primitives/spinner/animatedSpinnerIcon.tsx +0 -16
  1171. package/src/ui/primitives/spinner/index.ts +0 -1
  1172. package/src/ui/primitives/spinner/spinner.tsx +0 -33
  1173. package/src/ui/primitives/stack/__workshop__/plain.tsx +0 -32
  1174. package/src/ui/primitives/stack/index.ts +0 -1
  1175. package/src/ui/primitives/stack/stack.tsx +0 -40
  1176. package/src/ui/primitives/switch/index.ts +0 -1
  1177. package/src/ui/primitives/switch/switch.tsx +0 -75
  1178. package/src/ui/primitives/text/__workshop__/colored.tsx +0 -23
  1179. package/src/ui/primitives/text/__workshop__/example.tsx +0 -39
  1180. package/src/ui/primitives/text/__workshop__/opticalAlignment.tsx +0 -48
  1181. package/src/ui/primitives/text/index.ts +0 -1
  1182. package/src/ui/primitives/text/text.tsx +0 -64
  1183. package/src/ui/primitives/textArea/__workshop__/plain.tsx +0 -50
  1184. package/src/ui/primitives/textArea/index.ts +0 -1
  1185. package/src/ui/primitives/textArea/textArea.tsx +0 -71
  1186. package/src/ui/primitives/textInput/__workshop__/customValidity.tsx +0 -17
  1187. package/src/ui/primitives/textInput/__workshop__/plain.tsx +0 -104
  1188. package/src/ui/primitives/textInput/__workshop__/states.tsx +0 -53
  1189. package/src/ui/primitives/textInput/__workshop__/tones.tsx +0 -277
  1190. package/src/ui/primitives/textInput/__workshop__/typed.tsx +0 -23
  1191. package/src/ui/primitives/textInput/index.ts +0 -1
  1192. package/src/ui/primitives/textInput/textInput.tsx +0 -286
  1193. package/src/ui/primitives/tooltip/__workshop__/customPortal.tsx +0 -102
  1194. package/src/ui/primitives/tooltip/__workshop__/overflowingBoundary.tsx +0 -74
  1195. package/src/ui/primitives/tooltip/__workshop__/props.tsx +0 -111
  1196. package/src/ui/primitives/tooltip/__workshop__/resizableBoundary.tsx +0 -86
  1197. package/src/ui/primitives/tooltip/constants.ts +0 -23
  1198. package/src/ui/primitives/tooltip/index.ts +0 -2
  1199. package/src/ui/primitives/tooltip/tooltip.test.tsx +0 -453
  1200. package/src/ui/primitives/tooltip/tooltip.tsx +0 -467
  1201. package/src/ui/primitives/tooltip/tooltipCard.tsx +0 -115
  1202. package/src/ui/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupContext.tsx +0 -11
  1203. package/src/ui/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx +0 -55
  1204. package/src/ui/primitives/tooltip/tooltipDelayGroup/useTooltipDelayGroup.ts +0 -13
  1205. package/src/ui/primitives/types.ts +0 -166
  1206. package/src/ui/types/avatar.ts +0 -19
  1207. package/src/ui/types/badge.ts +0 -12
  1208. package/src/ui/types/button.ts +0 -24
  1209. package/src/ui/types/card.ts +0 -6
  1210. package/src/ui/types/dialog.ts +0 -4
  1211. package/src/ui/types/flex.ts +0 -27
  1212. package/src/ui/types/index.ts +0 -15
  1213. package/src/ui/types/popover.ts +0 -4
  1214. package/src/ui/types/props.ts +0 -18
  1215. package/src/ui/types/radius.ts +0 -7
  1216. package/src/ui/types/selectable.ts +0 -7
  1217. package/src/ui/utils/arrow/arrow.tsx +0 -59
  1218. package/src/ui/utils/arrow/index.ts +0 -1
  1219. package/src/ui/utils/boundaryElement/boundaryElement.test.tsx +0 -100
  1220. package/src/ui/utils/boundaryElement/boundaryElementContext.ts +0 -7
  1221. package/src/ui/utils/boundaryElement/boundaryElementProvider.tsx +0 -24
  1222. package/src/ui/utils/boundaryElement/index.ts +0 -3
  1223. package/src/ui/utils/boundaryElement/types.ts +0 -7
  1224. package/src/ui/utils/boundaryElement/useBoundaryElement.ts +0 -26
  1225. package/src/ui/utils/conditionalWrapper/conditionalWrapper.tsx +0 -23
  1226. package/src/ui/utils/conditionalWrapper/index.ts +0 -1
  1227. package/src/ui/utils/elementQuery/__workshop__/customMedia.tsx +0 -30
  1228. package/src/ui/utils/elementQuery/elementQuery.tsx +0 -53
  1229. package/src/ui/utils/elementQuery/index.ts +0 -1
  1230. package/src/ui/utils/errorBoundary.tsx +0 -48
  1231. package/src/ui/utils/getElementRef.ts +0 -26
  1232. package/src/ui/utils/index.ts +0 -9
  1233. package/src/ui/utils/layer/__workshop__/index.ts +0 -24
  1234. package/src/ui/utils/layer/__workshop__/multipleRoots.tsx +0 -49
  1235. package/src/ui/utils/layer/__workshop__/nested.tsx +0 -98
  1236. package/src/ui/utils/layer/__workshop__/responsiveZOffset.tsx +0 -13
  1237. package/src/ui/utils/layer/getLayerContext.test.ts +0 -30
  1238. package/src/ui/utils/layer/getLayerContext.ts +0 -21
  1239. package/src/ui/utils/layer/index.ts +0 -4
  1240. package/src/ui/utils/layer/layer.test.tsx +0 -108
  1241. package/src/ui/utils/layer/layer.tsx +0 -112
  1242. package/src/ui/utils/layer/layerContext.ts +0 -7
  1243. package/src/ui/utils/layer/layerProvider.tsx +0 -110
  1244. package/src/ui/utils/layer/useLayer.ts +0 -26
  1245. package/src/ui/utils/portal/__workshop__/named.tsx +0 -63
  1246. package/src/ui/utils/portal/index.ts +0 -4
  1247. package/src/ui/utils/portal/portal.test.tsx +0 -103
  1248. package/src/ui/utils/portal/portal.ts +0 -46
  1249. package/src/ui/utils/portal/portalContext.ts +0 -31
  1250. package/src/ui/utils/portal/portalProvider.tsx +0 -79
  1251. package/src/ui/utils/portal/types.ts +0 -9
  1252. package/src/ui/utils/portal/usePortal.ts +0 -25
  1253. package/src/ui/utils/srOnly/index.ts +0 -1
  1254. package/src/ui/utils/srOnly/srOnly.tsx +0 -35
  1255. package/src/ui/utils/virtualList/__workshop__/index.ts +0 -29
  1256. package/src/ui/utils/virtualList/__workshop__/infiniteList.tsx +0 -48
  1257. package/src/ui/utils/virtualList/index.ts +0 -1
  1258. package/src/ui/utils/virtualList/virtualList.tsx +0 -189
  1259. /package/src/{ui/components/autocomplete/__mocks__ → core/components/autocomplete/__workshop__/mock}/apiStore.ts +0 -0
  1260. /package/src/{ui/components/autocomplete/__mocks__ → core/components/autocomplete/__workshop__/mock}/countries.ts +0 -0
  1261. /package/src/{ui → core}/components/autocomplete/__workshop__/types.ts +0 -0
  1262. /package/src/{ui → core}/components/breadcrumbs/__workshop__/index.ts +0 -0
  1263. /package/src/{ui → core}/components/dialog/__workshop__/index.ts +0 -0
  1264. /package/src/{ui → core}/components/dialog/__workshop__/layering.tsx +0 -0
  1265. /package/src/{ui → core}/components/dialog/__workshop__/nested.tsx +0 -0
  1266. /package/src/{ui → core}/components/dialog/__workshop__/provider.tsx +0 -0
  1267. /package/src/{ui → core}/components/hotkeys/__workshop__/index.ts +0 -0
  1268. /package/src/{ui → core}/components/hotkeys/__workshop__/plain.tsx +0 -0
  1269. /package/src/{ui → core}/components/menu/__workshop__/index.ts +0 -0
  1270. /package/src/{ui → core}/components/tab/__workshop__/index.ts +0 -0
  1271. /package/src/{ui → core}/components/toast/__workshop__/index.ts +0 -0
  1272. /package/src/{ui → core}/components/toast/toastState.ts +0 -0
  1273. /package/src/{ui → core}/components/tree/__workshop__/index.ts +0 -0
  1274. /package/src/{ui/utils → core/components}/virtualList/__workshop__/changingProps.tsx +0 -0
  1275. /package/src/{ui/utils → core/components}/virtualList/__workshop__/elementScroll.tsx +0 -0
  1276. /package/src/{ui/utils → core/components}/virtualList/__workshop__/windowScrolll.tsx +0 -0
  1277. /package/src/{ui → core}/helpers/animation.ts +0 -0
  1278. /package/src/{ui → core}/helpers/element.ts +0 -0
  1279. /package/src/{ui → core}/helpers/scroll.ts +0 -0
  1280. /package/src/{ui → core}/hooks/useCustomValidity.ts +0 -0
  1281. /package/src/{ui → core}/hooks/useElementRect/__workshop__/index.ts +0 -0
  1282. /package/src/{ui → core}/hooks/useElementRect/useElementRect.ts +0 -0
  1283. /package/src/{ui → core}/hooks/useGlobalKeyDown.ts +0 -0
  1284. /package/src/{ui → core}/hooks/useIsomorphicEffect.ts +0 -0
  1285. /package/src/{ui → core}/hooks/useMatchMedia.ts +0 -0
  1286. /package/src/{ui → core}/hooks/useMediaIndex/__workshop__/index.ts +0 -0
  1287. /package/src/{ui → core}/hooks/useMounted.ts +0 -0
  1288. /package/src/{ui → core}/hooks/usePrefersDark.ts +0 -0
  1289. /package/src/{ui → core}/hooks/usePrefersReducedMotion.ts +0 -0
  1290. /package/src/{theme/build → core}/lib/isRecord.ts +0 -0
  1291. /package/src/{ui/observers/resizeObserver.ts → core/observers/resize.ts} +0 -0
  1292. /package/src/{ui/utils → core/primitives}/arrow/cmds.ts +0 -0
  1293. /package/src/{ui → core}/primitives/avatar/__workshop__/index.ts +0 -0
  1294. /package/src/{ui → core}/primitives/badge/__workshop__/index.ts +0 -0
  1295. /package/src/{ui → core}/primitives/box/__workshop__/index.ts +0 -0
  1296. /package/src/{ui/types/box.ts → core/primitives/box/types.ts} +0 -0
  1297. /package/src/{ui → core}/primitives/button/__workshop__/mixedChildren.tsx +0 -0
  1298. /package/src/{ui → core}/primitives/button/__workshop__/styled1.tsx +0 -0
  1299. /package/src/{ui → core}/primitives/button/__workshop__/styled2.tsx +0 -0
  1300. /package/src/{ui → core}/primitives/card/__workshop__/styled.tsx +0 -0
  1301. /package/src/{ui → core}/primitives/checkbox/__workshop__/example.tsx +0 -0
  1302. /package/src/{ui → core}/primitives/checkbox/__workshop__/index.ts +0 -0
  1303. /package/src/{ui → core}/primitives/checkbox/__workshop__/readOnly.tsx +0 -0
  1304. /package/src/{ui → core}/primitives/code/__workshop__/index.ts +0 -0
  1305. /package/src/{ui → core}/primitives/container/__workshop__/index.ts +0 -0
  1306. /package/src/{ui → core}/primitives/container/types.ts +0 -0
  1307. /package/src/{ui → core}/primitives/flex/__workshop__/gap.tsx +0 -0
  1308. /package/src/{ui → core}/primitives/flex/__workshop__/index.ts +0 -0
  1309. /package/src/{ui → core}/primitives/grid/__workshop__/index.ts +0 -0
  1310. /package/src/{ui → core}/primitives/grid/__workshop__/responsive.tsx +0 -0
  1311. /package/src/{ui/types/grid.ts → core/primitives/grid/types.ts} +0 -0
  1312. /package/src/{ui → core}/primitives/heading/__workshop__/index.ts +0 -0
  1313. /package/src/{ui → core}/primitives/inline/__workshop__/index.ts +0 -0
  1314. /package/src/{ui → core}/primitives/kbd/__workshop__/index.ts +0 -0
  1315. /package/src/{ui → core}/primitives/kbd/__workshop__/plain.tsx +0 -0
  1316. /package/src/{ui → core}/primitives/label/__workshop__/index.ts +0 -0
  1317. /package/src/{ui → core}/primitives/label/__workshop__/opticalAlignment.tsx +0 -0
  1318. /package/src/{ui/utils → core/primitives}/layer/__workshop__/_debug.tsx +0 -0
  1319. /package/src/{ui/utils → core/primitives}/layer/types.ts +0 -0
  1320. /package/src/{ui → core}/primitives/popover/__workshop__/MarginsStory.tsx +0 -0
  1321. /package/src/{ui → core}/primitives/popover/__workshop__/OpenOnMountStory.tsx +0 -0
  1322. /package/src/{ui → core}/primitives/popover/__workshop__/index.ts +0 -0
  1323. /package/src/{ui → core}/primitives/radio/__workshop__/index.ts +0 -0
  1324. /package/src/{ui → core}/primitives/select/__workshop__/index.ts +0 -0
  1325. /package/src/{ui → core}/primitives/spinner/__workshop__/index.ts +0 -0
  1326. /package/src/{ui → core}/primitives/stack/__workshop__/index.ts +0 -0
  1327. /package/src/{ui → core}/primitives/switch/__workshop__/example.tsx +0 -0
  1328. /package/src/{ui → core}/primitives/switch/__workshop__/index.ts +0 -0
  1329. /package/src/{ui → core}/primitives/switch/__workshop__/props.tsx +0 -0
  1330. /package/src/{ui → core}/primitives/text/__workshop__/index.ts +0 -0
  1331. /package/src/{ui → core}/primitives/textArea/__workshop__/index.ts +0 -0
  1332. /package/src/{ui → core}/primitives/textInput/__workshop__/clearButton.tsx +0 -0
  1333. /package/src/{ui → core}/primitives/textInput/__workshop__/index.ts +0 -0
  1334. /package/src/{ui → core}/primitives/textInput/__workshop__/readOnly.tsx +0 -0
  1335. /package/src/{ui → core}/primitives/tooltip/__workshop__/index.ts +0 -0
  1336. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/index.ts +0 -0
  1337. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/types.ts +0 -0
  1338. /package/src/{ui → core}/types/gridItem.ts +0 -0
  1339. /package/src/{ui → core}/types/placement.ts +0 -0
  1340. /package/src/{ui/types/text.ts → core/types/textAlign.ts} +0 -0
  1341. /package/src/{ui → core}/utils/boundaryElement/__workshop__/index.ts +0 -0
  1342. /package/src/{ui → core}/utils/boundaryElement/__workshop__/plain.tsx +0 -0
  1343. /package/src/{ui → core}/utils/elementQuery/__workshop__/index.ts +0 -0
  1344. /package/src/{ui → core}/utils/elementQuery/helpers.ts +0 -0
  1345. /package/src/{ui → core}/utils/portal/__workshop__/index.ts +0 -0
  1346. /package/src/{ui → core}/utils/spanWithTextOverflow.tsx +0 -0
  1347. /package/src/css/{aspects → props}/pointerEvents/types.ts +0 -0
  1348. /package/src/theme/{build → v2/build}/_deprecated/color/index.ts +0 -0
  1349. /package/src/theme/{build → v2/build}/colorToken/index.ts +0 -0
  1350. /package/src/theme/{build → v2/build}/index.ts +0 -0
  1351. /package/src/theme/{build → v2/build}/lib/color-fns/blend/index.ts +0 -0
  1352. /package/src/theme/{build → v2/build}/lib/color-fns/index.ts +0 -0
  1353. /package/src/theme/{build → v2/build}/lib/color-fns/rgba.ts +0 -0
  1354. /package/src/theme/{build → v2/build}/lib/color-fns/types.ts +0 -0
  1355. /package/src/{ui → theme/v2/build}/lib/isRecord.ts +0 -0
  1356. /package/src/theme/{build → v2/build}/lib/utils.ts +0 -0
  1357. /package/src/theme/{config → v2/config}/index.ts +0 -0
  1358. /package/src/theme/{config → v2/config}/tokens/color/index.ts +0 -0
  1359. /package/src/theme/{palette → v3/palette}/index.ts +0 -0
@@ -0,0 +1,1903 @@
1
+ import {ColorHueKey} from '@sanity/color'
2
+ import type {ColorHues} from '@sanity/color'
3
+ import type {ColorTint} from '@sanity/color'
4
+ import {ColorTintKey} from '@sanity/color'
5
+ import type {Hue as Hue_2} from '@sanity/ui/theme'
6
+ import type {StyledObject} from 'styled-components'
7
+
8
+ /** @public */
9
+ export declare const AVATAR_COLORS: readonly [
10
+ 'gray',
11
+ 'blue',
12
+ 'purple',
13
+ 'magenta',
14
+ 'red',
15
+ 'orange',
16
+ 'yellow',
17
+ 'green',
18
+ 'cyan',
19
+ ]
20
+
21
+ /** @public */
22
+ export declare const AVATAR_SIZE: readonly [0, 1, 2, 3]
23
+
24
+ /** @public */
25
+ export declare type AvatarColor = (typeof AVATAR_COLORS)[number]
26
+
27
+ /** @public */
28
+ export declare type AvatarSize = (typeof AVATAR_SIZE)[number]
29
+
30
+ /** @public */
31
+ export declare type BaseTheme = RootTheme
32
+
33
+ /** @internal */
34
+ export declare function buildTheme(config?: ThemeConfig): RootTheme
35
+
36
+ /** @public */
37
+ export declare function buildTheme_v3(options?: ThemeOptions): Theme_v3
38
+
39
+ /** @public */
40
+ export declare interface CardColorTokens {
41
+ _hue: Hue
42
+ avatar: Record<
43
+ Hue,
44
+ {
45
+ _hue: Hue
46
+ bg: ColorValue
47
+ fg: ColorValue
48
+ }
49
+ >
50
+ backdrop: ColorValue
51
+ code: {
52
+ bg: ColorValue
53
+ fg: ColorValue
54
+ token: {
55
+ atrule: ColorValue
56
+ attrName: ColorValue
57
+ attrValue: ColorValue
58
+ attribute: ColorValue
59
+ boolean: ColorValue
60
+ builtin: ColorValue
61
+ cdata: ColorValue
62
+ char: ColorValue
63
+ class: ColorValue
64
+ className: ColorValue
65
+ comment: ColorValue
66
+ constant: ColorValue
67
+ deleted: ColorValue
68
+ doctype: ColorValue
69
+ entity: ColorValue
70
+ function: ColorValue
71
+ hexcode: ColorValue
72
+ id: ColorValue
73
+ important: ColorValue
74
+ inserted: ColorValue
75
+ keyword: ColorValue
76
+ number: ColorValue
77
+ operator: ColorValue
78
+ prolog: ColorValue
79
+ property: ColorValue
80
+ pseudoClass: ColorValue
81
+ pseudoElement: ColorValue
82
+ punctuation: ColorValue
83
+ regex: ColorValue
84
+ selector: ColorValue
85
+ string: ColorValue
86
+ symbol: ColorValue
87
+ tag: ColorValue
88
+ unit: ColorValue
89
+ url: ColorValue
90
+ variable: ColorValue
91
+ }
92
+ }
93
+ focusRing: ColorValue
94
+ link: {
95
+ fg: ColorValue
96
+ }
97
+ shadow: {
98
+ outline: ColorValue
99
+ umbra: ColorValue
100
+ penumbra: ColorValue
101
+ ambient: ColorValue
102
+ }
103
+ skeleton: {
104
+ from: ColorValue
105
+ to: ColorValue
106
+ }
107
+ variant: {
108
+ solid: Record<'*' | ThemeColorStateToneKey, ElementColorTokens>
109
+ tinted: Record<'*' | ThemeColorStateToneKey, ElementColorTokens>
110
+ }
111
+ }
112
+
113
+ /** @public */
114
+ export declare const COLOR_CONFIG_AVATAR_COLORS: readonly ['*', ...ColorHueKey[]]
115
+
116
+ /** @public */
117
+ export declare const COLOR_CONFIG_BLEND_KEYS: readonly ['_blend']
118
+
119
+ /** @public */
120
+ export declare const COLOR_CONFIG_CARD_KEYS: readonly [
121
+ '_hue',
122
+ 'bg',
123
+ 'fg',
124
+ 'border',
125
+ 'focusRing',
126
+ 'muted/fg',
127
+ 'accent/fg',
128
+ 'link/fg',
129
+ 'code/bg',
130
+ 'code/fg',
131
+ 'skeleton/from',
132
+ 'skeleton/to',
133
+ 'status/dot',
134
+ 'status/icon',
135
+ '_hue',
136
+ 'bg',
137
+ 'fg',
138
+ 'border',
139
+ 'focusRing',
140
+ 'shadow/outline',
141
+ 'shadow/umbra',
142
+ 'shadow/penumbra',
143
+ 'shadow/ambient',
144
+ ]
145
+
146
+ /** @public */
147
+ export declare const COLOR_CONFIG_CARD_TONES: readonly [
148
+ '*',
149
+ 'transparent',
150
+ 'default',
151
+ 'neutral',
152
+ 'primary',
153
+ 'suggest',
154
+ 'positive',
155
+ 'caution',
156
+ 'critical',
157
+ ]
158
+
159
+ /** @public */
160
+ export declare const COLOR_CONFIG_INPUT_MODES: readonly ['*', 'default', 'invalid']
161
+
162
+ /** @public */
163
+ export declare const COLOR_CONFIG_INPUT_STATES: readonly [
164
+ '*',
165
+ 'enabled',
166
+ 'hovered',
167
+ 'readOnly',
168
+ 'disabled',
169
+ ]
170
+
171
+ /** @public */
172
+ export declare const COLOR_CONFIG_STATE_KEYS: readonly [
173
+ '_hue',
174
+ 'bg',
175
+ 'fg',
176
+ 'border',
177
+ 'focusRing',
178
+ 'muted/fg',
179
+ 'accent/fg',
180
+ 'link/fg',
181
+ 'code/bg',
182
+ 'code/fg',
183
+ 'skeleton/from',
184
+ 'skeleton/to',
185
+ 'status/dot',
186
+ 'status/icon',
187
+ ]
188
+
189
+ /** @public */
190
+ export declare const COLOR_CONFIG_STATE_TONES: readonly [
191
+ '*',
192
+ 'default',
193
+ 'neutral',
194
+ 'primary',
195
+ 'suggest',
196
+ 'positive',
197
+ 'caution',
198
+ 'critical',
199
+ ]
200
+
201
+ /** @public */
202
+ export declare const COLOR_CONFIG_STATES: readonly [
203
+ '*',
204
+ 'enabled',
205
+ 'hovered',
206
+ 'pressed',
207
+ 'selected',
208
+ 'disabled',
209
+ ]
210
+
211
+ /** @public */
212
+ export declare const COLOR_VARIANTS: readonly ['tinted', 'solid']
213
+
214
+ /** @public */
215
+ export declare type ColorBlendModeTokenValue = [ThemeColorBlendModeKey, ThemeColorBlendModeKey]
216
+
217
+ /** @public */
218
+ export declare type ColorConfigAvatarColor = (typeof COLOR_CONFIG_AVATAR_COLORS)[number]
219
+
220
+ /** @public */
221
+ export declare type ColorConfigBlendKey = (typeof COLOR_CONFIG_BLEND_KEYS)[number]
222
+
223
+ /** @public */
224
+ export declare type ColorConfigCardKey = (typeof COLOR_CONFIG_CARD_KEYS)[number]
225
+
226
+ /** @public */
227
+ export declare type ColorConfigCardTone = (typeof COLOR_CONFIG_CARD_TONES)[number]
228
+
229
+ /** @public */
230
+ export declare type ColorConfigInputMode = (typeof COLOR_CONFIG_INPUT_MODES)[number]
231
+
232
+ /** @public */
233
+ export declare type ColorConfigInputState = (typeof COLOR_CONFIG_INPUT_STATES)[number]
234
+
235
+ /** @public */
236
+ export declare type ColorConfigOpacityValue = `0` | `0.${number}` | `1`
237
+
238
+ /** @public */
239
+ export declare type ColorConfigState = (typeof COLOR_CONFIG_STATES)[number]
240
+
241
+ /** @public */
242
+ export declare type ColorConfigStateKey = (typeof COLOR_CONFIG_STATE_KEYS)[number]
243
+
244
+ /** @public */
245
+ export declare type ColorConfigStateTone = (typeof COLOR_CONFIG_STATE_TONES)[number]
246
+
247
+ /** @public */
248
+ export declare type ColorConfigValue =
249
+ | `black`
250
+ | `white`
251
+ | `black/${ColorConfigOpacityValue}`
252
+ | `white/${ColorConfigOpacityValue}`
253
+ | `${Hue}`
254
+ | `${Hue} ${number}%`
255
+ | `${Hue}/${Tint}`
256
+ | `${Hue}/${Tint} ${number}%`
257
+ | `${Hue}/${Tint}/${ColorConfigOpacityValue}`
258
+ | `${Tint}`
259
+ | `${Tint} ${number}%`
260
+ | `${Tint}/${ColorConfigOpacityValue}`
261
+
262
+ /** @internal */
263
+ export declare interface ColorInheritNode {
264
+ type: 'inherit'
265
+ }
266
+
267
+ /** @internal */
268
+ export declare interface ColorNode {
269
+ type: 'color'
270
+ name: 'black' | 'white'
271
+ /** Between 0 and 1 */
272
+ opacity: number
273
+ /** Between 0 and 1 */
274
+ mix: number
275
+ }
276
+
277
+ /** @internal */
278
+ export declare interface ColorTintNode {
279
+ type: 'tint'
280
+ hue: Hue
281
+ tint: Tint
282
+ /** Between 0 and 1 */
283
+ opacity: number
284
+ /** Between 0 and 1 */
285
+ mix: number
286
+ }
287
+
288
+ /** @public */
289
+ export declare type ColorToken =
290
+ | `inherit`
291
+ | `black`
292
+ | `black/${ColorTokenOpacityValue}`
293
+ | `white`
294
+ | `white/${ColorTokenOpacityValue}`
295
+ | `${Hue}-${Tint}`
296
+ | `${Hue}-${Tint}/${ColorTokenOpacityValue}`
297
+ | `${Hue}-${Tint} ${number}%`
298
+ | `${Tint}`
299
+ | `${Tint}/${ColorTokenOpacityValue}`
300
+ | `${Tint} ${number}%`
301
+
302
+ /** @public */
303
+ export declare type ColorTokenOpacityValue = `0` | `0.${number}` | `1`
304
+
305
+ /** @public */
306
+ export declare type ColorTokens = Record<'*' | ThemeColorCardToneKey, CardColorTokens>
307
+
308
+ /**
309
+ * Theme color values are tuples of [light, dark] color tokens.
310
+ *
311
+ * @public
312
+ */
313
+ export declare type ColorValue = [ColorToken, ColorToken]
314
+
315
+ /** @public */
316
+ export declare const CONTAINER: readonly [0, 1, 2, 3, 4, 5, 'auto']
317
+
318
+ /** @public */
319
+ export declare const CONTAINER_SCALE: readonly [0, 1, 2, 3, 4, 5]
320
+
321
+ /** @public */
322
+ export declare type ContainerScale = (typeof CONTAINER_SCALE)[number]
323
+
324
+ /** @public */
325
+ export declare type ContainerWidth = (typeof CONTAINER)[number]
326
+
327
+ /**
328
+ * @public
329
+ * @deprecated Use `buildColorTheme` instead.
330
+ */
331
+ export declare function createColorTheme(
332
+ partialOpts?: PartialThemeColorBuilderOpts,
333
+ ): ThemeColorSchemes
334
+
335
+ /**
336
+ * Work around types that are missing in `styled-components@6`
337
+ * https://github.com/styled-components/styled-components/issues/4062
338
+ * @internal
339
+ */
340
+ export declare type CSSObject = StyledObject<any>
341
+
342
+ /** @internal */
343
+ export declare const defaultTokens: PartialTokens<Tokens>
344
+
345
+ /** @public */
346
+ export declare interface ElementColorTokens {
347
+ _hue: Hue
348
+ bg: {
349
+ 0: ColorValue
350
+ 4: ColorValue
351
+ }
352
+ border: {
353
+ 0: ColorValue
354
+ 4: ColorValue
355
+ }
356
+ fg: {
357
+ 0: ColorValue
358
+ 4: ColorValue
359
+ }
360
+ }
361
+
362
+ /** @public */
363
+ export declare const FONT_CODE_SIZE: readonly [0, 1, 2, 3, 4]
364
+
365
+ /** @public */
366
+ export declare const FONT_HEADING_SIZE: readonly [0, 1, 2, 3, 4, 5]
367
+
368
+ /** @public */
369
+ export declare const FONT_LABEL_SIZE: readonly [0, 1, 2, 3, 4, 5]
370
+
371
+ /** @public */
372
+ export declare const FONT_TEXT_SIZE: readonly [0, 1, 2, 3, 4]
373
+
374
+ /** @public */
375
+ export declare type FontCodeSize = (typeof FONT_CODE_SIZE)[number]
376
+
377
+ /** @public */
378
+ export declare type FontHeadingSize = (typeof FONT_HEADING_SIZE)[number]
379
+
380
+ /** @public */
381
+ export declare type FontLabelSize = (typeof FONT_LABEL_SIZE)[number]
382
+
383
+ /** @public */
384
+ export declare type FontTextSize = (typeof FONT_TEXT_SIZE)[number]
385
+
386
+ /** @public */
387
+ export declare type FontWeight = 'regular' | 'medium' | 'semibold' | 'bold'
388
+
389
+ /**
390
+ * @internal
391
+ * @deprecated Will be removed in next major version
392
+ */
393
+ export declare function getContrastRatio(bg: string, fg: string): number
394
+
395
+ /** @internal */
396
+ export declare function getScopedTheme(
397
+ themeProp: RootTheme | RootTheme_v2,
398
+ scheme: ThemeColorSchemeKey,
399
+ tone: ThemeColorCardToneKey,
400
+ ): Theme
401
+
402
+ /** @public */
403
+ export declare function getTheme_v2(theme: Theme): Theme_v2
404
+
405
+ /**
406
+ * @internal
407
+ */
408
+ export declare function hexToRgb(hex: string): RGB
409
+
410
+ /**
411
+ * @internal
412
+ */
413
+ export declare interface HSL {
414
+ h: number
415
+ s: number
416
+ l: number
417
+ }
418
+
419
+ /**
420
+ * @internal
421
+ */
422
+ export declare function hslToRgb(hsl: HSL): RGB
423
+
424
+ /** @public */
425
+ export declare type Hue = (typeof HUES)[number]
426
+
427
+ /** @public */
428
+ export declare const HUES: readonly [
429
+ 'gray',
430
+ 'blue',
431
+ 'purple',
432
+ 'magenta',
433
+ 'red',
434
+ 'orange',
435
+ 'yellow',
436
+ 'green',
437
+ 'cyan',
438
+ ]
439
+
440
+ /** @internal */
441
+ export declare function isColorBlendModeValue(str: string): str is ThemeColorBlendModeKey
442
+
443
+ /** @internal */
444
+ export declare function isColorButtonMode(str: string): str is ThemeColorButtonModeKey
445
+
446
+ /** @internal */
447
+ export declare function isColorConfigBaseKey(str: string): str is ColorConfigCardKey
448
+
449
+ /** @internal */
450
+ export declare function isColorConfigBaseTone(str: string): str is ColorConfigCardTone
451
+
452
+ /** @internal */
453
+ export declare function isColorConfigBlendKey(str: string): str is ColorConfigBlendKey
454
+
455
+ /** @internal */
456
+ export declare function isColorConfigStateKey(str: string): str is ColorConfigStateKey
457
+
458
+ /** @internal */
459
+ export declare function isColorConfigStateTone(str: string): str is ColorConfigStateTone
460
+
461
+ /** @internal */
462
+ export declare function isColorHueKey(str: string): str is ColorHueKey
463
+
464
+ /** @internal */
465
+ export declare function isColorOpacityValue(str: string): str is ColorConfigOpacityValue
466
+
467
+ /** @internal */
468
+ export declare function isColorTintKey(str: string): str is ColorTintKey
469
+
470
+ /** @internal */
471
+ export declare function isColorValue(str: string): str is 'black' | 'white'
472
+
473
+ /**
474
+ * Apply the \`mix\` blend mode
475
+ * @internal
476
+ */
477
+ export declare function mix(b: RGB | RGBA, s: RGB | RGBA, weight: number): RGB
478
+
479
+ /**
480
+ * Apply the \`multiply\` blend mode
481
+ * Source: https://www.w3.org/TR/compositing-1/#blendingmultiply
482
+ * @internal
483
+ */
484
+ export declare function multiply(b: RGB | RGBA, s: RGB | RGBA): RGB
485
+
486
+ /**
487
+ * @internal
488
+ */
489
+ export declare function parseColor(color: unknown): RGB | RGBA
490
+
491
+ /** @internal */
492
+ export declare function _parseColorToken(
493
+ str: ColorToken,
494
+ options: {
495
+ defaultHue: Hue
496
+ },
497
+ ): TokenizeColorResult
498
+
499
+ /** @internal */
500
+ export declare function parseTokenValue(str: string): TokenValueNode | undefined
501
+
502
+ /**
503
+ * @public
504
+ * @deprecated Use `ThemeConfig` instead.
505
+ */
506
+ export declare type PartialThemeColorBuilderOpts = Partial<ThemeColorBuilderOpts>
507
+
508
+ /** @public */
509
+ export declare type PartialTokens<T> = T extends [ColorToken, ColorToken]
510
+ ? T
511
+ : T extends {}
512
+ ? {
513
+ [P in keyof T]?: PartialTokens<T[P]>
514
+ }
515
+ : T
516
+
517
+ /** @public */
518
+ export declare const RADIUS: readonly [0, 1, 2, 3, 4, 5, 6]
519
+
520
+ /** @public */
521
+ export declare type Radius = (typeof RADIUS)[number]
522
+
523
+ /** @public */
524
+ export declare interface ResolvedColorToken {
525
+ color:
526
+ | {
527
+ type: 'inherit'
528
+ }
529
+ | {
530
+ type: 'black' | 'white'
531
+ }
532
+ | {
533
+ type: 'hue'
534
+ hue: Hue
535
+ tint: Tint
536
+ }
537
+ opacity: number
538
+ mix: number
539
+ }
540
+
541
+ /** @internal */
542
+ export declare function resolveTokens(tokens?: PartialTokens<Tokens>): Tokens
543
+
544
+ /**
545
+ * @internal
546
+ */
547
+ export declare interface RGB {
548
+ r: number
549
+ g: number
550
+ b: number
551
+ a?: undefined
552
+ }
553
+
554
+ /**
555
+ * @internal
556
+ */
557
+ export declare interface RGBA {
558
+ r: number
559
+ g: number
560
+ b: number
561
+ a: number
562
+ }
563
+
564
+ /**
565
+ * @internal
566
+ */
567
+ export declare function rgba(color: unknown, a: number): string
568
+
569
+ /**
570
+ * @internal
571
+ */
572
+ export declare function rgbaToRGBA(rgba: string): RGBA
573
+
574
+ /**
575
+ * @internal
576
+ */
577
+ export declare function rgbToHex(color: RGB | RGBA): string
578
+
579
+ /**
580
+ * @internal
581
+ * @see https://css-tricks.com/converting-color-spaces-in-javascript/
582
+ */
583
+ export declare function rgbToHsl({r, g, b}: RGB): HSL
584
+
585
+ /** @public */
586
+ export declare interface RootTheme extends RootTheme_v0 {
587
+ v2?: RootTheme_v2
588
+ v3?: Theme_v3
589
+ }
590
+
591
+ /** @public */
592
+ export declare interface RootTheme_v0 {
593
+ _version?: 0
594
+ /**
595
+ * @deprecated Use `v2.avatar` instead
596
+ */
597
+ avatar: ThemeAvatar
598
+ /**
599
+ * @deprecated Use `v2.button` instead
600
+ */
601
+ button: {
602
+ textWeight: ThemeFontWeightKey
603
+ }
604
+ /**
605
+ * @deprecated Use `v2.color` instead
606
+ */
607
+ color: ThemeColorSchemes
608
+ /**
609
+ * @deprecated Use `v2.container` instead
610
+ */
611
+ container: number[]
612
+ /**
613
+ * @deprecated Use component-specific `v2.{button | card | input}.focusRing` values instead
614
+ */
615
+ focusRing: {
616
+ offset: number
617
+ width: number
618
+ }
619
+ /**
620
+ * @deprecated Use `v2.font` instead
621
+ */
622
+ fonts: ThemeFonts
623
+ /**
624
+ * @deprecated Use `v2.input` instead
625
+ */
626
+ input: ThemeInput
627
+ /**
628
+ * THIS API MAY BE UNSTABLE. DO NOT USE IN PRODUCTION.
629
+ * @beta
630
+ * @deprecated Use `v2.layer` instead
631
+ */
632
+ layer?: ThemeLayer
633
+ /**
634
+ * @deprecated Use `v2.media` instead
635
+ */
636
+ media: number[]
637
+ /**
638
+ * @deprecated Use `v2.radius` instead
639
+ */
640
+ radius: number[]
641
+ /**
642
+ * @deprecated Use `v2.shadow` instead
643
+ */
644
+ shadows: Array<ThemeShadow | null>
645
+ /**
646
+ * @deprecated Use `v2.space` instead
647
+ */
648
+ space: number[]
649
+ /**
650
+ * @internal
651
+ * @deprecated Use `v2.style` instead
652
+ */
653
+ styles?: ThemeStyles
654
+ }
655
+
656
+ /** @public */
657
+ export declare interface RootTheme_v2 {
658
+ _version: 2
659
+ avatar: ThemeAvatar_v2
660
+ button: {
661
+ border: {
662
+ width: number
663
+ }
664
+ focusRing: ThemeFocusRing
665
+ textWeight: ThemeFontWeightKey
666
+ }
667
+ card: {
668
+ border: {
669
+ width: number
670
+ }
671
+ focusRing: ThemeFocusRing
672
+ shadow: {
673
+ outline: number
674
+ }
675
+ }
676
+ color: ThemeColorSchemes_v2
677
+ container: number[]
678
+ font: ThemeFonts
679
+ input: ThemeInput_v2
680
+ layer: ThemeLayer
681
+ media: number[]
682
+ radius: number[]
683
+ shadow: Array<ThemeShadow | null>
684
+ space: number[]
685
+ /** @internal */
686
+ style?: ThemeStyles
687
+ }
688
+
689
+ /**
690
+ * Apply the \`screen\` blend mode
691
+ * Source: https://www.w3.org/TR/compositing-1/#blendingscreen
692
+ * @internal
693
+ */
694
+ declare function screen_2(b: RGB | RGBA, s: RGB | RGBA): RGB
695
+ export {screen_2 as screen}
696
+
697
+ /** @public */
698
+ export declare const SHADOW: readonly [0, 1, 2, 3, 4, 5]
699
+
700
+ /** @public */
701
+ export declare type Shadow = (typeof SHADOW)[number]
702
+
703
+ /** @public */
704
+ export declare const SPACE: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
705
+
706
+ /** @public */
707
+ export declare type Space = (typeof SPACE)[number]
708
+
709
+ /**
710
+ * Used for the `theme` prop in `styled-components`’s `ThemeProvider`.
711
+ *
712
+ * @public
713
+ */
714
+ export declare interface Theme {
715
+ sanity: Omit<RootTheme, 'color' | 'v2'> & {
716
+ /**
717
+ * @deprecated Use `v2.color` instead
718
+ */
719
+ color: ThemeColor
720
+ v2?: Theme_v2
721
+ }
722
+ }
723
+
724
+ /** @public */
725
+ export declare const THEME_COLOR_AVATAR_COLORS: ColorHueKey[]
726
+
727
+ /** @public */
728
+ export declare const THEME_COLOR_BLEND_MODES: readonly ['multiply', 'screen']
729
+
730
+ /** @public */
731
+ export declare const THEME_COLOR_BUTTON_MODES: readonly ['default', 'ghost', 'bleed']
732
+
733
+ /** @public */
734
+ export declare const THEME_COLOR_CARD_TONES: readonly [
735
+ 'transparent',
736
+ 'default',
737
+ 'neutral',
738
+ 'primary',
739
+ 'suggest',
740
+ 'positive',
741
+ 'caution',
742
+ 'critical',
743
+ ]
744
+
745
+ /** @public */
746
+ export declare const THEME_COLOR_INPUT_MODES: readonly ['default', 'invalid']
747
+
748
+ /** @public */
749
+ export declare const THEME_COLOR_INPUT_STATES: readonly [
750
+ 'enabled',
751
+ 'hovered',
752
+ 'readOnly',
753
+ 'disabled',
754
+ ]
755
+
756
+ /** @public */
757
+ export declare const THEME_COLOR_SCHEMES: readonly ['light', 'dark']
758
+
759
+ /** @public */
760
+ export declare const THEME_COLOR_STATE_TONES: readonly [
761
+ 'default',
762
+ 'neutral',
763
+ 'primary',
764
+ 'suggest',
765
+ 'positive',
766
+ 'caution',
767
+ 'critical',
768
+ ]
769
+
770
+ /** @public */
771
+ export declare const THEME_COLOR_STATES: readonly [
772
+ 'enabled',
773
+ 'hovered',
774
+ 'pressed',
775
+ 'selected',
776
+ 'disabled',
777
+ ]
778
+
779
+ /** @public */
780
+ export declare type Theme_v2 = Omit<RootTheme_v2, 'color'> & {
781
+ color: ThemeColorCard_v2
782
+ /**
783
+ * Indicates whether the theme is resolved or raw, it's necessary to avoid issues
784
+ * with sanity V2 components accessing a v1 <ThemeProvider>.
785
+ * See https://github.com/sanity-io/ui/pull/1203 for more info.
786
+ */
787
+ _resolved: boolean
788
+ }
789
+
790
+ /**
791
+ * Supersedes `RootTheme` and `RootTheme_v2`.
792
+ *
793
+ * @public
794
+ */
795
+ export declare interface Theme_v3 {
796
+ _version: 3
797
+ _tokens: Tokens
798
+ avatar: ThemeAvatar_v2
799
+ button: {
800
+ border: {
801
+ width: number
802
+ }
803
+ focusRing: ThemeFocusRing
804
+ textWeight: ThemeFontWeightKey
805
+ }
806
+ card: {
807
+ border: {
808
+ width: number
809
+ }
810
+ focusRing: ThemeFocusRing
811
+ shadow: {
812
+ outline: number
813
+ }
814
+ }
815
+ color: ThemeColor_v3
816
+ container: number[]
817
+ font: ThemeFonts_v3
818
+ input: ThemeInput_v2
819
+ layer: ThemeLayer
820
+ media: number[]
821
+ palette: ThemePalette_v3
822
+ radius: Record<Radius, number>
823
+ shadow: Record<Shadow, ThemeShadow | undefined>
824
+ space: Record<Space, number>
825
+ }
826
+
827
+ /**
828
+ * @public
829
+ * @deprecated Use `ThemeAvatar_v2` from `@sanity/ui/theme` instead.
830
+ */
831
+ export declare interface ThemeAvatar {
832
+ sizes: {
833
+ distance: number
834
+ size: number
835
+ }[]
836
+ }
837
+
838
+ /** @public */
839
+ export declare interface ThemeAvatar_v2 {
840
+ sizes: {
841
+ /** Spacing between avatars in an <AvatarStack> component (px) */
842
+ distance: number
843
+ /** Diameter of the avatar (px) */
844
+ size: number
845
+ }[]
846
+ focusRing: ThemeFocusRing
847
+ }
848
+
849
+ /** @public */
850
+ export declare type ThemeBoxShadow = [number, number, number, number]
851
+
852
+ /**
853
+ * @public
854
+ * @deprecated Use `ThemeColor_v2` instead.
855
+ */
856
+ export declare interface ThemeColor extends Partial<Omit<ThemeColorGenericState, 'muted'>> {
857
+ base: ThemeColorBase
858
+ button: ThemeColorButton
859
+ card: ThemeColorCard
860
+ dark: boolean
861
+ input: ThemeColorInput
862
+ muted: ThemeColorMuted
863
+ selectable?: ThemeColorSelectable
864
+ solid: ThemeColorSolid
865
+ spot: ThemeColorSpot
866
+ syntax: ThemeColorSyntax
867
+ }
868
+
869
+ /** @public */
870
+ export declare type ThemeColor_v3 = Record<ThemeColorCardToneKey, ThemeColorCard_v3>
871
+
872
+ /** @public */
873
+ export declare type ThemeColorAvatar_v2 = Record<ThemeColorAvatarColorKey, ThemeColorAvatarHue_v2>
874
+
875
+ /** @public */
876
+ export declare type ThemeColorAvatar_v3 = Record<AvatarColor, ThemeColorAvatarHue_v3>
877
+
878
+ /** @public */
879
+ export declare type ThemeColorAvatarColorKey = (typeof THEME_COLOR_AVATAR_COLORS)[number]
880
+
881
+ /** @public */
882
+ export declare interface ThemeColorAvatarHue_v2 {
883
+ _blend?: ThemeColorBlendModeKey
884
+ bg: string
885
+ fg: string
886
+ }
887
+
888
+ /** @public */
889
+ export declare interface ThemeColorAvatarHue_v3 {
890
+ bg: ColorValue
891
+ fg: ColorValue
892
+ }
893
+
894
+ /** @public */
895
+ export declare interface ThemeColorAvatarHueTokens {
896
+ _blend?: ColorBlendModeTokenValue
897
+ _hue?: Hue_2
898
+ bg?: ThemeColorTokenValue
899
+ fg?: ThemeColorTokenValue
900
+ }
901
+
902
+ /** @public */
903
+ export declare interface ThemeColorAvatarTokens {
904
+ '*'?: ThemeColorAvatarHueTokens
905
+ 'gray'?: ThemeColorAvatarHueTokens
906
+ 'blue'?: ThemeColorAvatarHueTokens
907
+ 'purple'?: ThemeColorAvatarHueTokens
908
+ 'magenta'?: ThemeColorAvatarHueTokens
909
+ 'red'?: ThemeColorAvatarHueTokens
910
+ 'orange'?: ThemeColorAvatarHueTokens
911
+ 'yellow'?: ThemeColorAvatarHueTokens
912
+ 'green'?: ThemeColorAvatarHueTokens
913
+ 'cyan'?: ThemeColorAvatarHueTokens
914
+ }
915
+
916
+ /** @public */
917
+ export declare type ThemeColorBadge_v2 = Record<ThemeColorStateToneKey, ThemeColorBadgeTone_v2>
918
+
919
+ /** @public */
920
+ export declare type ThemeColorBadgeTokens = Partial<
921
+ Record<'*' | ThemeColorStateToneKey, ThemeColorBadgeToneTokens>
922
+ >
923
+
924
+ /** @public */
925
+ export declare interface ThemeColorBadgeTone_v2 {
926
+ bg: string
927
+ fg: string
928
+ dot: string
929
+ icon: string
930
+ }
931
+
932
+ /** @public */
933
+ export declare interface ThemeColorBadgeToneTokens {
934
+ _blend?: ColorBlendModeTokenValue
935
+ _hue?: Hue_2
936
+ bg?: ThemeColorTokenValue
937
+ dot?: ThemeColorTokenValue
938
+ fg?: ThemeColorTokenValue
939
+ icon?: ThemeColorTokenValue
940
+ }
941
+
942
+ /**
943
+ * @public
944
+ * @deprecated Use `ThemeColorCard_v2` instead.
945
+ */
946
+ export declare interface ThemeColorBase {
947
+ bg: string
948
+ fg: string
949
+ border: string
950
+ focusRing: string
951
+ backdrop?: string
952
+ shadow: {
953
+ outline: string
954
+ umbra: string
955
+ penumbra: string
956
+ ambient: string
957
+ }
958
+ skeleton?: {
959
+ from: string
960
+ to: string
961
+ }
962
+ }
963
+
964
+ /** @public */
965
+ export declare interface ThemeColorBaseTokens extends ThemeColorStateTokens {
966
+ focusRing?: ThemeColorTokenValue
967
+ backdrop?: ThemeColorTokenValue
968
+ shadow?: {
969
+ outline?: ThemeColorTokenValue
970
+ umbra?: ThemeColorTokenValue
971
+ penumbra?: ThemeColorTokenValue
972
+ ambient?: ThemeColorTokenValue
973
+ }
974
+ }
975
+
976
+ /** @public */
977
+ export declare type ThemeColorBlendModeKey = (typeof THEME_COLOR_BLEND_MODES)[number]
978
+
979
+ /**
980
+ * @public
981
+ * @deprecated Use `buildColorTheme` instead.
982
+ */
983
+ export declare interface ThemeColorBuilderOpts {
984
+ base: (opts: {dark: boolean; name: ThemeColorName}) => ThemeColorBase
985
+ solid: (opts: {
986
+ base: ThemeColorBase
987
+ dark: boolean
988
+ tone: ThemeColorName
989
+ name: ThemeColorName
990
+ state: 'enabled' | 'disabled' | 'hovered' | 'pressed' | 'selected'
991
+ }) => ThemeColorGenericState
992
+ muted: (opts: {
993
+ base: ThemeColorBase
994
+ dark: boolean
995
+ tone: ThemeColorToneKey
996
+ name: ThemeColorName
997
+ state: 'enabled' | 'disabled' | 'hovered' | 'pressed' | 'selected'
998
+ }) => ThemeColorGenericState
999
+ card: (opts: {
1000
+ base: ThemeColorBase
1001
+ dark: boolean
1002
+ muted: ThemeColorMuted
1003
+ name: ThemeColorName
1004
+ solid: ThemeColorSolid
1005
+ state: 'enabled' | 'disabled' | 'hovered' | 'pressed' | 'selected'
1006
+ }) => ThemeColorGenericState
1007
+ button: (opts: {
1008
+ dark: boolean
1009
+ mode: ThemeColorButtonModeKey
1010
+ base: ThemeColorBase
1011
+ solid: ThemeColorSolidTone
1012
+ muted: ThemeColorMutedTone
1013
+ }) => ThemeColorButtonStates
1014
+ input: (opts: {
1015
+ base: ThemeColorBase
1016
+ solid: ThemeColorSolidTone
1017
+ muted: ThemeColorMutedTone
1018
+ dark: boolean
1019
+ mode: 'default' | 'invalid'
1020
+ state: 'enabled' | 'disabled' | 'hovered' | 'readOnly'
1021
+ }) => ThemeColorInputState
1022
+ selectable: (opts: {
1023
+ dark: boolean
1024
+ base: ThemeColorBase
1025
+ solid: ThemeColorSolid
1026
+ muted: ThemeColorMuted
1027
+ state: 'enabled' | 'disabled' | 'hovered' | 'pressed' | 'selected'
1028
+ tone: 'default' | 'primary' | 'positive' | 'caution' | 'critical'
1029
+ }) => ThemeColorGenericState
1030
+ syntax: (opts: {base: ThemeColorBase; dark: boolean}) => ThemeColorSyntax
1031
+ spot: (opts: {base: ThemeColorBase; dark: boolean; key: ThemeColorSpotKey}) => string
1032
+ }
1033
+
1034
+ /**
1035
+ * @public
1036
+ * @deprecated Use `ThemeColorButton_v2` instead.
1037
+ */
1038
+ export declare interface ThemeColorButton {
1039
+ default: ThemeColorButtonTones
1040
+ ghost: ThemeColorButtonTones
1041
+ bleed: ThemeColorButtonTones
1042
+ }
1043
+
1044
+ /** @public */
1045
+ export declare type ThemeColorButton_v2 = Record<ThemeColorButtonModeKey, ThemeColorButtonMode_v2>
1046
+
1047
+ /** @public */
1048
+ export declare type ThemeColorButtonMode_v2 = Record<
1049
+ ThemeColorStateToneKey,
1050
+ ThemeColorButtonTone_v2
1051
+ >
1052
+
1053
+ /** @public */
1054
+ export declare type ThemeColorButtonModeKey = (typeof THEME_COLOR_BUTTON_MODES)[number]
1055
+
1056
+ /**
1057
+ * @public
1058
+ * @deprecated Use `ThemeColorState_v2` instead.
1059
+ */
1060
+ export declare type ThemeColorButtonState = ThemeColorGenericState
1061
+
1062
+ /**
1063
+ * @public
1064
+ * @deprecated Use `ThemeColorButtonStates_v2` instead.
1065
+ */
1066
+ export declare interface ThemeColorButtonStates {
1067
+ enabled: ThemeColorGenericState
1068
+ hovered: ThemeColorGenericState
1069
+ pressed: ThemeColorGenericState
1070
+ selected: ThemeColorGenericState
1071
+ disabled: ThemeColorGenericState
1072
+ }
1073
+
1074
+ /** @public */
1075
+ export declare interface ThemeColorButtonTokens
1076
+ extends Partial<Record<ColorConfigStateTone, ThemeColorStatesTokens>> {
1077
+ _hue?: Hue_2
1078
+ }
1079
+
1080
+ /** @public */
1081
+ export declare type ThemeColorButtonTone_v2 = Record<ThemeColorStateKey, ThemeColorState_v2>
1082
+
1083
+ /**
1084
+ * TODO: Rename to `ThemeColorButtonMode`.
1085
+ * @public
1086
+ * @deprecated Use `ThemeColorButtonTones_v2` instead.
1087
+ */
1088
+ export declare interface ThemeColorButtonTones {
1089
+ default: ThemeColorButtonStates
1090
+ primary: ThemeColorButtonStates
1091
+ positive: ThemeColorButtonStates
1092
+ caution: ThemeColorButtonStates
1093
+ critical: ThemeColorButtonStates
1094
+ }
1095
+
1096
+ /**
1097
+ * @public
1098
+ * @deprecated Use `ThemeColorSelectable_v2` instead.
1099
+ */
1100
+ export declare interface ThemeColorCard {
1101
+ enabled: ThemeColorGenericState
1102
+ hovered: ThemeColorGenericState
1103
+ pressed: ThemeColorGenericState
1104
+ selected: ThemeColorGenericState
1105
+ disabled: ThemeColorGenericState
1106
+ }
1107
+
1108
+ /** @public */
1109
+ export declare interface ThemeColorCard_v2 extends ThemeColorState_v2 {
1110
+ /** @internal */
1111
+ _blend: ThemeColorBlendModeKey
1112
+ _dark: boolean
1113
+ backdrop: string
1114
+ button: ThemeColorButton_v2
1115
+ focusRing: string
1116
+ input: ThemeColorInput_v2
1117
+ selectable: ThemeColorSelectable_v2
1118
+ shadow: ThemeColorShadow
1119
+ syntax: ThemeColorSyntax
1120
+ }
1121
+
1122
+ /** @public */
1123
+ export declare interface ThemeColorCard_v3 {
1124
+ _hue: Hue
1125
+ avatar: ThemeColorAvatar_v3
1126
+ backdrop: ColorValue
1127
+ code: {
1128
+ bg: ColorValue
1129
+ fg: ColorValue
1130
+ token: {
1131
+ atrule: ColorValue
1132
+ attrName: ColorValue
1133
+ attrValue: ColorValue
1134
+ attribute: ColorValue
1135
+ boolean: ColorValue
1136
+ builtin: ColorValue
1137
+ cdata: ColorValue
1138
+ char: ColorValue
1139
+ class: ColorValue
1140
+ className: ColorValue
1141
+ comment: ColorValue
1142
+ constant: ColorValue
1143
+ deleted: ColorValue
1144
+ doctype: ColorValue
1145
+ entity: ColorValue
1146
+ function: ColorValue
1147
+ hexcode: ColorValue
1148
+ id: ColorValue
1149
+ important: ColorValue
1150
+ inserted: ColorValue
1151
+ keyword: ColorValue
1152
+ number: ColorValue
1153
+ operator: ColorValue
1154
+ prolog: ColorValue
1155
+ property: ColorValue
1156
+ pseudoClass: ColorValue
1157
+ pseudoElement: ColorValue
1158
+ punctuation: ColorValue
1159
+ regex: ColorValue
1160
+ selector: ColorValue
1161
+ string: ColorValue
1162
+ symbol: ColorValue
1163
+ tag: ColorValue
1164
+ unit: ColorValue
1165
+ url: ColorValue
1166
+ variable: ColorValue
1167
+ }
1168
+ }
1169
+ focusRing: ColorValue
1170
+ link: {
1171
+ fg: ColorValue
1172
+ }
1173
+ shadow: {
1174
+ outline: ColorValue
1175
+ umbra: ColorValue
1176
+ penumbra: ColorValue
1177
+ ambient: ColorValue
1178
+ }
1179
+ skeleton: {
1180
+ from: ColorValue
1181
+ to: ColorValue
1182
+ }
1183
+ variant: Record<ThemeColorVariantKey, ThemeColorVariant>
1184
+ }
1185
+
1186
+ /**
1187
+ * @public
1188
+ * @deprecated Use `ThemeColorState_v2` instead.
1189
+ */
1190
+ export declare type ThemeColorCardState = ThemeColorGenericState
1191
+
1192
+ /** @public */
1193
+ export declare type ThemeColorCardToneKey = (typeof THEME_COLOR_CARD_TONES)[number]
1194
+
1195
+ /** @public */
1196
+ export declare interface ThemeColorElement {
1197
+ _hue: Hue
1198
+ bg: {
1199
+ 0: ColorValue
1200
+ 4: ColorValue
1201
+ }
1202
+ border: {
1203
+ 0: ColorValue
1204
+ 4: ColorValue
1205
+ }
1206
+ fg: {
1207
+ 0: ColorValue
1208
+ 4: ColorValue
1209
+ }
1210
+ }
1211
+
1212
+ /**
1213
+ * @public
1214
+ * @deprecated Use `ThemeColorState_v2` instead.
1215
+ */
1216
+ export declare interface ThemeColorGenericState {
1217
+ /** @internal */
1218
+ _blend?: ThemeColorBlendModeKey
1219
+ bg: string
1220
+ /**
1221
+ * @beta
1222
+ */
1223
+ bg2?: string
1224
+ border: string
1225
+ fg: string
1226
+ icon: string
1227
+ muted: {
1228
+ fg: string
1229
+ }
1230
+ accent: {
1231
+ fg: string
1232
+ }
1233
+ link: {
1234
+ fg: string
1235
+ }
1236
+ code: {
1237
+ bg: string
1238
+ fg: string
1239
+ }
1240
+ skeleton?: {
1241
+ from: string
1242
+ to: string
1243
+ }
1244
+ }
1245
+
1246
+ /**
1247
+ * @public
1248
+ * @deprecated Use `ThemeColorInput_v2` instead.
1249
+ */
1250
+ export declare interface ThemeColorInput {
1251
+ default: ThemeColorInputStates
1252
+ invalid: ThemeColorInputStates
1253
+ }
1254
+
1255
+ /** @public */
1256
+ export declare type ThemeColorInput_v2 = Record<ThemeColorInputModeKey, ThemeColorInputMode_v2>
1257
+
1258
+ /** @public */
1259
+ export declare type ThemeColorInputMode_v2 = Record<
1260
+ ThemeColorInputStateKey,
1261
+ ThemeColorInputState_v2
1262
+ >
1263
+
1264
+ /** @public */
1265
+ export declare type ThemeColorInputModeKey = (typeof THEME_COLOR_INPUT_MODES)[number]
1266
+
1267
+ /**
1268
+ * @public
1269
+ * @deprecated Use `ThemeColorInputState_v2` instead.
1270
+ */
1271
+ export declare interface ThemeColorInputState {
1272
+ _blend?: ThemeColorBlendModeKey
1273
+ bg: string
1274
+ bg2: string
1275
+ border: string
1276
+ fg: string
1277
+ placeholder: string
1278
+ }
1279
+
1280
+ /** @public */
1281
+ export declare interface ThemeColorInputState_v2 {
1282
+ _blend?: ThemeColorBlendModeKey
1283
+ bg: string
1284
+ border: string
1285
+ fg: string
1286
+ muted: {
1287
+ bg: string
1288
+ }
1289
+ placeholder: string
1290
+ }
1291
+
1292
+ /** @public */
1293
+ export declare type ThemeColorInputStateKey = (typeof THEME_COLOR_INPUT_STATES)[number]
1294
+
1295
+ /**
1296
+ * @public
1297
+ * @deprecated Use `ThemeColorInputMode_v2` instead.
1298
+ */
1299
+ export declare interface ThemeColorInputStates {
1300
+ enabled: ThemeColorInputState
1301
+ disabled: ThemeColorInputState
1302
+ hovered: ThemeColorInputState
1303
+ readOnly: ThemeColorInputState
1304
+ }
1305
+
1306
+ /** @public */
1307
+ export declare interface ThemeColorInputStateTokens {
1308
+ _blend?: ColorBlendModeTokenValue
1309
+ _hue?: Hue_2
1310
+ bg?: ThemeColorTokenValue
1311
+ border?: ThemeColorTokenValue
1312
+ fg?: ThemeColorTokenValue
1313
+ muted?: {
1314
+ bg?: ThemeColorTokenValue
1315
+ }
1316
+ placeholder?: ThemeColorTokenValue
1317
+ }
1318
+
1319
+ /** @public */
1320
+ export declare interface ThemeColorInputTokens
1321
+ extends Partial<Record<ColorConfigInputState, ThemeColorInputStateTokens>> {
1322
+ _hue?: Hue_2
1323
+ }
1324
+
1325
+ /** @public */
1326
+ export declare interface ThemeColorKBD {
1327
+ bg: string
1328
+ fg: string
1329
+ border: string
1330
+ }
1331
+
1332
+ /**
1333
+ * @public
1334
+ * @deprecated Use `ThemeColorSelectable_v2` instead.
1335
+ */
1336
+ export declare interface ThemeColorMuted {
1337
+ default: ThemeColorMutedTone
1338
+ transparent: ThemeColorMutedTone
1339
+ primary: ThemeColorMutedTone
1340
+ positive: ThemeColorMutedTone
1341
+ caution: ThemeColorMutedTone
1342
+ critical: ThemeColorMutedTone
1343
+ }
1344
+
1345
+ /**
1346
+ * @public
1347
+ * @deprecated Use `ThemeColorSelectableTone_v2` instead.
1348
+ */
1349
+ export declare interface ThemeColorMutedTone {
1350
+ enabled: ThemeColorGenericState
1351
+ disabled: ThemeColorGenericState
1352
+ hovered: ThemeColorGenericState
1353
+ pressed: ThemeColorGenericState
1354
+ selected: ThemeColorGenericState
1355
+ }
1356
+
1357
+ /**
1358
+ * @public
1359
+ * @deprecated Use `ThemeColorCardToneKey` instead.
1360
+ */
1361
+ export declare type ThemeColorName =
1362
+ | 'transparent'
1363
+ | 'default'
1364
+ | 'primary'
1365
+ | 'positive'
1366
+ | 'caution'
1367
+ | 'critical'
1368
+
1369
+ /** @public */
1370
+ export declare type ThemeColorPalette = {
1371
+ black: string | ColorTint
1372
+ white: string | ColorTint
1373
+ } & Record<Hue, Record<Tint, string | ColorTint>>
1374
+
1375
+ /**
1376
+ * @public
1377
+ * @deprecated Use `ThemeColorScheme_v2` instead.
1378
+ */
1379
+ export declare type ThemeColorScheme = Record<ThemeColorName, ThemeColor>
1380
+
1381
+ /** @public */
1382
+ export declare type ThemeColorScheme_v2 = Record<ThemeColorCardToneKey, ThemeColorCard_v2>
1383
+
1384
+ /** @public */
1385
+ export declare type ThemeColorSchemeKey = (typeof THEME_COLOR_SCHEMES)[number]
1386
+
1387
+ /**
1388
+ * @public
1389
+ * @deprecated Use `ThemeColorSchemes_v2` instead.
1390
+ */
1391
+ export declare type ThemeColorSchemes = Record<ThemeColorSchemeKey, ThemeColorScheme>
1392
+
1393
+ /** @public */
1394
+ export declare type ThemeColorSchemes_v2 = Record<ThemeColorSchemeKey, ThemeColorScheme_v2>
1395
+
1396
+ /**
1397
+ * @public
1398
+ * @deprecated Use `ThemeColorSelectable_v2` instead.
1399
+ */
1400
+ export declare interface ThemeColorSelectable {
1401
+ default: ThemeColorSelectableStates
1402
+ primary: ThemeColorSelectableStates
1403
+ positive: ThemeColorSelectableStates
1404
+ caution: ThemeColorSelectableStates
1405
+ critical: ThemeColorSelectableStates
1406
+ }
1407
+
1408
+ /** @public */
1409
+ export declare type ThemeColorSelectable_v2 = Record<
1410
+ ThemeColorStateToneKey,
1411
+ ThemeColorSelectableTone_v2
1412
+ >
1413
+
1414
+ /**
1415
+ * @public
1416
+ * @deprecated Use `ThemeColorState_v2` instead.
1417
+ */
1418
+ export declare type ThemeColorSelectableState = ThemeColorGenericState
1419
+
1420
+ /**
1421
+ * @public
1422
+ * @deprecated Use `ThemeColorSelectableStates_v2` instead.
1423
+ */
1424
+ export declare interface ThemeColorSelectableStates {
1425
+ enabled: ThemeColorSelectableState
1426
+ hovered: ThemeColorSelectableState
1427
+ pressed: ThemeColorSelectableState
1428
+ selected: ThemeColorSelectableState
1429
+ disabled: ThemeColorSelectableState
1430
+ }
1431
+
1432
+ /** @public */
1433
+ export declare type ThemeColorSelectableTone_v2 = Record<ThemeColorStateKey, ThemeColorState_v2>
1434
+
1435
+ /** @public */
1436
+ export declare interface ThemeColorShadow {
1437
+ outline: string
1438
+ umbra: string
1439
+ penumbra: string
1440
+ ambient: string
1441
+ }
1442
+
1443
+ /**
1444
+ * @public
1445
+ * @deprecated Use `ThemeColorSelectable_v2` instead.
1446
+ */
1447
+ export declare interface ThemeColorSolid {
1448
+ default: ThemeColorSolidTone
1449
+ transparent: ThemeColorSolidTone
1450
+ primary: ThemeColorSolidTone
1451
+ positive: ThemeColorSolidTone
1452
+ caution: ThemeColorSolidTone
1453
+ critical: ThemeColorSolidTone
1454
+ }
1455
+
1456
+ /**
1457
+ * @public
1458
+ * @deprecated Use `ThemeColorSelectableTone_v2` instead.
1459
+ */
1460
+ export declare interface ThemeColorSolidTone {
1461
+ enabled: ThemeColorGenericState
1462
+ disabled: ThemeColorGenericState
1463
+ hovered: ThemeColorGenericState
1464
+ pressed: ThemeColorGenericState
1465
+ selected: ThemeColorGenericState
1466
+ }
1467
+
1468
+ /**
1469
+ * @public
1470
+ * @deprecated Use `ThemeColorAvatar_v2` instead
1471
+ */
1472
+ export declare type ThemeColorSpot = Record<ThemeColorSpotKey, string>
1473
+
1474
+ /**
1475
+ * @public
1476
+ * @deprecated Use `ThemeColorAvatarColorKey` instead
1477
+ */
1478
+ export declare type ThemeColorSpotKey = ThemeColorAvatarColorKey
1479
+
1480
+ /** @public */
1481
+ export declare interface ThemeColorState_v2 {
1482
+ /** @internal */
1483
+ _blend?: ThemeColorBlendModeKey
1484
+ accent: {
1485
+ fg: string
1486
+ }
1487
+ /**
1488
+ * @internal This may be removed in a future release
1489
+ * */
1490
+ avatar: ThemeColorAvatar_v2
1491
+ /**
1492
+ * @internal This may be removed in a future release
1493
+ * */
1494
+ badge: ThemeColorBadge_v2
1495
+ bg: string
1496
+ border: string
1497
+ code: {
1498
+ bg: string
1499
+ fg: string
1500
+ }
1501
+ fg: string
1502
+ icon: string
1503
+ kbd: ThemeColorKBD
1504
+ link: {
1505
+ fg: string
1506
+ }
1507
+ muted: {
1508
+ bg: string
1509
+ fg: string
1510
+ }
1511
+ skeleton: {
1512
+ from: string
1513
+ to: string
1514
+ }
1515
+ }
1516
+
1517
+ /** @public */
1518
+ export declare type ThemeColorStateKey = (typeof THEME_COLOR_STATES)[number]
1519
+
1520
+ /** @public */
1521
+ export declare type ThemeColorStatesTokens = Partial<
1522
+ Record<ColorConfigState, ThemeColorStateTokens>
1523
+ >
1524
+
1525
+ /** @public */
1526
+ export declare interface ThemeColorStateTokens {
1527
+ _blend?: ColorBlendModeTokenValue
1528
+ _hue?: Hue_2
1529
+ accent?: {
1530
+ fg?: ThemeColorTokenValue
1531
+ }
1532
+ avatar?: ThemeColorAvatarTokens
1533
+ badge?: ThemeColorBadgeTokens
1534
+ bg?: ThemeColorTokenValue
1535
+ border?: ThemeColorTokenValue
1536
+ code?: {
1537
+ bg?: ThemeColorTokenValue
1538
+ fg?: ThemeColorTokenValue
1539
+ }
1540
+ fg?: ThemeColorTokenValue
1541
+ icon?: ThemeColorTokenValue
1542
+ kbd?: {
1543
+ bg?: ThemeColorTokenValue
1544
+ fg?: ThemeColorTokenValue
1545
+ border?: ThemeColorTokenValue
1546
+ }
1547
+ link?: {
1548
+ fg?: ThemeColorTokenValue
1549
+ }
1550
+ muted?: {
1551
+ bg?: ThemeColorTokenValue
1552
+ fg?: ThemeColorTokenValue
1553
+ }
1554
+ skeleton?: {
1555
+ from?: ThemeColorTokenValue
1556
+ to?: ThemeColorTokenValue
1557
+ }
1558
+ }
1559
+
1560
+ /** @public */
1561
+ export declare type ThemeColorStateToneKey = (typeof THEME_COLOR_STATE_TONES)[number]
1562
+
1563
+ /** @public */
1564
+ export declare interface ThemeColorSyntax {
1565
+ atrule: string
1566
+ attrName: string
1567
+ attrValue: string
1568
+ attribute: string
1569
+ boolean: string
1570
+ builtin: string
1571
+ cdata: string
1572
+ char: string
1573
+ class: string
1574
+ className: string
1575
+ comment: string
1576
+ constant: string
1577
+ deleted: string
1578
+ doctype: string
1579
+ entity: string
1580
+ function: string
1581
+ hexcode: string
1582
+ id: string
1583
+ important: string
1584
+ inserted: string
1585
+ keyword: string
1586
+ number: string
1587
+ operator: string
1588
+ prolog: string
1589
+ property: string
1590
+ pseudoClass: string
1591
+ pseudoElement: string
1592
+ punctuation: string
1593
+ regex: string
1594
+ selector: string
1595
+ string: string
1596
+ symbol: string
1597
+ tag: string
1598
+ unit: string
1599
+ url: string
1600
+ variable: string
1601
+ }
1602
+
1603
+ /** @public */
1604
+ export declare interface ThemeColorTokens {
1605
+ base?: Partial<Record<ColorConfigCardTone, ThemeColorBaseTokens>>
1606
+ button?: Partial<Record<ThemeColorButtonModeKey, ThemeColorButtonTokens>>
1607
+ input?: Partial<Record<ColorConfigInputMode, ThemeColorInputTokens>>
1608
+ selectable?: Partial<
1609
+ Record<
1610
+ ColorConfigStateTone,
1611
+ {
1612
+ _hue?: Hue_2
1613
+ } & ThemeColorStatesTokens
1614
+ >
1615
+ >
1616
+ syntax?: Partial<Record<keyof ThemeColorSyntax, ThemeColorTokenValue>>
1617
+ }
1618
+
1619
+ /** @public */
1620
+ export declare type ThemeColorTokenValue = [ColorConfigValue, ColorConfigValue]
1621
+
1622
+ /**
1623
+ * @public
1624
+ * @deprecated Use `ThemeColorCardToneKey` instead.
1625
+ */
1626
+ export declare type ThemeColorToneKey = ThemeColorName
1627
+
1628
+ /** @public */
1629
+ export declare type ThemeColorVariant = Record<ThemeColorStateToneKey, ThemeColorElement>
1630
+
1631
+ /** @public */
1632
+ export declare type ThemeColorVariantKey = (typeof COLOR_VARIANTS)[number]
1633
+
1634
+ /** @public */
1635
+ export declare interface ThemeConfig {
1636
+ avatar?: ThemeAvatar_v2
1637
+ button?: {
1638
+ border: {
1639
+ width: number
1640
+ }
1641
+ focusRing: ThemeFocusRing
1642
+ textWeight: ThemeFontWeightKey
1643
+ }
1644
+ card?: {
1645
+ border: {
1646
+ width: number
1647
+ }
1648
+ focusRing: ThemeFocusRing
1649
+ shadow: {
1650
+ outline: number
1651
+ }
1652
+ }
1653
+ color?: ThemeColorTokens
1654
+ container?: number[]
1655
+ font?: ThemeFonts
1656
+ input?: ThemeInput_v2
1657
+ layer?: ThemeLayer
1658
+ media?: number[]
1659
+ palette?: ThemeColorPalette
1660
+ radius?: number[]
1661
+ shadow?: Array<ThemeShadow | null>
1662
+ space?: number[]
1663
+ /** @internal */
1664
+ style?: ThemeStyles
1665
+ }
1666
+
1667
+ /** @public */
1668
+ export declare type ThemeEntry = [`--${string}`, string]
1669
+
1670
+ /** @public */
1671
+ export declare interface ThemeFocusRing {
1672
+ offset: number
1673
+ width: number
1674
+ }
1675
+
1676
+ /** @public */
1677
+ export declare interface ThemeFont {
1678
+ family: string
1679
+ weights: ThemeFontWeight
1680
+ sizes: ThemeFontSize[]
1681
+ /** @deprecated No longer supported. */
1682
+ horizontalOffset?: number
1683
+ }
1684
+
1685
+ /** @public */
1686
+ export declare interface ThemeFont_v3 {
1687
+ family: string
1688
+ featureSettings?: string
1689
+ weight: ThemeFontWeight
1690
+ scale: ThemeFontSize_v3[]
1691
+ }
1692
+
1693
+ /** @public */
1694
+ export declare type ThemeFontKey = 'code' | 'heading' | 'label' | 'text'
1695
+
1696
+ /** @public */
1697
+ export declare interface ThemeFonts {
1698
+ code: ThemeFont
1699
+ heading: ThemeFont
1700
+ label: ThemeFont
1701
+ text: ThemeFont
1702
+ }
1703
+
1704
+ /** @public */
1705
+ export declare interface ThemeFonts_v3 {
1706
+ code: ThemeFont_v3
1707
+ heading: ThemeFont_v3
1708
+ label: ThemeFont_v3
1709
+ text: ThemeFont_v3
1710
+ }
1711
+
1712
+ /** @public */
1713
+ export declare interface ThemeFontSize {
1714
+ ascenderHeight: number
1715
+ descenderHeight: number
1716
+ fontSize: number
1717
+ iconSize: number
1718
+ letterSpacing: number
1719
+ lineHeight: number
1720
+ }
1721
+
1722
+ /** @public */
1723
+ export declare interface ThemeFontSize_v3 {
1724
+ ascenderHeight: number
1725
+ descenderHeight: number
1726
+ fontSize: number
1727
+ iconSize: number
1728
+ letterSpacing: number
1729
+ lineHeight: number
1730
+ customIconSize: number
1731
+ }
1732
+
1733
+ /** @public */
1734
+ export declare interface ThemeFontWeight {
1735
+ regular: number
1736
+ medium: number
1737
+ semibold: number
1738
+ bold: number
1739
+ }
1740
+
1741
+ /** @public */
1742
+ export declare type ThemeFontWeightKey = 'regular' | 'medium' | 'semibold' | 'bold'
1743
+
1744
+ /**
1745
+ * @public
1746
+ * @deprecated Use `ThemeInput_v2` instead
1747
+ */
1748
+ export declare interface ThemeInput {
1749
+ checkbox: {
1750
+ size: number
1751
+ }
1752
+ radio: {
1753
+ size: number
1754
+ markSize: number
1755
+ }
1756
+ switch: {
1757
+ width: number
1758
+ height: number
1759
+ padding: number
1760
+ transitionDurationMs: number
1761
+ transitionTimingFunction: string
1762
+ }
1763
+ border: {
1764
+ width: number
1765
+ }
1766
+ }
1767
+
1768
+ /** @public */
1769
+ export declare interface ThemeInput_v2 {
1770
+ checkbox: {
1771
+ size: number
1772
+ focusRing: ThemeFocusRing
1773
+ }
1774
+ radio: {
1775
+ size: number
1776
+ markSize: number
1777
+ focusRing: ThemeFocusRing
1778
+ }
1779
+ switch: {
1780
+ width: number
1781
+ height: number
1782
+ padding: number
1783
+ transitionDurationMs: number
1784
+ transitionTimingFunction: string
1785
+ focusRing: ThemeFocusRing
1786
+ }
1787
+ border: {
1788
+ width: number
1789
+ }
1790
+ select: {
1791
+ focusRing: ThemeFocusRing
1792
+ }
1793
+ text: {
1794
+ focusRing: ThemeFocusRing
1795
+ }
1796
+ }
1797
+
1798
+ /** @public */
1799
+ export declare interface ThemeLayer {
1800
+ dialog: {
1801
+ zOffset: number
1802
+ }
1803
+ popover: {
1804
+ zOffset: number
1805
+ }
1806
+ tooltip: {
1807
+ zOffset: number
1808
+ }
1809
+ }
1810
+
1811
+ /** @public */
1812
+ export declare interface ThemeOptions {
1813
+ v2?: ThemeConfig
1814
+ tokens?: PartialTokens<Tokens>
1815
+ }
1816
+
1817
+ /** @public */
1818
+ export declare interface ThemePalette_v3 {
1819
+ black: ColorTint
1820
+ white: ColorTint
1821
+ hues: ColorHues
1822
+ }
1823
+
1824
+ /** @public */
1825
+ export declare interface ThemeShadow {
1826
+ umbra: ThemeBoxShadow
1827
+ penumbra: ThemeBoxShadow
1828
+ ambient: ThemeBoxShadow
1829
+ }
1830
+
1831
+ /**
1832
+ * @internal
1833
+ */
1834
+ export declare interface ThemeStyles {
1835
+ button?: {
1836
+ root?: CSSObject
1837
+ }
1838
+ card?: {
1839
+ root?: CSSObject
1840
+ }
1841
+ }
1842
+
1843
+ /** @public */
1844
+ export declare type Tint = (typeof TINTS)[number]
1845
+
1846
+ /** @public */
1847
+ export declare const TINTS: readonly [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950]
1848
+
1849
+ /** @internal */
1850
+ export declare interface TokenBaseKeyNode {
1851
+ type: 'base'
1852
+ tone: ColorConfigCardTone
1853
+ key: ColorConfigCardKey | ColorConfigBlendKey
1854
+ }
1855
+
1856
+ /** @internal */
1857
+ export declare interface TokenBlendModeValueNode {
1858
+ type: 'blendMode'
1859
+ value?: ThemeColorBlendModeKey
1860
+ }
1861
+
1862
+ /** @internal */
1863
+ export declare interface TokenButtonKeyNode {
1864
+ type: 'button'
1865
+ tone: ColorConfigStateTone
1866
+ mode: ThemeColorButtonModeKey
1867
+ key: ColorConfigStateKey | ColorConfigBlendKey
1868
+ }
1869
+
1870
+ /** @internal */
1871
+ export declare interface TokenColorValueNode {
1872
+ type: 'color'
1873
+ key?: 'black' | 'white'
1874
+ hue?: ColorHueKey
1875
+ mix?: number
1876
+ opacity?: number
1877
+ tint?: ColorTintKey
1878
+ }
1879
+
1880
+ /** @internal */
1881
+ export declare interface TokenHueValueNode {
1882
+ type: 'hue'
1883
+ value?: ColorHueKey
1884
+ }
1885
+
1886
+ /** @internal */
1887
+ export declare type TokenizeColorResult = ColorNode | ColorTintNode | ColorInheritNode
1888
+
1889
+ /** @internal */
1890
+ export declare type TokenKeyNode = TokenBaseKeyNode | TokenButtonKeyNode
1891
+
1892
+ /** @public */
1893
+ export declare interface Tokens {
1894
+ color: ColorTokens
1895
+ }
1896
+
1897
+ /** @internal */
1898
+ export declare type TokenValueNode =
1899
+ | TokenColorValueNode
1900
+ | TokenHueValueNode
1901
+ | TokenBlendModeValueNode
1902
+
1903
+ export {}