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