@cube-dev/ui-kit 0.0.0-canary-9917823 → 0.0.0-canary-2a1d026

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 (643) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/cjs/_internal/hooks/index.js +12 -4
  3. package/cjs/_internal/hooks/use-chained-callback.js +2 -1
  4. package/cjs/_internal/hooks/use-deprecation-warning.js +6 -2
  5. package/cjs/_internal/hooks/use-effect-once.js +18 -0
  6. package/cjs/_internal/hooks/use-event.js +1 -1
  7. package/cjs/_internal/hooks/use-is-first-render.js +22 -0
  8. package/cjs/_internal/hooks/use-sync-ref.js +1 -1
  9. package/cjs/_internal/hooks/use-timer/index.js +6 -2
  10. package/cjs/_internal/hooks/use-timer/timer.js +1 -1
  11. package/cjs/_internal/hooks/use-timer/use-timer.js +1 -1
  12. package/cjs/_internal/hooks/use-update-effect.js +24 -0
  13. package/cjs/_internal/hooks/use-warn.js +50 -0
  14. package/cjs/_internal/index.js +6 -2
  15. package/cjs/components/Base.js +2 -2
  16. package/cjs/components/Block.js +2 -2
  17. package/cjs/components/GlobalStyles.js +1 -1
  18. package/cjs/components/GridProvider.js +7 -3
  19. package/cjs/components/HiddenInput.js +1 -1
  20. package/cjs/components/OpenTrasition.js +2 -2
  21. package/cjs/components/Root.js +2 -2
  22. package/cjs/components/actions/Action.js +2 -2
  23. package/cjs/components/actions/Button/Button.js +2 -2
  24. package/cjs/components/actions/Button/index.js +6 -3
  25. package/cjs/components/actions/ButtonGroup/ButtonGroup.js +2 -2
  26. package/cjs/components/actions/index.js +6 -2
  27. package/cjs/components/actions/use-action.js +1 -1
  28. package/cjs/components/content/ActiveZone/ActiveZone.js +2 -2
  29. package/cjs/components/content/Alert/Alert.js +2 -2
  30. package/cjs/components/content/Alert/index.js +6 -2
  31. package/cjs/components/content/Alert/types.js +1 -1
  32. package/cjs/components/content/Alert/use-alert.js +1 -1
  33. package/cjs/components/content/Avatar/Avatar.js +2 -2
  34. package/cjs/components/content/Badge/Badge.js +2 -2
  35. package/cjs/components/content/Card/Card.js +2 -2
  36. package/cjs/components/content/Content.js +2 -2
  37. package/cjs/components/content/CopySnippet/CopySnippet.js +4 -4
  38. package/cjs/components/content/CopySnippet/index.js +6 -2
  39. package/cjs/components/content/Divider.js +2 -2
  40. package/cjs/components/content/Footer.js +2 -2
  41. package/cjs/components/content/Header.js +2 -2
  42. package/cjs/components/content/Paragraph.js +2 -2
  43. package/cjs/components/content/Placeholder/Placeholder.js +2 -2
  44. package/cjs/components/content/PrismCode/PrismCode.js +2 -2
  45. package/cjs/components/content/Result/Result.js +3 -3
  46. package/cjs/components/content/Skeleton/Skeleton.js +12 -12
  47. package/cjs/components/content/Tag/Tag.js +3 -3
  48. package/cjs/components/content/Text.js +8 -8
  49. package/cjs/components/content/Title.js +4 -4
  50. package/cjs/components/forms/Checkbox/Checkbox.js +31 -14
  51. package/cjs/components/forms/Checkbox/CheckboxGroup.js +30 -25
  52. package/cjs/components/forms/Checkbox/context.js +1 -1
  53. package/cjs/components/forms/{FieldWrapper.js → FieldWrapper/FieldWrapper.js} +22 -20
  54. package/cjs/components/forms/FieldWrapper/extract-field-wrapper-props.js +50 -0
  55. package/cjs/components/forms/FieldWrapper/index.js +28 -0
  56. package/cjs/components/forms/FieldWrapper/types.js +11 -0
  57. package/cjs/components/forms/FileInput/FileInput.js +5 -5
  58. package/cjs/components/forms/Form/{Field.js → Field/LegacyField.js} +48 -27
  59. package/cjs/components/forms/Form/Field/index.js +29 -0
  60. package/cjs/components/forms/Form/Field/types.js +11 -0
  61. package/cjs/components/forms/Form/Field/use-field-props.js +61 -0
  62. package/cjs/components/forms/Form/Field/use-field.js +133 -0
  63. package/cjs/components/forms/Form/Form.js +3 -3
  64. package/cjs/components/forms/Form/Submit/Submit.js +25 -0
  65. package/cjs/components/forms/Form/Submit/index.js +26 -0
  66. package/cjs/components/forms/Form/SubmitError.js +2 -2
  67. package/cjs/components/forms/Form/index.js +20 -3
  68. package/cjs/components/forms/Form/types.js +1 -1
  69. package/cjs/components/forms/Form/useForm.js +2 -1
  70. package/cjs/components/forms/Form/validation.js +1 -1
  71. package/cjs/components/forms/Input/Input.js +3 -7
  72. package/cjs/components/forms/Input/index.js +6 -2
  73. package/cjs/components/forms/Label.js +4 -4
  74. package/cjs/components/forms/NumberInput/NumberInput.js +17 -11
  75. package/cjs/components/forms/NumberInput/StepButton.js +3 -3
  76. package/cjs/components/forms/PasswordInput/PasswordInput.js +23 -6
  77. package/cjs/components/forms/RadioGroup/Radio.js +17 -8
  78. package/cjs/components/forms/RadioGroup/RadioGroup.js +13 -5
  79. package/cjs/components/forms/RadioGroup/context.js +1 -1
  80. package/cjs/components/forms/SearchInput/SearchInput.js +4 -4
  81. package/cjs/components/forms/Slider/Gradation.js +2 -2
  82. package/cjs/components/forms/Slider/Header.js +1 -1
  83. package/cjs/components/forms/Slider/RangeSlider.js +3 -3
  84. package/cjs/components/forms/Slider/Slider.js +5 -4
  85. package/cjs/components/forms/Slider/SliderBase.js +5 -5
  86. package/cjs/components/forms/Slider/SliderInput.js +2 -2
  87. package/cjs/components/forms/Slider/SliderThumb.js +2 -2
  88. package/cjs/components/forms/Slider/SliderTrack.js +2 -2
  89. package/cjs/components/forms/Slider/elements.js +1 -1
  90. package/cjs/components/forms/Slider/index.js +6 -2
  91. package/cjs/components/forms/Slider/types.js +1 -1
  92. package/cjs/components/forms/Switch/Switch.js +19 -15
  93. package/cjs/components/forms/TextArea/TextArea.js +30 -27
  94. package/cjs/components/forms/TextInput/TextInput.js +16 -9
  95. package/cjs/components/forms/TextInput/TextInputBase.js +12 -40
  96. package/cjs/components/forms/TextInput/index.js +27 -0
  97. package/cjs/components/forms/index.js +6 -2
  98. package/cjs/components/layout/Flex.js +2 -2
  99. package/cjs/components/layout/Flow.js +2 -2
  100. package/cjs/components/layout/Grid.js +2 -2
  101. package/cjs/components/layout/Prefix.js +2 -2
  102. package/cjs/components/layout/Space.js +2 -2
  103. package/cjs/components/layout/Suffix.js +2 -2
  104. package/cjs/components/navigation/LegacyTabs/LegacyTabs.js +4 -4
  105. package/cjs/components/navigation/Link/Link.js +2 -2
  106. package/cjs/components/organisms/FileTabs/FileTabs.js +4 -4
  107. package/cjs/components/organisms/Modal/Modal.js +3 -3
  108. package/cjs/components/organisms/StatsCard/StatsCard.js +2 -2
  109. package/cjs/components/other/Base64Upload/Base64Upload.js +2 -2
  110. package/cjs/components/other/CloudLogo/CloudLogo.js +2 -2
  111. package/cjs/components/overlays/AlertDialog/AlertDialog.js +2 -2
  112. package/cjs/components/overlays/AlertDialog/AlertDialogApiProvider.js +2 -2
  113. package/cjs/components/overlays/AlertDialog/AlertDialogZone.js +2 -2
  114. package/cjs/components/overlays/AlertDialog/index.js +6 -2
  115. package/cjs/components/overlays/AlertDialog/types.js +1 -1
  116. package/cjs/components/overlays/Dialog/Dialog.js +17 -5
  117. package/cjs/components/overlays/Dialog/DialogContainer.js +2 -2
  118. package/cjs/components/overlays/Dialog/DialogForm.js +4 -6
  119. package/cjs/components/overlays/Dialog/DialogTrigger.js +11 -11
  120. package/cjs/components/overlays/Dialog/context.js +1 -1
  121. package/cjs/components/overlays/Dialog/index.js +6 -2
  122. package/cjs/components/overlays/Modal/Modal.js +23 -9
  123. package/cjs/components/overlays/Modal/OpenTransition.js +12 -3
  124. package/cjs/components/overlays/Modal/Overlay.js +6 -4
  125. package/cjs/components/overlays/Modal/Popover.js +20 -5
  126. package/cjs/components/overlays/Modal/Tray.js +14 -4
  127. package/cjs/components/overlays/Modal/Underlay.js +2 -2
  128. package/cjs/components/overlays/Modal/index.js +16 -1
  129. package/cjs/components/overlays/Modal/types.js +11 -0
  130. package/cjs/components/overlays/NewNotifications/Bar/FloatingNotification.js +2 -2
  131. package/cjs/components/overlays/NewNotifications/Bar/NotificationsBar.js +2 -2
  132. package/cjs/components/overlays/NewNotifications/Bar/TransitionComponent.js +2 -2
  133. package/cjs/components/overlays/NewNotifications/Bar/index.js +6 -2
  134. package/cjs/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.js +3 -3
  135. package/cjs/components/overlays/NewNotifications/Dialog/index.js +6 -2
  136. package/cjs/components/overlays/NewNotifications/Notification.js +4 -4
  137. package/cjs/components/overlays/NewNotifications/NotificationView/NotificationAction.js +2 -2
  138. package/cjs/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +3 -3
  139. package/cjs/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +2 -2
  140. package/cjs/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +7 -3
  141. package/cjs/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +2 -2
  142. package/cjs/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +5 -5
  143. package/cjs/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +2 -2
  144. package/cjs/components/overlays/NewNotifications/NotificationView/NotificationView.js +2 -2
  145. package/cjs/components/overlays/NewNotifications/NotificationView/index.js +6 -2
  146. package/cjs/components/overlays/NewNotifications/NotificationView/types.js +1 -1
  147. package/cjs/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.js +2 -2
  148. package/cjs/components/overlays/NewNotifications/NotificationsContext/index.js +1 -1
  149. package/cjs/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +1 -1
  150. package/cjs/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +2 -2
  151. package/cjs/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +2 -2
  152. package/cjs/components/overlays/NewNotifications/NotificationsList/index.js +6 -2
  153. package/cjs/components/overlays/NewNotifications/NotificationsList/types.js +1 -1
  154. package/cjs/components/overlays/NewNotifications/hooks/index.js +6 -2
  155. package/cjs/components/overlays/NewNotifications/hooks/types.js +1 -1
  156. package/cjs/components/overlays/NewNotifications/hooks/use-notification-list-item.js +1 -1
  157. package/cjs/components/overlays/NewNotifications/hooks/use-notifications-api.js +1 -1
  158. package/cjs/components/overlays/NewNotifications/hooks/use-notifications-list.js +1 -1
  159. package/cjs/components/overlays/NewNotifications/hooks/use-notifications-observer.js +1 -1
  160. package/cjs/components/overlays/NewNotifications/index.js +6 -2
  161. package/cjs/components/overlays/NewNotifications/types.js +1 -1
  162. package/cjs/components/overlays/Notification/Notification.js +2 -2
  163. package/cjs/components/overlays/OverlayWrapper.js +3 -3
  164. package/cjs/components/overlays/Toasts/Toast.js +4 -4
  165. package/cjs/components/overlays/Toasts/index.js +6 -2
  166. package/cjs/components/overlays/Toasts/types.js +1 -1
  167. package/cjs/components/overlays/Toasts/use-toasts-api.js +1 -1
  168. package/cjs/components/overlays/Tooltip/Tooltip.js +2 -2
  169. package/cjs/components/overlays/Tooltip/TooltipProvider.js +2 -2
  170. package/cjs/components/overlays/Tooltip/TooltipTrigger.js +4 -4
  171. package/cjs/components/overlays/Tooltip/context.js +1 -1
  172. package/cjs/components/pickers/ComboBox/ComboBox.js +31 -19
  173. package/cjs/components/pickers/Menu/Menu.js +3 -3
  174. package/cjs/components/pickers/Menu/MenuButton.js +5 -5
  175. package/cjs/components/pickers/Menu/MenuItem.js +3 -3
  176. package/cjs/components/pickers/Menu/MenuSection.js +3 -3
  177. package/cjs/components/pickers/Menu/MenuTrigger.js +10 -6
  178. package/cjs/components/pickers/Menu/context.js +6 -2
  179. package/cjs/components/pickers/Menu/styled.js +1 -1
  180. package/cjs/components/pickers/Select/Select.js +26 -11
  181. package/cjs/components/portal/Portal.js +2 -2
  182. package/cjs/components/portal/PortalProvider.js +1 -1
  183. package/cjs/components/portal/index.js +6 -2
  184. package/cjs/components/portal/storybook/templates/CustomRoot.js +2 -2
  185. package/cjs/components/portal/storybook/templates/PortalOrder.js +2 -2
  186. package/cjs/components/portal/storybook/templates/basic.js +2 -2
  187. package/cjs/components/portal/storybook/templates/index.js +6 -2
  188. package/cjs/components/portal/types.js +1 -1
  189. package/cjs/components/portal/usePortal.js +1 -1
  190. package/cjs/components/status/LoadingAnimation/LoadingAnimation.js +3 -3
  191. package/cjs/components/status/LoadingAnimation/index.js +1 -1
  192. package/cjs/components/status/Spin/Cube.js +1 -1
  193. package/cjs/components/status/Spin/InternalSpinner.js +2 -2
  194. package/cjs/components/status/Spin/Spin.js +3 -3
  195. package/cjs/components/status/Spin/SpinsContainer.js +1 -1
  196. package/cjs/components/status/Spin/index.js +6 -2
  197. package/cjs/components/status/Spin/types.js +1 -1
  198. package/cjs/components/status/index.js +6 -2
  199. package/cjs/data/themes.js +1 -1
  200. package/cjs/icons/Attention.js +2 -2
  201. package/cjs/icons/Cross.js +2 -2
  202. package/cjs/icons/Danger.js +2 -2
  203. package/cjs/icons/Success.js +2 -2
  204. package/cjs/icons/index.js +6 -2
  205. package/cjs/index.js +9 -7
  206. package/cjs/provider.js +3 -3
  207. package/cjs/providers/StyleProvider.js +2 -2
  208. package/cjs/services/notification.js +2 -2
  209. package/cjs/shared/form.js +1 -1
  210. package/cjs/shared/index.js +6 -2
  211. package/cjs/styled/index.js +6 -2
  212. package/cjs/styled/styled.js +9 -5
  213. package/cjs/tasty/index.js +6 -2
  214. package/cjs/tasty/providers/BreakpointsProvider.js +2 -2
  215. package/cjs/tasty/styles/align.js +1 -1
  216. package/cjs/tasty/styles/border.js +1 -1
  217. package/cjs/tasty/styles/boxShadow.combinator.js +1 -1
  218. package/cjs/tasty/styles/color.js +1 -1
  219. package/cjs/tasty/styles/createStyle.js +1 -1
  220. package/cjs/tasty/styles/dimension.js +1 -1
  221. package/cjs/tasty/styles/display.js +1 -1
  222. package/cjs/tasty/styles/fill.js +1 -1
  223. package/cjs/tasty/styles/flow.js +1 -1
  224. package/cjs/tasty/styles/font.js +1 -1
  225. package/cjs/tasty/styles/fontStyle.js +1 -1
  226. package/cjs/tasty/styles/gap.js +1 -1
  227. package/cjs/tasty/styles/groupRadius.js +1 -1
  228. package/cjs/tasty/styles/height.js +1 -1
  229. package/cjs/tasty/styles/index.js +6 -2
  230. package/cjs/tasty/styles/justify.js +1 -1
  231. package/cjs/tasty/styles/list.js +1 -1
  232. package/cjs/tasty/styles/margin.js +1 -1
  233. package/cjs/tasty/styles/marginBlock.js +1 -1
  234. package/cjs/tasty/styles/marginInline.js +1 -1
  235. package/cjs/tasty/styles/outline.js +1 -1
  236. package/cjs/tasty/styles/padding.js +1 -1
  237. package/cjs/tasty/styles/paddingBlock.js +1 -1
  238. package/cjs/tasty/styles/paddingInline.js +1 -1
  239. package/cjs/tasty/styles/predefined.js +1 -1
  240. package/cjs/tasty/styles/preset.js +1 -1
  241. package/cjs/tasty/styles/radius.js +1 -1
  242. package/cjs/tasty/styles/reset.js +1 -1
  243. package/cjs/tasty/styles/shadow.js +1 -1
  244. package/cjs/tasty/styles/styledScrollbar.js +1 -1
  245. package/cjs/tasty/styles/transition.js +1 -1
  246. package/cjs/tasty/styles/types.js +1 -1
  247. package/cjs/tasty/styles/width.js +1 -1
  248. package/cjs/tasty/tasty.js +9 -5
  249. package/cjs/tasty/types.js +1 -1
  250. package/cjs/tasty/utils/colors.js +1 -1
  251. package/cjs/tasty/utils/dotize.js +1 -1
  252. package/cjs/tasty/utils/filterBaseProps.js +1 -1
  253. package/cjs/tasty/utils/get-display-name.js +1 -1
  254. package/cjs/tasty/utils/index.js +1 -1
  255. package/cjs/tasty/utils/mergeStyles.js +1 -1
  256. package/cjs/tasty/utils/modAttrs.js +1 -1
  257. package/cjs/tasty/utils/renderStyles.js +1 -1
  258. package/cjs/tasty/utils/responsive.js +1 -1
  259. package/cjs/tasty/utils/string.js +1 -1
  260. package/cjs/tasty/utils/styles.js +1 -1
  261. package/cjs/tasty/utils/warnings.js +1 -1
  262. package/cjs/test/index.js +14 -2
  263. package/cjs/test/render.js +7 -3
  264. package/cjs/test/setup.js +48 -4
  265. package/cjs/test/utils/index.js +6 -2
  266. package/cjs/test/utils/wait.js +1 -1
  267. package/cjs/tokens.js +1 -1
  268. package/cjs/type-checks.js +1 -1
  269. package/cjs/utils/ResizeSensor.js +1 -1
  270. package/cjs/utils/modules.js +1 -1
  271. package/cjs/utils/promise.js +1 -1
  272. package/cjs/utils/random.js +1 -1
  273. package/cjs/utils/range.js +1 -1
  274. package/cjs/utils/react/Slots.js +3 -3
  275. package/cjs/utils/react/chain.js +1 -1
  276. package/cjs/utils/react/index.js +1 -1
  277. package/cjs/utils/react/interactions.js +1 -1
  278. package/cjs/utils/react/isTextOnly.js +1 -1
  279. package/cjs/utils/react/mapProps.js +1 -1
  280. package/cjs/utils/react/mergeProps.js +1 -1
  281. package/cjs/utils/react/nullableValue.js +1 -1
  282. package/cjs/utils/react/useCombinedRefs.js +1 -1
  283. package/cjs/utils/react/useId.js +1 -1
  284. package/cjs/utils/react/useLayoutEffect.js +6 -2
  285. package/cjs/utils/react/useViewportSize.js +1 -1
  286. package/cjs/utils/react/wrapNodeIfPlain.js +1 -1
  287. package/cjs/utils/transitions.js +1 -1
  288. package/cjs/utils/tree.js +1 -1
  289. package/cjs/utils/warnings.js +2 -2
  290. package/es/_internal/hooks/index.js +7 -3
  291. package/es/_internal/hooks/use-chained-callback.js +2 -1
  292. package/es/_internal/hooks/use-deprecation-warning.js +1 -1
  293. package/es/_internal/hooks/use-effect-once.js +14 -0
  294. package/es/_internal/hooks/use-event.js +1 -1
  295. package/es/_internal/hooks/use-is-first-render.js +18 -0
  296. package/es/_internal/hooks/use-sync-ref.js +1 -1
  297. package/es/_internal/hooks/use-timer/index.js +1 -1
  298. package/es/_internal/hooks/use-timer/timer.js +1 -1
  299. package/es/_internal/hooks/use-timer/use-timer.js +1 -1
  300. package/es/_internal/hooks/use-update-effect.js +20 -0
  301. package/es/_internal/hooks/use-warn.js +23 -0
  302. package/es/_internal/index.js +1 -1
  303. package/es/components/Base.js +2 -2
  304. package/es/components/Block.js +2 -2
  305. package/es/components/GlobalStyles.js +1 -1
  306. package/es/components/GridProvider.js +2 -2
  307. package/es/components/HiddenInput.js +1 -1
  308. package/es/components/OpenTrasition.js +2 -2
  309. package/es/components/Root.js +2 -2
  310. package/es/components/actions/Action.js +2 -2
  311. package/es/components/actions/Button/Button.js +2 -2
  312. package/es/components/actions/Button/index.js +1 -2
  313. package/es/components/actions/ButtonGroup/ButtonGroup.js +2 -2
  314. package/es/components/actions/index.js +1 -1
  315. package/es/components/actions/use-action.js +1 -1
  316. package/es/components/content/ActiveZone/ActiveZone.js +2 -2
  317. package/es/components/content/Alert/Alert.js +2 -2
  318. package/es/components/content/Alert/index.js +1 -1
  319. package/es/components/content/Alert/types.js +1 -1
  320. package/es/components/content/Alert/use-alert.js +1 -1
  321. package/es/components/content/Avatar/Avatar.js +2 -2
  322. package/es/components/content/Badge/Badge.js +2 -2
  323. package/es/components/content/Card/Card.js +2 -2
  324. package/es/components/content/Content.js +2 -2
  325. package/es/components/content/CopySnippet/CopySnippet.js +4 -4
  326. package/es/components/content/CopySnippet/index.js +1 -1
  327. package/es/components/content/Divider.js +2 -2
  328. package/es/components/content/Footer.js +2 -2
  329. package/es/components/content/Header.js +2 -2
  330. package/es/components/content/Paragraph.js +2 -2
  331. package/es/components/content/Placeholder/Placeholder.js +2 -2
  332. package/es/components/content/PrismCode/PrismCode.js +2 -2
  333. package/es/components/content/Result/Result.js +3 -3
  334. package/es/components/content/Skeleton/Skeleton.js +12 -12
  335. package/es/components/content/Tag/Tag.js +3 -3
  336. package/es/components/content/Text.js +8 -8
  337. package/es/components/content/Title.js +4 -4
  338. package/es/components/forms/Checkbox/Checkbox.js +32 -15
  339. package/es/components/forms/Checkbox/CheckboxGroup.js +30 -25
  340. package/es/components/forms/Checkbox/context.js +1 -1
  341. package/es/components/forms/{FieldWrapper.js → FieldWrapper/FieldWrapper.js} +22 -20
  342. package/es/components/forms/FieldWrapper/extract-field-wrapper-props.js +46 -0
  343. package/es/components/forms/FieldWrapper/index.js +12 -0
  344. package/es/components/forms/FieldWrapper/types.js +10 -0
  345. package/es/components/forms/FileInput/FileInput.js +4 -4
  346. package/es/components/forms/Form/{Field.js → Field/LegacyField.js} +47 -27
  347. package/es/components/forms/Form/Field/index.js +13 -0
  348. package/es/components/forms/Form/Field/types.js +10 -0
  349. package/es/components/forms/Form/Field/use-field-props.js +57 -0
  350. package/es/components/forms/Form/Field/use-field.js +129 -0
  351. package/es/components/forms/Form/Form.js +3 -3
  352. package/es/components/forms/Form/Submit/Submit.js +22 -0
  353. package/es/components/forms/Form/Submit/index.js +10 -0
  354. package/es/components/forms/Form/SubmitError.js +2 -2
  355. package/es/components/forms/Form/index.js +5 -3
  356. package/es/components/forms/Form/types.js +1 -1
  357. package/es/components/forms/Form/useForm.js +2 -1
  358. package/es/components/forms/Form/validation.js +1 -1
  359. package/es/components/forms/Input/Input.js +3 -7
  360. package/es/components/forms/Input/index.js +1 -1
  361. package/es/components/forms/Label.js +4 -4
  362. package/es/components/forms/NumberInput/NumberInput.js +17 -11
  363. package/es/components/forms/NumberInput/StepButton.js +3 -3
  364. package/es/components/forms/PasswordInput/PasswordInput.js +23 -6
  365. package/es/components/forms/RadioGroup/Radio.js +18 -9
  366. package/es/components/forms/RadioGroup/RadioGroup.js +14 -6
  367. package/es/components/forms/RadioGroup/context.js +1 -1
  368. package/es/components/forms/SearchInput/SearchInput.js +4 -4
  369. package/es/components/forms/Slider/Gradation.js +2 -2
  370. package/es/components/forms/Slider/Header.js +1 -1
  371. package/es/components/forms/Slider/RangeSlider.js +3 -3
  372. package/es/components/forms/Slider/Slider.js +5 -4
  373. package/es/components/forms/Slider/SliderBase.js +5 -5
  374. package/es/components/forms/Slider/SliderInput.js +2 -2
  375. package/es/components/forms/Slider/SliderThumb.js +2 -2
  376. package/es/components/forms/Slider/SliderTrack.js +2 -2
  377. package/es/components/forms/Slider/elements.js +1 -1
  378. package/es/components/forms/Slider/index.js +1 -1
  379. package/es/components/forms/Slider/types.js +1 -1
  380. package/es/components/forms/Switch/Switch.js +19 -15
  381. package/es/components/forms/TextArea/TextArea.js +31 -28
  382. package/es/components/forms/TextInput/TextInput.js +16 -9
  383. package/es/components/forms/TextInput/TextInputBase.js +13 -41
  384. package/es/components/forms/TextInput/index.js +11 -0
  385. package/es/components/forms/index.js +1 -1
  386. package/es/components/layout/Flex.js +2 -2
  387. package/es/components/layout/Flow.js +2 -2
  388. package/es/components/layout/Grid.js +2 -2
  389. package/es/components/layout/Prefix.js +2 -2
  390. package/es/components/layout/Space.js +2 -2
  391. package/es/components/layout/Suffix.js +2 -2
  392. package/es/components/navigation/LegacyTabs/LegacyTabs.js +4 -4
  393. package/es/components/navigation/Link/Link.js +2 -2
  394. package/es/components/organisms/FileTabs/FileTabs.js +4 -4
  395. package/es/components/organisms/Modal/Modal.js +3 -3
  396. package/es/components/organisms/StatsCard/StatsCard.js +2 -2
  397. package/es/components/other/Base64Upload/Base64Upload.js +2 -2
  398. package/es/components/other/CloudLogo/CloudLogo.js +2 -2
  399. package/es/components/overlays/AlertDialog/AlertDialog.js +2 -2
  400. package/es/components/overlays/AlertDialog/AlertDialogApiProvider.js +2 -2
  401. package/es/components/overlays/AlertDialog/AlertDialogZone.js +2 -2
  402. package/es/components/overlays/AlertDialog/index.js +1 -1
  403. package/es/components/overlays/AlertDialog/types.js +1 -1
  404. package/es/components/overlays/Dialog/Dialog.js +14 -5
  405. package/es/components/overlays/Dialog/DialogContainer.js +2 -2
  406. package/es/components/overlays/Dialog/DialogForm.js +5 -7
  407. package/es/components/overlays/Dialog/DialogTrigger.js +11 -11
  408. package/es/components/overlays/Dialog/context.js +1 -1
  409. package/es/components/overlays/Dialog/index.js +1 -1
  410. package/es/components/overlays/Modal/Modal.js +23 -9
  411. package/es/components/overlays/Modal/OpenTransition.js +11 -3
  412. package/es/components/overlays/Modal/Overlay.js +6 -4
  413. package/es/components/overlays/Modal/Popover.js +21 -6
  414. package/es/components/overlays/Modal/Tray.js +14 -4
  415. package/es/components/overlays/Modal/Underlay.js +2 -2
  416. package/es/components/overlays/Modal/index.js +2 -1
  417. package/es/components/overlays/Modal/types.js +10 -0
  418. package/es/components/overlays/NewNotifications/Bar/FloatingNotification.js +2 -2
  419. package/es/components/overlays/NewNotifications/Bar/NotificationsBar.js +2 -2
  420. package/es/components/overlays/NewNotifications/Bar/TransitionComponent.js +2 -2
  421. package/es/components/overlays/NewNotifications/Bar/index.js +1 -1
  422. package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.js +3 -3
  423. package/es/components/overlays/NewNotifications/Dialog/index.js +1 -1
  424. package/es/components/overlays/NewNotifications/Notification.js +4 -4
  425. package/es/components/overlays/NewNotifications/NotificationView/NotificationAction.js +2 -2
  426. package/es/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +3 -3
  427. package/es/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +2 -2
  428. package/es/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +2 -2
  429. package/es/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +2 -2
  430. package/es/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +5 -5
  431. package/es/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +2 -2
  432. package/es/components/overlays/NewNotifications/NotificationView/NotificationView.js +2 -2
  433. package/es/components/overlays/NewNotifications/NotificationView/index.js +1 -1
  434. package/es/components/overlays/NewNotifications/NotificationView/types.js +1 -1
  435. package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.js +2 -2
  436. package/es/components/overlays/NewNotifications/NotificationsContext/index.js +1 -1
  437. package/es/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +1 -1
  438. package/es/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +2 -2
  439. package/es/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +2 -2
  440. package/es/components/overlays/NewNotifications/NotificationsList/index.js +1 -1
  441. package/es/components/overlays/NewNotifications/NotificationsList/types.js +1 -1
  442. package/es/components/overlays/NewNotifications/hooks/index.js +1 -1
  443. package/es/components/overlays/NewNotifications/hooks/types.js +1 -1
  444. package/es/components/overlays/NewNotifications/hooks/use-notification-list-item.js +1 -1
  445. package/es/components/overlays/NewNotifications/hooks/use-notifications-api.js +1 -1
  446. package/es/components/overlays/NewNotifications/hooks/use-notifications-list.js +1 -1
  447. package/es/components/overlays/NewNotifications/hooks/use-notifications-observer.js +1 -1
  448. package/es/components/overlays/NewNotifications/index.js +1 -1
  449. package/es/components/overlays/NewNotifications/types.js +1 -1
  450. package/es/components/overlays/Notification/Notification.js +2 -2
  451. package/es/components/overlays/OverlayWrapper.js +3 -3
  452. package/es/components/overlays/Toasts/Toast.js +4 -4
  453. package/es/components/overlays/Toasts/index.js +1 -1
  454. package/es/components/overlays/Toasts/types.js +1 -1
  455. package/es/components/overlays/Toasts/use-toasts-api.js +1 -1
  456. package/es/components/overlays/Tooltip/Tooltip.js +2 -2
  457. package/es/components/overlays/Tooltip/TooltipProvider.js +2 -2
  458. package/es/components/overlays/Tooltip/TooltipTrigger.js +4 -4
  459. package/es/components/overlays/Tooltip/context.js +1 -1
  460. package/es/components/pickers/ComboBox/ComboBox.js +29 -17
  461. package/es/components/pickers/Menu/Menu.js +3 -3
  462. package/es/components/pickers/Menu/MenuButton.js +5 -5
  463. package/es/components/pickers/Menu/MenuItem.js +3 -3
  464. package/es/components/pickers/Menu/MenuSection.js +3 -3
  465. package/es/components/pickers/Menu/MenuTrigger.js +5 -5
  466. package/es/components/pickers/Menu/context.js +1 -1
  467. package/es/components/pickers/Menu/styled.js +1 -1
  468. package/es/components/pickers/Select/Select.js +27 -12
  469. package/es/components/portal/Portal.js +2 -2
  470. package/es/components/portal/PortalProvider.js +1 -1
  471. package/es/components/portal/index.js +1 -1
  472. package/es/components/portal/storybook/templates/CustomRoot.js +2 -2
  473. package/es/components/portal/storybook/templates/PortalOrder.js +2 -2
  474. package/es/components/portal/storybook/templates/basic.js +2 -2
  475. package/es/components/portal/storybook/templates/index.js +1 -1
  476. package/es/components/portal/types.js +1 -1
  477. package/es/components/portal/usePortal.js +1 -1
  478. package/es/components/status/LoadingAnimation/LoadingAnimation.js +3 -3
  479. package/es/components/status/LoadingAnimation/index.js +1 -1
  480. package/es/components/status/Spin/Cube.js +1 -1
  481. package/es/components/status/Spin/InternalSpinner.js +2 -2
  482. package/es/components/status/Spin/Spin.js +3 -3
  483. package/es/components/status/Spin/SpinsContainer.js +1 -1
  484. package/es/components/status/Spin/index.js +1 -1
  485. package/es/components/status/Spin/types.js +1 -1
  486. package/es/components/status/index.js +1 -1
  487. package/es/data/themes.js +1 -1
  488. package/es/icons/Attention.js +2 -2
  489. package/es/icons/Cross.js +2 -2
  490. package/es/icons/Danger.js +2 -2
  491. package/es/icons/Success.js +2 -2
  492. package/es/icons/index.js +1 -1
  493. package/es/index.js +2 -3
  494. package/es/provider.js +3 -3
  495. package/es/providers/StyleProvider.js +2 -2
  496. package/es/services/notification.js +2 -2
  497. package/es/shared/form.js +1 -1
  498. package/es/shared/index.js +1 -1
  499. package/es/styled/index.js +1 -1
  500. package/es/styled/styled.js +4 -4
  501. package/es/tasty/index.js +1 -1
  502. package/es/tasty/providers/BreakpointsProvider.js +2 -2
  503. package/es/tasty/styles/align.js +1 -1
  504. package/es/tasty/styles/border.js +1 -1
  505. package/es/tasty/styles/boxShadow.combinator.js +1 -1
  506. package/es/tasty/styles/color.js +1 -1
  507. package/es/tasty/styles/createStyle.js +1 -1
  508. package/es/tasty/styles/dimension.js +1 -1
  509. package/es/tasty/styles/display.js +1 -1
  510. package/es/tasty/styles/fill.js +1 -1
  511. package/es/tasty/styles/flow.js +1 -1
  512. package/es/tasty/styles/font.js +1 -1
  513. package/es/tasty/styles/fontStyle.js +1 -1
  514. package/es/tasty/styles/gap.js +1 -1
  515. package/es/tasty/styles/groupRadius.js +1 -1
  516. package/es/tasty/styles/height.js +1 -1
  517. package/es/tasty/styles/index.js +1 -1
  518. package/es/tasty/styles/justify.js +1 -1
  519. package/es/tasty/styles/list.js +1 -1
  520. package/es/tasty/styles/margin.js +1 -1
  521. package/es/tasty/styles/marginBlock.js +1 -1
  522. package/es/tasty/styles/marginInline.js +1 -1
  523. package/es/tasty/styles/outline.js +1 -1
  524. package/es/tasty/styles/padding.js +1 -1
  525. package/es/tasty/styles/paddingBlock.js +1 -1
  526. package/es/tasty/styles/paddingInline.js +1 -1
  527. package/es/tasty/styles/predefined.js +1 -1
  528. package/es/tasty/styles/preset.js +1 -1
  529. package/es/tasty/styles/radius.js +1 -1
  530. package/es/tasty/styles/reset.js +1 -1
  531. package/es/tasty/styles/shadow.js +1 -1
  532. package/es/tasty/styles/styledScrollbar.js +1 -1
  533. package/es/tasty/styles/transition.js +1 -1
  534. package/es/tasty/styles/types.js +1 -1
  535. package/es/tasty/styles/width.js +1 -1
  536. package/es/tasty/tasty.js +4 -4
  537. package/es/tasty/types.js +1 -1
  538. package/es/tasty/utils/colors.js +1 -1
  539. package/es/tasty/utils/dotize.js +1 -1
  540. package/es/tasty/utils/filterBaseProps.js +1 -1
  541. package/es/tasty/utils/get-display-name.js +1 -1
  542. package/es/tasty/utils/index.js +1 -1
  543. package/es/tasty/utils/mergeStyles.js +1 -1
  544. package/es/tasty/utils/modAttrs.js +1 -1
  545. package/es/tasty/utils/renderStyles.js +1 -1
  546. package/es/tasty/utils/responsive.js +1 -1
  547. package/es/tasty/utils/string.js +1 -1
  548. package/es/tasty/utils/styles.js +1 -1
  549. package/es/tasty/utils/warnings.js +1 -1
  550. package/es/test/index.js +5 -1
  551. package/es/test/render.js +2 -2
  552. package/es/test/setup.js +43 -2
  553. package/es/test/utils/index.js +1 -1
  554. package/es/test/utils/wait.js +1 -1
  555. package/es/tokens.js +1 -1
  556. package/es/type-checks.js +1 -1
  557. package/es/utils/ResizeSensor.js +1 -1
  558. package/es/utils/modules.js +1 -1
  559. package/es/utils/promise.js +1 -1
  560. package/es/utils/random.js +1 -1
  561. package/es/utils/range.js +1 -1
  562. package/es/utils/react/Slots.js +3 -3
  563. package/es/utils/react/chain.js +1 -1
  564. package/es/utils/react/index.js +1 -1
  565. package/es/utils/react/interactions.js +1 -1
  566. package/es/utils/react/isTextOnly.js +1 -1
  567. package/es/utils/react/mapProps.js +1 -1
  568. package/es/utils/react/mergeProps.js +1 -1
  569. package/es/utils/react/nullableValue.js +1 -1
  570. package/es/utils/react/useCombinedRefs.js +1 -1
  571. package/es/utils/react/useId.js +1 -1
  572. package/es/utils/react/useLayoutEffect.js +1 -1
  573. package/es/utils/react/useViewportSize.js +1 -1
  574. package/es/utils/react/wrapNodeIfPlain.js +1 -1
  575. package/es/utils/transitions.js +1 -1
  576. package/es/utils/tree.js +1 -1
  577. package/es/utils/warnings.js +2 -2
  578. package/package.json +2 -1
  579. package/types/_internal/hooks/index.d.ts +6 -2
  580. package/types/_internal/hooks/use-effect-once.d.ts +2 -0
  581. package/types/_internal/hooks/use-is-first-render.d.ts +1 -0
  582. package/types/_internal/hooks/use-update-effect.d.ts +2 -0
  583. package/types/_internal/hooks/use-warn.d.ts +2 -0
  584. package/types/components/actions/Button/index.d.ts +0 -1
  585. package/types/components/forms/Checkbox/CheckboxGroup.d.ts +1 -2
  586. package/types/components/forms/FieldWrapper/FieldWrapper.d.ts +7 -0
  587. package/types/components/forms/FieldWrapper/extract-field-wrapper-props.d.ts +9 -0
  588. package/types/components/forms/FieldWrapper/index.d.ts +3 -0
  589. package/types/components/forms/{FieldWrapper.d.ts → FieldWrapper/types.d.ts} +15 -20
  590. package/types/components/forms/Form/Field/LegacyField.d.ts +14 -0
  591. package/types/components/forms/Form/Field/index.d.ts +4 -0
  592. package/types/components/forms/Form/Field/types.d.ts +72 -0
  593. package/types/components/forms/Form/Field/use-field-props.d.ts +19 -0
  594. package/types/components/forms/Form/Field/use-field.d.ts +7 -0
  595. package/types/components/forms/Form/Form.d.ts +3 -1
  596. package/types/components/forms/Form/Submit/Submit.d.ts +8 -0
  597. package/types/components/forms/Form/Submit/index.d.ts +1 -0
  598. package/types/components/forms/Form/index.d.ts +5 -1
  599. package/types/components/forms/Form/useForm.d.ts +1 -1
  600. package/types/components/forms/Input/Input.d.ts +1 -1
  601. package/types/components/forms/NumberInput/NumberInput.d.ts +2 -3
  602. package/types/components/forms/PasswordInput/PasswordInput.d.ts +3 -1
  603. package/types/components/forms/Slider/types.d.ts +1 -1
  604. package/types/components/forms/Switch/Switch.d.ts +2 -3
  605. package/types/components/forms/TextArea/TextArea.d.ts +3 -4
  606. package/types/components/forms/TextInput/TextInput.d.ts +5 -0
  607. package/types/components/forms/TextInput/TextInputBase.d.ts +1 -2
  608. package/types/components/forms/TextInput/index.d.ts +2 -0
  609. package/types/components/other/Base64Upload/Base64Upload.d.ts +4 -1
  610. package/types/components/overlays/Dialog/DialogForm.d.ts +1 -2
  611. package/types/components/overlays/Dialog/DialogTrigger.d.ts +2 -1
  612. package/types/components/overlays/Modal/Modal.d.ts +2 -1
  613. package/types/components/overlays/Modal/OpenTransition.d.ts +6 -1
  614. package/types/components/overlays/Modal/Overlay.d.ts +2 -1
  615. package/types/components/overlays/Modal/Popover.d.ts +3 -1
  616. package/types/components/overlays/Modal/Tray.d.ts +2 -1
  617. package/types/components/overlays/Modal/index.d.ts +1 -0
  618. package/types/components/overlays/Modal/types.d.ts +9 -0
  619. package/types/components/pickers/ComboBox/ComboBox.d.ts +5 -5
  620. package/types/components/pickers/Select/Select.d.ts +5 -2
  621. package/types/index.d.ts +1 -2
  622. package/types/shared/form.d.ts +10 -0
  623. package/types/test/index.d.ts +4 -0
  624. package/types/test/setup.d.ts +0 -1
  625. package/cjs/components/actions/Button/Submit.js +0 -29
  626. package/cjs/stories/FormFieldArgs.js +0 -324
  627. package/cjs/stories/components/ConfirmDeletionDialogForm.js +0 -36
  628. package/cjs/stories/components/DialogFormApp.js +0 -19
  629. package/cjs/stories/components/StyledButton.js +0 -37
  630. package/cjs/stories/lists/baseProps.js +0 -42
  631. package/es/components/actions/Button/Submit.js +0 -26
  632. package/es/stories/FormFieldArgs.js +0 -321
  633. package/es/stories/components/ConfirmDeletionDialogForm.js +0 -32
  634. package/es/stories/components/DialogFormApp.js +0 -15
  635. package/es/stories/components/StyledButton.js +0 -33
  636. package/es/stories/lists/baseProps.js +0 -39
  637. package/types/components/actions/Button/Submit.d.ts +0 -3
  638. package/types/components/forms/Form/Field.d.ts +0 -41
  639. package/types/stories/FormFieldArgs.d.ts +0 -369
  640. package/types/stories/components/ConfirmDeletionDialogForm.d.ts +0 -8
  641. package/types/stories/components/DialogFormApp.d.ts +0 -2
  642. package/types/stories/components/StyledButton.d.ts +0 -119
  643. package/types/stories/lists/baseProps.d.ts +0 -1
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -18,7 +18,7 @@ import { DismissButton, useOverlay, useOverlayPosition, } from '@react-aria/over
18
18
  import { useFocus as useAriaFocus, useHover } from '@react-aria/interactions';
19
19
  import { Item } from '@react-stately/collections';
20
20
  import styled from 'styled-components';
21
- import { useFormProps } from '../../forms';
21
+ import { useFieldProps } from '../../forms';
22
22
  import { useProviderProps } from '../../../provider';
23
23
  import { BLOCK_STYLES, extractStyles, OUTER_STYLES, tasty, } from '../../../tasty';
24
24
  import { useFocus } from '../../../utils/react/interactions';
@@ -29,7 +29,7 @@ import { mergeProps, useCombinedRefs } from '../../../utils/react';
29
29
  import { DEFAULT_INPUT_STYLES, INPUT_WRAPPER_STYLES, } from '../../forms/TextInput/TextInputBase';
30
30
  import { DEFAULT_BUTTON_STYLES } from '../../actions';
31
31
  function CaretDownIcon() {
32
- return (_jsx("svg", { "aria-hidden": "true", width: "14", height: "14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M11.49 4.102H2.51c-.269 0-.42.284-.253.478l4.49 5.206a.342.342 0 00.506 0l4.49-5.206c.167-.194.016-.478-.253-.478z", fill: "currentColor" }, void 0) }, void 0));
32
+ return (_jsx("svg", { "aria-hidden": "true", width: "14", height: "14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M11.49 4.102H2.51c-.269 0-.42.284-.253.478l4.49 5.206a.342.342 0 00.506 0l4.49-5.206c.167-.194.016-.478-.253-.478z", fill: "currentColor" }) }));
33
33
  }
34
34
  const SelectWrapperElement = tasty({
35
35
  styles: {
@@ -190,7 +190,13 @@ const StyledOverlayElement = styled(OverlayElement) `
190
190
  `;
191
191
  function Select(props, ref) {
192
192
  props = useProviderProps(props);
193
- props = useFormProps(props);
193
+ props = useFieldProps(props, {
194
+ defaultValidationTrigger: 'onChange',
195
+ valuePropsMapper: ({ value, onChange }) => ({
196
+ selectedKey: value ?? null,
197
+ onSelectionChange: onChange,
198
+ }),
199
+ });
194
200
  let { qa, label, extra, icon, labelPosition = 'top', labelStyles, isRequired, necessityIndicator, validationState, prefix, isDisabled, autoFocus, inputProps, triggerRef, popoverRef, listBoxRef, isLoading, loadingIndicator, overlayOffset = 8, inputStyles, optionStyles, suffix, listBoxStyles, overlayStyles, message, description, direction = 'bottom', shouldFlip = true, requiredMark = true, placeholder, tooltip, size, styles, type = 'secondary', theme = 'default', labelSuffix, ellipsis, suffixPosition = 'before', ...otherProps } = props;
195
201
  let state = useSelectState(props);
196
202
  const outerStyles = extractStyles(otherProps, OUTER_STYLES, styles);
@@ -215,13 +221,13 @@ function Select(props, ref) {
215
221
  // Get props for the button based on the trigger props from useSelect
216
222
  let { buttonProps } = useButton(triggerProps, triggerRef);
217
223
  let isInvalid = validationState === 'invalid';
218
- let validationIcon = isInvalid ? (_jsx(WarningOutlined, { "data-element": "ValidationIcon", style: { color: 'var(--danger-color)' } }, void 0)) : (_jsx(CheckOutlined, { "data-element": "ValidationIcon", style: { color: 'var(--success-color)' } }, void 0));
224
+ let validationIcon = isInvalid ? (_jsx(WarningOutlined, { "data-element": "ValidationIcon", style: { color: 'var(--danger-color)' } })) : (_jsx(CheckOutlined, { "data-element": "ValidationIcon", style: { color: 'var(--success-color)' } }));
219
225
  let validation = cloneElement(validationIcon);
220
226
  let triggerWidth = triggerRef?.current?.offsetWidth;
221
227
  if (icon) {
222
- icon = _jsx("div", { "data-element": "ButtonIcon", children: icon }, void 0);
228
+ icon = _jsx("div", { "data-element": "ButtonIcon", children: icon });
223
229
  if (prefix) {
224
- prefix = (_jsxs(_Fragment, { children: [icon, prefix] }, void 0));
230
+ prefix = (_jsxs(_Fragment, { children: [icon, prefix] }));
225
231
  }
226
232
  else {
227
233
  prefix = icon;
@@ -241,6 +247,7 @@ function Select(props, ref) {
241
247
  suffix: true,
242
248
  }), [
243
249
  ellipsis,
250
+ isInvalid,
244
251
  validationState,
245
252
  isDisabled,
246
253
  isLoading,
@@ -249,9 +256,9 @@ function Select(props, ref) {
249
256
  showPlaceholder,
250
257
  prefix,
251
258
  ]);
252
- let selectField = (_jsxs(SelectWrapperElement, { qa: qa || 'Select', mods: modifiers, styles: outerStyles, "data-size": size, "data-type": type, "data-theme": theme, children: [_jsx(HiddenSelect, { state: state, triggerRef: triggerRef, label: props.label, name: props.name }, void 0), _jsxs(SelectElement, { ...mergeProps(buttonProps, hoverProps, focusProps), ref: triggerRef, styles: inputStyles, "data-theme": theme, "data-size": size, "data-type": type, mods: modifiers, children: [prefix ? _jsx("div", { "data-element": "Prefix", children: prefix }, void 0) : null, _jsx("span", { "data-element": "Value", ...valueProps, children: state.selectedItem
259
+ let selectField = (_jsxs(SelectWrapperElement, { qa: qa || 'Select', mods: modifiers, styles: outerStyles, "data-size": size, "data-type": type, "data-theme": theme, children: [_jsx(HiddenSelect, { state: state, triggerRef: triggerRef, label: props.label, name: props.name }), _jsxs(SelectElement, { ...mergeProps(buttonProps, hoverProps, focusProps), ref: triggerRef, styles: inputStyles, "data-theme": theme, "data-size": size, "data-type": type, mods: modifiers, children: [prefix ? _jsx("div", { "data-element": "Prefix", children: prefix }) : null, _jsx("span", { "data-element": "Value", ...valueProps, children: state.selectedItem
253
260
  ? state.selectedItem.rendered
254
- : placeholder || _jsx(_Fragment, { children: "\u00A0" }, void 0) }, void 0), _jsxs("div", { "data-element": "Suffix", children: [suffixPosition === 'before' ? suffix : null, validationState && !isLoading ? validation : null, isLoading && _jsx(LoadingOutlined, {}, void 0), suffixPosition === 'after' ? suffix : null, _jsx("div", { "data-element": "CaretIcon", children: _jsx(CaretDownIcon, {}, void 0) }, void 0)] }, void 0)] }, void 0), _jsx(OverlayWrapper, { isOpen: state.isOpen && !isDisabled, children: _jsx(ListBoxPopup, { ...menuProps, popoverRef: popoverRef, listBoxRef: listBoxRef, overlayProps: overlayProps, placement: placement, state: state, listBoxStyles: listBoxStyles, overlayStyles: overlayStyles, optionStyles: optionStyles, minWidth: triggerWidth }, void 0) }, void 0)] }, void 0));
261
+ : placeholder || _jsx(_Fragment, { children: "\u00A0" }) }), _jsxs("div", { "data-element": "Suffix", children: [suffixPosition === 'before' ? suffix : null, validationState && !isLoading ? validation : null, isLoading && _jsx(LoadingOutlined, {}), suffixPosition === 'after' ? suffix : null, _jsx("div", { "data-element": "CaretIcon", children: _jsx(CaretDownIcon, {}) })] })] }), _jsx(OverlayWrapper, { isOpen: state.isOpen && !isDisabled, children: _jsx(ListBoxPopup, { ...menuProps, popoverRef: popoverRef, listBoxRef: listBoxRef, overlayProps: overlayProps, placement: placement, state: state, listBoxStyles: listBoxStyles, overlayStyles: overlayStyles, optionStyles: optionStyles, minWidth: triggerWidth }) })] }));
255
262
  return (_jsx(FieldWrapper, { ...{
256
263
  labelPosition,
257
264
  label,
@@ -270,7 +277,7 @@ function Select(props, ref) {
270
277
  labelSuffix,
271
278
  Component: selectField,
272
279
  ref: ref,
273
- } }, void 0));
280
+ } }));
274
281
  }
275
282
  export function ListBoxPopup({ state, popoverRef, listBoxRef, listBoxStyles, overlayStyles, optionStyles, overlayProps: parentOverlayProps, shouldUseVirtualFocus = false, placement, minWidth, ...otherProps }) {
276
283
  // Get props for the listbox
@@ -294,7 +301,7 @@ export function ListBoxPopup({ state, popoverRef, listBoxRef, listBoxStyles, ove
294
301
  return (_jsx(StyledOverlayElement, { ...overlayProps, ...parentOverlayProps, ref: popoverRef, styles: overlayStyles, style: {
295
302
  '--overlay-min-width': minWidth ? `${minWidth}px` : 'initial',
296
303
  ...parentOverlayProps?.style,
297
- }, "data-position": placement, children: _jsxs(FocusScope, { restoreFocus: true, children: [_jsx(DismissButton, { onDismiss: () => state.close() }, void 0), _jsx(ListBoxElement, { styles: listBoxStyles, ...mergeProps(listBoxProps, otherProps), ref: listBoxRef, children: Array.from(state.collection).map((item) => (_jsx(Option, { item: item, state: state, styles: optionStyles, shouldUseVirtualFocus: shouldUseVirtualFocus }, item.key))) }, void 0), _jsx(DismissButton, { onDismiss: () => state.close() }, void 0)] }, void 0) }, void 0));
304
+ }, "data-position": placement, children: _jsxs(FocusScope, { restoreFocus: true, children: [_jsx(DismissButton, { onDismiss: () => state.close() }), _jsx(ListBoxElement, { styles: listBoxStyles, ...mergeProps(listBoxProps, otherProps), ref: listBoxRef, children: Array.from(state.collection).map((item) => (_jsx(Option, { item: item, state: state, styles: optionStyles, shouldUseVirtualFocus: shouldUseVirtualFocus }, item.key))) }), _jsx(DismissButton, { onDismiss: () => state.close() })] }) }));
298
305
  }
299
306
  function Option({ item, state, styles, shouldUseVirtualFocus }) {
300
307
  let ref = useRef(null);
@@ -320,7 +327,15 @@ function Option({ item, state, styles, shouldUseVirtualFocus }) {
320
327
  }, "data-theme": isSelected ? 'special' : undefined, styles: styles }, item.rendered));
321
328
  }
322
329
  const _Select = forwardRef(Select);
323
- _Select.cubeInputType = 'Select';
330
+ /**
331
+ * @legacy should be removed with legacy <Field />
332
+ */
333
+ Object.defineProperty(_Select, 'cubeInputType', {
334
+ enumerable: false,
335
+ configurable: false,
336
+ writable: false,
337
+ value: 'Select',
338
+ });
324
339
  const __Select = Object.assign(_Select, { Item });
325
340
  export { __Select as Select };
326
341
 
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -34,7 +34,7 @@ import { usePortal } from './usePortal';
34
34
  export function Portal(props) {
35
35
  const { children, mountRoot, isDisabled } = usePortal(props);
36
36
  if (isDisabled)
37
- return _jsx(_Fragment, { children: children }, void 0);
37
+ return _jsx(_Fragment, { children: children });
38
38
  return mountRoot ? ReactDOM.createPortal(children, mountRoot) : null;
39
39
  }
40
40
 
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -10,7 +10,7 @@ import { useRef } from 'react';
10
10
  import { Portal } from '../../Portal';
11
11
  export const CustomRootTemplate = (args) => {
12
12
  const rootRef = useRef(null);
13
- return (_jsxs(_Fragment, { children: ["Disabled portal's content should be there ", ' -> ', _jsx(Portal, { ...args, root: rootRef, children: "Portal's content" }, void 0), _jsxs("div", { ref: rootRef, children: ["Using custom portal root content should be there ", ' -> '] }, void 0), "By default, Portal content should be there ", ' -> '] }, void 0));
13
+ return (_jsxs(_Fragment, { children: ["Disabled portal's content should be there ", ' -> ', _jsx(Portal, { ...args, root: rootRef, children: "Portal's content" }), _jsxs("div", { ref: rootRef, children: ["Using custom portal root content should be there ", ' -> '] }), "By default, Portal content should be there ", ' -> '] }));
14
14
  };
15
15
 
16
16
 
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
8
8
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
9
9
  import { Block } from '../../../Block';
10
10
  import { Portal } from '../../Portal';
11
- export const PortalOrderTemplate = (args) => (_jsxs(_Fragment, { children: [_jsxs(Portal, { ...args, children: [_jsx(Block, { children: "Portal 1" }, void 0), _jsx(Portal, { children: _jsx(Block, { children: "Portal 3" }, void 0) }, void 0), _jsx(Portal, { children: _jsx(Block, { children: "Portal 4" }, void 0) }, void 0)] }, void 0), _jsx(Portal, { children: _jsx(Block, { children: "Portal 2" }, void 0) }, void 0)] }, void 0));
11
+ export const PortalOrderTemplate = (args) => (_jsxs(_Fragment, { children: [_jsxs(Portal, { ...args, children: [_jsx(Block, { children: "Portal 1" }), _jsx(Portal, { children: _jsx(Block, { children: "Portal 3" }) }), _jsx(Portal, { children: _jsx(Block, { children: "Portal 4" }) })] }), _jsx(Portal, { children: _jsx(Block, { children: "Portal 2" }) })] }));
12
12
 
13
13
 
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
8
8
  import { jsxs as _jsxs, jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
9
9
  import { Portal } from '../../Portal';
10
10
  import { Divider } from '../../../content/Divider';
11
- export const Basic = (args) => (_jsxs(_Fragment, { children: ["By default, Portal content should be there ", ' -> ', _jsxs(Portal, { ...args, children: ["Portal's content.", !args.isDisabled && " But, if you disable me, I'll be near the arrow"] }, void 0), _jsx(Divider, {}, void 0)] }, void 0));
11
+ export const Basic = (args) => (_jsxs(_Fragment, { children: ["By default, Portal content should be there ", ' -> ', _jsxs(Portal, { ...args, children: ["Portal's content.", !args.isDisabled && " But, if you disable me, I'll be near the arrow"] }), _jsx(Divider, {})] }));
12
12
 
13
13
 
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -117,7 +117,7 @@ const ImgElement = styled.img(({ index }) => `
117
117
  : ''}
118
118
  `);
119
119
  function Cube(props) {
120
- return _jsx(ImgElement, { role: "presentation", src: cubeImage, alt: "", ...props }, void 0);
120
+ return _jsx(ImgElement, { role: "presentation", src: cubeImage, alt: "", ...props });
121
121
  }
122
122
  const SIZE_MAP = {
123
123
  small: 32,
@@ -126,7 +126,7 @@ const SIZE_MAP = {
126
126
  };
127
127
  export function LoadingAnimation({ size = 'medium', ...props }) {
128
128
  const numSize = SIZE_MAP[size] || size || SIZE_MAP.medium;
129
- return (_jsxs(Block, { role: "img", "aria-label": "Loading animation", width: numSize, height: numSize * 1.1388888889, style: { position: 'relative' }, ...props, children: [_jsx(Cube, { style: { transform: 'translate(0%, 72.5%)' } }, void 0), _jsx(Cube, { style: { transform: 'translate(98%, 72.5%)' } }, void 0), _jsx(Cube, { style: { transform: 'translate(49%, 96.5%)' } }, void 0), _jsx(Cube, { index: 0 }, void 0), _jsx(Cube, { index: 1 }, void 0), _jsx(Cube, { index: 2 }, void 0)] }, void 0));
129
+ return (_jsxs(Block, { role: "img", "aria-label": "Loading animation", width: numSize, height: numSize * 1.1388888889, style: { position: 'relative' }, ...props, children: [_jsx(Cube, { style: { transform: 'translate(0%, 72.5%)' } }), _jsx(Cube, { style: { transform: 'translate(98%, 72.5%)' } }), _jsx(Cube, { style: { transform: 'translate(49%, 96.5%)' } }), _jsx(Cube, { index: 0 }), _jsx(Cube, { index: 1 }), _jsx(Cube, { index: 2 })] }));
130
130
  }
131
131
 
132
132
 
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -15,7 +15,7 @@ export const InternalSpinner = memo(function InternalSpinner(props) {
15
15
  const { size } = props;
16
16
  return (
17
17
  // Even though using size as a key resets the animation, it helps safari to resize the cubes.
18
- _jsx(SpinsContainer, { ownSize: CUBE_SIZE_MAP[size], children: _jsxs(SpinsBox, { children: [_jsx(Cube, { position: "top" }, void 0), _jsx(Cube, { position: "right" }, void 0), _jsx(Cube, { position: "bottom" }, void 0)] }, void 0) }, size));
18
+ _jsx(SpinsContainer, { ownSize: CUBE_SIZE_MAP[size], children: _jsxs(SpinsBox, { children: [_jsx(Cube, { position: "top" }), _jsx(Cube, { position: "right" }), _jsx(Cube, { position: "bottom" })] }) }, size));
19
19
  });
20
20
  const CUBE_SIZE_MAP = {
21
21
  small: 24,
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -13,9 +13,9 @@ const SpinContainer = tasty(Block, { styles: { lineHeight: '0' } });
13
13
  export function Spin(props) {
14
14
  const { size = 'default', spinning = true, children, styles } = props;
15
15
  if (!spinning) {
16
- return _jsx(_Fragment, { children: children }, void 0);
16
+ return _jsx(_Fragment, { children: children });
17
17
  }
18
- return (_jsx(SpinContainer, { styles: styles, children: _jsx(InternalSpinner, { size: size }, void 0) }, void 0));
18
+ return (_jsx(SpinContainer, { styles: styles, children: _jsx(InternalSpinner, { size: size }) }));
19
19
  }
20
20
 
21
21
 
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
package/es/data/themes.js CHANGED
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
9
  export function Attention() {
10
- return (_jsx("svg", { fill: "currentColor", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M7.94 11.04c-.82 0-1.49.67-1.49 1.49.08 1.96 2.9 1.96 2.97 0 0-.82-.67-1.49-1.48-1.49ZM9.42 2.68a1.93 1.93 0 0 0-3.39 1.58l.9 5.13c.2 1.12 1.8 1.12 2.02 0l.9-5.13c.1-.56-.06-1.14-.43-1.58Z" }, void 0) }, void 0));
10
+ return (_jsx("svg", { fill: "currentColor", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M7.94 11.04c-.82 0-1.49.67-1.49 1.49.08 1.96 2.9 1.96 2.97 0 0-.82-.67-1.49-1.48-1.49ZM9.42 2.68a1.93 1.93 0 0 0-3.39 1.58l.9 5.13c.2 1.12 1.8 1.12 2.02 0l.9-5.13c.1-.56-.06-1.14-.43-1.58Z" }) }));
11
11
  }
12
12
 
13
13
 
package/es/icons/Cross.js CHANGED
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
9
  export function Cross() {
10
- return (_jsx("svg", { viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "m9.1 8 4.67-4.67a.78.78 0 1 0-1.1-1.1L8 6.9 3.33 2.23a.78.78 0 1 0-1.1 1.1L6.9 8l-4.67 4.67a.78.78 0 1 0 1.1 1.1L8 9.1l4.67 4.67a.78.78 0 0 0 1.1 0c.3-.3.3-.8 0-1.1L9.1 8Z" }, void 0) }, void 0));
10
+ return (_jsx("svg", { viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "m9.1 8 4.67-4.67a.78.78 0 1 0-1.1-1.1L8 6.9 3.33 2.23a.78.78 0 1 0-1.1 1.1L6.9 8l-4.67 4.67a.78.78 0 1 0 1.1 1.1L8 9.1l4.67 4.67a.78.78 0 0 0 1.1 0c.3-.3.3-.8 0-1.1L9.1 8Z" }) }));
11
11
  }
12
12
 
13
13
 
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
8
8
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
9
9
  export function Danger() {
10
- return (_jsxs("svg", { fill: "currentColor", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M13.58 15.5H2.42a2.4 2.4 0 0 1-2.1-1.21 2.4 2.4 0 0 1 0-2.42l5.59-9.66A2.4 2.4 0 0 1 8 1c.87 0 1.66.45 2.1 1.2l5.57 9.67a2.4 2.4 0 0 1 0 2.42 2.4 2.4 0 0 1-2.09 1.2ZM8 2.6a.8.8 0 0 0-.7.4l-5.58 9.67a.8.8 0 0 0 0 .8c.07.12.28.4.7.4h11.16a.8.8 0 0 0 .7-.4.8.8 0 0 0 0-.8L8.7 3a.8.8 0 0 0-.7-.4Zm0 9.67a.8.8 0 1 1 0-1.62.8.8 0 1 1 0 1.62Zm0-3.23a.8.8 0 0 1-.8-.8V6.64a.8.8 0 1 1 1.6 0v1.6a.8.8 0 0 1-.8.81Z" }, void 0), _jsx("path", { d: "M7.2 6.8a.8.8 0 1 1 1.6 0v2.4a.8.8 0 0 1-1.6 0V6.8Z" }, void 0)] }, void 0));
10
+ return (_jsxs("svg", { fill: "currentColor", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M13.58 15.5H2.42a2.4 2.4 0 0 1-2.1-1.21 2.4 2.4 0 0 1 0-2.42l5.59-9.66A2.4 2.4 0 0 1 8 1c.87 0 1.66.45 2.1 1.2l5.57 9.67a2.4 2.4 0 0 1 0 2.42 2.4 2.4 0 0 1-2.09 1.2ZM8 2.6a.8.8 0 0 0-.7.4l-5.58 9.67a.8.8 0 0 0 0 .8c.07.12.28.4.7.4h11.16a.8.8 0 0 0 .7-.4.8.8 0 0 0 0-.8L8.7 3a.8.8 0 0 0-.7-.4Zm0 9.67a.8.8 0 1 1 0-1.62.8.8 0 1 1 0 1.62Zm0-3.23a.8.8 0 0 1-.8-.8V6.64a.8.8 0 1 1 1.6 0v1.6a.8.8 0 0 1-.8.81Z" }), _jsx("path", { d: "M7.2 6.8a.8.8 0 1 1 1.6 0v2.4a.8.8 0 0 1-1.6 0V6.8Z" })] }));
11
11
  }
12
12
 
13
13
 
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * @license MIT
3
3
  * author: Cube Dev Team
4
- * @cube-dev/ui-kit v0.0.0-canary-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
9
  export function Success() {
10
- return (_jsx("svg", { fill: "currentColor", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "m13.67 5.88-5.8 5.8a1.1 1.1 0 0 1-1.55 0l-3-3a1.1 1.1 0 0 1 1.56-1.55l2.21 2.21 5.03-5.02a1.1 1.1 0 0 1 1.55 1.56Z" }, void 0) }, void 0));
10
+ return (_jsx("svg", { fill: "currentColor", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "m13.67 5.88-5.8 5.8a1.1 1.1 0 0 1-1.55 0l-3-3a1.1 1.1 0 0 1 1.56-1.55l2.21 2.21 5.03-5.02a1.1 1.1 0 0 1 1.55 1.56Z" }) }));
11
11
  }
12
12
 
13
13
 
package/es/icons/index.js CHANGED
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
package/es/index.js CHANGED
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -41,7 +41,6 @@ export { CloudLogo } from './components/other/CloudLogo/CloudLogo';
41
41
  export { Badge } from './components/content/Badge/Badge';
42
42
  export { Tag } from './components/content/Tag/Tag';
43
43
  export { SearchInput } from './components/forms/SearchInput/SearchInput';
44
- export { Submit } from './components/actions/Button/Submit';
45
44
  export { TextInput } from './components/forms/TextInput/TextInput';
46
45
  export { TextArea } from './components/forms/TextArea/TextArea';
47
46
  export { FileInput } from './components/forms/FileInput/FileInput';
@@ -90,7 +89,7 @@ export * from './styled';
90
89
  export * from './tasty';
91
90
  export { default as copy } from 'clipboard-copy';
92
91
  export * from '@react-aria/ssr';
93
- export * from './components/forms/Form';
92
+ export * from './components/forms';
94
93
  export * from './components/overlays/NewNotifications';
95
94
  export * from './components/overlays/Toasts';
96
95
 
package/es/provider.js CHANGED
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -12,7 +12,7 @@ export const UIKitContext = createContext({});
12
12
  export function Provider(allProps) {
13
13
  let { breakpoints, children, insideForm, isDisabled, isReadOnly, isRequired, validationState, router, root, ref, } = allProps;
14
14
  if (breakpoints) {
15
- children = (_jsx(BreakpointsProvider, { value: breakpoints, children: children }, void 0));
15
+ children = (_jsx(BreakpointsProvider, { value: breakpoints, children: children }));
16
16
  }
17
17
  const parentContext = useContext(UIKitContext);
18
18
  const props = {
@@ -32,7 +32,7 @@ export function Provider(allProps) {
32
32
  newValue[key] = props[key];
33
33
  }
34
34
  });
35
- return (_jsx(UIKitContext.Provider, { value: newValue, children: children }, void 0));
35
+ return (_jsx(UIKitContext.Provider, { value: newValue, children: children }));
36
36
  }
37
37
  export function useProviderProps(props) {
38
38
  const contextProps = useContext(UIKitContext);
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -22,7 +22,7 @@ export function StyleProvider({ children, ...props }) {
22
22
  }
23
23
  });
24
24
  // @ts-ignore
25
- return (_jsx(StyleContext.Provider, { value: styles, children: children }, void 0));
25
+ return (_jsx(StyleContext.Provider, { value: styles, children: children }));
26
26
  }
27
27
  /**
28
28
  * @deprecated
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -35,7 +35,7 @@ export const notification = {
35
35
  if (!items) {
36
36
  items = this.items;
37
37
  }
38
- ReactDOM.render(_jsx(TransitionGroup, { className: "cube-notifications", children: items.map((item) => (_jsx(CSSTransition, { timeout: 400, classNames: "cube-notification", children: _jsx(Notification, { type: item.type, onClose: () => this.close(item.id), children: item.message }, void 0) }, item.id))) }, void 0), this.root);
38
+ ReactDOM.render(_jsx(TransitionGroup, { className: "cube-notifications", children: items.map((item) => (_jsx(CSSTransition, { timeout: 400, classNames: "cube-notification", children: _jsx(Notification, { type: item.type, onClose: () => this.close(item.id), children: item.message }) }, item.id))) }), this.root);
39
39
  },
40
40
  show(type, message, options = {}) {
41
41
  options = Object.assign({}, this.defaultOptions, options);
package/es/shared/form.js CHANGED
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7
 
@@ -26,7 +26,7 @@ function styled(Component, options) {
26
26
  let contextBreakpoints = useContext(BreakpointsContext);
27
27
  let zones = pointsToZones(breakpoints || contextBreakpoints);
28
28
  let css = `${styles ? `\n{}${selector}{${renderStyles(styles, zones)}}` : ''}`;
29
- return _jsx(Element, { css: css }, void 0);
29
+ return _jsx(Element, { css: css });
30
30
  };
31
31
  _Component.displayName = `CubeStyled(${Element.displayName ?? Element.name ?? Component})`;
32
32
  return _Component;
@@ -41,7 +41,7 @@ function styled(Component, options) {
41
41
  }
42
42
  return extendStyles;
43
43
  }, [styles]);
44
- return (_jsx(Component, { ref: ref, ...legacyDefaultProps, ...defaultProps, ...restProps, styles: mergedStyles, styleName: styleName ?? name, as: as ?? extendTag }, void 0));
44
+ return (_jsx(Component, { ref: ref, ...legacyDefaultProps, ...defaultProps, ...restProps, styles: mergedStyles, styleName: styleName ?? name, as: as ?? extendTag }));
45
45
  });
46
46
  _StyledComponent.displayName = `CubeStyled(${getDisplayName(Component)})`;
47
47
  return _StyledComponent;
@@ -70,7 +70,7 @@ function styled(Component, options) {
70
70
  if (mods) {
71
71
  Object.assign(props, modAttrs(mods));
72
72
  }
73
- return (_jsx(Element, { as: as ?? tag, "data-element": element, "data-qa": qa || defaultQa, "data-qaval": qaVal || defaultQaVal, ...otherDefaultProps, ...props, ref: ref, css: css }, void 0));
73
+ return (_jsx(Element, { as: as ?? tag, "data-element": element, "data-qa": qa || defaultQa, "data-qaval": qaVal || defaultQaVal, ...otherDefaultProps, ...props, ref: ref, css: css }));
74
74
  });
75
75
  _StyledComponent.displayName = `CubeStyled(${Element.displayName ?? Element.name ?? tag})`;
76
76
  return _StyledComponent;
package/es/tasty/index.js CHANGED
@@ -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-9917823
4
+ * @cube-dev/ui-kit v0.0.0-canary-2a1d026
5
5
  * Released under the MIT license.
6
6
  */
7
7