@cube-dev/ui-kit 0.0.0-canary-423c3d2 → 0.0.0-canary-ed2a55b

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 (421) hide show
  1. package/cjs/_internal/hooks/index.js +1 -1
  2. package/cjs/_internal/hooks/use-deprecation-warning.js +1 -1
  3. package/cjs/_internal/index.js +1 -1
  4. package/cjs/components/Base.js +1 -1
  5. package/cjs/components/Block.js +3 -3
  6. package/cjs/components/GlobalStyles.js +1 -1
  7. package/cjs/components/GridProvider.js +8 -7
  8. package/cjs/components/HiddenInput.js +1 -1
  9. package/cjs/components/OpenTrasition.js +1 -1
  10. package/cjs/components/Root.js +6 -3
  11. package/cjs/components/actions/Action.js +2 -3
  12. package/cjs/components/actions/Button/Button.js +2 -5
  13. package/cjs/components/actions/Button/Submit.js +1 -1
  14. package/cjs/components/actions/Button/index.js +1 -1
  15. package/cjs/components/actions/ButtonGroup/ButtonGroup.js +9 -11
  16. package/cjs/components/actions/index.js +1 -1
  17. package/cjs/components/content/ActiveZone/ActiveZone.js +2 -3
  18. package/cjs/components/content/Alert/Alert.js +6 -8
  19. package/cjs/components/content/Alert/index.js +1 -1
  20. package/cjs/components/content/Alert/types.js +1 -1
  21. package/cjs/components/content/Alert/use-alert.js +1 -1
  22. package/cjs/components/content/Avatar/Avatar.js +2 -3
  23. package/cjs/components/content/Badge/Badge.js +3 -3
  24. package/cjs/components/content/Card/Card.js +15 -13
  25. package/cjs/components/content/Content.js +3 -3
  26. package/cjs/components/content/CopySnippet/CopySnippet.js +57 -21
  27. package/cjs/components/content/CopySnippet/index.js +1 -1
  28. package/cjs/components/content/Divider.js +31 -31
  29. package/cjs/components/content/Footer.js +3 -3
  30. package/cjs/components/content/Header.js +3 -3
  31. package/cjs/components/content/Paragraph.js +1 -1
  32. package/cjs/components/content/Placeholder/Placeholder.js +36 -18
  33. package/cjs/components/content/PrismCode/PrismCode.js +3 -3
  34. package/cjs/components/content/Result/Result.js +1 -1
  35. package/cjs/components/content/Skeleton/Skeleton.js +1 -1
  36. package/cjs/components/content/Tag/Tag.js +11 -13
  37. package/cjs/components/content/Text.js +3 -3
  38. package/cjs/components/content/Title.js +3 -3
  39. package/cjs/components/forms/Checkbox/Checkbox.js +57 -61
  40. package/cjs/components/forms/Checkbox/CheckboxGroup.js +21 -35
  41. package/cjs/components/forms/Checkbox/context.js +1 -1
  42. package/cjs/components/forms/FieldWrapper.js +4 -4
  43. package/cjs/components/forms/FileInput/FileInput.js +45 -49
  44. package/cjs/components/forms/Form/Field.js +1 -1
  45. package/cjs/components/forms/Form/Form.js +13 -11
  46. package/cjs/components/forms/Form/index.js +1 -1
  47. package/cjs/components/forms/Form/useForm.js +1 -1
  48. package/cjs/components/forms/Form/validation.js +1 -1
  49. package/cjs/components/forms/Input/Input.js +1 -1
  50. package/cjs/components/forms/Input/index.js +1 -1
  51. package/cjs/components/forms/Label.js +4 -6
  52. package/cjs/components/forms/NumberInput/NumberInput.js +1 -1
  53. package/cjs/components/forms/NumberInput/StepButton.js +1 -1
  54. package/cjs/components/forms/PasswordInput/PasswordInput.js +1 -1
  55. package/cjs/components/forms/RadioGroup/Radio.js +95 -92
  56. package/cjs/components/forms/RadioGroup/RadioGroup.js +20 -35
  57. package/cjs/components/forms/RadioGroup/context.js +1 -1
  58. package/cjs/components/forms/SearchInput/SearchInput.js +1 -1
  59. package/cjs/components/forms/Switch/Switch.js +72 -76
  60. package/cjs/components/forms/TextArea/TextArea.js +1 -1
  61. package/cjs/components/forms/TextInput/TextInput.js +1 -1
  62. package/cjs/components/forms/TextInput/TextInputBase.js +24 -20
  63. package/cjs/components/forms/index.js +1 -1
  64. package/cjs/components/layout/Flex.js +9 -8
  65. package/cjs/components/layout/Flow.js +9 -8
  66. package/cjs/components/layout/Grid.js +9 -9
  67. package/cjs/components/layout/Prefix.js +19 -17
  68. package/cjs/components/layout/Space.js +21 -17
  69. package/cjs/components/layout/Suffix.js +19 -17
  70. package/cjs/components/navigation/LegacyTabs/LegacyTabs.js +64 -41
  71. package/cjs/components/navigation/Link/Link.js +1 -1
  72. package/cjs/components/organisms/FileTabs/FileTabs.js +73 -50
  73. package/cjs/components/organisms/Modal/Modal.js +1 -1
  74. package/cjs/components/organisms/StatsCard/StatsCard.js +1 -1
  75. package/cjs/components/other/Base64Upload/Base64Upload.js +1 -1
  76. package/cjs/components/other/CloudLogo/CloudLogo.js +1 -1
  77. package/cjs/components/overlays/AlertDialog/AlertDialog.js +1 -1
  78. package/cjs/components/overlays/AlertDialog/AlertDialogApiProvider.js +1 -1
  79. package/cjs/components/overlays/AlertDialog/AlertDialogZone.js +1 -1
  80. package/cjs/components/overlays/AlertDialog/index.js +1 -1
  81. package/cjs/components/overlays/AlertDialog/types.js +1 -1
  82. package/cjs/components/overlays/Dialog/Dialog.js +60 -62
  83. package/cjs/components/overlays/Dialog/DialogContainer.js +1 -1
  84. package/cjs/components/overlays/Dialog/DialogForm.js +1 -1
  85. package/cjs/components/overlays/Dialog/DialogTrigger.js +1 -1
  86. package/cjs/components/overlays/Dialog/context.js +1 -1
  87. package/cjs/components/overlays/Dialog/index.js +1 -1
  88. package/cjs/components/overlays/Modal/Modal.js +32 -32
  89. package/cjs/components/overlays/Modal/OpenTransition.js +1 -1
  90. package/cjs/components/overlays/Modal/Overlay.js +1 -1
  91. package/cjs/components/overlays/Modal/Popover.js +23 -26
  92. package/cjs/components/overlays/Modal/Tray.js +24 -24
  93. package/cjs/components/overlays/Modal/Underlay.js +25 -31
  94. package/cjs/components/overlays/Modal/index.js +1 -1
  95. package/cjs/components/overlays/Notification/Notification.js +53 -10
  96. package/cjs/components/overlays/OverlayWrapper.js +1 -1
  97. package/cjs/components/overlays/Tooltip/Tooltip.js +69 -58
  98. package/cjs/components/overlays/Tooltip/TooltipProvider.js +1 -1
  99. package/cjs/components/overlays/Tooltip/TooltipTrigger.js +1 -1
  100. package/cjs/components/overlays/Tooltip/context.js +1 -1
  101. package/cjs/components/pickers/ComboBox/ComboBox.js +44 -45
  102. package/cjs/components/pickers/Menu/Menu.js +4 -10
  103. package/cjs/components/pickers/Menu/MenuButton.js +1 -1
  104. package/cjs/components/pickers/Menu/MenuItem.js +1 -1
  105. package/cjs/components/pickers/Menu/MenuSection.js +6 -6
  106. package/cjs/components/pickers/Menu/MenuTrigger.js +1 -1
  107. package/cjs/components/pickers/Menu/context.js +1 -1
  108. package/cjs/components/pickers/Menu/styled.js +10 -11
  109. package/cjs/components/pickers/Select/Select.js +117 -113
  110. package/cjs/components/portal/Portal.js +1 -1
  111. package/cjs/components/portal/PortalProvider.js +1 -1
  112. package/cjs/components/portal/index.js +1 -1
  113. package/cjs/components/portal/storybook/templates/CustomRoot.js +1 -1
  114. package/cjs/components/portal/storybook/templates/PortalOrder.js +1 -1
  115. package/cjs/components/portal/storybook/templates/basic.js +1 -1
  116. package/cjs/components/portal/storybook/templates/index.js +1 -1
  117. package/cjs/components/portal/types.js +1 -1
  118. package/cjs/components/portal/usePortal.js +1 -1
  119. package/cjs/components/status/LoadingAnimation/LoadingAnimation.js +4 -4
  120. package/cjs/components/status/Spin/Spin.js +2 -2
  121. package/cjs/data/themes.js +1 -1
  122. package/cjs/index.js +1 -1
  123. package/cjs/provider.js +1 -1
  124. package/cjs/providers/StyleProvider.js +1 -1
  125. package/cjs/services/notification.js +1 -1
  126. package/cjs/shared/form.js +1 -1
  127. package/cjs/shared/index.js +1 -1
  128. package/cjs/stories/FormFieldArgs.js +1 -1
  129. package/cjs/stories/components/ConfirmDeletionDialogForm.js +1 -1
  130. package/cjs/stories/components/DialogFormApp.js +1 -1
  131. package/cjs/stories/components/StyledButton.js +1 -1
  132. package/cjs/stories/lists/baseProps.js +1 -1
  133. package/cjs/styled/index.js +1 -1
  134. package/cjs/styled/styled.js +1 -1
  135. package/cjs/tasty/index.js +3 -2
  136. package/cjs/tasty/providers/BreakpointsProvider.js +1 -1
  137. package/cjs/tasty/styles/align.js +1 -1
  138. package/cjs/tasty/styles/border.js +1 -1
  139. package/cjs/tasty/styles/boxShadow.combinator.js +1 -1
  140. package/cjs/tasty/styles/color.js +1 -1
  141. package/cjs/tasty/styles/createStyle.js +1 -1
  142. package/cjs/tasty/styles/dimension.js +1 -1
  143. package/cjs/tasty/styles/display.js +1 -1
  144. package/cjs/tasty/styles/fill.js +1 -1
  145. package/cjs/tasty/styles/flow.js +1 -1
  146. package/cjs/tasty/styles/font.js +1 -1
  147. package/cjs/tasty/styles/fontStyle.js +1 -1
  148. package/cjs/tasty/styles/gap.js +1 -1
  149. package/cjs/tasty/styles/groupRadius.js +1 -1
  150. package/cjs/tasty/styles/height.js +1 -1
  151. package/cjs/tasty/styles/index.js +1 -1
  152. package/cjs/tasty/styles/justify.js +1 -1
  153. package/cjs/tasty/styles/list.js +1 -1
  154. package/cjs/tasty/styles/margin.js +1 -1
  155. package/cjs/tasty/styles/marginBlock.js +1 -1
  156. package/cjs/tasty/styles/marginInline.js +1 -1
  157. package/cjs/tasty/styles/outline.js +1 -1
  158. package/cjs/tasty/styles/padding.js +1 -1
  159. package/cjs/tasty/styles/paddingBlock.js +1 -1
  160. package/cjs/tasty/styles/paddingInline.js +1 -1
  161. package/cjs/tasty/styles/predefined.js +1 -1
  162. package/cjs/tasty/styles/preset.js +1 -1
  163. package/cjs/tasty/styles/radius.js +1 -1
  164. package/cjs/tasty/styles/reset.js +1 -1
  165. package/cjs/tasty/styles/shadow.js +1 -1
  166. package/cjs/tasty/styles/styledScrollbar.js +1 -1
  167. package/cjs/tasty/styles/transition.js +1 -1
  168. package/cjs/tasty/styles/types.js +1 -1
  169. package/cjs/tasty/styles/width.js +1 -1
  170. package/cjs/tasty/tasty.js +8 -3
  171. package/cjs/tasty/types.js +1 -1
  172. package/cjs/tasty/utils/colors.js +1 -1
  173. package/cjs/tasty/utils/dotize.js +1 -1
  174. package/cjs/tasty/utils/filterBaseProps.js +2 -1
  175. package/cjs/tasty/utils/index.js +1 -1
  176. package/cjs/tasty/utils/mergeStyles.js +1 -1
  177. package/cjs/tasty/utils/modAttrs.js +1 -1
  178. package/cjs/tasty/utils/renderStyles.js +1 -1
  179. package/cjs/tasty/utils/responsive.js +1 -1
  180. package/cjs/tasty/utils/string.js +1 -1
  181. package/cjs/tasty/utils/styles.js +1 -1
  182. package/cjs/tasty/utils/warnings.js +1 -1
  183. package/cjs/test/index.js +1 -1
  184. package/cjs/test/render.js +1 -1
  185. package/cjs/test/setup.js +1 -1
  186. package/cjs/test/utils/index.js +1 -1
  187. package/cjs/test/utils/wait.js +1 -1
  188. package/cjs/tokens.js +6 -1
  189. package/cjs/utils/ResizeSensor.js +1 -1
  190. package/cjs/utils/modules.js +1 -1
  191. package/cjs/utils/promise.js +1 -1
  192. package/cjs/utils/react/Slots.js +1 -1
  193. package/cjs/utils/react/chain.js +1 -1
  194. package/cjs/utils/react/index.js +1 -1
  195. package/cjs/utils/react/interactions.js +1 -1
  196. package/cjs/utils/react/isTextOnly.js +1 -1
  197. package/cjs/utils/react/mapProps.js +1 -1
  198. package/cjs/utils/react/mergeProps.js +4 -3
  199. package/cjs/utils/react/nullableValue.js +1 -1
  200. package/cjs/utils/react/useCombinedRefs.js +1 -1
  201. package/cjs/utils/react/useId.js +1 -1
  202. package/cjs/utils/react/useLayoutEffect.js +1 -1
  203. package/cjs/utils/react/wrapNodeIfPlain.js +1 -1
  204. package/cjs/utils/transitions.js +1 -1
  205. package/cjs/utils/tree.js +1 -1
  206. package/cjs/utils/warnings.js +13 -9
  207. package/es/_internal/hooks/index.js +1 -1
  208. package/es/_internal/hooks/use-deprecation-warning.js +1 -1
  209. package/es/_internal/index.js +1 -1
  210. package/es/components/Base.js +1 -1
  211. package/es/components/Block.js +3 -3
  212. package/es/components/GlobalStyles.js +1 -1
  213. package/es/components/GridProvider.js +8 -7
  214. package/es/components/HiddenInput.js +1 -1
  215. package/es/components/OpenTrasition.js +1 -1
  216. package/es/components/Root.js +7 -4
  217. package/es/components/actions/Action.js +3 -4
  218. package/es/components/actions/Button/Button.js +2 -5
  219. package/es/components/actions/Button/Submit.js +1 -1
  220. package/es/components/actions/Button/index.js +1 -1
  221. package/es/components/actions/ButtonGroup/ButtonGroup.js +9 -11
  222. package/es/components/actions/index.js +1 -1
  223. package/es/components/content/ActiveZone/ActiveZone.js +3 -4
  224. package/es/components/content/Alert/Alert.js +6 -8
  225. package/es/components/content/Alert/index.js +1 -1
  226. package/es/components/content/Alert/types.js +1 -1
  227. package/es/components/content/Alert/use-alert.js +1 -1
  228. package/es/components/content/Avatar/Avatar.js +3 -4
  229. package/es/components/content/Badge/Badge.js +3 -3
  230. package/es/components/content/Card/Card.js +16 -14
  231. package/es/components/content/Content.js +3 -3
  232. package/es/components/content/CopySnippet/CopySnippet.js +57 -21
  233. package/es/components/content/CopySnippet/index.js +1 -1
  234. package/es/components/content/Divider.js +32 -32
  235. package/es/components/content/Footer.js +3 -3
  236. package/es/components/content/Header.js +3 -3
  237. package/es/components/content/Paragraph.js +1 -1
  238. package/es/components/content/Placeholder/Placeholder.js +34 -19
  239. package/es/components/content/PrismCode/PrismCode.js +3 -3
  240. package/es/components/content/Result/Result.js +1 -1
  241. package/es/components/content/Skeleton/Skeleton.js +1 -1
  242. package/es/components/content/Tag/Tag.js +11 -13
  243. package/es/components/content/Text.js +3 -3
  244. package/es/components/content/Title.js +3 -3
  245. package/es/components/forms/Checkbox/Checkbox.js +58 -62
  246. package/es/components/forms/Checkbox/CheckboxGroup.js +22 -36
  247. package/es/components/forms/Checkbox/context.js +1 -1
  248. package/es/components/forms/FieldWrapper.js +4 -4
  249. package/es/components/forms/FileInput/FileInput.js +46 -50
  250. package/es/components/forms/Form/Field.js +1 -1
  251. package/es/components/forms/Form/Form.js +14 -12
  252. package/es/components/forms/Form/index.js +1 -1
  253. package/es/components/forms/Form/useForm.js +1 -1
  254. package/es/components/forms/Form/validation.js +1 -1
  255. package/es/components/forms/Input/Input.js +1 -1
  256. package/es/components/forms/Input/index.js +1 -1
  257. package/es/components/forms/Label.js +4 -6
  258. package/es/components/forms/NumberInput/NumberInput.js +1 -1
  259. package/es/components/forms/NumberInput/StepButton.js +1 -1
  260. package/es/components/forms/PasswordInput/PasswordInput.js +1 -1
  261. package/es/components/forms/RadioGroup/Radio.js +96 -93
  262. package/es/components/forms/RadioGroup/RadioGroup.js +21 -36
  263. package/es/components/forms/RadioGroup/context.js +1 -1
  264. package/es/components/forms/SearchInput/SearchInput.js +1 -1
  265. package/es/components/forms/Switch/Switch.js +74 -78
  266. package/es/components/forms/TextArea/TextArea.js +1 -1
  267. package/es/components/forms/TextInput/TextInput.js +1 -1
  268. package/es/components/forms/TextInput/TextInputBase.js +25 -21
  269. package/es/components/forms/index.js +1 -1
  270. package/es/components/layout/Flex.js +10 -9
  271. package/es/components/layout/Flow.js +10 -9
  272. package/es/components/layout/Grid.js +10 -10
  273. package/es/components/layout/Prefix.js +20 -18
  274. package/es/components/layout/Space.js +22 -18
  275. package/es/components/layout/Suffix.js +20 -18
  276. package/es/components/navigation/LegacyTabs/LegacyTabs.js +61 -41
  277. package/es/components/navigation/Link/Link.js +1 -1
  278. package/es/components/organisms/FileTabs/FileTabs.js +70 -50
  279. package/es/components/organisms/Modal/Modal.js +1 -1
  280. package/es/components/organisms/StatsCard/StatsCard.js +1 -1
  281. package/es/components/other/Base64Upload/Base64Upload.js +1 -1
  282. package/es/components/other/CloudLogo/CloudLogo.js +1 -1
  283. package/es/components/overlays/AlertDialog/AlertDialog.js +1 -1
  284. package/es/components/overlays/AlertDialog/AlertDialogApiProvider.js +1 -1
  285. package/es/components/overlays/AlertDialog/AlertDialogZone.js +1 -1
  286. package/es/components/overlays/AlertDialog/index.js +1 -1
  287. package/es/components/overlays/AlertDialog/types.js +1 -1
  288. package/es/components/overlays/Dialog/Dialog.js +61 -63
  289. package/es/components/overlays/Dialog/DialogContainer.js +1 -1
  290. package/es/components/overlays/Dialog/DialogForm.js +1 -1
  291. package/es/components/overlays/Dialog/DialogTrigger.js +1 -1
  292. package/es/components/overlays/Dialog/context.js +1 -1
  293. package/es/components/overlays/Dialog/index.js +1 -1
  294. package/es/components/overlays/Modal/Modal.js +32 -32
  295. package/es/components/overlays/Modal/OpenTransition.js +1 -1
  296. package/es/components/overlays/Modal/Overlay.js +1 -1
  297. package/es/components/overlays/Modal/Popover.js +23 -26
  298. package/es/components/overlays/Modal/Tray.js +24 -24
  299. package/es/components/overlays/Modal/Underlay.js +25 -31
  300. package/es/components/overlays/Modal/index.js +1 -1
  301. package/es/components/overlays/Notification/Notification.js +53 -10
  302. package/es/components/overlays/OverlayWrapper.js +1 -1
  303. package/es/components/overlays/Tooltip/Tooltip.js +68 -60
  304. package/es/components/overlays/Tooltip/TooltipProvider.js +1 -1
  305. package/es/components/overlays/Tooltip/TooltipTrigger.js +1 -1
  306. package/es/components/overlays/Tooltip/context.js +1 -1
  307. package/es/components/pickers/ComboBox/ComboBox.js +45 -46
  308. package/es/components/pickers/Menu/Menu.js +4 -10
  309. package/es/components/pickers/Menu/MenuButton.js +1 -1
  310. package/es/components/pickers/Menu/MenuItem.js +1 -1
  311. package/es/components/pickers/Menu/MenuSection.js +7 -7
  312. package/es/components/pickers/Menu/MenuTrigger.js +1 -1
  313. package/es/components/pickers/Menu/context.js +1 -1
  314. package/es/components/pickers/Menu/styled.js +10 -11
  315. package/es/components/pickers/Select/Select.js +116 -115
  316. package/es/components/portal/Portal.js +1 -1
  317. package/es/components/portal/PortalProvider.js +1 -1
  318. package/es/components/portal/index.js +1 -1
  319. package/es/components/portal/storybook/templates/CustomRoot.js +1 -1
  320. package/es/components/portal/storybook/templates/PortalOrder.js +1 -1
  321. package/es/components/portal/storybook/templates/basic.js +1 -1
  322. package/es/components/portal/storybook/templates/index.js +1 -1
  323. package/es/components/portal/types.js +1 -1
  324. package/es/components/portal/usePortal.js +1 -1
  325. package/es/components/status/LoadingAnimation/LoadingAnimation.js +4 -4
  326. package/es/components/status/Spin/Spin.js +2 -2
  327. package/es/data/themes.js +1 -1
  328. package/es/index.js +1 -1
  329. package/es/provider.js +1 -1
  330. package/es/providers/StyleProvider.js +1 -1
  331. package/es/services/notification.js +1 -1
  332. package/es/shared/form.js +1 -1
  333. package/es/shared/index.js +1 -1
  334. package/es/stories/FormFieldArgs.js +1 -1
  335. package/es/stories/components/ConfirmDeletionDialogForm.js +1 -1
  336. package/es/stories/components/DialogFormApp.js +1 -1
  337. package/es/stories/components/StyledButton.js +1 -1
  338. package/es/stories/lists/baseProps.js +1 -1
  339. package/es/styled/index.js +1 -1
  340. package/es/styled/styled.js +1 -1
  341. package/es/tasty/index.js +2 -2
  342. package/es/tasty/providers/BreakpointsProvider.js +1 -1
  343. package/es/tasty/styles/align.js +1 -1
  344. package/es/tasty/styles/border.js +1 -1
  345. package/es/tasty/styles/boxShadow.combinator.js +1 -1
  346. package/es/tasty/styles/color.js +1 -1
  347. package/es/tasty/styles/createStyle.js +1 -1
  348. package/es/tasty/styles/dimension.js +1 -1
  349. package/es/tasty/styles/display.js +1 -1
  350. package/es/tasty/styles/fill.js +1 -1
  351. package/es/tasty/styles/flow.js +1 -1
  352. package/es/tasty/styles/font.js +1 -1
  353. package/es/tasty/styles/fontStyle.js +1 -1
  354. package/es/tasty/styles/gap.js +1 -1
  355. package/es/tasty/styles/groupRadius.js +1 -1
  356. package/es/tasty/styles/height.js +1 -1
  357. package/es/tasty/styles/index.js +1 -1
  358. package/es/tasty/styles/justify.js +1 -1
  359. package/es/tasty/styles/list.js +1 -1
  360. package/es/tasty/styles/margin.js +1 -1
  361. package/es/tasty/styles/marginBlock.js +1 -1
  362. package/es/tasty/styles/marginInline.js +1 -1
  363. package/es/tasty/styles/outline.js +1 -1
  364. package/es/tasty/styles/padding.js +1 -1
  365. package/es/tasty/styles/paddingBlock.js +1 -1
  366. package/es/tasty/styles/paddingInline.js +1 -1
  367. package/es/tasty/styles/predefined.js +1 -1
  368. package/es/tasty/styles/preset.js +1 -1
  369. package/es/tasty/styles/radius.js +1 -1
  370. package/es/tasty/styles/reset.js +1 -1
  371. package/es/tasty/styles/shadow.js +1 -1
  372. package/es/tasty/styles/styledScrollbar.js +1 -1
  373. package/es/tasty/styles/transition.js +1 -1
  374. package/es/tasty/styles/types.js +1 -1
  375. package/es/tasty/styles/width.js +1 -1
  376. package/es/tasty/tasty.js +7 -3
  377. package/es/tasty/types.js +1 -1
  378. package/es/tasty/utils/colors.js +1 -1
  379. package/es/tasty/utils/dotize.js +1 -1
  380. package/es/tasty/utils/filterBaseProps.js +2 -1
  381. package/es/tasty/utils/index.js +1 -1
  382. package/es/tasty/utils/mergeStyles.js +1 -1
  383. package/es/tasty/utils/modAttrs.js +1 -1
  384. package/es/tasty/utils/renderStyles.js +1 -1
  385. package/es/tasty/utils/responsive.js +1 -1
  386. package/es/tasty/utils/string.js +1 -1
  387. package/es/tasty/utils/styles.js +1 -1
  388. package/es/tasty/utils/warnings.js +1 -1
  389. package/es/test/index.js +1 -1
  390. package/es/test/render.js +1 -1
  391. package/es/test/setup.js +1 -1
  392. package/es/test/utils/index.js +1 -1
  393. package/es/test/utils/wait.js +1 -1
  394. package/es/tokens.js +6 -1
  395. package/es/utils/ResizeSensor.js +1 -1
  396. package/es/utils/modules.js +1 -1
  397. package/es/utils/promise.js +1 -1
  398. package/es/utils/react/Slots.js +1 -1
  399. package/es/utils/react/chain.js +1 -1
  400. package/es/utils/react/index.js +1 -1
  401. package/es/utils/react/interactions.js +1 -1
  402. package/es/utils/react/isTextOnly.js +1 -1
  403. package/es/utils/react/mapProps.js +1 -1
  404. package/es/utils/react/mergeProps.js +4 -3
  405. package/es/utils/react/nullableValue.js +1 -1
  406. package/es/utils/react/useCombinedRefs.js +1 -1
  407. package/es/utils/react/useId.js +1 -1
  408. package/es/utils/react/useLayoutEffect.js +1 -1
  409. package/es/utils/react/wrapNodeIfPlain.js +1 -1
  410. package/es/utils/transitions.js +1 -1
  411. package/es/utils/tree.js +1 -1
  412. package/es/utils/warnings.js +13 -9
  413. package/package.json +4 -4
  414. package/types/components/content/Tag/Tag.d.ts +2 -1
  415. package/types/components/overlays/Dialog/Dialog.d.ts +2 -1
  416. package/types/components/overlays/Tooltip/Tooltip.d.ts +2 -1
  417. package/types/components/pickers/Menu/MenuItem.d.ts +2 -1
  418. package/types/components/pickers/Menu/MenuSection.d.ts +8 -3
  419. package/types/tasty/index.d.ts +1 -1
  420. package/types/tasty/tasty.d.ts +8 -4
  421. package/types/tokens.d.ts +4 -0
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -11,57 +11,42 @@ exports.RadioGroup = void 0;
11
11
  const jsx_runtime_1 = require("react/jsx-runtime");
12
12
  const react_1 = require("react");
13
13
  const utils_1 = require("@react-spectrum/utils");
14
- const Label_1 = require("../Label");
15
14
  const provider_1 = require("../../../provider");
16
15
  const radio_1 = require("@react-aria/radio");
17
16
  const radio_2 = require("@react-stately/radio");
18
17
  const Form_1 = require("../Form/Form");
19
18
  const context_1 = require("./context");
20
19
  const tasty_1 = require("../../../tasty");
21
- const Base_1 = require("../../Base");
22
20
  const FieldWrapper_1 = require("../FieldWrapper");
23
21
  const nullableValue_1 = require("../../../utils/react/nullableValue");
24
- const StyleProvider_1 = require("../../../providers/StyleProvider");
25
- const GROUP_STYLES = {
26
- display: 'flex',
27
- placeItems: 'start',
28
- placeContent: 'start',
29
- flow: {
30
- '': 'column',
31
- horizontal: 'row wrap',
22
+ const RadioGroupElement = (0, tasty_1.tasty)({
23
+ qa: 'RadioGroup',
24
+ styles: {
25
+ display: 'flex',
26
+ placeItems: 'start',
27
+ placeContent: 'start',
28
+ flow: {
29
+ '': 'column',
30
+ horizontal: 'row wrap',
31
+ },
32
+ gap: {
33
+ '': '1x',
34
+ horizontal: '1x 2x',
35
+ },
36
+ padding: '(1x - 1bw) 0',
32
37
  },
33
- gap: {
34
- '': '1x',
35
- horizontal: '1x 2x',
36
- },
37
- padding: '(1x - 1bw) 0',
38
- };
38
+ });
39
39
  function RadioGroup(props, ref) {
40
40
  props = (0, nullableValue_1.castNullableStringValue)(props);
41
41
  props = (0, provider_1.useProviderProps)(props);
42
42
  props = (0, Form_1.useFormProps)(props);
43
43
  let { isDisabled, isRequired, necessityIndicator, label, extra, labelPosition = 'top', validationState, children, orientation = 'vertical', message, description, labelStyles, requiredMark = true, tooltip, isHidden, styles, groupStyles, ...otherProps } = props;
44
44
  let domRef = (0, utils_1.useDOMRef)(ref);
45
- let wrapperContextStyles = (0, StyleProvider_1.useContextStyles)('RadioGroup_Wrapper', props);
46
- let groupContextStyles = (0, StyleProvider_1.useContextStyles)('RadioGroup', props);
47
- let labelContextStyles = (0, StyleProvider_1.useContextStyles)('RadioGroup_Label', props);
48
- styles = (0, tasty_1.extractStyles)(otherProps, tasty_1.OUTER_STYLES, {
49
- ...wrapperContextStyles,
50
- ...styles,
51
- });
52
- groupStyles = (0, tasty_1.extractStyles)(otherProps, tasty_1.BLOCK_STYLES, {
53
- ...GROUP_STYLES,
54
- ...groupContextStyles,
55
- ...groupStyles,
56
- });
57
- labelStyles = {
58
- ...Label_1.LABEL_STYLES,
59
- ...labelContextStyles,
60
- ...labelStyles,
61
- };
45
+ styles = (0, tasty_1.extractStyles)(otherProps, tasty_1.OUTER_STYLES, styles);
46
+ groupStyles = (0, tasty_1.extractStyles)(otherProps, tasty_1.BLOCK_STYLES, groupStyles);
62
47
  let state = (0, radio_2.useRadioGroupState)(props);
63
48
  let { radioGroupProps: fieldProps, labelProps } = (0, radio_1.useRadioGroup)(props, state);
64
- let radioGroup = ((0, jsx_runtime_1.jsx)(Base_1.Base, { qa: "RadioGroup", styles: groupStyles, mods: {
49
+ let radioGroup = ((0, jsx_runtime_1.jsx)(RadioGroupElement, { styles: groupStyles, mods: {
65
50
  horizontal: orientation === 'horizontal',
66
51
  }, children: (0, jsx_runtime_1.jsx)(Form_1.FormContext.Provider, { value: {
67
52
  isRequired,
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -16,7 +16,6 @@ const interactions_1 = require("@react-aria/interactions");
16
16
  const toggle_1 = require("@react-stately/toggle");
17
17
  const provider_1 = require("../../../provider");
18
18
  const tasty_1 = require("../../../tasty");
19
- const Base_1 = require("../../Base");
20
19
  const interactions_2 = require("../../../utils/react/interactions");
21
20
  const react_2 = require("../../../utils/react");
22
21
  const HiddenInput_1 = require("../../HiddenInput");
@@ -25,100 +24,97 @@ const icons_1 = require("@ant-design/icons");
25
24
  const Form_1 = require("../Form/Form");
26
25
  const FieldWrapper_1 = require("../FieldWrapper");
27
26
  const nullableValue_1 = require("../../../utils/react/nullableValue");
28
- const StyleProvider_1 = require("../../../providers/StyleProvider");
29
- const STYLES = {
30
- position: 'relative',
31
- display: 'flex',
32
- placeItems: 'center start',
33
- gap: '1x',
34
- flow: 'row',
35
- preset: 'input',
36
- width: 'min-content',
37
- cursor: 'pointer',
38
- };
39
- const INPUT_STYLES = {
40
- position: 'relative',
41
- display: 'grid',
42
- placeItems: 'center',
43
- radius: 'round',
44
- fill: {
45
- '': '#dark.50',
46
- checked: '#purple',
47
- disabled: '#dark.12',
27
+ const BaseSwitchWrapperElement = (0, tasty_1.tasty)({
28
+ qa: 'SwitchWrapper',
29
+ });
30
+ const SwitchWrapperElement = (0, tasty_1.tasty)({
31
+ qa: 'SwitchWrapper',
32
+ styles: {
33
+ position: 'relative',
34
+ display: 'flex',
35
+ placeItems: 'center start',
36
+ gap: '1x',
37
+ flow: 'row',
38
+ preset: 'input',
39
+ width: 'min-content',
40
+ cursor: 'pointer',
48
41
  },
49
- color: '#white',
50
- border: false,
51
- width: '5.25x 5.25x',
52
- height: '3x 3x',
53
- outline: {
54
- '': '#purple-03.0',
55
- focused: '#purple-03',
42
+ });
43
+ const SwitchElement = (0, tasty_1.tasty)({
44
+ styles: {
45
+ position: 'relative',
46
+ display: 'grid',
47
+ placeItems: 'center',
48
+ radius: 'round',
49
+ fill: {
50
+ '': '#dark.50',
51
+ checked: '#purple',
52
+ disabled: '#dark.12',
53
+ },
54
+ color: '#white',
55
+ border: false,
56
+ width: '5.25x 5.25x',
57
+ height: '3x 3x',
58
+ outline: {
59
+ '': '#purple-03.0',
60
+ focused: '#purple-03',
61
+ },
62
+ transition: 'theme',
63
+ cursor: 'pointer',
64
+ marginTop: {
65
+ '': null,
66
+ 'inside-form & side-label': '-3px',
67
+ },
68
+ placeSelf: {
69
+ '': null,
70
+ 'inside-form & side-label': 'start',
71
+ },
56
72
  },
57
- transition: 'theme',
58
- cursor: 'pointer',
59
- };
60
- const THUMB_STYLES = {
61
- position: 'absolute',
62
- width: '2.5x',
63
- height: '2.5x',
64
- radius: 'round',
65
- fill: 'currentColor',
66
- shadow: '0px 2px 4px #dark.20;',
67
- top: '.25x',
68
- left: {
69
- '': '.25x',
70
- checked: '2.5x',
73
+ });
74
+ const SwitchThumbElement = (0, tasty_1.tasty)({
75
+ 'aria-hidden': 'true',
76
+ styles: {
77
+ position: 'absolute',
78
+ width: '2.5x',
79
+ height: '2.5x',
80
+ radius: 'round',
81
+ fill: 'currentColor',
82
+ shadow: '0px 2px 4px #dark.20;',
83
+ top: '.25x',
84
+ left: {
85
+ '': '.25x',
86
+ checked: '2.5x',
87
+ },
88
+ transition: 'left',
89
+ cursor: 'pointer',
71
90
  },
72
- transition: 'left',
73
- cursor: 'pointer',
74
- };
91
+ });
75
92
  function Switch(props, ref) {
76
93
  props = (0, nullableValue_1.castNullableIsSelected)(props);
77
94
  props = (0, provider_1.useProviderProps)(props);
78
95
  props = (0, Form_1.useFormProps)(props);
79
96
  let { qa, isDisabled = false, autoFocus, children, label, extra, labelProps, labelStyles, thumbStyles, isLoading, insideForm, validationState, message, description, labelPosition, inputStyles, requiredMark = true, tooltip, ...otherProps } = props;
80
97
  label = label || children;
81
- let wrapperContextStyles = (0, StyleProvider_1.useContextStyles)('Switch_Wrapper', props);
82
- let inputContextStyles = (0, StyleProvider_1.useContextStyles)('Switch', props);
83
- let labelContextStyles = (0, StyleProvider_1.useContextStyles)('Switch_Label', props);
84
- let thumbContextStyles = (0, StyleProvider_1.useContextStyles)('Switch_Thumb', props);
85
- let styles = (0, tasty_1.extractStyles)(props, tasty_1.OUTER_STYLES, {
86
- ...(insideForm ? {} : STYLES),
87
- ...wrapperContextStyles,
88
- });
89
- inputStyles = (0, tasty_1.extractStyles)(props, tasty_1.BLOCK_STYLES, {
90
- ...INPUT_STYLES,
91
- ...inputContextStyles,
92
- ...(insideForm && labelPosition === 'side'
93
- ? {
94
- marginTop: '-3px',
95
- placeSelf: 'start',
96
- }
97
- : null),
98
- ...inputStyles,
99
- });
100
- thumbStyles = {
101
- ...THUMB_STYLES,
102
- ...thumbContextStyles,
103
- ...thumbStyles,
104
- };
105
- labelStyles = {
98
+ let styles = (0, tasty_1.extractStyles)(props, tasty_1.OUTER_STYLES);
99
+ inputStyles = (0, tasty_1.extractStyles)(props, tasty_1.BLOCK_STYLES, inputStyles);
100
+ labelStyles = (0, react_1.useMemo)(() => ({
106
101
  ...(insideForm ? Label_1.LABEL_STYLES : Label_1.INLINE_LABEL_STYLES),
107
- ...labelContextStyles,
108
102
  ...labelStyles,
109
- };
103
+ }), [insideForm, labelStyles]);
110
104
  let { isFocused, focusProps } = (0, interactions_2.useFocus)({ isDisabled }, true);
111
105
  let { hoverProps, isHovered } = (0, interactions_1.useHover)({ isDisabled });
112
106
  let inputRef = (0, react_1.useRef)(null);
113
107
  let domRef = (0, utils_1.useFocusableRef)(ref, inputRef);
114
108
  // eslint-disable-next-line react-hooks/rules-of-hooks
115
109
  let { inputProps } = (0, switch_1.useSwitch)(props, (0, toggle_1.useToggleState)(props), inputRef);
116
- const switchField = ((0, jsx_runtime_1.jsxs)(Base_1.Base, { qa: `${qa || 'Switch'}Wrapper`, styles: { position: 'relative' }, children: [(0, jsx_runtime_1.jsx)(HiddenInput_1.HiddenInput, { "data-qa": qa || 'Switch', ...(0, react_2.mergeProps)(inputProps, focusProps), ref: inputRef }, void 0), (0, jsx_runtime_1.jsx)(Base_1.Base, { mods: {
110
+ const switchField = ((0, jsx_runtime_1.jsxs)(BaseSwitchWrapperElement, { qa: qa || 'Switch', children: [(0, jsx_runtime_1.jsx)(HiddenInput_1.HiddenInput, { "data-qa": "HiddenInput", ...(0, react_2.mergeProps)(inputProps, focusProps), ref: inputRef }, void 0), (0, jsx_runtime_1.jsx)(SwitchElement, { mods: {
111
+ 'inside-form': insideForm,
112
+ 'side-label': labelPosition === 'side',
117
113
  checked: inputProps.checked,
118
114
  disabled: isDisabled,
119
115
  hovered: isHovered,
120
116
  focused: isFocused,
121
- }, styles: inputStyles, children: (0, jsx_runtime_1.jsx)(Base_1.Base, { qa: "SwitchThumb", styles: thumbStyles, "aria-hidden": "true", mods: {
117
+ }, styles: inputStyles, children: (0, jsx_runtime_1.jsx)(SwitchThumbElement, { styles: thumbStyles, mods: {
122
118
  checked: inputProps.checked,
123
119
  } }, void 0) }, void 0)] }, void 0));
124
120
  if (insideForm) {
@@ -140,7 +136,7 @@ function Switch(props, ref) {
140
136
  ref: domRef,
141
137
  } }, void 0));
142
138
  }
143
- return ((0, jsx_runtime_1.jsxs)(Base_1.Base, { as: "label", styles: styles, ...hoverProps, ...(0, tasty_1.filterBaseProps)(otherProps), ref: domRef, children: [switchField, label && ((0, jsx_runtime_1.jsxs)(Base_1.Base, { styles: labelStyles, mods: {
139
+ return ((0, jsx_runtime_1.jsxs)(SwitchWrapperElement, { as: "label", styles: styles, ...hoverProps, ...(0, tasty_1.filterBaseProps)(otherProps), ref: domRef, children: [switchField, label && ((0, jsx_runtime_1.jsxs)(tasty_1.Element, { styles: labelStyles, mods: {
144
140
  disabled: isDisabled,
145
141
  }, ...(0, tasty_1.filterBaseProps)(labelProps), children: [label, isLoading ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [label ? (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: "\u00A0" }, void 0) : null, (0, jsx_runtime_1.jsx)(icons_1.LoadingOutlined, {}, void 0)] }, void 0)) : null] }, void 0))] }, void 0));
146
142
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -15,7 +15,6 @@ const react_1 = require("react");
15
15
  const Form_1 = require("../Form/Form");
16
16
  const interactions_1 = require("@react-aria/interactions");
17
17
  const provider_1 = require("../../../provider");
18
- const Base_1 = require("../../Base");
19
18
  const tasty_1 = require("../../../tasty");
20
19
  const interactions_2 = require("../../../utils/react/interactions");
21
20
  const Prefix_1 = require("../../layout/Prefix");
@@ -24,11 +23,21 @@ const FieldWrapper_1 = require("../FieldWrapper");
24
23
  const Space_1 = require("../../layout/Space");
25
24
  const Block_1 = require("../../Block");
26
25
  const react_2 = require("../../../utils/react");
27
- const StyleProvider_1 = require("../../../providers/StyleProvider");
28
- const WRAPPER_STYLES = {
29
- display: 'grid',
30
- position: 'relative',
31
- };
26
+ const InputWrapperElement = (0, tasty_1.tasty)({
27
+ styles: {
28
+ display: 'grid',
29
+ position: 'relative',
30
+ Prefix: {
31
+ padding: {
32
+ '': '0 1x 0 1.5x',
33
+ 'text-prefix': '0 1x 0 2.5x',
34
+ },
35
+ },
36
+ Suffix: {
37
+ padding: '.5x left',
38
+ },
39
+ },
40
+ });
32
41
  const STYLE_LIST = [...tasty_1.POSITION_STYLES, ...tasty_1.DIMENSION_STYLES];
33
42
  const INPUT_STYLE_PROPS_LIST = [...tasty_1.BLOCK_STYLES, 'resize'];
34
43
  exports.DEFAULT_INPUT_STYLES = {
@@ -72,6 +81,9 @@ exports.DEFAULT_INPUT_STYLES = {
72
81
  margin: 0,
73
82
  resize: 'none',
74
83
  };
84
+ const InputElement = (0, tasty_1.tasty)({
85
+ styles: exports.DEFAULT_INPUT_STYLES,
86
+ });
75
87
  function TextInputBase(props, ref) {
76
88
  props = (0, provider_1.useProviderProps)(props);
77
89
  props = (0, Form_1.useFormProps)(props);
@@ -80,16 +92,7 @@ function TextInputBase(props, ref) {
80
92
  let [prefixWidth, setPrefixWidth] = (0, react_1.useState)(0);
81
93
  let styles = (0, tasty_1.extractStyles)(otherProps, STYLE_LIST);
82
94
  let type = otherProps.type;
83
- let contextStyles = (0, StyleProvider_1.useContextStyles)('Input', otherProps);
84
- inputStyles = (0, tasty_1.extractStyles)(otherProps, INPUT_STYLE_PROPS_LIST, {
85
- ...exports.DEFAULT_INPUT_STYLES,
86
- ...contextStyles,
87
- ...inputStyles,
88
- });
89
- wrapperStyles = {
90
- ...WRAPPER_STYLES,
91
- ...wrapperStyles,
92
- };
95
+ inputStyles = (0, tasty_1.extractStyles)(otherProps, INPUT_STYLE_PROPS_LIST, inputStyles);
93
96
  if (prefix) {
94
97
  inputStyles.paddingLeft = `${prefixWidth}px`;
95
98
  }
@@ -126,12 +129,13 @@ function TextInputBase(props, ref) {
126
129
  }
127
130
  inputProps.placeholder = ' ';
128
131
  }
129
- let textField = ((0, jsx_runtime_1.jsxs)(Base_1.Base, { ref: wrapperRef, qa: `${qa || 'TextInput'}Wrapper`, mods: {
132
+ let textField = ((0, jsx_runtime_1.jsxs)(InputWrapperElement, { ref: wrapperRef, qa: qa || 'TextInput', mods: {
130
133
  invalid: isInvalid,
131
134
  valid: validationState === 'valid',
132
135
  loadable: !!loadingIndicator,
133
136
  multiline: multiLine,
134
- }, "data-size": size, styles: wrapperStyles, ...wrapperProps, children: [(0, jsx_runtime_1.jsx)(Base_1.Base, { qa: qa || 'TextInput', as: ElementType, ...(0, react_2.mergeProps)(inputProps, focusProps, hoverProps), ref: inputRef, rows: multiLine ? rows : undefined, mods: {
137
+ 'text-prefix': prefix === 'string',
138
+ }, "data-size": size, styles: wrapperStyles, ...wrapperProps, children: [(0, jsx_runtime_1.jsx)(InputElement, { qa: "Input", as: ElementType, ...(0, react_2.mergeProps)(inputProps, focusProps, hoverProps), ref: inputRef, rows: multiLine ? rows : undefined, mods: {
135
139
  invalid: isInvalid,
136
140
  valid: validationState === 'valid',
137
141
  disabled: isDisabled,
@@ -139,7 +143,7 @@ function TextInputBase(props, ref) {
139
143
  focused: isFocused,
140
144
  }, style: {
141
145
  WebkitTextSecurity: multiLine && type === 'password' ? 'disc' : 'initial',
142
- }, autoFocus: autoFocus, "data-size": size, styles: inputStyles }, void 0), (0, jsx_runtime_1.jsx)(Prefix_1.Prefix, { padding: "0 1x 0 1.5x", onWidthChange: setPrefixWidth, opacity: isDisabled ? '@disabled-opacity' : false, placeItems: "center", children: typeof prefix === 'string' ? ((0, jsx_runtime_1.jsx)(Block_1.Block, { padding: "1x left", children: prefix }, void 0)) : (prefix) }, void 0), (0, jsx_runtime_1.jsxs)(Suffix_1.Suffix, { padding: ".5x left", onWidthChange: setSuffixWidth, opacity: isDisabled ? '@disabled-opacity' : false, children: [suffixPosition === 'before' ? suffix : null, (validationState && !isLoading) || isLoading ? ((0, jsx_runtime_1.jsxs)(Space_1.Space, { gap: false, padding: `0 ${suffix ? '1x' : '1.5x'} 0 0`, children: [validationState && !isLoading ? validation : null, isLoading && (0, jsx_runtime_1.jsx)(icons_1.LoadingOutlined, {}, void 0)] }, void 0)) : null, suffixPosition === 'after' ? suffix : null] }, void 0)] }, void 0));
146
+ }, autoFocus: autoFocus, "data-size": size, styles: inputStyles }, void 0), (0, jsx_runtime_1.jsx)(Prefix_1.Prefix, { onWidthChange: setPrefixWidth, opacity: isDisabled ? '@disabled-opacity' : false, placeItems: "center", children: prefix }, void 0), (0, jsx_runtime_1.jsxs)(Suffix_1.Suffix, { onWidthChange: setSuffixWidth, opacity: isDisabled ? '@disabled-opacity' : false, children: [suffixPosition === 'before' ? suffix : null, (validationState && !isLoading) || isLoading ? ((0, jsx_runtime_1.jsxs)(Space_1.Space, { gap: false, padding: `0 ${suffix ? '1x' : '1.5x'} 0 0`, children: [validationState && !isLoading ? validation : null, isLoading && (0, jsx_runtime_1.jsx)(icons_1.LoadingOutlined, {}, void 0)] }, void 0)) : null, suffixPosition === 'after' ? suffix : null] }, void 0)] }, void 0));
143
147
  return ((0, jsx_runtime_1.jsx)(FieldWrapper_1.FieldWrapper, { ...{
144
148
  labelPosition,
145
149
  label,
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -10,15 +10,16 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.Flex = void 0;
11
11
  const jsx_runtime_1 = require("react/jsx-runtime");
12
12
  const react_1 = require("react");
13
- const Base_1 = require("../Base");
14
13
  const tasty_1 = require("../../tasty");
15
- const DEFAULT_STYLES = {
16
- display: 'flex',
17
- flow: 'row',
18
- };
14
+ const FlexElement = (0, tasty_1.tasty)({
15
+ styles: {
16
+ display: 'flex',
17
+ flow: 'row',
18
+ },
19
+ });
19
20
  exports.Flex = (0, react_1.forwardRef)((props, ref) => {
20
- const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, DEFAULT_STYLES);
21
- return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
21
+ const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES);
22
+ return ((0, jsx_runtime_1.jsx)(FlexElement, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
22
23
  });
23
24
 
24
25
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -10,16 +10,17 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.Flow = void 0;
11
11
  const jsx_runtime_1 = require("react/jsx-runtime");
12
12
  const react_1 = require("react");
13
- const Base_1 = require("../Base");
14
13
  const tasty_1 = require("../../tasty");
15
- const DEFAULT_STYLES = {
16
- display: 'block',
17
- flow: 'column',
18
- };
14
+ const FlowElement = (0, tasty_1.tasty)({
15
+ styles: {
16
+ display: 'block',
17
+ flow: 'column',
18
+ },
19
+ });
19
20
  const STYLE_PROPS = tasty_1.CONTAINER_STYLES;
20
21
  exports.Flow = (0, react_1.forwardRef)((props, ref) => {
21
- const styles = (0, tasty_1.extractStyles)(props, STYLE_PROPS, DEFAULT_STYLES);
22
- return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
22
+ const styles = (0, tasty_1.extractStyles)(props, STYLE_PROPS);
23
+ return ((0, jsx_runtime_1.jsx)(FlowElement, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
23
24
  });
24
25
 
25
26
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -10,13 +10,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.Grid = void 0;
11
11
  const jsx_runtime_1 = require("react/jsx-runtime");
12
12
  const react_1 = require("react");
13
- const Base_1 = require("../Base");
14
13
  const tasty_1 = require("../../tasty");
15
- const DEFAULT_STYLES = {
16
- display: 'grid',
17
- flow: 'row',
18
- gap: '@(column-gap, 0)',
19
- };
14
+ const GridElement = (0, tasty_1.tasty)({
15
+ styles: {
16
+ display: 'grid',
17
+ flow: 'row',
18
+ },
19
+ });
20
20
  const PROP_MAP = {
21
21
  template: 'gridTemplate',
22
22
  columns: 'gridColumns',
@@ -24,8 +24,8 @@ const PROP_MAP = {
24
24
  areas: 'gridAreas',
25
25
  };
26
26
  exports.Grid = (0, react_1.forwardRef)((props, ref) => {
27
- const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, DEFAULT_STYLES, PROP_MAP);
28
- return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
27
+ const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, undefined, PROP_MAP);
28
+ return ((0, jsx_runtime_1.jsx)(GridElement, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
29
29
  });
30
30
 
31
31
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -10,32 +10,34 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.Prefix = void 0;
11
11
  const jsx_runtime_1 = require("react/jsx-runtime");
12
12
  const react_1 = require("react");
13
- const Base_1 = require("../Base");
14
13
  const tasty_1 = require("../../tasty");
15
14
  const react_2 = require("../../utils/react");
16
- const DEFAULT_STYLES = {
17
- position: 'absolute',
18
- display: 'grid',
19
- placeContent: 'stretch',
20
- placeItems: 'center',
21
- flow: 'column',
22
- gap: 0,
23
- left: '@prefix-gap',
24
- top: '@prefix-gap',
25
- bottom: '@prefix-gap',
26
- color: '#dark.75',
27
- height: '(100% - (2 * @prefix-gap))',
28
- };
15
+ const PrefixElement = (0, tasty_1.tasty)({
16
+ element: 'Prefix',
17
+ styles: {
18
+ position: 'absolute',
19
+ display: 'grid',
20
+ placeContent: 'stretch',
21
+ placeItems: 'center',
22
+ flow: 'column',
23
+ gap: 0,
24
+ left: '@prefix-gap',
25
+ top: '@prefix-gap',
26
+ bottom: '@prefix-gap',
27
+ color: '#dark.75',
28
+ height: '(100% - (2 * @prefix-gap))',
29
+ },
30
+ });
29
31
  exports.Prefix = (0, react_1.forwardRef)((allProps, outerRef) => {
30
32
  let { onWidthChange, outerGap = '1bw', children, ...props } = allProps;
31
- const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, DEFAULT_STYLES);
33
+ const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES);
32
34
  const ref = (0, react_2.useCombinedRefs)(outerRef);
33
35
  (0, react_1.useEffect)(() => {
34
36
  if ((ref === null || ref === void 0 ? void 0 : ref.current) && onWidthChange) {
35
37
  onWidthChange(ref.current.offsetWidth);
36
38
  }
37
39
  }, [children, ref, onWidthChange]);
38
- return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref, style: {
40
+ return ((0, jsx_runtime_1.jsx)(PrefixElement, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref, style: {
39
41
  // @ts-ignore
40
42
  '--prefix-gap': (0, tasty_1.parseStyle)(outerGap).value,
41
43
  }, children: children }, void 0));
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-423c3d2
4
+ * @cube-dev/ui-kit v0.0.0-canary-ed2a55b
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -10,24 +10,28 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.Space = void 0;
11
11
  const jsx_runtime_1 = require("react/jsx-runtime");
12
12
  const react_1 = require("react");
13
- const Base_1 = require("../Base");
14
13
  const tasty_1 = require("../../tasty");
15
- const DEFAULT_STYLES = {
16
- display: 'flex',
17
- gap: true,
18
- };
14
+ const SpaceElement = (0, tasty_1.tasty)({
15
+ styles: {
16
+ display: 'flex',
17
+ gap: true,
18
+ flow: {
19
+ '': 'row',
20
+ vertical: 'column',
21
+ },
22
+ alignItems: {
23
+ '': 'center',
24
+ vertical: 'stretch',
25
+ },
26
+ },
27
+ });
19
28
  exports.Space = (0, react_1.forwardRef)(function Space(props, ref) {
20
- const flow = props.direction
21
- ? props.direction === 'vertical'
22
- ? 'column'
23
- : 'row'
24
- : props.flow || 'row';
25
- const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, {
26
- ...DEFAULT_STYLES,
27
- flow,
28
- alignItems: flow === 'row' ? 'center' : 'stretch',
29
- });
30
- return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
29
+ const { mods, direction, ...otherProps } = props;
30
+ const styles = (0, tasty_1.extractStyles)(otherProps, tasty_1.CONTAINER_STYLES);
31
+ return ((0, jsx_runtime_1.jsx)(SpaceElement, { ...(0, tasty_1.filterBaseProps)(otherProps, { eventProps: true }), mods: {
32
+ vertical: direction === 'vertical',
33
+ ...mods,
34
+ }, styles: styles, ref: ref }, void 0));
31
35
  });
32
36
 
33
37