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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (492) hide show
  1. package/README.md +8 -6
  2. package/dist/_chunks-cjs/_visual-editing.js +132 -145
  3. package/dist/_chunks-cjs/_visual-editing.js.map +1 -1
  4. package/dist/_chunks-cjs/refractor.js.map +1 -1
  5. package/dist/_chunks-es/_visual-editing.mjs +133 -146
  6. package/dist/_chunks-es/_visual-editing.mjs.map +1 -1
  7. package/dist/_chunks-es/refractor.mjs.map +1 -1
  8. package/dist/_visual-editing.d.mts +5 -15
  9. package/dist/_visual-editing.d.ts +5 -15
  10. package/dist/_visual-editing.js +0 -1
  11. package/dist/_visual-editing.js.map +1 -1
  12. package/dist/_visual-editing.mjs +1 -2
  13. package/dist/cli.js +1 -1
  14. package/dist/cli.js.map +1 -1
  15. package/dist/css.d.mts +12 -1
  16. package/dist/css.d.ts +12 -1
  17. package/dist/css.js +325 -430
  18. package/dist/css.js.map +1 -1
  19. package/dist/css.mjs +325 -430
  20. package/dist/css.mjs.map +1 -1
  21. package/dist/index.d.mts +10 -20
  22. package/dist/index.d.ts +10 -20
  23. package/dist/index.js +7 -41
  24. package/dist/index.js.map +1 -1
  25. package/dist/index.mjs +10 -44
  26. package/dist/index.mjs.map +1 -1
  27. package/dist/system.css +856 -84
  28. package/dist/system.min.css +1 -1
  29. package/exports/_visual-editing.ts +27 -27
  30. package/exports/index.ts +1 -1
  31. package/package.json +5 -5
  32. package/src/cli/index.ts +1 -13
  33. package/src/{ui → core}/_compat/index.ts +0 -1
  34. package/src/{ui → core}/_compat/theme/themeProvider.tsx +3 -3
  35. package/src/{ui → core}/components/tab/tabList.tsx +19 -4
  36. package/src/{ui → core}/index.ts +0 -1
  37. package/src/{ui → core}/primitives/box/box.tsx +3 -0
  38. package/src/{ui → core}/primitives/card/card.tsx +15 -21
  39. package/src/core/primitives/card/cardProvider.tsx +27 -0
  40. package/src/{ui → core}/primitives/card/types.ts +5 -4
  41. package/src/{ui → core}/primitives/popover/popover.tsx +1 -1
  42. package/src/{ui → core}/primitives/popover/popoverLayer.tsx +9 -20
  43. package/src/{ui → core}/primitives/tooltip/tooltip.tsx +2 -1
  44. package/src/{ui → core}/primitives/tooltip/tooltipLayer.tsx +11 -21
  45. package/src/{ui/utils/portal/portal.ts → core/utils/portal/portal.tsx} +8 -10
  46. package/src/css/_mergeStyles.ts +0 -7
  47. package/src/css/_system.style.ts +2 -0
  48. package/src/css/aspects/font/font.style.ts +0 -21
  49. package/src/css/aspects/font/font.ts +1 -6
  50. package/src/css/aspects/font/types.ts +0 -4
  51. package/src/css/aspects/index.ts +1 -0
  52. package/src/css/aspects/margin/margin.style.ts +0 -3
  53. package/src/css/aspects/textAlign/index.ts +2 -0
  54. package/src/css/aspects/textAlign/textAlign.style.ts +26 -0
  55. package/src/css/aspects/textAlign/textAlign.ts +8 -0
  56. package/src/css/aspects/textAlign/types.ts +7 -0
  57. package/src/css/primitives/_input/_input.style.ts +9 -11
  58. package/src/css/primitives/box/box.style.ts +5 -1
  59. package/src/css/primitives/box/box.ts +2 -0
  60. package/src/css/primitives/box/types.ts +2 -0
  61. package/src/css/primitives/heading/heading.ts +2 -1
  62. package/src/css/primitives/heading/types.ts +2 -1
  63. package/src/css/primitives/label/label.ts +2 -1
  64. package/src/css/primitives/label/types.ts +2 -1
  65. package/src/css/primitives/text/text.style.ts +0 -5
  66. package/src/css/primitives/text/text.ts +2 -1
  67. package/src/css/primitives/text/types.ts +2 -1
  68. package/src/css/primitives/textInput/textInput.style.ts +1 -120
  69. package/src/css/aspects/height/rules.ts +0 -7
  70. package/src/css/aspects/width/rules.ts +0 -8
  71. package/src/css/components/menu/rules.ts +0 -15
  72. package/src/css/primitives/avatar/rules.ts +0 -176
  73. package/src/css/primitives/button/rules.ts +0 -302
  74. package/src/css/primitives/checkbox/rules.ts +0 -152
  75. package/src/css/primitives/code/rules.ts +0 -96
  76. package/src/css/primitives/container/rules.ts +0 -8
  77. package/src/css/primitives/heading/rules.ts +0 -155
  78. package/src/css/primitives/kbd/rules.ts +0 -20
  79. package/src/css/primitives/label/rules.ts +0 -137
  80. package/src/css/primitives/radio/rules.ts +0 -121
  81. package/src/css/primitives/select/rules.ts +0 -22
  82. package/src/css/primitives/switch/rules.ts +0 -340
  83. package/src/css/primitives/text/rules.ts +0 -164
  84. package/src/css/primitives/textArea/rules.ts +0 -7
  85. package/src/css/primitives/textInput/rules.ts +0 -224
  86. package/src/css/primitives/tooltip/rules.ts +0 -19
  87. package/src/ui/RootClassNames.tsx +0 -44
  88. package/src/ui/_compat/studioTheme.ts +0 -7
  89. package/src/ui/primitives/card/cardProvider.tsx +0 -21
  90. /package/src/{ui → core}/StyleTags.tsx +0 -0
  91. /package/src/{ui → core}/_compat/helpers.ts +0 -0
  92. /package/src/{ui → core}/_compat/styles/_responsive.ts +0 -0
  93. /package/src/{ui → core}/_compat/styles/index.ts +0 -0
  94. /package/src/{ui → core}/_compat/theme/index.ts +0 -0
  95. /package/src/{ui → core}/_compat/theme/theme.test.tsx +0 -0
  96. /package/src/{ui → core}/_compat/theme/themeColorProvider.tsx +0 -0
  97. /package/src/{ui → core}/_compat/theme/themeContext.ts +0 -0
  98. /package/src/{ui → core}/_compat/theme/types.ts +0 -0
  99. /package/src/{ui → core}/_compat/theme/useRootTheme.ts +0 -0
  100. /package/src/{ui → core}/_compat/theme/useTheme.ts +0 -0
  101. /package/src/{ui → core}/_compat/types.ts +0 -0
  102. /package/src/{ui → core}/components/autocomplete/__mocks__/apiStore.ts +0 -0
  103. /package/src/{ui → core}/components/autocomplete/__mocks__/countries.ts +0 -0
  104. /package/src/{ui → core}/components/autocomplete/__workshop__/async.tsx +0 -0
  105. /package/src/{ui → core}/components/autocomplete/__workshop__/constrainedHeight.tsx +0 -0
  106. /package/src/{ui → core}/components/autocomplete/__workshop__/custom.tsx +0 -0
  107. /package/src/{ui → core}/components/autocomplete/__workshop__/example.tsx +0 -0
  108. /package/src/{ui → core}/components/autocomplete/__workshop__/focusAndBlur.tsx +0 -0
  109. /package/src/{ui → core}/components/autocomplete/__workshop__/fullscreen.tsx +0 -0
  110. /package/src/{ui → core}/components/autocomplete/__workshop__/index.ts +0 -0
  111. /package/src/{ui → core}/components/autocomplete/__workshop__/types.ts +0 -0
  112. /package/src/{ui → core}/components/autocomplete/autocomplete.tsx +0 -0
  113. /package/src/{ui → core}/components/autocomplete/autocompleteOption.tsx +0 -0
  114. /package/src/{ui → core}/components/autocomplete/autocompleteReducer.ts +0 -0
  115. /package/src/{ui → core}/components/autocomplete/constants.ts +0 -0
  116. /package/src/{ui → core}/components/autocomplete/index.ts +0 -0
  117. /package/src/{ui → core}/components/autocomplete/types.ts +0 -0
  118. /package/src/{ui → core}/components/breadcrumbs/__workshop__/example.tsx +0 -0
  119. /package/src/{ui → core}/components/breadcrumbs/__workshop__/index.ts +0 -0
  120. /package/src/{ui → core}/components/breadcrumbs/breadcrumbs.tsx +0 -0
  121. /package/src/{ui → core}/components/breadcrumbs/index.ts +0 -0
  122. /package/src/{ui → core}/components/dialog/__workshop__/activate.tsx +0 -0
  123. /package/src/{ui → core}/components/dialog/__workshop__/autoFocus.tsx +0 -0
  124. /package/src/{ui → core}/components/dialog/__workshop__/index.ts +0 -0
  125. /package/src/{ui → core}/components/dialog/__workshop__/layering.tsx +0 -0
  126. /package/src/{ui → core}/components/dialog/__workshop__/nested.tsx +0 -0
  127. /package/src/{ui → core}/components/dialog/__workshop__/onScroll.tsx +0 -0
  128. /package/src/{ui → core}/components/dialog/__workshop__/panes.tsx +0 -0
  129. /package/src/{ui → core}/components/dialog/__workshop__/position.tsx +0 -0
  130. /package/src/{ui → core}/components/dialog/__workshop__/props.tsx +0 -0
  131. /package/src/{ui → core}/components/dialog/__workshop__/provider.tsx +0 -0
  132. /package/src/{ui → core}/components/dialog/__workshop__/wrapped.tsx +0 -0
  133. /package/src/{ui → core}/components/dialog/dialog.tsx +0 -0
  134. /package/src/{ui → core}/components/dialog/dialogCard.tsx +0 -0
  135. /package/src/{ui → core}/components/dialog/dialogContext.ts +0 -0
  136. /package/src/{ui → core}/components/dialog/dialogProvider.tsx +0 -0
  137. /package/src/{ui → core}/components/dialog/index.ts +0 -0
  138. /package/src/{ui → core}/components/dialog/isTargetWithinScope.ts +0 -0
  139. /package/src/{ui → core}/components/dialog/useDialog.ts +0 -0
  140. /package/src/{ui → core}/components/hotkeys/__workshop__/index.ts +0 -0
  141. /package/src/{ui → core}/components/hotkeys/__workshop__/plain.tsx +0 -0
  142. /package/src/{ui → core}/components/hotkeys/hotkeys.tsx +0 -0
  143. /package/src/{ui → core}/components/hotkeys/index.ts +0 -0
  144. /package/src/{ui → core}/components/index.ts +0 -0
  145. /package/src/{ui → core}/components/menu/__workshop__/asComponent.tsx +0 -0
  146. /package/src/{ui → core}/components/menu/__workshop__/avatarMenu.tsx +0 -0
  147. /package/src/{ui → core}/components/menu/__workshop__/closableMenuButton.tsx +0 -0
  148. /package/src/{ui → core}/components/menu/__workshop__/constrainedInBoundary.tsx +0 -0
  149. /package/src/{ui → core}/components/menu/__workshop__/customMenuItem.tsx +0 -0
  150. /package/src/{ui → core}/components/menu/__workshop__/customSelectedState.tsx +0 -0
  151. /package/src/{ui → core}/components/menu/__workshop__/disableFocusOnClose.tsx +0 -0
  152. /package/src/{ui → core}/components/menu/__workshop__/groups.tsx +0 -0
  153. /package/src/{ui → core}/components/menu/__workshop__/index.ts +0 -0
  154. /package/src/{ui → core}/components/menu/__workshop__/menuButton.tsx +0 -0
  155. /package/src/{ui → core}/components/menu/__workshop__/menuGroupRight.tsx +0 -0
  156. /package/src/{ui → core}/components/menu/__workshop__/nestedMenu.tsx +0 -0
  157. /package/src/{ui → core}/components/menu/__workshop__/onCloseMenuButton.tsx +0 -0
  158. /package/src/{ui → core}/components/menu/__workshop__/selectedItem.tsx +0 -0
  159. /package/src/{ui → core}/components/menu/__workshop__/shouldFocus.tsx +0 -0
  160. /package/src/{ui → core}/components/menu/__workshop__/tones.tsx +0 -0
  161. /package/src/{ui → core}/components/menu/__workshop__/withoutArrow.tsx +0 -0
  162. /package/src/{ui → core}/components/menu/helpers.ts +0 -0
  163. /package/src/{ui → core}/components/menu/index.ts +0 -0
  164. /package/src/{ui → core}/components/menu/menu.test.tsx +0 -0
  165. /package/src/{ui → core}/components/menu/menu.tsx +0 -0
  166. /package/src/{ui → core}/components/menu/menuButton.tsx +0 -0
  167. /package/src/{ui → core}/components/menu/menuContext.ts +0 -0
  168. /package/src/{ui → core}/components/menu/menuDivider.tsx +0 -0
  169. /package/src/{ui → core}/components/menu/menuGroup.tsx +0 -0
  170. /package/src/{ui → core}/components/menu/menuItem.tsx +0 -0
  171. /package/src/{ui → core}/components/menu/useMenu.ts +0 -0
  172. /package/src/{ui → core}/components/menu/useMenuController.ts +0 -0
  173. /package/src/{ui → core}/components/skeleton/__workshop__/delay.tsx +0 -0
  174. /package/src/{ui → core}/components/skeleton/__workshop__/index.ts +0 -0
  175. /package/src/{ui → core}/components/skeleton/__workshop__/skeleton.tsx +0 -0
  176. /package/src/{ui → core}/components/skeleton/codeSkeleton.tsx +0 -0
  177. /package/src/{ui → core}/components/skeleton/headingSkeleton.tsx +0 -0
  178. /package/src/{ui → core}/components/skeleton/index.ts +0 -0
  179. /package/src/{ui → core}/components/skeleton/labelSkeleton.tsx +0 -0
  180. /package/src/{ui → core}/components/skeleton/skeleton.tsx +0 -0
  181. /package/src/{ui → core}/components/skeleton/textSkeleton.tsx +0 -0
  182. /package/src/{ui → core}/components/tab/__workshop__/example.tsx +0 -0
  183. /package/src/{ui → core}/components/tab/__workshop__/index.ts +0 -0
  184. /package/src/{ui → core}/components/tab/index.ts +0 -0
  185. /package/src/{ui → core}/components/tab/tab.tsx +0 -0
  186. /package/src/{ui → core}/components/tab/tabPanel.tsx +0 -0
  187. /package/src/{ui → core}/components/toast/__workshop__/hook.tsx +0 -0
  188. /package/src/{ui → core}/components/toast/__workshop__/index.ts +0 -0
  189. /package/src/{ui → core}/components/toast/__workshop__/toast.tsx +0 -0
  190. /package/src/{ui → core}/components/toast/index.ts +0 -0
  191. /package/src/{ui → core}/components/toast/toast.test.tsx +0 -0
  192. /package/src/{ui → core}/components/toast/toast.tsx +0 -0
  193. /package/src/{ui → core}/components/toast/toastContext.ts +0 -0
  194. /package/src/{ui → core}/components/toast/toastLayer.tsx +0 -0
  195. /package/src/{ui → core}/components/toast/toastProvider.tsx +0 -0
  196. /package/src/{ui → core}/components/toast/toastState.ts +0 -0
  197. /package/src/{ui → core}/components/toast/types.ts +0 -0
  198. /package/src/{ui → core}/components/toast/useToast.ts +0 -0
  199. /package/src/{ui → core}/components/tree/__workshop__/basic.perf.ts +0 -0
  200. /package/src/{ui → core}/components/tree/__workshop__/basic.tsx +0 -0
  201. /package/src/{ui → core}/components/tree/__workshop__/index.ts +0 -0
  202. /package/src/{ui → core}/components/tree/__workshop__/tabFromElement.tsx +0 -0
  203. /package/src/{ui → core}/components/tree/helpers.ts +0 -0
  204. /package/src/{ui → core}/components/tree/index.ts +0 -0
  205. /package/src/{ui → core}/components/tree/tree.tsx +0 -0
  206. /package/src/{ui → core}/components/tree/treeContext.ts +0 -0
  207. /package/src/{ui → core}/components/tree/treeGroup.tsx +0 -0
  208. /package/src/{ui → core}/components/tree/treeItem.tsx +0 -0
  209. /package/src/{ui → core}/components/tree/types.ts +0 -0
  210. /package/src/{ui → core}/components/tree/useTree.ts +0 -0
  211. /package/src/{ui → core}/constants.ts +0 -0
  212. /package/src/{ui → core}/global.ts +0 -0
  213. /package/src/{ui → core}/helpers/animation.ts +0 -0
  214. /package/src/{ui → core}/helpers/element.ts +0 -0
  215. /package/src/{ui → core}/helpers/focus.ts +0 -0
  216. /package/src/{ui → core}/helpers/index.ts +0 -0
  217. /package/src/{ui → core}/helpers/props.ts +0 -0
  218. /package/src/{ui → core}/helpers/scroll.ts +0 -0
  219. /package/src/{ui → core}/hooks/index.ts +0 -0
  220. /package/src/{ui → core}/hooks/useArrayProp.ts +0 -0
  221. /package/src/{ui → core}/hooks/useClickOutside.test.tsx +0 -0
  222. /package/src/{ui → core}/hooks/useClickOutside.ts +0 -0
  223. /package/src/{ui → core}/hooks/useClickOutsideEvent.test.tsx +0 -0
  224. /package/src/{ui → core}/hooks/useClickOutsideEvent.ts +0 -0
  225. /package/src/{ui → core}/hooks/useCustomValidity.ts +0 -0
  226. /package/src/{ui → core}/hooks/useDelayed.test.ts +0 -0
  227. /package/src/{ui → core}/hooks/useDelayedState.ts +0 -0
  228. /package/src/{ui → core}/hooks/useElementRect/__workshop__/example.tsx +0 -0
  229. /package/src/{ui → core}/hooks/useElementRect/__workshop__/index.ts +0 -0
  230. /package/src/{ui → core}/hooks/useElementRect/index.ts +0 -0
  231. /package/src/{ui → core}/hooks/useElementRect/useElementRect.ts +0 -0
  232. /package/src/{ui → core}/hooks/useElementSize.ts +0 -0
  233. /package/src/{ui → core}/hooks/useForwardedRef.ts +0 -0
  234. /package/src/{ui → core}/hooks/useGlobalKeyDown.ts +0 -0
  235. /package/src/{ui → core}/hooks/useIsomorphicEffect.ts +0 -0
  236. /package/src/{ui → core}/hooks/useMatchMedia.ts +0 -0
  237. /package/src/{ui → core}/hooks/useMediaIndex/__workshop__/index.ts +0 -0
  238. /package/src/{ui → core}/hooks/useMediaIndex/__workshop__/test.tsx +0 -0
  239. /package/src/{ui → core}/hooks/useMediaIndex/index.ts +0 -0
  240. /package/src/{ui → core}/hooks/useMediaIndex/useMediaIndex.test.tsx +0 -0
  241. /package/src/{ui → core}/hooks/useMediaIndex/useMediaIndex.ts +0 -0
  242. /package/src/{ui → core}/hooks/useMounted.ts +0 -0
  243. /package/src/{ui → core}/hooks/usePrefersDark.hydration.test.tsx +0 -0
  244. /package/src/{ui → core}/hooks/usePrefersDark.test.tsx +0 -0
  245. /package/src/{ui → core}/hooks/usePrefersDark.ts +0 -0
  246. /package/src/{ui → core}/hooks/usePrefersReducedMotion.hydration.test.tsx +0 -0
  247. /package/src/{ui → core}/hooks/usePrefersReducedMotion.test.tsx +0 -0
  248. /package/src/{ui → core}/hooks/usePrefersReducedMotion.ts +0 -0
  249. /package/src/{ui → core}/lib/createGlobalScopedContext.ts +0 -0
  250. /package/src/{ui → core}/lib/globalScope.ts +0 -0
  251. /package/src/{ui → core}/lib/isRecord.ts +0 -0
  252. /package/src/{ui → core}/middleware/origin.ts +0 -0
  253. /package/src/{ui → core}/observers/elementSizeObserver.ts +0 -0
  254. /package/src/{ui → core}/observers/index.ts +0 -0
  255. /package/src/{ui → core}/observers/resizeObserver.ts +0 -0
  256. /package/src/{ui → core}/primitives/_selectable/index.ts +0 -0
  257. /package/src/{ui → core}/primitives/_selectable/selectable.tsx +0 -0
  258. /package/src/{ui → core}/primitives/avatar/__workshop__/asButton.tsx +0 -0
  259. /package/src/{ui → core}/primitives/avatar/__workshop__/index.ts +0 -0
  260. /package/src/{ui → core}/primitives/avatar/__workshop__/stack.tsx +0 -0
  261. /package/src/{ui → core}/primitives/avatar/__workshop__/withinButton.tsx +0 -0
  262. /package/src/{ui → core}/primitives/avatar/__workshop__/withinMenuItem.tsx +0 -0
  263. /package/src/{ui → core}/primitives/avatar/avatar.tsx +0 -0
  264. /package/src/{ui → core}/primitives/avatar/avatarCounter.tsx +0 -0
  265. /package/src/{ui → core}/primitives/avatar/avatarStack.tsx +0 -0
  266. /package/src/{ui → core}/primitives/avatar/index.ts +0 -0
  267. /package/src/{ui → core}/primitives/avatar/types.ts +0 -0
  268. /package/src/{ui → core}/primitives/badge/__workshop__/index.ts +0 -0
  269. /package/src/{ui → core}/primitives/badge/__workshop__/props.tsx +0 -0
  270. /package/src/{ui → core}/primitives/badge/__workshop__/tones.tsx +0 -0
  271. /package/src/{ui → core}/primitives/badge/badge.test.tsx +0 -0
  272. /package/src/{ui → core}/primitives/badge/badge.tsx +0 -0
  273. /package/src/{ui → core}/primitives/badge/index.ts +0 -0
  274. /package/src/{ui → core}/primitives/badge/types.ts +0 -0
  275. /package/src/{ui → core}/primitives/box/__workshop__/index.ts +0 -0
  276. /package/src/{ui → core}/primitives/box/__workshop__/props.tsx +0 -0
  277. /package/src/{ui → core}/primitives/box/__workshop__/responsive.tsx +0 -0
  278. /package/src/{ui → core}/primitives/box/index.ts +0 -0
  279. /package/src/{ui → core}/primitives/button/__workshop__/custom.tsx +0 -0
  280. /package/src/{ui → core}/primitives/button/__workshop__/customIcons.tsx +0 -0
  281. /package/src/{ui → core}/primitives/button/__workshop__/disabled.tsx +0 -0
  282. /package/src/{ui → core}/primitives/button/__workshop__/index.ts +0 -0
  283. /package/src/{ui → core}/primitives/button/__workshop__/mixedChildren.tsx +0 -0
  284. /package/src/{ui → core}/primitives/button/__workshop__/props.tsx +0 -0
  285. /package/src/{ui → core}/primitives/button/__workshop__/sanityUploadButton.tsx +0 -0
  286. /package/src/{ui → core}/primitives/button/__workshop__/stacked.tsx +0 -0
  287. /package/src/{ui → core}/primitives/button/__workshop__/styled1.tsx +0 -0
  288. /package/src/{ui → core}/primitives/button/__workshop__/styled2.tsx +0 -0
  289. /package/src/{ui → core}/primitives/button/__workshop__/uploadButton.tsx +0 -0
  290. /package/src/{ui → core}/primitives/button/button.test.tsx +0 -0
  291. /package/src/{ui → core}/primitives/button/button.tsx +0 -0
  292. /package/src/{ui → core}/primitives/button/index.ts +0 -0
  293. /package/src/{ui → core}/primitives/card/__workshop__/allTones.tsx +0 -0
  294. /package/src/{ui → core}/primitives/card/__workshop__/asButton.tsx +0 -0
  295. /package/src/{ui → core}/primitives/card/__workshop__/asComponent.tsx +0 -0
  296. /package/src/{ui → core}/primitives/card/__workshop__/checkered.tsx +0 -0
  297. /package/src/{ui → core}/primitives/card/__workshop__/index.ts +0 -0
  298. /package/src/{ui → core}/primitives/card/__workshop__/interactive.tsx +0 -0
  299. /package/src/{ui → core}/primitives/card/__workshop__/listNavigation.tsx +0 -0
  300. /package/src/{ui → core}/primitives/card/__workshop__/props.tsx +0 -0
  301. /package/src/{ui → core}/primitives/card/__workshop__/selected.tsx +0 -0
  302. /package/src/{ui → core}/primitives/card/__workshop__/styled.tsx +0 -0
  303. /package/src/{ui → core}/primitives/card/cardContext.ts +0 -0
  304. /package/src/{ui → core}/primitives/card/index.ts +0 -0
  305. /package/src/{ui → core}/primitives/card/useCard.ts +0 -0
  306. /package/src/{ui → core}/primitives/checkbox/__workshop__/example.tsx +0 -0
  307. /package/src/{ui → core}/primitives/checkbox/__workshop__/index.ts +0 -0
  308. /package/src/{ui → core}/primitives/checkbox/__workshop__/props.tsx +0 -0
  309. /package/src/{ui → core}/primitives/checkbox/__workshop__/readOnly.tsx +0 -0
  310. /package/src/{ui → core}/primitives/checkbox/__workshop__/tones.tsx +0 -0
  311. /package/src/{ui → core}/primitives/checkbox/checkbox.tsx +0 -0
  312. /package/src/{ui → core}/primitives/checkbox/index.ts +0 -0
  313. /package/src/{ui → core}/primitives/code/__workshop__/index.ts +0 -0
  314. /package/src/{ui → core}/primitives/code/__workshop__/opticalAlignment.tsx +0 -0
  315. /package/src/{ui → core}/primitives/code/__workshop__/props.tsx +0 -0
  316. /package/src/{ui → core}/primitives/code/code.tsx +0 -0
  317. /package/src/{ui → core}/primitives/code/index.ts +0 -0
  318. /package/src/{ui → core}/primitives/code/refractor.tsx +0 -0
  319. /package/src/{ui → core}/primitives/container/__workshop__/example.tsx +0 -0
  320. /package/src/{ui → core}/primitives/container/__workshop__/index.ts +0 -0
  321. /package/src/{ui → core}/primitives/container/container.tsx +0 -0
  322. /package/src/{ui → core}/primitives/container/index.ts +0 -0
  323. /package/src/{ui → core}/primitives/container/types.ts +0 -0
  324. /package/src/{ui → core}/primitives/flex/__workshop__/example.tsx +0 -0
  325. /package/src/{ui → core}/primitives/flex/__workshop__/gap.tsx +0 -0
  326. /package/src/{ui → core}/primitives/flex/__workshop__/index.ts +0 -0
  327. /package/src/{ui → core}/primitives/flex/flex.tsx +0 -0
  328. /package/src/{ui → core}/primitives/flex/index.ts +0 -0
  329. /package/src/{ui → core}/primitives/grid/__workshop__/index.ts +0 -0
  330. /package/src/{ui → core}/primitives/grid/__workshop__/responsive.tsx +0 -0
  331. /package/src/{ui → core}/primitives/grid/grid.tsx +0 -0
  332. /package/src/{ui → core}/primitives/grid/index.ts +0 -0
  333. /package/src/{ui → core}/primitives/heading/__workshop__/index.ts +0 -0
  334. /package/src/{ui → core}/primitives/heading/__workshop__/opticalAlignment.tsx +0 -0
  335. /package/src/{ui → core}/primitives/heading/__workshop__/plain.tsx +0 -0
  336. /package/src/{ui → core}/primitives/heading/heading.tsx +0 -0
  337. /package/src/{ui → core}/primitives/heading/index.ts +0 -0
  338. /package/src/{ui → core}/primitives/index.ts +0 -0
  339. /package/src/{ui → core}/primitives/inline/__workshop__/index.ts +0 -0
  340. /package/src/{ui → core}/primitives/inline/__workshop__/plain.tsx +0 -0
  341. /package/src/{ui → core}/primitives/inline/index.ts +0 -0
  342. /package/src/{ui → core}/primitives/inline/inline.tsx +0 -0
  343. /package/src/{ui → core}/primitives/inline/types.ts +0 -0
  344. /package/src/{ui → core}/primitives/kbd/__workshop__/index.ts +0 -0
  345. /package/src/{ui → core}/primitives/kbd/__workshop__/plain.tsx +0 -0
  346. /package/src/{ui → core}/primitives/kbd/index.ts +0 -0
  347. /package/src/{ui → core}/primitives/kbd/kbd.tsx +0 -0
  348. /package/src/{ui → core}/primitives/label/__workshop__/index.ts +0 -0
  349. /package/src/{ui → core}/primitives/label/__workshop__/opticalAlignment.tsx +0 -0
  350. /package/src/{ui → core}/primitives/label/__workshop__/plain.tsx +0 -0
  351. /package/src/{ui → core}/primitives/label/index.ts +0 -0
  352. /package/src/{ui → core}/primitives/label/label.tsx +0 -0
  353. /package/src/{ui → core}/primitives/popover/__workshop__/AlignedStory.tsx +0 -0
  354. /package/src/{ui → core}/primitives/popover/__workshop__/MarginsStory.tsx +0 -0
  355. /package/src/{ui → core}/primitives/popover/__workshop__/MatchReferenceWidthStory.tsx +0 -0
  356. /package/src/{ui → core}/primitives/popover/__workshop__/OpenOnMountStory.tsx +0 -0
  357. /package/src/{ui → core}/primitives/popover/__workshop__/PlainStory.tsx +0 -0
  358. /package/src/{ui → core}/primitives/popover/__workshop__/RecursiveStory.tsx +0 -0
  359. /package/src/{ui → core}/primitives/popover/__workshop__/SidePanelStory.tsx +0 -0
  360. /package/src/{ui → core}/primitives/popover/__workshop__/TestStory.tsx +0 -0
  361. /package/src/{ui → core}/primitives/popover/__workshop__/index.ts +0 -0
  362. /package/src/{ui → core}/primitives/popover/constants.ts +0 -0
  363. /package/src/{ui → core}/primitives/popover/floating-ui/size.ts +0 -0
  364. /package/src/{ui → core}/primitives/popover/helpers.ts +0 -0
  365. /package/src/{ui → core}/primitives/popover/index.ts +0 -0
  366. /package/src/{ui → core}/primitives/popover/types.ts +0 -0
  367. /package/src/{ui → core}/primitives/radio/__workshop__/example.tsx +0 -0
  368. /package/src/{ui → core}/primitives/radio/__workshop__/index.ts +0 -0
  369. /package/src/{ui → core}/primitives/radio/__workshop__/plain.tsx +0 -0
  370. /package/src/{ui → core}/primitives/radio/index.ts +0 -0
  371. /package/src/{ui → core}/primitives/radio/radio.tsx +0 -0
  372. /package/src/{ui → core}/primitives/select/__workshop__/index.ts +0 -0
  373. /package/src/{ui → core}/primitives/select/__workshop__/plain.tsx +0 -0
  374. /package/src/{ui → core}/primitives/select/__workshop__/readOnly.tsx +0 -0
  375. /package/src/{ui → core}/primitives/select/index.ts +0 -0
  376. /package/src/{ui → core}/primitives/select/select.tsx +0 -0
  377. /package/src/{ui → core}/primitives/spinner/__workshop__/Props.tsx +0 -0
  378. /package/src/{ui → core}/primitives/spinner/__workshop__/index.ts +0 -0
  379. /package/src/{ui → core}/primitives/spinner/animatedSpinnerIcon.tsx +0 -0
  380. /package/src/{ui → core}/primitives/spinner/index.ts +0 -0
  381. /package/src/{ui → core}/primitives/spinner/spinner.tsx +0 -0
  382. /package/src/{ui → core}/primitives/stack/__workshop__/index.ts +0 -0
  383. /package/src/{ui → core}/primitives/stack/__workshop__/plain.tsx +0 -0
  384. /package/src/{ui → core}/primitives/stack/index.ts +0 -0
  385. /package/src/{ui → core}/primitives/stack/stack.tsx +0 -0
  386. /package/src/{ui → core}/primitives/switch/__workshop__/example.tsx +0 -0
  387. /package/src/{ui → core}/primitives/switch/__workshop__/index.ts +0 -0
  388. /package/src/{ui → core}/primitives/switch/__workshop__/props.tsx +0 -0
  389. /package/src/{ui → core}/primitives/switch/index.ts +0 -0
  390. /package/src/{ui → core}/primitives/switch/switch.tsx +0 -0
  391. /package/src/{ui → core}/primitives/text/__workshop__/colored.tsx +0 -0
  392. /package/src/{ui → core}/primitives/text/__workshop__/example.tsx +0 -0
  393. /package/src/{ui → core}/primitives/text/__workshop__/index.ts +0 -0
  394. /package/src/{ui → core}/primitives/text/__workshop__/opticalAlignment.tsx +0 -0
  395. /package/src/{ui → core}/primitives/text/index.ts +0 -0
  396. /package/src/{ui → core}/primitives/text/text.tsx +0 -0
  397. /package/src/{ui → core}/primitives/textArea/__workshop__/index.ts +0 -0
  398. /package/src/{ui → core}/primitives/textArea/__workshop__/plain.tsx +0 -0
  399. /package/src/{ui → core}/primitives/textArea/index.ts +0 -0
  400. /package/src/{ui → core}/primitives/textArea/textArea.tsx +0 -0
  401. /package/src/{ui → core}/primitives/textInput/__workshop__/clearButton.tsx +0 -0
  402. /package/src/{ui → core}/primitives/textInput/__workshop__/customValidity.tsx +0 -0
  403. /package/src/{ui → core}/primitives/textInput/__workshop__/index.ts +0 -0
  404. /package/src/{ui → core}/primitives/textInput/__workshop__/plain.tsx +0 -0
  405. /package/src/{ui → core}/primitives/textInput/__workshop__/readOnly.tsx +0 -0
  406. /package/src/{ui → core}/primitives/textInput/__workshop__/states.tsx +0 -0
  407. /package/src/{ui → core}/primitives/textInput/__workshop__/tones.tsx +0 -0
  408. /package/src/{ui → core}/primitives/textInput/__workshop__/typed.tsx +0 -0
  409. /package/src/{ui → core}/primitives/textInput/index.ts +0 -0
  410. /package/src/{ui → core}/primitives/textInput/textInput.tsx +0 -0
  411. /package/src/{ui → core}/primitives/tooltip/__workshop__/customPortal.tsx +0 -0
  412. /package/src/{ui → core}/primitives/tooltip/__workshop__/index.ts +0 -0
  413. /package/src/{ui → core}/primitives/tooltip/__workshop__/overflowingBoundary.tsx +0 -0
  414. /package/src/{ui → core}/primitives/tooltip/__workshop__/props.tsx +0 -0
  415. /package/src/{ui → core}/primitives/tooltip/__workshop__/resizableBoundary.tsx +0 -0
  416. /package/src/{ui → core}/primitives/tooltip/constants.ts +0 -0
  417. /package/src/{ui → core}/primitives/tooltip/index.ts +0 -0
  418. /package/src/{ui → core}/primitives/tooltip/tooltip.test.tsx +0 -0
  419. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/index.ts +0 -0
  420. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupContext.tsx +0 -0
  421. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx +0 -0
  422. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/types.ts +0 -0
  423. /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/useTooltipDelayGroup.ts +0 -0
  424. /package/src/{ui → core}/primitives/types.ts +0 -0
  425. /package/src/{ui → core}/types/avatar.ts +0 -0
  426. /package/src/{ui → core}/types/badge.ts +0 -0
  427. /package/src/{ui → core}/types/box.ts +0 -0
  428. /package/src/{ui → core}/types/button.ts +0 -0
  429. /package/src/{ui → core}/types/card.ts +0 -0
  430. /package/src/{ui → core}/types/dialog.ts +0 -0
  431. /package/src/{ui → core}/types/flex.ts +0 -0
  432. /package/src/{ui → core}/types/grid.ts +0 -0
  433. /package/src/{ui → core}/types/gridItem.ts +0 -0
  434. /package/src/{ui → core}/types/index.ts +0 -0
  435. /package/src/{ui → core}/types/placement.ts +0 -0
  436. /package/src/{ui → core}/types/popover.ts +0 -0
  437. /package/src/{ui → core}/types/props.ts +0 -0
  438. /package/src/{ui → core}/types/radius.ts +0 -0
  439. /package/src/{ui → core}/types/selectable.ts +0 -0
  440. /package/src/{ui → core}/types/text.ts +0 -0
  441. /package/src/{ui → core}/utils/arrow/arrow.tsx +0 -0
  442. /package/src/{ui → core}/utils/arrow/cmds.ts +0 -0
  443. /package/src/{ui → core}/utils/arrow/index.ts +0 -0
  444. /package/src/{ui → core}/utils/boundaryElement/__workshop__/index.ts +0 -0
  445. /package/src/{ui → core}/utils/boundaryElement/__workshop__/plain.tsx +0 -0
  446. /package/src/{ui → core}/utils/boundaryElement/boundaryElement.test.tsx +0 -0
  447. /package/src/{ui → core}/utils/boundaryElement/boundaryElementContext.ts +0 -0
  448. /package/src/{ui → core}/utils/boundaryElement/boundaryElementProvider.tsx +0 -0
  449. /package/src/{ui → core}/utils/boundaryElement/index.ts +0 -0
  450. /package/src/{ui → core}/utils/boundaryElement/types.ts +0 -0
  451. /package/src/{ui → core}/utils/boundaryElement/useBoundaryElement.ts +0 -0
  452. /package/src/{ui → core}/utils/elementQuery/__workshop__/customMedia.tsx +0 -0
  453. /package/src/{ui → core}/utils/elementQuery/__workshop__/index.ts +0 -0
  454. /package/src/{ui → core}/utils/elementQuery/elementQuery.tsx +0 -0
  455. /package/src/{ui → core}/utils/elementQuery/helpers.ts +0 -0
  456. /package/src/{ui → core}/utils/elementQuery/index.ts +0 -0
  457. /package/src/{ui → core}/utils/errorBoundary.tsx +0 -0
  458. /package/src/{ui → core}/utils/getElementRef.ts +0 -0
  459. /package/src/{ui → core}/utils/index.ts +0 -0
  460. /package/src/{ui → core}/utils/layer/__workshop__/_debug.tsx +0 -0
  461. /package/src/{ui → core}/utils/layer/__workshop__/index.ts +0 -0
  462. /package/src/{ui → core}/utils/layer/__workshop__/multipleRoots.tsx +0 -0
  463. /package/src/{ui → core}/utils/layer/__workshop__/nested.tsx +0 -0
  464. /package/src/{ui → core}/utils/layer/__workshop__/responsiveZOffset.tsx +0 -0
  465. /package/src/{ui → core}/utils/layer/getLayerContext.test.ts +0 -0
  466. /package/src/{ui → core}/utils/layer/getLayerContext.ts +0 -0
  467. /package/src/{ui → core}/utils/layer/index.ts +0 -0
  468. /package/src/{ui → core}/utils/layer/layer.test.tsx +0 -0
  469. /package/src/{ui → core}/utils/layer/layer.tsx +0 -0
  470. /package/src/{ui → core}/utils/layer/layerCard.tsx +0 -0
  471. /package/src/{ui → core}/utils/layer/layerContext.ts +0 -0
  472. /package/src/{ui → core}/utils/layer/layerProvider.tsx +0 -0
  473. /package/src/{ui → core}/utils/layer/types.ts +0 -0
  474. /package/src/{ui → core}/utils/layer/useLayer.ts +0 -0
  475. /package/src/{ui → core}/utils/portal/__workshop__/index.ts +0 -0
  476. /package/src/{ui → core}/utils/portal/__workshop__/named.tsx +0 -0
  477. /package/src/{ui → core}/utils/portal/index.ts +0 -0
  478. /package/src/{ui → core}/utils/portal/portal.test.tsx +0 -0
  479. /package/src/{ui → core}/utils/portal/portalContext.ts +0 -0
  480. /package/src/{ui → core}/utils/portal/portalProvider.tsx +0 -0
  481. /package/src/{ui → core}/utils/portal/types.ts +0 -0
  482. /package/src/{ui → core}/utils/portal/usePortal.ts +0 -0
  483. /package/src/{ui → core}/utils/spanWithTextOverflow.tsx +0 -0
  484. /package/src/{ui → core}/utils/srOnly/index.ts +0 -0
  485. /package/src/{ui → core}/utils/srOnly/srOnly.tsx +0 -0
  486. /package/src/{ui → core}/utils/virtualList/__workshop__/changingProps.tsx +0 -0
  487. /package/src/{ui → core}/utils/virtualList/__workshop__/elementScroll.tsx +0 -0
  488. /package/src/{ui → core}/utils/virtualList/__workshop__/index.ts +0 -0
  489. /package/src/{ui → core}/utils/virtualList/__workshop__/infiniteList.tsx +0 -0
  490. /package/src/{ui → core}/utils/virtualList/__workshop__/windowScrolll.tsx +0 -0
  491. /package/src/{ui → core}/utils/virtualList/index.ts +0 -0
  492. /package/src/{ui → core}/utils/virtualList/virtualList.tsx +0 -0
@@ -2,30 +2,30 @@
2
2
  * These are internal exports for usage in `@sanity/visual-editing` and `@sanity/insert-menu`,
3
3
  * which are used in environments where the regular `@sanity/ui` export is far too heavy due to imports from refractor and more.
4
4
  */
5
- export {studioTheme} from '../src/ui/_compat'
6
- export {ThemeProvider, type ThemeProviderProps} from '../src/ui/_compat/theme/themeProvider'
7
- export {useTheme_v2} from '../src/ui/_compat/theme/useTheme'
8
- export {Hotkeys, type HotkeysProps} from '../src/ui/components/hotkeys/hotkeys'
9
- export {Menu, type MenuProps} from '../src/ui/components/menu/menu'
10
- export {MenuDivider} from '../src/ui/components/menu/menuDivider'
11
- export {MenuGroup, type MenuGroupProps} from '../src/ui/components/menu/menuGroup'
12
- export {MenuItem, type MenuItemProps} from '../src/ui/components/menu/menuItem'
13
- export {Tab, type TabProps} from '../src/ui/components/tab/tab'
14
- export {TabList, type TabListProps} from '../src/ui/components/tab/tabList'
15
- export {isHTMLAnchorElement, isHTMLElement} from '../src/ui/helpers/element'
16
- export {usePrefersDark} from '../src/ui/hooks/usePrefersDark'
17
- export {Box, type BoxProps} from '../src/ui/primitives/box/box'
18
- export {Button, type ButtonProps} from '../src/ui/primitives/button/button'
19
- export {Card, type CardProps} from '../src/ui/primitives/card/card'
20
- export {Flex, type FlexProps} from '../src/ui/primitives/flex/flex'
21
- export {Grid, type GridProps} from '../src/ui/primitives/grid/grid'
22
- export {Popover, type PopoverProps} from '../src/ui/primitives/popover/popover'
23
- export {Spinner, type SpinnerProps} from '../src/ui/primitives/spinner/spinner'
24
- export {Stack, type StackProps} from '../src/ui/primitives/stack/stack'
25
- export {Text, type TextProps} from '../src/ui/primitives/text/text'
26
- export {TextInput, type TextInputProps} from '../src/ui/primitives/textInput/textInput'
27
- export {Tooltip, type TooltipProps} from '../src/ui/primitives/tooltip/tooltip'
28
- export type {PopoverMargins} from '../src/ui/types/popover'
29
- export {LayerProvider} from '../src/ui/utils/layer/layerProvider'
30
- export {Portal, type PortalProps} from '../src/ui/utils/portal/portal'
31
- export {PortalProvider, type PortalProviderProps} from '../src/ui/utils/portal/portalProvider'
5
+ // export {studioTheme} from '../src/core/_compat'
6
+ export {ThemeProvider, type ThemeProviderProps} from '../src/core/_compat/theme/themeProvider'
7
+ export {useTheme_v2} from '../src/core/_compat/theme/useTheme'
8
+ export {Hotkeys, type HotkeysProps} from '../src/core/components/hotkeys/hotkeys'
9
+ export {Menu, type MenuProps} from '../src/core/components/menu/menu'
10
+ export {MenuDivider} from '../src/core/components/menu/menuDivider'
11
+ export {MenuGroup, type MenuGroupProps} from '../src/core/components/menu/menuGroup'
12
+ export {MenuItem, type MenuItemProps} from '../src/core/components/menu/menuItem'
13
+ export {Tab, type TabProps} from '../src/core/components/tab/tab'
14
+ export {TabList, type TabListProps} from '../src/core/components/tab/tabList'
15
+ export {isHTMLAnchorElement, isHTMLElement} from '../src/core/helpers/element'
16
+ export {usePrefersDark} from '../src/core/hooks/usePrefersDark'
17
+ export {Box, type BoxProps} from '../src/core/primitives/box/box'
18
+ export {Button, type ButtonProps} from '../src/core/primitives/button/button'
19
+ export {Card, type CardProps} from '../src/core/primitives/card/card'
20
+ export {Flex, type FlexProps} from '../src/core/primitives/flex/flex'
21
+ export {Grid, type GridProps} from '../src/core/primitives/grid/grid'
22
+ export {Popover, type PopoverProps} from '../src/core/primitives/popover/popover'
23
+ export {Spinner, type SpinnerProps} from '../src/core/primitives/spinner/spinner'
24
+ export {Stack, type StackProps} from '../src/core/primitives/stack/stack'
25
+ export {Text, type TextProps} from '../src/core/primitives/text/text'
26
+ export {TextInput, type TextInputProps} from '../src/core/primitives/textInput/textInput'
27
+ export {Tooltip, type TooltipProps} from '../src/core/primitives/tooltip/tooltip'
28
+ export type {PopoverMargins} from '../src/core/types/popover'
29
+ export {LayerProvider} from '../src/core/utils/layer/layerProvider'
30
+ export {Portal, type PortalProps} from '../src/core/utils/portal/portal'
31
+ export {PortalProvider, type PortalProviderProps} from '../src/core/utils/portal/portalProvider'
package/exports/index.ts CHANGED
@@ -1 +1 @@
1
- export * from '../src/ui'
1
+ export * from '../src/core'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/ui",
3
- "version": "3.0.0-static.14",
3
+ "version": "3.0.0-static.16",
4
4
  "keywords": [
5
5
  "react",
6
6
  "ui",
@@ -116,7 +116,7 @@
116
116
  "postcss": "^8.5.3",
117
117
  "prettier": "^3.5.3",
118
118
  "pretty-bytes": "^7.0.0",
119
- "react-compiler-runtime": "19.1.0-rc.1",
119
+ "react-compiler-runtime": "19.1.0-rc.2",
120
120
  "react-refractor": "^2.2.0",
121
121
  "use-effect-event": "^1.0.2"
122
122
  },
@@ -131,7 +131,7 @@
131
131
  "@rollup/plugin-replace": "^6.0.2",
132
132
  "@sanity/pkg-utils": "^7.2.2",
133
133
  "@sanity/prettier-config": "^1.0.3",
134
- "@sanity/ui-workshop": "^2.1.3",
134
+ "@sanity/ui-workshop": "^2.1.2",
135
135
  "@storybook/addon-a11y": "^8.6.12",
136
136
  "@storybook/addon-docs": "^8.6.12",
137
137
  "@storybook/addon-essentials": "^8.6.12",
@@ -158,7 +158,7 @@
158
158
  "@types/react-is": "^19.0.0",
159
159
  "@types/refractor": "^3.4.1",
160
160
  "@vitejs/plugin-react": "^4.4.1",
161
- "babel-plugin-react-compiler": "19.1.0-rc.1",
161
+ "babel-plugin-react-compiler": "19.1.0-rc.2",
162
162
  "cac": "^6.7.14",
163
163
  "commitizen": "^4.3.1",
164
164
  "cypress": "^13.17.0",
@@ -173,7 +173,7 @@
173
173
  "eslint-plugin-import": "^2.31.0",
174
174
  "eslint-plugin-jsx-a11y": "^6.10.2",
175
175
  "eslint-plugin-react": "^7.37.5",
176
- "eslint-plugin-react-hooks": "0.0.0-experimental-7a2c7045-20250506",
176
+ "eslint-plugin-react-hooks": "0.0.0-experimental-4448b187-20250515",
177
177
  "eslint-plugin-react-refresh": "^0.4.20",
178
178
  "eslint-plugin-simple-import-sort": "^12.1.1",
179
179
  "eslint-plugin-storybook": "^0.12.0",
package/src/cli/index.ts CHANGED
@@ -1,21 +1,9 @@
1
- import cac from 'cac'
1
+ import {cac} from 'cac'
2
2
 
3
3
  import {version} from '../../package.json'
4
4
 
5
5
  const cli = cac('ui')
6
6
 
7
- // cli
8
- // .command('dev')
9
- // .option('--cwd [cwd]', 'Output directory')
10
- // .action(async (options) => {
11
- // const {devCommand} = await import('./devCommand')
12
-
13
- // await devCommand({
14
- // ...options,
15
- // cwd: options.cwd || process.cwd(),
16
- // })
17
- // })
18
-
19
7
  cli
20
8
  .command('build')
21
9
  .option('--cwd [cwd]', 'Working directory')
@@ -1,5 +1,4 @@
1
1
  export * from './helpers'
2
- export * from './studioTheme'
3
2
  export * from './styles'
4
3
  export * from './theme'
5
4
  export * from './types'
@@ -52,13 +52,13 @@ export function ThemeProvider(props: ThemeProviderProps): ReactElement {
52
52
 
53
53
  return (
54
54
  <CardProvider
55
- compat_provider={
55
+ scheme={scheme}
56
+ tone={tone}
57
+ unstable_CompatProvider={
56
58
  // Render a theme provider around the card if the scheme or tone differs from the root theme.
57
59
  // This is needed for backwards compatibility with the legacy theme API.
58
60
  ThemeColorProvider
59
61
  }
60
- scheme={scheme}
61
- tone={tone}
62
62
  >
63
63
  <ThemeContext.Provider value={themeContext}>
64
64
  <StyledThemeProvider theme={theme}>{children}</StyledThemeProvider>
@@ -1,6 +1,8 @@
1
+ import {ResponsiveProp} from '@sanity/ui/css'
2
+ import {Space} from '@sanity/ui/theme'
1
3
  import {Children, cloneElement, KeyboardEvent, ReactElement, useCallback, useState} from 'react'
2
4
 
3
- import {Inline, InlineOwnProps} from '../../primitives'
5
+ import {Flex, FlexOwnProps} from '../../primitives'
4
6
  import {ComponentType, Props} from '../../types'
5
7
  import {TabProps} from './tab'
6
8
 
@@ -11,8 +13,10 @@ export const DEFAULT_TAB_LIST_ELEMENT = 'div'
11
13
  export type TabListChild = ReactElement<Props<TabProps, 'button'>> | null | undefined | false
12
14
 
13
15
  /** @public */
14
- export type TabListOwnProps = Omit<InlineOwnProps, 'as' | 'height'> & {
16
+ export type TabListOwnProps = Omit<FlexOwnProps, 'as' | 'height'> & {
15
17
  children: TabListChild[]
18
+ /** @deprecated Use `gap` instead */
19
+ space?: ResponsiveProp<Space>
16
20
  }
17
21
 
18
22
  /** @public */
@@ -31,6 +35,9 @@ export function TabList<E extends TabListElementType = typeof DEFAULT_TAB_LIST_E
31
35
  const {
32
36
  as = DEFAULT_TAB_LIST_ELEMENT,
33
37
  children: childrenProp,
38
+ gap = 1,
39
+ space = 1,
40
+ wrap = 'nowrap',
34
41
  ...rest
35
42
  } = props as TabListProps<typeof DEFAULT_TAB_LIST_ELEMENT>
36
43
 
@@ -62,9 +69,17 @@ export function TabList<E extends TabListElementType = typeof DEFAULT_TAB_LIST_E
62
69
  )
63
70
 
64
71
  return (
65
- <Inline data-ui="TabList" {...rest} as={as} onKeyDown={handleKeyDown} role="tablist">
72
+ <Flex
73
+ data-ui="TabList"
74
+ {...rest}
75
+ as={as}
76
+ gap={gap ?? space}
77
+ onKeyDown={handleKeyDown}
78
+ role="tablist"
79
+ wrap={wrap}
80
+ >
66
81
  {tabs}
67
- </Inline>
82
+ </Flex>
68
83
  )
69
84
  }
70
85
 
@@ -4,7 +4,6 @@ export * from './helpers'
4
4
  export * from './hooks'
5
5
  export * from './observers'
6
6
  export * from './primitives'
7
- export * from './RootClassNames'
8
7
  export * from './StyleTags'
9
8
  export * from './types'
10
9
  export * from './utils'
@@ -29,6 +29,7 @@ export type BoxElementType =
29
29
  | 'figcaption'
30
30
  | 'footer'
31
31
  | 'form'
32
+ | 'iframe'
32
33
  | 'kbd'
33
34
  | 'label'
34
35
  | 'legend'
@@ -112,6 +113,7 @@ export function Box<E extends BoxElementType = typeof DEFAULT_BOX_ELEMENT>(props
112
113
  rowStart,
113
114
  rowEnd,
114
115
  sizing = 'border',
116
+ textAlign,
115
117
  width,
116
118
  wrap,
117
119
  ...rest
@@ -179,6 +181,7 @@ export function Box<E extends BoxElementType = typeof DEFAULT_BOX_ELEMENT>(props
179
181
  rowStart,
180
182
  rowEnd,
181
183
  sizing,
184
+ textAlign,
182
185
  width,
183
186
  wrap,
184
187
  }),
@@ -1,5 +1,4 @@
1
1
  import {card, CardStyleProps, composeClassNames} from '@sanity/ui/css'
2
- import {createElement} from 'react'
3
2
 
4
3
  import {Props} from '../../types'
5
4
  import {Box, BoxElementType, BoxOwnProps} from '../box'
@@ -57,14 +56,8 @@ export function Card<E extends CardElementType = typeof DEFAULT_CARD_ELEMENT>(pr
57
56
  } = props as CardProps<typeof DEFAULT_CARD_ELEMENT>
58
57
 
59
58
  const parent = useCard()
60
-
61
- const context = {
62
- tone: parent?.tone ?? 'default',
63
- scheme: parent?.scheme ?? 'light',
64
- }
65
-
66
- const tone = toneProp === 'inherit' ? context.tone : toneProp
67
- const scheme = schemeProp === undefined ? context.scheme : schemeProp
59
+ const tone = toneProp === 'inherit' ? parent?.tone : toneProp
60
+ const scheme = schemeProp === undefined ? parent?.scheme : schemeProp
68
61
 
69
62
  let node = (
70
63
  <Box
@@ -74,7 +67,7 @@ export function Card<E extends CardElementType = typeof DEFAULT_CARD_ELEMENT>(pr
74
67
  className={composeClassNames(
75
68
  className,
76
69
  card({
77
- scheme: scheme === context.scheme ? undefined : scheme,
70
+ scheme: scheme === parent?.scheme ? undefined : scheme,
78
71
  shadow,
79
72
  tone,
80
73
  }),
@@ -89,27 +82,28 @@ export function Card<E extends CardElementType = typeof DEFAULT_CARD_ELEMENT>(pr
89
82
  />
90
83
  )
91
84
 
92
- if (scheme === context.scheme && tone === context.tone) {
85
+ if (scheme === parent?.scheme && tone === parent?.tone) {
93
86
  return node
94
87
  }
95
88
 
96
89
  node = (
97
90
  <CardProvider
98
- compat_provider={parent?.compat_provider}
99
- rendered={true}
100
- scheme={scheme}
101
- tone={tone ?? context.tone}
91
+ scheme={scheme ?? 'light'}
92
+ tone={tone ?? 'default'}
93
+ unstable_CompatProvider={parent?.unstable_CompatProvider}
102
94
  >
103
95
  {node}
104
96
  </CardProvider>
105
97
  )
106
98
 
107
- if (parent?.compat_provider) {
108
- return createElement(parent.compat_provider, {
109
- children: node,
110
- scheme,
111
- tone: tone ?? context.tone,
112
- })
99
+ if (parent?.unstable_CompatProvider) {
100
+ const CompatProvider = parent.unstable_CompatProvider
101
+
102
+ return (
103
+ <CompatProvider scheme={scheme ?? 'light'} tone={tone ?? parent?.tone ?? 'default'}>
104
+ {node}
105
+ </CompatProvider>
106
+ )
113
107
  }
114
108
 
115
109
  return node
@@ -0,0 +1,27 @@
1
+ import {ThemeColorCardToneKey, ThemeColorSchemeKey} from '@sanity/ui/theme'
2
+ import {ReactNode, useMemo} from 'react'
3
+
4
+ import {CardContext} from './cardContext'
5
+ import {_CardCompatProviderComponent} from './types'
6
+
7
+ export function CardProvider(props: {
8
+ children?: ReactNode
9
+ tone: ThemeColorCardToneKey
10
+ scheme: ThemeColorSchemeKey
11
+ unstable_CompatProvider?: _CardCompatProviderComponent
12
+ }) {
13
+ const {children, tone, scheme, unstable_CompatProvider} = props
14
+
15
+ return (
16
+ <CardContext.Provider
17
+ value={useMemo(
18
+ () => ({tone, scheme, unstable_CompatProvider}),
19
+ [tone, scheme, unstable_CompatProvider],
20
+ )}
21
+ >
22
+ {children}
23
+ </CardContext.Provider>
24
+ )
25
+ }
26
+
27
+ CardProvider.displayName = 'CardProvider'
@@ -12,16 +12,17 @@ export interface CardStyleProps {
12
12
  $tone: ThemeColorCardToneKey
13
13
  }
14
14
 
15
- export type CardCompatProviderComponent = ComponentType<{
15
+ /** @internal */
16
+ export type _CardCompatProviderComponent = ComponentType<{
16
17
  children?: ReactNode
17
18
  tone: ThemeColorCardToneKey
18
19
  scheme: ThemeColorSchemeKey
19
20
  }>
20
21
 
21
- /** @internal */
22
+ /** @public */
22
23
  export interface CardContextValue {
23
- compat_provider?: CardCompatProviderComponent
24
- rendered: boolean
25
24
  tone: ThemeColorCardToneKey
26
25
  scheme: ThemeColorSchemeKey
26
+ /** @internal */
27
+ unstable_CompatProvider?: _CardCompatProviderComponent
27
28
  }
@@ -141,7 +141,7 @@ export function Popover<E extends PopoverElementType = typeof DEFAULT_POPOVER_EL
141
141
 
142
142
  const {
143
143
  __unstable_margins: margins = DEFAULT_POPOVER_MARGINS,
144
- animate: _animate = false,
144
+ animate: _animate = true,
145
145
  arrow: arrowProp = false,
146
146
  as: as = DEFAULT_POPOVER_ELEMENT,
147
147
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
@@ -4,9 +4,8 @@ import {motion} from 'framer-motion'
4
4
  import {CSSProperties, ForwardedRef, useMemo} from 'react'
5
5
 
6
6
  import {POPOVER_MOTION_PROPS} from '../../constants'
7
- import {Placement, PopoverMargins, Props} from '../../types'
8
- import {Arrow, Layer, LayerOwnProps} from '../../utils'
9
- import {CardElementType} from '../card'
7
+ import {Placement, PopoverMargins} from '../../types'
8
+ import {Arrow, Layer, LayerOwnProps, LayerProps} from '../../utils'
10
9
  import {Flex} from '../flex'
11
10
  import {
12
11
  DEFAULT_POPOVER_ARROW_HEIGHT,
@@ -37,20 +36,10 @@ export type PopoverLayerOwnProps = LayerOwnProps & {
37
36
  }
38
37
 
39
38
  /** @internal */
40
- export type PopoverLayerElementType = CardElementType
39
+ export type PopoverLayerProps = PopoverLayerOwnProps & LayerProps<'div'>
41
40
 
42
41
  /** @internal */
43
- export type PopoverLayerProps<E extends PopoverLayerElementType = PopoverLayerElementType> = Props<
44
- PopoverLayerOwnProps,
45
- E
46
- >
47
-
48
- const MotionLayer = motion.create(Layer)
49
-
50
- /** @internal */
51
- export function PopoverLayer<
52
- E extends PopoverLayerElementType = typeof DEFAULT_POPOVER_LAYER_ELEMENT,
53
- >(props: PopoverLayerProps<E>) {
42
+ export function PopoverLayer(props: PopoverLayerProps) {
54
43
  const {
55
44
  __unstable_margins: marginsProp,
56
45
  animate,
@@ -58,7 +47,6 @@ export function PopoverLayer<
58
47
  arrowRef,
59
48
  arrowX,
60
49
  arrowY,
61
- as = DEFAULT_POPOVER_LAYER_ELEMENT,
62
50
  children,
63
51
  maxWidth,
64
52
  padding,
@@ -75,7 +63,7 @@ export function PopoverLayer<
75
63
  x: xProp,
76
64
  y: yProp,
77
65
  ...rest
78
- } = props as PopoverLayerProps<typeof DEFAULT_POPOVER_LAYER_ELEMENT>
66
+ } = props
79
67
 
80
68
  // Get margins: [top, right, bottom, left]
81
69
  const margins: PopoverMargins = useMemo(
@@ -111,11 +99,12 @@ export function PopoverLayer<
111
99
  )
112
100
 
113
101
  return (
114
- <MotionLayer
102
+ // @ts-expect-error - TODO: fix this
103
+ <Layer
115
104
  className={popoverCard()}
116
105
  data-ui="Popover"
117
106
  {...rest}
118
- as={as}
107
+ as={motion.div}
119
108
  data-context-tone={tone}
120
109
  data-placement={placement}
121
110
  direction="column"
@@ -153,7 +142,7 @@ export function PopoverLayer<
153
142
  radius={DEFAULT_POPOVER_ARROW_RADIUS}
154
143
  />
155
144
  )}
156
- </MotionLayer>
145
+ </Layer>
157
146
  )
158
147
  }
159
148
 
@@ -107,7 +107,7 @@ export function Tooltip<E extends TooltipElementType = typeof DEFAULT_TOOLTIP_EL
107
107
  const boundaryElementContext = useBoundaryElement()
108
108
 
109
109
  const {
110
- animate: _animate = false,
110
+ animate: _animate = true,
111
111
  arrow: arrowProp = false,
112
112
  as = DEFAULT_TOOLTIP_ELEMENT,
113
113
  boundaryElement = boundaryElementContext?.element,
@@ -190,6 +190,7 @@ export function Tooltip<E extends TooltipElementType = typeof DEFAULT_TOOLTIP_EL
190
190
  placement: placementProp,
191
191
  whileElementsMounted: autoUpdate,
192
192
  elements: {reference: referenceElement},
193
+ transform: false,
193
194
  })
194
195
 
195
196
  const arrowX = middlewareData.arrow?.x
@@ -1,10 +1,10 @@
1
1
  import {tooltipCard} from '@sanity/ui/css'
2
- import {motion} from 'framer-motion'
2
+ import {motion, MotionStyle} from 'framer-motion'
3
3
  import {type CSSProperties, ForwardedRef, useMemo} from 'react'
4
4
 
5
5
  import {POPOVER_MOTION_PROPS} from '../../constants'
6
- import {Placement, Props} from '../../types'
7
- import {Arrow, Layer, LayerOwnProps} from '../../utils'
6
+ import {Placement} from '../../types'
7
+ import {Arrow, Layer, LayerOwnProps, LayerProps} from '../../utils'
8
8
  import {
9
9
  DEFAULT_TOOLTIP_ARROW_HEIGHT,
10
10
  DEFAULT_TOOLTIP_ARROW_RADIUS,
@@ -27,27 +27,16 @@ export interface TooltipLayerOwnProps extends LayerOwnProps {
27
27
  }
28
28
 
29
29
  /** @internal */
30
- export type TooltipLayerElementType = 'div'
30
+ export type TooltipLayerProps = TooltipLayerOwnProps & LayerProps<'div'>
31
31
 
32
32
  /** @internal */
33
- export type TooltipLayerProps<E extends TooltipLayerElementType = TooltipLayerElementType> = Props<
34
- TooltipLayerOwnProps,
35
- E
36
- >
37
-
38
- const MotionLayer = motion.create(Layer)
39
-
40
- /** @internal */
41
- export function TooltipLayer<
42
- E extends TooltipLayerElementType = typeof DEFAULT_TOOLTIP_LAYER_ELEMENT,
43
- >(props: TooltipLayerProps<E>) {
33
+ export function TooltipLayer(props: TooltipLayerProps) {
44
34
  const {
45
35
  animate,
46
36
  arrow,
47
37
  arrowRef,
48
38
  arrowX,
49
39
  arrowY,
50
- as = DEFAULT_TOOLTIP_LAYER_ELEMENT,
51
40
  children,
52
41
  originX,
53
42
  originY,
@@ -59,9 +48,9 @@ export function TooltipLayer<
59
48
  style,
60
49
  tone = 'inherit',
61
50
  ...rest
62
- } = props as TooltipLayerProps<typeof DEFAULT_TOOLTIP_LAYER_ELEMENT>
51
+ } = props
63
52
 
64
- const rootStyle: CSSProperties = useMemo(
53
+ const rootStyle: MotionStyle = useMemo(
65
54
  () => ({
66
55
  originX,
67
56
  originY,
@@ -82,10 +71,11 @@ export function TooltipLayer<
82
71
  )
83
72
 
84
73
  return (
85
- <MotionLayer
74
+ // @ts-expect-error - TODO: fix this
75
+ <Layer
86
76
  data-ui="Tooltip__card"
87
77
  {...rest}
88
- as={as}
78
+ as={motion.div}
89
79
  className={tooltipCard()}
90
80
  data-animate={animate ? '' : undefined}
91
81
  data-placement={placement}
@@ -112,7 +102,7 @@ export function TooltipLayer<
112
102
  radius={DEFAULT_TOOLTIP_ARROW_RADIUS}
113
103
  />
114
104
  )}
115
- </MotionLayer>
105
+ </Layer>
116
106
  )
117
107
  }
118
108
 
@@ -1,4 +1,4 @@
1
- import {createElement, ReactNode, ReactPortal} from 'react'
1
+ import {ReactNode, ReactPortal} from 'react'
2
2
  import {createPortal} from 'react-dom'
3
3
 
4
4
  import {CardProvider, useCard} from '../../primitives'
@@ -26,15 +26,13 @@ export function Portal(props: PortalProps): ReactPortal | null {
26
26
  }
27
27
 
28
28
  return createPortal(
29
- createElement(
30
- CardProvider,
31
- {
32
- rendered: true,
33
- tone: 'transparent', // card?.tone || 'default',
34
- scheme: card?.scheme || 'light',
35
- },
36
- children,
37
- ),
29
+ <CardProvider
30
+ // rendered={true}
31
+ tone="transparent" // card?.tone || 'default',
32
+ scheme={card?.scheme || 'light'}
33
+ >
34
+ {children}
35
+ </CardProvider>,
38
36
  portalElement,
39
37
  )
40
38
  }
@@ -1,5 +1,3 @@
1
- // import type {Style, StyleKeyframes, StyleLayers, StyleRules} from '@sanity/css'
2
-
3
1
  import {Style, StyleKeyframes, StyleLayers, StyleRules} from './types'
4
2
 
5
3
  /** @internal */
@@ -9,11 +7,6 @@ export function _mergeStyles(styles: Style[]): Style {
9
7
  const rules: StyleRules = {}
10
8
 
11
9
  for (const s of styles) {
12
- if (!s) {
13
- // TODO: should not happen
14
- continue
15
- }
16
-
17
10
  Object.assign(keyframes, s.keyframes)
18
11
 
19
12
  for (const layerName in s.layers) {
@@ -31,6 +31,7 @@ import {pointerEventsStyle} from './aspects/pointerEvents/pointerEvents.style'
31
31
  import {positionStyle} from './aspects/position/position.style'
32
32
  import {radiusStyle} from './aspects/radius/radius.style'
33
33
  import {shadowStyle} from './aspects/shadow/shadow.style'
34
+ import {textAlignStyle} from './aspects/textAlign/textAlign.style'
34
35
  import {textOverflowStyle} from './aspects/textOverflow/textOverflow.style'
35
36
  import {widthStyle} from './aspects/width/width.style'
36
37
  import {breadcrumbsStyle} from './components/breadcrumbs/breadcrumbs.style'
@@ -114,6 +115,7 @@ export const _systemStyle: Style = _mergeStyles([
114
115
  positionStyle,
115
116
  radiusStyle,
116
117
  shadowStyle,
118
+ textAlignStyle,
117
119
  textOverflowStyle,
118
120
  widthStyle,
119
121
 
@@ -1,4 +1,3 @@
1
- import {_responsiveRule} from '../../_responsiveRule'
2
1
  import {Style, StyleRules} from '../../types'
3
2
 
4
3
  export const primitive: StyleRules = {
@@ -69,24 +68,4 @@ export const primitive: StyleRules = {
69
68
  },
70
69
  }
71
70
 
72
- _responsiveRule(primitive, `text-align-initial`, {
73
- textAlign: 'initial',
74
- })
75
-
76
- _responsiveRule(primitive, `text-align-left`, {
77
- textAlign: 'left',
78
- })
79
-
80
- _responsiveRule(primitive, `text-align-center`, {
81
- textAlign: 'center',
82
- })
83
-
84
- _responsiveRule(primitive, `text-align-right`, {
85
- textAlign: 'right',
86
- })
87
-
88
- _responsiveRule(primitive, `text-align-justify`, {
89
- textAlign: 'justify',
90
- })
91
-
92
71
  export const fontStyle: Style = {layers: {primitive}}
@@ -1,12 +1,7 @@
1
- import {_resp} from '../../_resp'
2
1
  import {composeClassNames} from '../../composeClassNames'
3
2
  import {FontStyleProps} from './types'
4
3
 
5
4
  /** @public */
6
5
  export function font(props: FontStyleProps): string | undefined {
7
- return composeClassNames(
8
- 'font',
9
- props.weight && `font-${props.weight}`,
10
- _resp('text-align', props.align),
11
- )
6
+ return composeClassNames('font', props.weight && `font-${props.weight}`)
12
7
  }