@cube-dev/ui-kit 0.0.0-canary-5b7252a → 0.0.0-canary-36bc79d
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.
- package/cjs/_internal/hooks/index.js +3 -7
- package/cjs/_internal/hooks/use-chained-callback.js +1 -1
- package/cjs/_internal/hooks/use-deprecation-warning.js +1 -1
- package/cjs/_internal/hooks/use-event.js +1 -1
- package/cjs/_internal/hooks/use-sync-ref.js +1 -1
- package/cjs/_internal/hooks/use-timer/index.js +1 -1
- package/cjs/_internal/hooks/use-timer/timer.js +1 -1
- package/cjs/_internal/hooks/use-timer/use-timer.js +1 -1
- package/cjs/_internal/index.js +1 -1
- package/cjs/components/Base.js +1 -1
- package/cjs/components/Block.js +1 -1
- package/cjs/components/GlobalStyles.js +1 -1
- package/cjs/components/GridProvider.js +1 -1
- package/cjs/components/HiddenInput.js +1 -1
- package/cjs/components/OpenTrasition.js +1 -1
- package/cjs/components/Root.js +1 -1
- package/cjs/components/actions/Action.js +1 -1
- package/cjs/components/actions/Button/Button.js +1 -1
- package/cjs/components/actions/Button/Submit.js +1 -1
- package/cjs/components/actions/Button/index.js +1 -1
- package/cjs/components/actions/ButtonGroup/ButtonGroup.js +1 -1
- package/cjs/components/actions/index.js +1 -1
- package/cjs/components/content/ActiveZone/ActiveZone.js +1 -1
- package/cjs/components/content/Alert/Alert.js +1 -1
- package/cjs/components/content/Alert/index.js +1 -1
- package/cjs/components/content/Alert/types.js +1 -1
- package/cjs/components/content/Alert/use-alert.js +1 -1
- package/cjs/components/content/Avatar/Avatar.js +1 -1
- package/cjs/components/content/Badge/Badge.js +1 -1
- package/cjs/components/content/Card/Card.js +1 -1
- package/cjs/components/content/Content.js +1 -1
- package/cjs/components/content/CopySnippet/CopySnippet.js +1 -1
- package/cjs/components/content/CopySnippet/index.js +1 -1
- package/cjs/components/content/Divider.js +1 -1
- package/cjs/components/content/Footer.js +1 -1
- package/cjs/components/content/Header.js +1 -1
- package/cjs/components/content/Paragraph.js +1 -1
- package/cjs/components/content/Placeholder/Placeholder.js +1 -1
- package/cjs/components/content/PrismCode/PrismCode.js +1 -1
- package/cjs/components/content/Result/Result.js +1 -1
- package/cjs/components/content/Skeleton/Skeleton.js +1 -1
- package/cjs/components/content/Tag/Tag.js +1 -1
- package/cjs/components/content/Text.js +1 -1
- package/cjs/components/content/Title.js +1 -1
- package/cjs/components/forms/Checkbox/Checkbox.js +1 -1
- package/cjs/components/forms/Checkbox/CheckboxGroup.js +1 -1
- package/cjs/components/forms/Checkbox/context.js +1 -1
- package/cjs/components/forms/{FieldWrapper/FieldWrapper.js → FieldWrapper.js} +17 -19
- package/cjs/components/forms/FileInput/FileInput.js +3 -3
- package/cjs/components/forms/Form/{LegacyField.js → Field.js} +1 -1
- package/cjs/components/forms/Form/Form.js +2 -2
- package/cjs/components/forms/Form/index.js +1 -12
- package/cjs/components/forms/Form/types.js +1 -1
- package/cjs/components/forms/Form/useForm.js +1 -2
- package/cjs/components/forms/Form/validation.js +1 -1
- package/cjs/components/forms/Input/Input.js +1 -1
- package/cjs/components/forms/Input/index.js +1 -1
- package/cjs/components/forms/Label.js +1 -1
- package/cjs/components/forms/NumberInput/NumberInput.js +2 -2
- package/cjs/components/forms/NumberInput/StepButton.js +14 -4
- package/cjs/components/forms/PasswordInput/PasswordInput.js +1 -1
- package/cjs/components/forms/RadioGroup/Radio.js +1 -1
- package/cjs/components/forms/RadioGroup/RadioGroup.js +1 -1
- package/cjs/components/forms/RadioGroup/context.js +1 -1
- package/cjs/components/forms/SearchInput/SearchInput.js +1 -1
- package/cjs/components/forms/Switch/Switch.js +12 -15
- package/cjs/components/forms/TextArea/TextArea.js +27 -30
- package/cjs/components/forms/TextInput/TextInput.js +9 -16
- package/cjs/components/forms/TextInput/TextInputBase.js +36 -8
- package/cjs/components/forms/index.js +1 -1
- package/cjs/components/layout/Flex.js +1 -1
- package/cjs/components/layout/Flow.js +1 -1
- package/cjs/components/layout/Grid.js +1 -1
- package/cjs/components/layout/Prefix.js +1 -1
- package/cjs/components/layout/Space.js +1 -1
- package/cjs/components/layout/Suffix.js +1 -1
- package/cjs/components/navigation/LegacyTabs/LegacyTabs.js +1 -1
- package/cjs/components/navigation/Link/Link.js +1 -1
- package/cjs/components/organisms/FileTabs/FileTabs.js +1 -1
- package/cjs/components/organisms/Modal/Modal.js +1 -1
- package/cjs/components/organisms/StatsCard/StatsCard.js +1 -1
- package/cjs/components/other/Base64Upload/Base64Upload.js +1 -1
- package/cjs/components/other/CloudLogo/CloudLogo.js +1 -1
- package/cjs/components/overlays/AlertDialog/AlertDialog.js +1 -1
- package/cjs/components/overlays/AlertDialog/AlertDialogApiProvider.js +1 -1
- package/cjs/components/overlays/AlertDialog/AlertDialogZone.js +1 -1
- package/cjs/components/overlays/AlertDialog/index.js +1 -1
- package/cjs/components/overlays/AlertDialog/types.js +1 -1
- package/cjs/components/overlays/Dialog/Dialog.js +1 -1
- package/cjs/components/overlays/Dialog/DialogContainer.js +1 -1
- package/cjs/components/overlays/Dialog/DialogForm.js +1 -1
- package/cjs/components/overlays/Dialog/DialogTrigger.js +1 -1
- package/cjs/components/overlays/Dialog/context.js +1 -1
- package/cjs/components/overlays/Dialog/index.js +1 -1
- package/cjs/components/overlays/Modal/Modal.js +1 -1
- package/cjs/components/overlays/Modal/OpenTransition.js +1 -1
- package/cjs/components/overlays/Modal/Overlay.js +1 -1
- package/cjs/components/overlays/Modal/Popover.js +1 -1
- package/cjs/components/overlays/Modal/Tray.js +1 -1
- package/cjs/components/overlays/Modal/Underlay.js +1 -1
- package/cjs/components/overlays/Modal/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/Bar/FloatingNotification.js +1 -1
- package/cjs/components/overlays/NewNotifications/Bar/NotificationsBar.js +1 -1
- package/cjs/components/overlays/NewNotifications/Bar/TransitionComponent.js +1 -1
- package/cjs/components/overlays/NewNotifications/Bar/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.js +1 -1
- package/cjs/components/overlays/NewNotifications/Dialog/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/Notification.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationAction.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationView.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/types.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationsContext/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationsList/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationsList/types.js +1 -1
- package/cjs/components/overlays/NewNotifications/hooks/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/hooks/types.js +1 -1
- package/cjs/components/overlays/NewNotifications/hooks/use-notification-list-item.js +1 -1
- package/cjs/components/overlays/NewNotifications/hooks/use-notifications-api.js +1 -1
- package/cjs/components/overlays/NewNotifications/hooks/use-notifications-list.js +1 -1
- package/cjs/components/overlays/NewNotifications/hooks/use-notifications-observer.js +1 -1
- package/cjs/components/overlays/NewNotifications/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/types.js +1 -1
- package/cjs/components/overlays/Notification/Notification.js +1 -1
- package/cjs/components/overlays/OverlayWrapper.js +1 -1
- package/cjs/components/overlays/Toasts/Toast.js +1 -1
- package/cjs/components/overlays/Toasts/index.js +1 -1
- package/cjs/components/overlays/Toasts/types.js +1 -1
- package/cjs/components/overlays/Toasts/use-toasts-api.js +1 -1
- package/cjs/components/overlays/Tooltip/Tooltip.js +1 -1
- package/cjs/components/overlays/Tooltip/TooltipProvider.js +1 -1
- package/cjs/components/overlays/Tooltip/TooltipTrigger.js +1 -1
- package/cjs/components/overlays/Tooltip/context.js +1 -1
- package/cjs/components/pickers/ComboBox/ComboBox.js +9 -12
- package/cjs/components/pickers/Menu/Menu.js +1 -1
- package/cjs/components/pickers/Menu/MenuButton.js +1 -1
- package/cjs/components/pickers/Menu/MenuItem.js +1 -1
- package/cjs/components/pickers/Menu/MenuSection.js +1 -1
- package/cjs/components/pickers/Menu/MenuTrigger.js +1 -1
- package/cjs/components/pickers/Menu/context.js +1 -1
- package/cjs/components/pickers/Menu/styled.js +1 -1
- package/cjs/components/pickers/Select/Select.js +1 -1
- package/cjs/components/portal/Portal.js +1 -1
- package/cjs/components/portal/PortalProvider.js +1 -1
- package/cjs/components/portal/index.js +1 -1
- package/cjs/components/portal/storybook/templates/CustomRoot.js +1 -1
- package/cjs/components/portal/storybook/templates/PortalOrder.js +1 -1
- package/cjs/components/portal/storybook/templates/basic.js +1 -1
- package/cjs/components/portal/storybook/templates/index.js +1 -1
- package/cjs/components/portal/types.js +1 -1
- package/cjs/components/portal/usePortal.js +1 -1
- package/cjs/components/status/LoadingAnimation/LoadingAnimation.js +1 -1
- package/cjs/components/status/LoadingAnimation/index.js +1 -1
- package/cjs/components/status/Spin/Cube.js +1 -1
- package/cjs/components/status/Spin/InternalSpinner.js +1 -1
- package/cjs/components/status/Spin/Spin.js +1 -1
- package/cjs/components/status/Spin/SpinsContainer.js +1 -1
- package/cjs/components/status/Spin/index.js +1 -1
- package/cjs/components/status/Spin/types.js +1 -1
- package/cjs/components/status/index.js +1 -1
- package/cjs/data/themes.js +1 -1
- package/cjs/icons/Attention.js +1 -1
- package/cjs/icons/Cross.js +1 -1
- package/cjs/icons/Danger.js +1 -1
- package/cjs/icons/Success.js +1 -1
- package/cjs/icons/index.js +1 -1
- package/cjs/index.js +1 -1
- package/cjs/provider.js +1 -1
- package/cjs/providers/StyleProvider.js +1 -1
- package/cjs/services/notification.js +1 -1
- package/cjs/shared/form.js +1 -1
- package/cjs/shared/index.js +1 -1
- package/cjs/stories/FormFieldArgs.js +1 -1
- package/cjs/stories/components/ConfirmDeletionDialogForm.js +1 -1
- package/cjs/stories/components/DialogFormApp.js +1 -1
- package/cjs/stories/components/StyledButton.js +1 -1
- package/cjs/stories/lists/baseProps.js +1 -1
- package/cjs/styled/index.js +1 -1
- package/cjs/styled/styled.js +1 -1
- package/cjs/tasty/index.js +1 -1
- package/cjs/tasty/providers/BreakpointsProvider.js +1 -1
- package/cjs/tasty/styles/align.js +1 -1
- package/cjs/tasty/styles/border.js +1 -1
- package/cjs/tasty/styles/boxShadow.combinator.js +1 -1
- package/cjs/tasty/styles/color.js +1 -1
- package/cjs/tasty/styles/createStyle.js +1 -1
- package/cjs/tasty/styles/dimension.js +1 -1
- package/cjs/tasty/styles/display.js +1 -1
- package/cjs/tasty/styles/fill.js +1 -1
- package/cjs/tasty/styles/flow.js +1 -1
- package/cjs/tasty/styles/font.js +1 -1
- package/cjs/tasty/styles/fontStyle.js +1 -1
- package/cjs/tasty/styles/gap.js +1 -1
- package/cjs/tasty/styles/groupRadius.js +1 -1
- package/cjs/tasty/styles/height.js +1 -1
- package/cjs/tasty/styles/index.js +1 -1
- package/cjs/tasty/styles/justify.js +1 -1
- package/cjs/tasty/styles/list.js +1 -1
- package/cjs/tasty/styles/margin.js +1 -1
- package/cjs/tasty/styles/marginBlock.js +1 -1
- package/cjs/tasty/styles/marginInline.js +1 -1
- package/cjs/tasty/styles/outline.js +1 -1
- package/cjs/tasty/styles/padding.js +1 -1
- package/cjs/tasty/styles/paddingBlock.js +1 -1
- package/cjs/tasty/styles/paddingInline.js +1 -1
- package/cjs/tasty/styles/predefined.js +1 -1
- package/cjs/tasty/styles/preset.js +1 -1
- package/cjs/tasty/styles/radius.js +1 -1
- package/cjs/tasty/styles/reset.js +1 -1
- package/cjs/tasty/styles/shadow.js +1 -1
- package/cjs/tasty/styles/styledScrollbar.js +1 -1
- package/cjs/tasty/styles/transition.js +1 -1
- package/cjs/tasty/styles/types.js +1 -1
- package/cjs/tasty/styles/width.js +1 -1
- package/cjs/tasty/tasty.js +1 -1
- package/cjs/tasty/types.js +1 -1
- package/cjs/tasty/utils/colors.js +1 -1
- package/cjs/tasty/utils/dotize.js +1 -1
- package/cjs/tasty/utils/filterBaseProps.js +1 -1
- package/cjs/tasty/utils/get-display-name.js +1 -1
- package/cjs/tasty/utils/index.js +1 -1
- package/cjs/tasty/utils/mergeStyles.js +1 -1
- package/cjs/tasty/utils/modAttrs.js +1 -1
- package/cjs/tasty/utils/renderStyles.js +1 -1
- package/cjs/tasty/utils/responsive.js +1 -1
- package/cjs/tasty/utils/string.js +1 -1
- package/cjs/tasty/utils/styles.js +1 -1
- package/cjs/tasty/utils/warnings.js +1 -1
- package/cjs/test/index.js +1 -9
- package/cjs/test/render.js +13 -20
- package/cjs/test/setup.js +1 -1
- package/cjs/test/utils/index.js +1 -1
- package/cjs/test/utils/wait.js +1 -1
- package/cjs/tokens.js +1 -1
- package/cjs/type-checks.js +1 -1
- package/cjs/utils/ResizeSensor.js +1 -1
- package/cjs/utils/modules.js +1 -1
- package/cjs/utils/promise.js +1 -1
- package/cjs/utils/random.js +1 -1
- package/cjs/utils/range.js +1 -1
- package/cjs/utils/react/Slots.js +1 -1
- package/cjs/utils/react/chain.js +1 -1
- package/cjs/utils/react/index.js +1 -1
- package/cjs/utils/react/interactions.js +1 -1
- package/cjs/utils/react/isTextOnly.js +1 -1
- package/cjs/utils/react/mapProps.js +1 -1
- package/cjs/utils/react/mergeProps.js +1 -1
- package/cjs/utils/react/nullableValue.js +1 -1
- package/cjs/utils/react/useCombinedRefs.js +1 -1
- package/cjs/utils/react/useId.js +1 -1
- package/cjs/utils/react/useLayoutEffect.js +1 -1
- package/cjs/utils/react/useViewportSize.js +1 -1
- package/cjs/utils/react/wrapNodeIfPlain.js +1 -1
- package/cjs/utils/transitions.js +1 -1
- package/cjs/utils/tree.js +1 -1
- package/cjs/utils/warnings.js +1 -1
- package/es/_internal/hooks/index.js +3 -7
- package/es/_internal/hooks/use-chained-callback.js +1 -1
- package/es/_internal/hooks/use-deprecation-warning.js +1 -1
- package/es/_internal/hooks/use-event.js +1 -1
- package/es/_internal/hooks/use-sync-ref.js +1 -1
- package/es/_internal/hooks/use-timer/index.js +1 -1
- package/es/_internal/hooks/use-timer/timer.js +1 -1
- package/es/_internal/hooks/use-timer/use-timer.js +1 -1
- package/es/_internal/index.js +1 -1
- package/es/components/Base.js +1 -1
- package/es/components/Block.js +1 -1
- package/es/components/GlobalStyles.js +1 -1
- package/es/components/GridProvider.js +1 -1
- package/es/components/HiddenInput.js +1 -1
- package/es/components/OpenTrasition.js +1 -1
- package/es/components/Root.js +1 -1
- package/es/components/actions/Action.js +1 -1
- package/es/components/actions/Button/Button.js +1 -1
- package/es/components/actions/Button/Submit.js +1 -1
- package/es/components/actions/Button/index.js +1 -1
- package/es/components/actions/ButtonGroup/ButtonGroup.js +1 -1
- package/es/components/actions/index.js +1 -1
- package/es/components/content/ActiveZone/ActiveZone.js +1 -1
- package/es/components/content/Alert/Alert.js +1 -1
- package/es/components/content/Alert/index.js +1 -1
- package/es/components/content/Alert/types.js +1 -1
- package/es/components/content/Alert/use-alert.js +1 -1
- package/es/components/content/Avatar/Avatar.js +1 -1
- package/es/components/content/Badge/Badge.js +1 -1
- package/es/components/content/Card/Card.js +1 -1
- package/es/components/content/Content.js +1 -1
- package/es/components/content/CopySnippet/CopySnippet.js +1 -1
- package/es/components/content/CopySnippet/index.js +1 -1
- package/es/components/content/Divider.js +1 -1
- package/es/components/content/Footer.js +1 -1
- package/es/components/content/Header.js +1 -1
- package/es/components/content/Paragraph.js +1 -1
- package/es/components/content/Placeholder/Placeholder.js +1 -1
- package/es/components/content/PrismCode/PrismCode.js +1 -1
- package/es/components/content/Result/Result.js +1 -1
- package/es/components/content/Skeleton/Skeleton.js +1 -1
- package/es/components/content/Tag/Tag.js +1 -1
- package/es/components/content/Text.js +1 -1
- package/es/components/content/Title.js +1 -1
- package/es/components/forms/Checkbox/Checkbox.js +1 -1
- package/es/components/forms/Checkbox/CheckboxGroup.js +1 -1
- package/es/components/forms/Checkbox/context.js +1 -1
- package/es/components/forms/{FieldWrapper/FieldWrapper.js → FieldWrapper.js} +17 -19
- package/es/components/forms/FileInput/FileInput.js +2 -2
- package/es/components/forms/Form/{LegacyField.js → Field.js} +1 -1
- package/es/components/forms/Form/Form.js +2 -2
- package/es/components/forms/Form/index.js +1 -2
- package/es/components/forms/Form/types.js +1 -1
- package/es/components/forms/Form/useForm.js +1 -2
- package/es/components/forms/Form/validation.js +1 -1
- package/es/components/forms/Input/Input.js +1 -1
- package/es/components/forms/Input/index.js +1 -1
- package/es/components/forms/Label.js +1 -1
- package/es/components/forms/NumberInput/NumberInput.js +2 -2
- package/es/components/forms/NumberInput/StepButton.js +14 -4
- package/es/components/forms/PasswordInput/PasswordInput.js +1 -1
- package/es/components/forms/RadioGroup/Radio.js +1 -1
- package/es/components/forms/RadioGroup/RadioGroup.js +1 -1
- package/es/components/forms/RadioGroup/context.js +1 -1
- package/es/components/forms/SearchInput/SearchInput.js +1 -1
- package/es/components/forms/Switch/Switch.js +12 -15
- package/es/components/forms/TextArea/TextArea.js +27 -30
- package/es/components/forms/TextInput/TextInput.js +9 -16
- package/es/components/forms/TextInput/TextInputBase.js +37 -9
- package/es/components/forms/index.js +1 -1
- package/es/components/layout/Flex.js +1 -1
- package/es/components/layout/Flow.js +1 -1
- package/es/components/layout/Grid.js +1 -1
- package/es/components/layout/Prefix.js +1 -1
- package/es/components/layout/Space.js +1 -1
- package/es/components/layout/Suffix.js +1 -1
- package/es/components/navigation/LegacyTabs/LegacyTabs.js +1 -1
- package/es/components/navigation/Link/Link.js +1 -1
- package/es/components/organisms/FileTabs/FileTabs.js +1 -1
- package/es/components/organisms/Modal/Modal.js +1 -1
- package/es/components/organisms/StatsCard/StatsCard.js +1 -1
- package/es/components/other/Base64Upload/Base64Upload.js +1 -1
- package/es/components/other/CloudLogo/CloudLogo.js +1 -1
- package/es/components/overlays/AlertDialog/AlertDialog.js +1 -1
- package/es/components/overlays/AlertDialog/AlertDialogApiProvider.js +1 -1
- package/es/components/overlays/AlertDialog/AlertDialogZone.js +1 -1
- package/es/components/overlays/AlertDialog/index.js +1 -1
- package/es/components/overlays/AlertDialog/types.js +1 -1
- package/es/components/overlays/Dialog/Dialog.js +1 -1
- package/es/components/overlays/Dialog/DialogContainer.js +1 -1
- package/es/components/overlays/Dialog/DialogForm.js +1 -1
- package/es/components/overlays/Dialog/DialogTrigger.js +1 -1
- package/es/components/overlays/Dialog/context.js +1 -1
- package/es/components/overlays/Dialog/index.js +1 -1
- package/es/components/overlays/Modal/Modal.js +1 -1
- package/es/components/overlays/Modal/OpenTransition.js +1 -1
- package/es/components/overlays/Modal/Overlay.js +1 -1
- package/es/components/overlays/Modal/Popover.js +1 -1
- package/es/components/overlays/Modal/Tray.js +1 -1
- package/es/components/overlays/Modal/Underlay.js +1 -1
- package/es/components/overlays/Modal/index.js +1 -1
- package/es/components/overlays/NewNotifications/Bar/FloatingNotification.js +1 -1
- package/es/components/overlays/NewNotifications/Bar/NotificationsBar.js +1 -1
- package/es/components/overlays/NewNotifications/Bar/TransitionComponent.js +1 -1
- package/es/components/overlays/NewNotifications/Bar/index.js +1 -1
- package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.js +1 -1
- package/es/components/overlays/NewNotifications/Dialog/index.js +1 -1
- package/es/components/overlays/NewNotifications/Notification.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationAction.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationView.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/index.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/types.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsContext/index.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsList/index.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsList/types.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/index.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/types.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/use-notification-list-item.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/use-notifications-api.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/use-notifications-list.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/use-notifications-observer.js +1 -1
- package/es/components/overlays/NewNotifications/index.js +1 -1
- package/es/components/overlays/NewNotifications/types.js +1 -1
- package/es/components/overlays/Notification/Notification.js +1 -1
- package/es/components/overlays/OverlayWrapper.js +1 -1
- package/es/components/overlays/Toasts/Toast.js +1 -1
- package/es/components/overlays/Toasts/index.js +1 -1
- package/es/components/overlays/Toasts/types.js +1 -1
- package/es/components/overlays/Toasts/use-toasts-api.js +1 -1
- package/es/components/overlays/Tooltip/Tooltip.js +1 -1
- package/es/components/overlays/Tooltip/TooltipProvider.js +1 -1
- package/es/components/overlays/Tooltip/TooltipTrigger.js +1 -1
- package/es/components/overlays/Tooltip/context.js +1 -1
- package/es/components/pickers/ComboBox/ComboBox.js +9 -12
- package/es/components/pickers/Menu/Menu.js +1 -1
- package/es/components/pickers/Menu/MenuButton.js +1 -1
- package/es/components/pickers/Menu/MenuItem.js +1 -1
- package/es/components/pickers/Menu/MenuSection.js +1 -1
- package/es/components/pickers/Menu/MenuTrigger.js +1 -1
- package/es/components/pickers/Menu/context.js +1 -1
- package/es/components/pickers/Menu/styled.js +1 -1
- package/es/components/pickers/Select/Select.js +1 -1
- package/es/components/portal/Portal.js +1 -1
- package/es/components/portal/PortalProvider.js +1 -1
- package/es/components/portal/index.js +1 -1
- package/es/components/portal/storybook/templates/CustomRoot.js +1 -1
- package/es/components/portal/storybook/templates/PortalOrder.js +1 -1
- package/es/components/portal/storybook/templates/basic.js +1 -1
- package/es/components/portal/storybook/templates/index.js +1 -1
- package/es/components/portal/types.js +1 -1
- package/es/components/portal/usePortal.js +1 -1
- package/es/components/status/LoadingAnimation/LoadingAnimation.js +1 -1
- package/es/components/status/LoadingAnimation/index.js +1 -1
- package/es/components/status/Spin/Cube.js +1 -1
- package/es/components/status/Spin/InternalSpinner.js +1 -1
- package/es/components/status/Spin/Spin.js +1 -1
- package/es/components/status/Spin/SpinsContainer.js +1 -1
- package/es/components/status/Spin/index.js +1 -1
- package/es/components/status/Spin/types.js +1 -1
- package/es/components/status/index.js +1 -1
- package/es/data/themes.js +1 -1
- package/es/icons/Attention.js +1 -1
- package/es/icons/Cross.js +1 -1
- package/es/icons/Danger.js +1 -1
- package/es/icons/Success.js +1 -1
- package/es/icons/index.js +1 -1
- package/es/index.js +1 -1
- package/es/provider.js +1 -1
- package/es/providers/StyleProvider.js +1 -1
- package/es/services/notification.js +1 -1
- package/es/shared/form.js +1 -1
- package/es/shared/index.js +1 -1
- package/es/stories/FormFieldArgs.js +1 -1
- package/es/stories/components/ConfirmDeletionDialogForm.js +1 -1
- package/es/stories/components/DialogFormApp.js +1 -1
- package/es/stories/components/StyledButton.js +1 -1
- package/es/stories/lists/baseProps.js +1 -1
- package/es/styled/index.js +1 -1
- package/es/styled/styled.js +1 -1
- package/es/tasty/index.js +1 -1
- package/es/tasty/providers/BreakpointsProvider.js +1 -1
- package/es/tasty/styles/align.js +1 -1
- package/es/tasty/styles/border.js +1 -1
- package/es/tasty/styles/boxShadow.combinator.js +1 -1
- package/es/tasty/styles/color.js +1 -1
- package/es/tasty/styles/createStyle.js +1 -1
- package/es/tasty/styles/dimension.js +1 -1
- package/es/tasty/styles/display.js +1 -1
- package/es/tasty/styles/fill.js +1 -1
- package/es/tasty/styles/flow.js +1 -1
- package/es/tasty/styles/font.js +1 -1
- package/es/tasty/styles/fontStyle.js +1 -1
- package/es/tasty/styles/gap.js +1 -1
- package/es/tasty/styles/groupRadius.js +1 -1
- package/es/tasty/styles/height.js +1 -1
- package/es/tasty/styles/index.js +1 -1
- package/es/tasty/styles/justify.js +1 -1
- package/es/tasty/styles/list.js +1 -1
- package/es/tasty/styles/margin.js +1 -1
- package/es/tasty/styles/marginBlock.js +1 -1
- package/es/tasty/styles/marginInline.js +1 -1
- package/es/tasty/styles/outline.js +1 -1
- package/es/tasty/styles/padding.js +1 -1
- package/es/tasty/styles/paddingBlock.js +1 -1
- package/es/tasty/styles/paddingInline.js +1 -1
- package/es/tasty/styles/predefined.js +1 -1
- package/es/tasty/styles/preset.js +1 -1
- package/es/tasty/styles/radius.js +1 -1
- package/es/tasty/styles/reset.js +1 -1
- package/es/tasty/styles/shadow.js +1 -1
- package/es/tasty/styles/styledScrollbar.js +1 -1
- package/es/tasty/styles/transition.js +1 -1
- package/es/tasty/styles/types.js +1 -1
- package/es/tasty/styles/width.js +1 -1
- package/es/tasty/tasty.js +1 -1
- package/es/tasty/types.js +1 -1
- package/es/tasty/utils/colors.js +1 -1
- package/es/tasty/utils/dotize.js +1 -1
- package/es/tasty/utils/filterBaseProps.js +1 -1
- package/es/tasty/utils/get-display-name.js +1 -1
- package/es/tasty/utils/index.js +1 -1
- package/es/tasty/utils/mergeStyles.js +1 -1
- package/es/tasty/utils/modAttrs.js +1 -1
- package/es/tasty/utils/renderStyles.js +1 -1
- package/es/tasty/utils/responsive.js +1 -1
- package/es/tasty/utils/string.js +1 -1
- package/es/tasty/utils/styles.js +1 -1
- package/es/tasty/utils/warnings.js +1 -1
- package/es/test/index.js +1 -5
- package/es/test/render.js +2 -18
- package/es/test/setup.js +1 -1
- package/es/test/utils/index.js +1 -1
- package/es/test/utils/wait.js +1 -1
- package/es/tokens.js +1 -1
- package/es/type-checks.js +1 -1
- package/es/utils/ResizeSensor.js +1 -1
- package/es/utils/modules.js +1 -1
- package/es/utils/promise.js +1 -1
- package/es/utils/random.js +1 -1
- package/es/utils/range.js +1 -1
- package/es/utils/react/Slots.js +1 -1
- package/es/utils/react/chain.js +1 -1
- package/es/utils/react/index.js +1 -1
- package/es/utils/react/interactions.js +1 -1
- package/es/utils/react/isTextOnly.js +1 -1
- package/es/utils/react/mapProps.js +1 -1
- package/es/utils/react/mergeProps.js +1 -1
- package/es/utils/react/nullableValue.js +1 -1
- package/es/utils/react/useCombinedRefs.js +1 -1
- package/es/utils/react/useId.js +1 -1
- package/es/utils/react/useLayoutEffect.js +1 -1
- package/es/utils/react/useViewportSize.js +1 -1
- package/es/utils/react/wrapNodeIfPlain.js +1 -1
- package/es/utils/transitions.js +1 -1
- package/es/utils/tree.js +1 -1
- package/es/utils/warnings.js +1 -1
- package/package.json +1 -1
- package/types/_internal/hooks/index.d.ts +2 -6
- package/types/components/forms/{FieldWrapper/types.d.ts → FieldWrapper.d.ts} +20 -15
- package/types/components/forms/Form/{LegacyField.d.ts → Field.d.ts} +1 -1
- package/types/components/forms/Form/index.d.ts +0 -1
- package/types/components/forms/Form/useForm.d.ts +1 -1
- package/types/components/forms/Switch/Switch.d.ts +3 -2
- package/types/components/forms/TextArea/TextArea.d.ts +4 -3
- package/types/components/forms/TextInput/TextInput.d.ts +0 -5
- package/types/components/forms/TextInput/TextInputBase.d.ts +2 -1
- package/types/components/pickers/ComboBox/ComboBox.d.ts +5 -5
- package/types/test/index.d.ts +0 -4
- package/types/test/render.d.ts +1 -58
- package/cjs/_internal/hooks/use-effect-once.js +0 -18
- package/cjs/_internal/hooks/use-is-first-render.js +0 -22
- package/cjs/_internal/hooks/use-update-effect.js +0 -24
- package/cjs/_internal/hooks/use-warn.js +0 -46
- package/cjs/components/forms/FieldWrapper/extract-field-wrapper-props.js +0 -50
- package/cjs/components/forms/FieldWrapper/index.js +0 -24
- package/cjs/components/forms/FieldWrapper/types.js +0 -11
- package/cjs/components/forms/Form/Field/Field.js +0 -137
- package/cjs/components/forms/Form/Field/FieldContext.js +0 -68
- package/cjs/components/forms/Form/Field/index.js +0 -24
- package/cjs/components/forms/Form/Field/types.js +0 -11
- package/cjs/components/forms/TextInput/index.js +0 -23
- package/es/_internal/hooks/use-effect-once.js +0 -14
- package/es/_internal/hooks/use-is-first-render.js +0 -18
- package/es/_internal/hooks/use-update-effect.js +0 -20
- package/es/_internal/hooks/use-warn.js +0 -23
- package/es/components/forms/FieldWrapper/extract-field-wrapper-props.js +0 -46
- package/es/components/forms/FieldWrapper/index.js +0 -12
- package/es/components/forms/FieldWrapper/types.js +0 -10
- package/es/components/forms/Form/Field/Field.js +0 -133
- package/es/components/forms/Form/Field/FieldContext.js +0 -44
- package/es/components/forms/Form/Field/index.js +0 -12
- package/es/components/forms/Form/Field/types.js +0 -10
- package/es/components/forms/TextInput/index.js +0 -11
- package/types/_internal/hooks/use-effect-once.d.ts +0 -2
- package/types/_internal/hooks/use-is-first-render.d.ts +0 -1
- package/types/_internal/hooks/use-update-effect.d.ts +0 -2
- package/types/_internal/hooks/use-warn.d.ts +0 -2
- package/types/components/forms/FieldWrapper/FieldWrapper.d.ts +0 -7
- package/types/components/forms/FieldWrapper/extract-field-wrapper-props.d.ts +0 -9
- package/types/components/forms/FieldWrapper/index.d.ts +0 -3
- package/types/components/forms/Form/Field/Field.d.ts +0 -4
- package/types/components/forms/Form/Field/FieldContext.d.ts +0 -29
- package/types/components/forms/Form/Field/index.d.ts +0 -3
- package/types/components/forms/Form/Field/types.d.ts +0 -25
- package/types/components/forms/TextInput/index.d.ts +0 -2
|
@@ -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-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-36bc79d
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -215,7 +215,6 @@ class CubeFormInstance {
|
|
|
215
215
|
if (!skipRender) {
|
|
216
216
|
this.forceReRender();
|
|
217
217
|
}
|
|
218
|
-
return this.fields[name];
|
|
219
218
|
}
|
|
220
219
|
removeField(name, skipRender) {
|
|
221
220
|
if (this.fields[name]) {
|
|
@@ -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-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-36bc79d
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -38,7 +38,7 @@ function NumberInput(props, ref) {
|
|
|
38
38
|
let state = (0, numberfield_1.useNumberFieldState)({ ...props, locale });
|
|
39
39
|
let inputRef = (0, react_1.useRef)(null);
|
|
40
40
|
let { groupProps, labelProps, inputProps, incrementButtonProps, decrementButtonProps, } = (0, numberfield_2.useNumberField)(props, state, inputRef);
|
|
41
|
-
return ((0, jsx_runtime_1.jsx)(TextInputBase_1.TextInputBase, { ...otherProps, ref: ref, labelProps: labelProps, inputProps: inputProps, inputRef: inputRef, wrapperProps: groupProps, suffixPosition: "after", suffix: showStepper ? ((0, jsx_runtime_1.jsxs)(StepperContainer, { children: [(0, jsx_runtime_1.jsx)(StepButton_1.StepButton, { direction: "up", ...incrementButtonProps }, void 0), (0, jsx_runtime_1.jsx)(StepButton_1.StepButton, { direction: "down", ...decrementButtonProps }, void 0)] }, void 0)) : null }, void 0));
|
|
41
|
+
return ((0, jsx_runtime_1.jsx)(TextInputBase_1.TextInputBase, { ...otherProps, ref: ref, labelProps: labelProps, inputProps: inputProps, inputRef: inputRef, wrapperProps: groupProps, suffixPosition: "after", suffix: showStepper ? ((0, jsx_runtime_1.jsxs)(StepperContainer, { children: [(0, jsx_runtime_1.jsx)(StepButton_1.StepButton, { isDisabled: props.isDisabled, direction: "up", ...incrementButtonProps, size: otherProps.size }, void 0), (0, jsx_runtime_1.jsx)(StepButton_1.StepButton, { isDisabled: props.isDisabled, direction: "down", ...decrementButtonProps, size: otherProps.size }, void 0)] }, void 0)) : null }, void 0));
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* NumberFields allow users to enter a number, and increment or decrement the value using stepper buttons.
|
|
@@ -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-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-36bc79d
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -17,15 +17,25 @@ const STEP_BUTTON_STYLES = {
|
|
|
17
17
|
'': '0 (1r - 1bw) 0 0',
|
|
18
18
|
down: '0 0 (1r - 1bw) 0',
|
|
19
19
|
},
|
|
20
|
-
|
|
21
|
-
lineHeight: '
|
|
20
|
+
fontSize: '12px',
|
|
21
|
+
lineHeight: '12px',
|
|
22
22
|
height: 'auto',
|
|
23
|
+
fill: {
|
|
24
|
+
'': '#dark.0',
|
|
25
|
+
hovered: '#dark.04',
|
|
26
|
+
pressed: '#purple.10',
|
|
27
|
+
'[disabled]': '#dark.0',
|
|
28
|
+
},
|
|
29
|
+
'@icon-size': {
|
|
30
|
+
'': '14px',
|
|
31
|
+
'[data-size="small"]': '13px',
|
|
32
|
+
},
|
|
23
33
|
};
|
|
24
34
|
/**
|
|
25
35
|
* Buttons for NumberField.
|
|
26
36
|
*/
|
|
27
37
|
function StepButton(props) {
|
|
28
|
-
return ((0, jsx_runtime_1.jsx)(actions_1.Button, { preventDefault: true, type: "neutral", styles: STEP_BUTTON_STYLES, icon: props.direction === 'up' ? (0, jsx_runtime_1.jsx)(icons_1.CaretUpOutlined, {}, void 0) : (0, jsx_runtime_1.jsx)(icons_1.CaretDownOutlined, {}, void 0), mods: {
|
|
38
|
+
return ((0, jsx_runtime_1.jsx)(actions_1.Button, { preventDefault: true, type: "neutral", styles: STEP_BUTTON_STYLES, icon: props.direction === 'up' ? ((0, jsx_runtime_1.jsx)(icons_1.CaretUpOutlined, { style: { fontSize: 'var(--icon-size)' } }, void 0)) : ((0, jsx_runtime_1.jsx)(icons_1.CaretDownOutlined, { style: { fontSize: 'var(--icon-size)' } }, void 0)), mods: {
|
|
29
39
|
up: props.direction === 'up',
|
|
30
40
|
down: props.direction === 'down',
|
|
31
41
|
}, label: `Step ${props.direction}`, ...props }, 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-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-36bc79d
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -21,9 +21,9 @@ const interactions_2 = require("../../../utils/react/interactions");
|
|
|
21
21
|
const react_2 = require("../../../utils/react");
|
|
22
22
|
const HiddenInput_1 = require("../../HiddenInput");
|
|
23
23
|
const Label_1 = require("../Label");
|
|
24
|
+
const Form_1 = require("../Form/Form");
|
|
24
25
|
const FieldWrapper_1 = require("../FieldWrapper");
|
|
25
26
|
const nullableValue_1 = require("../../../utils/react/nullableValue");
|
|
26
|
-
const Form_1 = require("../Form");
|
|
27
27
|
const SwitchWrapperElement = (0, tasty_1.tasty)({
|
|
28
28
|
qa: 'SwitchWrapper',
|
|
29
29
|
styles: {
|
|
@@ -93,20 +93,10 @@ const SwitchElement = (0, tasty_1.tasty)({
|
|
|
93
93
|
},
|
|
94
94
|
},
|
|
95
95
|
});
|
|
96
|
-
|
|
97
|
-
* Switches allow users to turn an individual option on or off.
|
|
98
|
-
* They are usually used to activate or deactivate a specific setting.
|
|
99
|
-
*/
|
|
100
|
-
exports.Switch = (0, react_1.forwardRef)(function Switch(props, ref) {
|
|
96
|
+
function Switch(props, ref) {
|
|
101
97
|
props = (0, nullableValue_1.castNullableIsSelected)(props);
|
|
102
98
|
props = (0, provider_1.useProviderProps)(props);
|
|
103
|
-
props = (0, Form_1.
|
|
104
|
-
valuePropsMapper: ({ value, onChange }) => ({
|
|
105
|
-
isSelected: value != null ? value : false,
|
|
106
|
-
isIndeterminate: false,
|
|
107
|
-
onChange: onChange,
|
|
108
|
-
}),
|
|
109
|
-
});
|
|
99
|
+
props = (0, Form_1.useFormProps)(props);
|
|
110
100
|
let { qa, isDisabled = false, autoFocus, children, label, extra, labelProps, labelStyles, isLoading, insideForm, validationState, message, description, labelPosition, inputStyles, requiredMark = true, tooltip, labelSuffix, ...otherProps } = props;
|
|
111
101
|
label = label || children;
|
|
112
102
|
let styles = (0, tasty_1.extractStyles)(props, tasty_1.OUTER_STYLES);
|
|
@@ -153,6 +143,13 @@ exports.Switch = (0, react_1.forwardRef)(function Switch(props, ref) {
|
|
|
153
143
|
return ((0, jsx_runtime_1.jsxs)(SwitchLabelElement, { styles: styles, mods: mods, ...hoverProps, ...(0, tasty_1.filterBaseProps)(otherProps), ref: domRef, children: [switchField, label && ((0, jsx_runtime_1.jsxs)(tasty_1.Element, { styles: labelStyles, mods: {
|
|
154
144
|
disabled: isDisabled,
|
|
155
145
|
}, ...(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));
|
|
156
|
-
}
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Switches allow users to turn an individual option on or off.
|
|
149
|
+
* They are usually used to activate or deactivate a specific setting.
|
|
150
|
+
*/
|
|
151
|
+
let _Switch = (0, react_1.forwardRef)(Switch);
|
|
152
|
+
exports.Switch = _Switch;
|
|
153
|
+
_Switch.cubeInputType = 'Checkbox';
|
|
157
154
|
|
|
158
155
|
|
|
@@ -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-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-36bc79d
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -12,35 +12,22 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
12
12
|
const react_1 = require("react");
|
|
13
13
|
const utils_1 = require("@react-stately/utils");
|
|
14
14
|
const textfield_1 = require("@react-aria/textfield");
|
|
15
|
-
const
|
|
15
|
+
const TextInputBase_1 = require("../TextInput/TextInputBase");
|
|
16
16
|
const provider_1 = require("../../../provider");
|
|
17
17
|
const nullableValue_1 = require("../../../utils/react/nullableValue");
|
|
18
18
|
const react_2 = require("../../../utils/react");
|
|
19
|
-
|
|
20
|
-
const _internal_1 = require("../../../_internal");
|
|
21
|
-
/**
|
|
22
|
-
* TextInputs are text inputs that allow users to input custom text entries
|
|
23
|
-
* with a keyboard. Various decorations can be displayed around the field to
|
|
24
|
-
* communicate the entry requirements.
|
|
25
|
-
*/
|
|
26
|
-
exports.TextArea = (0, react_1.forwardRef)(function TextArea(props, ref) {
|
|
19
|
+
function TextArea(props, ref) {
|
|
27
20
|
props = (0, nullableValue_1.castNullableStringValue)(props);
|
|
28
21
|
props = (0, provider_1.useProviderProps)(props);
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}),
|
|
35
|
-
});
|
|
36
|
-
const { autoSize = false, isDisabled = false, isReadOnly = false, isRequired = false, onChange, rows = 3, ...otherProps } = props;
|
|
37
|
-
const [inputValue, setInputValue] = (0, utils_1.useControlledState)(props.value, props.defaultValue, () => { });
|
|
38
|
-
const inputRef = (0, react_1.useRef)(null);
|
|
39
|
-
const onHeightChange = (0, _internal_1.useEvent)(() => {
|
|
22
|
+
let { autoSize = false, isDisabled = false, isReadOnly = false, isRequired = false, onChange, rows, ...otherProps } = props;
|
|
23
|
+
rows = rows || 3;
|
|
24
|
+
let [inputValue, setInputValue] = (0, utils_1.useControlledState)(props.value, props.defaultValue, () => { });
|
|
25
|
+
let inputRef = (0, react_1.useRef)(null);
|
|
26
|
+
let onHeightChange = (0, react_1.useCallback)(() => {
|
|
40
27
|
if (autoSize && inputRef.current) {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
28
|
+
let input = inputRef.current;
|
|
29
|
+
let prevAlignment = input.style.alignSelf;
|
|
30
|
+
let computedStyle = getComputedStyle(input);
|
|
44
31
|
input.style.alignSelf = 'start';
|
|
45
32
|
input.style.height = 'auto';
|
|
46
33
|
input.style.height = input.scrollHeight
|
|
@@ -51,16 +38,26 @@ exports.TextArea = (0, react_1.forwardRef)(function TextArea(props, ref) {
|
|
|
51
38
|
2}px`;
|
|
52
39
|
input.style.alignSelf = prevAlignment;
|
|
53
40
|
}
|
|
54
|
-
});
|
|
41
|
+
}, [inputRef]);
|
|
55
42
|
(0, react_2.useLayoutEffect)(() => {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
43
|
+
if (inputRef.current) {
|
|
44
|
+
onHeightChange();
|
|
45
|
+
}
|
|
46
|
+
}, [onHeightChange, inputValue, inputRef]);
|
|
47
|
+
let { labelProps, inputProps } = (0, textfield_1.useTextField)({
|
|
59
48
|
...props,
|
|
60
49
|
onChange: (0, react_2.chain)(onChange, setInputValue),
|
|
61
50
|
inputElementType: 'textarea',
|
|
62
51
|
}, inputRef);
|
|
63
|
-
return ((0, jsx_runtime_1.jsx)(
|
|
64
|
-
}
|
|
52
|
+
return ((0, jsx_runtime_1.jsx)(TextInputBase_1.TextInputBase, { ...otherProps, ref: ref, multiLine: true, inputRef: inputRef, labelProps: labelProps, inputProps: inputProps, isDisabled: isDisabled, isReadOnly: isReadOnly, isRequired: isRequired, rows: rows }, void 0));
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* TextInputs are text inputs that allow users to input custom text entries
|
|
56
|
+
* with a keyboard. Various decorations can be displayed around the field to
|
|
57
|
+
* communicate the entry requirements.
|
|
58
|
+
*/
|
|
59
|
+
const _TextArea = (0, react_1.forwardRef)(TextArea);
|
|
60
|
+
exports.TextArea = _TextArea;
|
|
61
|
+
_TextArea.cubeInputType = 'Text';
|
|
65
62
|
|
|
66
63
|
|
|
@@ -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-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-36bc79d
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -13,26 +13,19 @@ const react_1 = require("react");
|
|
|
13
13
|
const textfield_1 = require("@react-aria/textfield");
|
|
14
14
|
const provider_1 = require("../../../provider");
|
|
15
15
|
const nullableValue_1 = require("../../../utils/react/nullableValue");
|
|
16
|
-
const Form_1 = require("../Form");
|
|
17
16
|
const TextInputBase_1 = require("./TextInputBase");
|
|
17
|
+
exports.TextInput = (0, react_1.forwardRef)(function TextInput(props, ref) {
|
|
18
|
+
(0, nullableValue_1.castNullableStringValue)(props);
|
|
19
|
+
props = (0, provider_1.useProviderProps)(props);
|
|
20
|
+
let inputRef = (0, react_1.useRef)(null);
|
|
21
|
+
let { labelProps, inputProps } = (0, textfield_1.useTextField)(props, inputRef);
|
|
22
|
+
return ((0, jsx_runtime_1.jsx)(TextInputBase_1.TextInputBase, { ...props, ref: ref, labelProps: labelProps, inputProps: inputProps, inputRef: inputRef }, void 0));
|
|
23
|
+
});
|
|
18
24
|
/**
|
|
19
25
|
* TextInputs are text inputs that allow users to input custom text entries
|
|
20
26
|
* with a keyboard. Various decorations can be displayed around the field to
|
|
21
27
|
* communicate the entry requirements.
|
|
22
28
|
*/
|
|
23
|
-
exports.TextInput =
|
|
24
|
-
props = (0, nullableValue_1.castNullableStringValue)(props);
|
|
25
|
-
props = (0, provider_1.useProviderProps)(props);
|
|
26
|
-
props = (0, Form_1.useFieldProps)(props, {
|
|
27
|
-
defaultValidationTrigger: 'onBlur',
|
|
28
|
-
valuePropsMapper: ({ value, onChange }) => ({
|
|
29
|
-
onChange,
|
|
30
|
-
value: value?.toString() ?? '',
|
|
31
|
-
}),
|
|
32
|
-
});
|
|
33
|
-
const inputRef = (0, react_1.useRef)(null);
|
|
34
|
-
const { labelProps, inputProps } = (0, textfield_1.useTextField)(props, inputRef);
|
|
35
|
-
return ((0, jsx_runtime_1.jsx)(TextInputBase_1.TextInputBase, { ...props, ref: ref, labelProps: labelProps, inputProps: inputProps, inputRef: inputRef }, void 0));
|
|
36
|
-
});
|
|
29
|
+
exports.TextInput.cubeInputType = 'Text';
|
|
37
30
|
|
|
38
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-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-36bc79d
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -13,6 +13,8 @@ const icons_1 = require("@ant-design/icons");
|
|
|
13
13
|
const utils_1 = require("@react-spectrum/utils");
|
|
14
14
|
const react_1 = require("react");
|
|
15
15
|
const interactions_1 = require("@react-aria/interactions");
|
|
16
|
+
const Form_1 = require("../Form");
|
|
17
|
+
const provider_1 = require("../../../provider");
|
|
16
18
|
const tasty_1 = require("../../../tasty");
|
|
17
19
|
const interactions_2 = require("../../../utils/react/interactions");
|
|
18
20
|
const FieldWrapper_1 = require("../FieldWrapper");
|
|
@@ -136,10 +138,12 @@ exports.DEFAULT_INPUT_STYLES = {
|
|
|
136
138
|
},
|
|
137
139
|
};
|
|
138
140
|
const InputElement = (0, tasty_1.tasty)({ qa: 'Input', styles: exports.DEFAULT_INPUT_STYLES });
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
141
|
+
function TextInputBase(props, ref) {
|
|
142
|
+
props = (0, provider_1.useProviderProps)(props);
|
|
143
|
+
props = (0, Form_1.useFormProps)(props);
|
|
144
|
+
let { qa, label, extra, mods, labelPosition = 'top', labelStyles, isRequired, necessityIndicator, necessityLabel, validationState, message, description, prefix, isDisabled, multiLine, autoFocus, labelProps, inputProps, wrapperProps, inputRef, isLoading, loadingIndicator, value, inputStyles = {}, wrapperStyles = {}, suffix, suffixPosition = 'before', wrapperRef, requiredMark = true, tooltip, isHidden, rows = 1, size, icon, labelSuffix, ...otherProps } = props;
|
|
145
|
+
let styles = (0, tasty_1.extractStyles)(otherProps, STYLE_LIST);
|
|
146
|
+
let type = otherProps.type;
|
|
143
147
|
inputStyles = (0, tasty_1.extractStyles)(otherProps, INPUT_STYLE_PROPS_LIST, inputStyles);
|
|
144
148
|
let ElementType = multiLine ? 'textarea' : 'input';
|
|
145
149
|
let { isFocused, focusProps } = (0, interactions_2.useFocus)({ isDisabled });
|
|
@@ -151,7 +155,9 @@ exports.TextInputBase = (0, react_1.forwardRef)(function TextInputBase(props, re
|
|
|
151
155
|
(0, react_1.useImperativeHandle)(ref, () => ({
|
|
152
156
|
...(0, utils_1.createFocusableRef)(domRef, inputRef),
|
|
153
157
|
select() {
|
|
154
|
-
inputRef?.current
|
|
158
|
+
if (inputRef?.current) {
|
|
159
|
+
inputRef.current.select();
|
|
160
|
+
}
|
|
155
161
|
},
|
|
156
162
|
getInputElement() {
|
|
157
163
|
return inputRef?.current;
|
|
@@ -202,7 +208,29 @@ exports.TextInputBase = (0, react_1.forwardRef)(function TextInputBase(props, re
|
|
|
202
208
|
let textField = ((0, jsx_runtime_1.jsxs)(InputWrapperElement, { ref: wrapperRef, qa: qa || 'TextInput', mods: modifiers, "data-size": size, styles: wrapperStyles, ...wrapperProps, children: [(0, jsx_runtime_1.jsx)(InputElement, { as: ElementType, ...(0, react_2.mergeProps)(inputProps, focusProps, hoverProps), ref: inputRef, rows: multiLine ? rows : undefined, mods: modifiers, style: {
|
|
203
209
|
WebkitTextSecurity: multiLine && type === 'password' ? 'disc' : 'initial',
|
|
204
210
|
}, autoFocus: autoFocus, "data-size": size, styles: inputStyles, isDisabled: isDisabled }, void 0), prefix ? (0, jsx_runtime_1.jsx)("div", { "data-element": "Prefix", children: prefix }, void 0) : null, (0, jsx_runtime_1.jsxs)("div", { "data-element": "Suffix", children: [suffixPosition === 'before' ? suffix : null, (validationState && !isLoading) || isLoading ? ((0, jsx_runtime_1.jsxs)("div", { "data-element": "State", children: [validationState && !isLoading ? validation : null, isLoading && (0, jsx_runtime_1.jsx)(icons_1.LoadingOutlined, { "data-element": "InputIcon" }, void 0)] }, void 0)) : null, suffixPosition === 'after' ? suffix : null] }, void 0)] }, void 0));
|
|
205
|
-
return ((0, jsx_runtime_1.jsx)(FieldWrapper_1.FieldWrapper, { ...
|
|
206
|
-
|
|
211
|
+
return ((0, jsx_runtime_1.jsx)(FieldWrapper_1.FieldWrapper, { ...{
|
|
212
|
+
labelPosition,
|
|
213
|
+
label,
|
|
214
|
+
extra,
|
|
215
|
+
styles,
|
|
216
|
+
isRequired,
|
|
217
|
+
labelStyles,
|
|
218
|
+
necessityIndicator,
|
|
219
|
+
necessityLabel,
|
|
220
|
+
labelProps,
|
|
221
|
+
isDisabled,
|
|
222
|
+
validationState,
|
|
223
|
+
message,
|
|
224
|
+
description,
|
|
225
|
+
requiredMark,
|
|
226
|
+
tooltip,
|
|
227
|
+
isHidden,
|
|
228
|
+
labelSuffix,
|
|
229
|
+
Component: textField,
|
|
230
|
+
ref: domRef,
|
|
231
|
+
} }, void 0));
|
|
232
|
+
}
|
|
233
|
+
const _TextInputBase = (0, react_1.forwardRef)(TextInputBase);
|
|
234
|
+
exports.TextInputBase = _TextInputBase;
|
|
207
235
|
|
|
208
236
|
|