@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
@@ -1,224 +0,0 @@
1
- import {Rules} from '../../types'
2
- import {vars} from '../../vars'
3
-
4
- export const textInputRules: Rules = {
5
- 'text-input': {
6
- '--font-family': vars.font.text.family,
7
-
8
- '@nest': {
9
- '& > span': {
10
- borderRadius: 'inherit',
11
- },
12
- },
13
- },
14
-
15
- 'text-input-prefix': {
16
- 'borderTop': '1px solid var(--color-border)',
17
- 'borderLeft': '1px solid var(--color-border)',
18
- 'borderBottom': '1px solid var(--color-border)',
19
- 'borderTopRightRadius': '0 !important',
20
- 'borderBottomRightRadius': '0 !important',
21
-
22
- '@nest': {
23
- '& > span': {
24
- display: 'block',
25
- margin: '-1px',
26
- },
27
- },
28
- },
29
-
30
- 'text-input-suffix': {
31
- 'borderTop': '1px solid var(--color-border)',
32
- 'borderRight': '1px solid var(--color-border)',
33
- 'borderBottom': '1px solid var(--color-border)',
34
- 'borderTopLeftRadius': '0 !important',
35
- 'borderBottomLeftRadius': '0 !important',
36
-
37
- '@nest': {
38
- '& > span': {
39
- display: 'block',
40
- margin: '-1px',
41
- },
42
- },
43
- },
44
-
45
- 'text-input-presentation': {
46
- // position: 'absolute',
47
- // top: 0,
48
- // left: 0,
49
- // right: 0,
50
- // bottom: 0,
51
- // display: 'block',
52
- // pointerEvents: 'none',
53
- // zIndex: 0,
54
- // backgroundColor: 'var(--input-bg-color)',
55
- // 'boxShadow': 'var(--input-box-shadow)',
56
- // '--input-border-color': 'var(--color-input-default-enabled-border)',
57
- // '--input-border-color': 'var(--color-tinted-default-border-1)',
58
- // '--input-box-shadow': 'inset 0 0 0 1px var(--input-border-color)',
59
- // border-top-left-radius: ${$hasPrefix ? 0 : undefined};
60
- // border-bottom-left-radius: ${$hasPrefix ? 0 : undefined};
61
- // border-top-right-radius: ${$hasSuffix ? 0 : undefined};
62
- // border-bottom-right-radius: ${$hasSuffix ? 0 : undefined};
63
- // '@nest': {
64
- // 'input:hover + &': {
65
- // '--input-border-color': 'var(--color-tinted-default-border-2)',
66
- // },
67
- // 'input:focus + &': {
68
- // '--input-border-color': 'var(--color-tinted-default-border-2)',
69
- // },
70
- // },
71
- // &[data-scheme='${$scheme}'][data-tone='${$tone}'] {
72
- // --card-bg-color: ${color.input.default.enabled.bg};
73
- // --card-fg-color: ${color.input.default.enabled.fg};
74
- // /* enabled */
75
- // *:not(:disabled) + &[data-border] {
76
- // --input-box-shadow: ${focusRingBorderStyle({
77
- // color: color.input.default.enabled.border,
78
- // width: input.border.width,
79
- // })};
80
- // }
81
- // /* invalid */
82
- // *:not(:disabled):invalid + & {
83
- // --card-bg-color: ${color.input.invalid.enabled.bg};
84
- // --card-fg-color: ${color.input.invalid.enabled.fg};
85
- // &[data-border] {
86
- // --input-box-shadow: ${focusRingBorderStyle({
87
- // color: color.input.invalid.enabled.border,
88
- // width: input.border.width,
89
- // })};
90
- // }
91
- // }
92
- // /* focused */
93
- // *:not(:disabled):focus + & {
94
- // &[data-border] {
95
- // --input-box-shadow: ${$unstableDisableFocusRing
96
- // ? undefined
97
- // : focusRingStyle({
98
- // border: {color: color.input.default.enabled.border, width: input.border.width},
99
- // focusRing: input.text.focusRing,
100
- // })};
101
- // }
102
- // &:not([data-border]) {
103
- // --input-box-shadow: ${$unstableDisableFocusRing
104
- // ? undefined
105
- // : focusRingStyle({focusRing: input.text.focusRing})};
106
- // }
107
- // }
108
- // /* disabled */
109
- // *:not(:invalid):disabled + & {
110
- // --card-bg-color: ${color.input.default.disabled.bg} !important;
111
- // --card-fg-color: ${color.input.default.disabled.fg} !important;
112
- // --card-icon-color: ${color.input.default.disabled.fg} !important;
113
- // &[data-border] {
114
- // --input-box-shadow: ${focusRingBorderStyle({
115
- // color: color.input.default.disabled.border,
116
- // width: input.border.width,
117
- // })};
118
- // }
119
- // }
120
- // *:invalid:disabled + & {
121
- // --card-bg-color: ${color.input.invalid.disabled.bg} !important;
122
- // --card-fg-color: ${color.input.invalid.disabled.fg} !important;
123
- // --card-icon-color: ${color.input.invalid.disabled.fg} !important;
124
- // &[data-border] {
125
- // --input-box-shadow: ${focusRingBorderStyle({
126
- // color: color.input.invalid.disabled.border,
127
- // width: input.border.width,
128
- // })};
129
- // }
130
- // }
131
- // /* readOnly */
132
- // *:not(:invalid):read-only + & {
133
- // --card-bg-color: ${color.input.default.readOnly.bg} !important;
134
- // --card-fg-color: ${color.input.default.readOnly.fg} !important;
135
- // }
136
- // *:invalid:read-only + & {
137
- // --card-bg-color: ${color.input.invalid.readOnly.bg} !important;
138
- // --card-fg-color: ${color.input.invalid.readOnly.fg} !important;
139
- // }
140
- // /* hovered */
141
- // @media (hover: hover) {
142
- // *:not(:disabled):not(:read-only):not(:invalid):hover + & {
143
- // --card-bg-color: ${color.input.default.hovered.bg};
144
- // --card-fg-color: ${color.input.default.hovered.fg};
145
- // }
146
- // *:invalid:not(:disabled):not(:read-only):hover + & {
147
- // --card-bg-color: ${color.input.invalid.hovered.bg};
148
- // --card-fg-color: ${color.input.invalid.hovered.fg};
149
- // }
150
- // *:not(:disabled):not(:read-only):not(:invalid):not(:focus):hover + &[data-border] {
151
- // --input-box-shadow: ${focusRingBorderStyle({
152
- // color: color.input.default.hovered.border,
153
- // width: input.border.width,
154
- // })};
155
- // }
156
- // *:invalid:not(:disabled):not(:read-only):not(:focus):hover + &[data-border] {
157
- // --input-box-shadow: ${focusRingBorderStyle({
158
- // color: color.input.invalid.hovered.border,
159
- // width: input.border.width,
160
- // })};
161
- // }
162
- // }
163
- // }
164
- },
165
- }
166
-
167
- // const Root = styled(Card).attrs({forwardedAs: 'span'})(textInputRootStyle)
168
-
169
- // const InputRoot = styled.span`
170
- // flex: 1;
171
- // min-width: 0;
172
- // display: block;
173
- // position: relative;
174
- // `
175
-
176
- // const Prefix = styled(Card).attrs({forwardedAs: 'span'})`
177
- // border-top-right-radius: 0;
178
- // border-bottom-right-radius: 0;
179
-
180
- // & > span {
181
- // display: block;
182
- // margin: -1px;
183
- // }
184
- // `
185
-
186
- // const Suffix = styled(Card).attrs({forwardedAs: 'span'})`
187
- // border-top-left-radius: 0;
188
- // border-bottom-left-radius: 0;
189
-
190
- // & > span {
191
- // display: block;
192
- // margin: -1px;
193
- // }
194
- // `
195
-
196
- // const Input = styled.input<TextInputResponsivePaddingStyleProps & TextInputInputStyleProps>(
197
- // responsiveInputPaddingStyle,
198
- // textInputBaseStyle,
199
- // textInputFontSizeStyle,
200
- // )
201
-
202
- // const Presentation = styled.span<ResponsiveRadiusStyleProps & TextInputRepresentationStyleProps>(
203
- // responsiveRadiusStyle,
204
- // textInputRepresentationStyle,
205
- // )
206
-
207
- // const LeftBox = styled(Box)`
208
- // position: absolute;
209
- // top: 0;
210
- // left: 0;
211
- // `
212
-
213
- // const RightBox = styled(Box)`
214
- // position: absolute;
215
- // top: 0;
216
- // right: 0;
217
- // `
218
-
219
- // const RightCard = styled(Card)`
220
- // background-color: transparent;
221
- // position: absolute;
222
- // top: 0;
223
- // right: 0;
224
- // `
@@ -1,19 +0,0 @@
1
- import {Rules} from '../../types'
2
-
3
- export const tooltipRules: Rules = {
4
- 'tooltip': {
5
- pointerEvents: 'none',
6
- },
7
-
8
- 'tooltip-card': {
9
- 'willChange': 'transform',
10
-
11
- '@nest': {
12
- '&[data-animate] > *': {
13
- // opacity: var(${POPOVER_MOTION_CONTENT_OPACITY_PROPERTY}, 1);
14
- opacity: `var(--motion-content-opacity, 1)`,
15
- willChange: 'opacity',
16
- },
17
- },
18
- },
19
- }
@@ -1,44 +0,0 @@
1
- import {card, scopeClassName as _} from '@sanity/ui/css'
2
- import {useEffect} from 'react'
3
-
4
- import {_raf2} from './helpers'
5
- import {useCard} from './primitives'
6
-
7
- /** @internal */
8
- export function RootClassNames(props: {element: HTMLElement}) {
9
- const {element} = props
10
- const {scheme, tone} = useCard() ?? {}
11
-
12
- useEffect(() => {
13
- const els = document.querySelectorAll(
14
- [_('button'), _('card'), _('font')].map((n) => `.${n}`).join(', '),
15
- )
16
-
17
- // temporarily disable all transitions when the theme changes
18
- for (const el of els) {
19
- if (el instanceof HTMLElement) {
20
- el.style.transition = 'none'
21
- }
22
- }
23
-
24
- _raf2(() => {
25
- document.documentElement.className = card({scheme, tone}) ?? ''
26
-
27
- _raf2(() => {
28
- for (const el of els) {
29
- if (el instanceof HTMLElement) {
30
- el.style.transition = ''
31
- }
32
- }
33
- })
34
- })
35
-
36
- return () => {
37
- document.documentElement.className = ''
38
- }
39
- }, [element, scheme, tone])
40
-
41
- return null
42
- }
43
-
44
- RootClassNames.displayName = 'RootClassNames'
@@ -1,7 +0,0 @@
1
- import {buildTheme} from '@sanity/ui/theme'
2
-
3
- /**
4
- * @public
5
- * @deprecated Use `buildTheme` from `@sanity/ui/theme` instead.
6
- */
7
- export const studioTheme = buildTheme()
@@ -1,21 +0,0 @@
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
- compat_provider?: CardCompatProviderComponent
9
- children?: ReactNode
10
- rendered?: boolean
11
- tone: ThemeColorCardToneKey
12
- scheme: ThemeColorSchemeKey
13
- }) {
14
- const {children, rendered = false, tone, scheme} = props
15
-
16
- const context = useMemo(() => ({rendered, tone, scheme}), [rendered, tone, scheme])
17
-
18
- return <CardContext.Provider value={context}>{children}</CardContext.Provider>
19
- }
20
-
21
- CardProvider.displayName = 'CardProvider'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes