@cube-dev/ui-kit 0.0.0-canary-b916e8d → 0.0.0-canary-5cc6499
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 +1 -1
- package/cjs/_internal/hooks/use-deprecation-warning.js +1 -1
- package/cjs/_internal/index.js +1 -1
- package/cjs/components/Base.js +1 -1
- package/cjs/components/Block.js +3 -3
- package/cjs/components/GlobalStyles.js +1 -1
- package/cjs/components/GridProvider.js +7 -8
- package/cjs/components/HiddenInput.js +1 -1
- package/cjs/components/OpenTrasition.js +1 -1
- package/cjs/components/Root.js +3 -6
- package/cjs/components/actions/Action.js +3 -2
- package/cjs/components/actions/Button/Button.js +5 -2
- 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 +11 -9
- package/cjs/components/actions/index.js +1 -1
- package/cjs/components/content/ActiveZone/ActiveZone.js +3 -2
- package/cjs/components/content/Alert/Alert.js +8 -6
- 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 +3 -2
- package/cjs/components/content/Badge/Badge.js +3 -3
- package/cjs/components/content/Card/Card.js +13 -15
- package/cjs/components/content/Content.js +3 -3
- package/cjs/components/content/CopySnippet/CopySnippet.js +21 -57
- package/cjs/components/content/CopySnippet/index.js +1 -1
- package/cjs/components/content/Divider.js +31 -31
- package/cjs/components/content/Footer.js +3 -3
- package/cjs/components/content/Header.js +3 -3
- package/cjs/components/content/Paragraph.js +1 -1
- package/cjs/components/content/Placeholder/Placeholder.js +18 -36
- package/cjs/components/content/PrismCode/PrismCode.js +3 -3
- 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 +13 -11
- package/cjs/components/content/Text.js +3 -3
- package/cjs/components/content/Title.js +3 -3
- package/cjs/components/forms/Checkbox/Checkbox.js +61 -57
- package/cjs/components/forms/Checkbox/CheckboxGroup.js +35 -21
- package/cjs/components/forms/Checkbox/context.js +1 -1
- package/cjs/components/forms/FieldWrapper.js +4 -4
- package/cjs/components/forms/FileInput/FileInput.js +49 -45
- package/cjs/components/forms/Form/Field.js +1 -1
- package/cjs/components/forms/Form/Form.js +11 -13
- package/cjs/components/forms/Form/index.js +1 -1
- package/cjs/components/forms/Form/useForm.js +1 -1
- 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 +6 -4
- package/cjs/components/forms/NumberInput/NumberInput.js +1 -1
- package/cjs/components/forms/NumberInput/StepButton.js +1 -1
- package/cjs/components/forms/PasswordInput/PasswordInput.js +1 -1
- package/cjs/components/forms/RadioGroup/Radio.js +92 -95
- package/cjs/components/forms/RadioGroup/RadioGroup.js +35 -20
- 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 +76 -72
- package/cjs/components/forms/TextArea/TextArea.js +1 -1
- package/cjs/components/forms/TextInput/TextInput.js +1 -1
- package/cjs/components/forms/TextInput/TextInputBase.js +20 -24
- package/cjs/components/forms/index.js +1 -1
- package/cjs/components/layout/Flex.js +8 -9
- package/cjs/components/layout/Flow.js +8 -9
- package/cjs/components/layout/Grid.js +9 -9
- package/cjs/components/layout/Prefix.js +17 -19
- package/cjs/components/layout/Space.js +17 -21
- package/cjs/components/layout/Suffix.js +17 -19
- package/cjs/components/navigation/LegacyTabs/LegacyTabs.js +41 -64
- package/cjs/components/navigation/Link/Link.js +1 -1
- package/cjs/components/organisms/FileTabs/FileTabs.js +50 -73
- 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 +62 -60
- 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 +32 -32
- 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 +26 -23
- package/cjs/components/overlays/Modal/Tray.js +24 -24
- package/cjs/components/overlays/Modal/Underlay.js +31 -25
- package/cjs/components/overlays/Modal/index.js +1 -1
- package/cjs/components/overlays/Notification/Notification.js +10 -53
- package/cjs/components/overlays/OverlayWrapper.js +1 -1
- package/cjs/components/overlays/Tooltip/Tooltip.js +56 -67
- 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 +45 -44
- package/cjs/components/pickers/Menu/Menu.js +10 -4
- 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 +6 -6
- 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 +14 -13
- package/cjs/components/pickers/Select/Select.js +113 -117
- 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 +4 -4
- package/cjs/components/status/Spin/Spin.js +2 -2
- package/cjs/data/themes.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 +2 -3
- 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 +3 -8
- 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 -2
- 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 -1
- package/cjs/test/render.js +1 -1
- 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 -6
- package/cjs/utils/ResizeSensor.js +1 -1
- package/cjs/utils/modules.js +1 -1
- package/cjs/utils/promise.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 +3 -4
- 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/wrapNodeIfPlain.js +1 -1
- package/cjs/utils/transitions.js +1 -1
- package/cjs/utils/tree.js +1 -1
- package/cjs/utils/warnings.js +9 -13
- package/es/_internal/hooks/index.js +1 -1
- package/es/_internal/hooks/use-deprecation-warning.js +1 -1
- package/es/_internal/index.js +1 -1
- package/es/components/Base.js +1 -1
- package/es/components/Block.js +3 -3
- package/es/components/GlobalStyles.js +1 -1
- package/es/components/GridProvider.js +7 -8
- package/es/components/HiddenInput.js +1 -1
- package/es/components/OpenTrasition.js +1 -1
- package/es/components/Root.js +4 -7
- package/es/components/actions/Action.js +4 -3
- package/es/components/actions/Button/Button.js +5 -2
- 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 +11 -9
- package/es/components/actions/index.js +1 -1
- package/es/components/content/ActiveZone/ActiveZone.js +4 -3
- package/es/components/content/Alert/Alert.js +8 -6
- 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 +4 -3
- package/es/components/content/Badge/Badge.js +3 -3
- package/es/components/content/Card/Card.js +14 -16
- package/es/components/content/Content.js +3 -3
- package/es/components/content/CopySnippet/CopySnippet.js +21 -57
- package/es/components/content/CopySnippet/index.js +1 -1
- package/es/components/content/Divider.js +32 -32
- package/es/components/content/Footer.js +3 -3
- package/es/components/content/Header.js +3 -3
- package/es/components/content/Paragraph.js +1 -1
- package/es/components/content/Placeholder/Placeholder.js +19 -34
- package/es/components/content/PrismCode/PrismCode.js +3 -3
- 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 +13 -11
- package/es/components/content/Text.js +3 -3
- package/es/components/content/Title.js +3 -3
- package/es/components/forms/Checkbox/Checkbox.js +62 -58
- package/es/components/forms/Checkbox/CheckboxGroup.js +36 -22
- package/es/components/forms/Checkbox/context.js +1 -1
- package/es/components/forms/FieldWrapper.js +4 -4
- package/es/components/forms/FileInput/FileInput.js +50 -46
- package/es/components/forms/Form/Field.js +1 -1
- package/es/components/forms/Form/Form.js +12 -14
- package/es/components/forms/Form/index.js +1 -1
- package/es/components/forms/Form/useForm.js +1 -1
- 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 +6 -4
- package/es/components/forms/NumberInput/NumberInput.js +1 -1
- package/es/components/forms/NumberInput/StepButton.js +1 -1
- package/es/components/forms/PasswordInput/PasswordInput.js +1 -1
- package/es/components/forms/RadioGroup/Radio.js +93 -96
- package/es/components/forms/RadioGroup/RadioGroup.js +36 -21
- 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 +78 -74
- package/es/components/forms/TextArea/TextArea.js +1 -1
- package/es/components/forms/TextInput/TextInput.js +1 -1
- package/es/components/forms/TextInput/TextInputBase.js +21 -25
- package/es/components/forms/index.js +1 -1
- package/es/components/layout/Flex.js +9 -10
- package/es/components/layout/Flow.js +9 -10
- package/es/components/layout/Grid.js +10 -10
- package/es/components/layout/Prefix.js +18 -20
- package/es/components/layout/Space.js +18 -22
- package/es/components/layout/Suffix.js +18 -20
- package/es/components/navigation/LegacyTabs/LegacyTabs.js +41 -61
- package/es/components/navigation/Link/Link.js +1 -1
- package/es/components/organisms/FileTabs/FileTabs.js +50 -70
- 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 +63 -61
- 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 +32 -32
- 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 +26 -23
- package/es/components/overlays/Modal/Tray.js +24 -24
- package/es/components/overlays/Modal/Underlay.js +31 -25
- package/es/components/overlays/Modal/index.js +1 -1
- package/es/components/overlays/Notification/Notification.js +10 -53
- package/es/components/overlays/OverlayWrapper.js +1 -1
- package/es/components/overlays/Tooltip/Tooltip.js +57 -65
- 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 +46 -45
- package/es/components/pickers/Menu/Menu.js +10 -4
- 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 +7 -7
- 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 +14 -13
- package/es/components/pickers/Select/Select.js +115 -116
- 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 +4 -4
- package/es/components/status/Spin/Spin.js +2 -2
- package/es/data/themes.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 +2 -2
- 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 +3 -7
- 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 -2
- 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 -1
- package/es/test/render.js +1 -1
- 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 -6
- package/es/utils/ResizeSensor.js +1 -1
- package/es/utils/modules.js +1 -1
- package/es/utils/promise.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 +3 -4
- 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/wrapNodeIfPlain.js +1 -1
- package/es/utils/transitions.js +1 -1
- package/es/utils/tree.js +1 -1
- package/es/utils/warnings.js +9 -13
- package/package.json +4 -4
- package/types/components/content/Tag/Tag.d.ts +1 -2
- package/types/components/overlays/Dialog/Dialog.d.ts +1 -2
- package/types/components/pickers/Menu/MenuItem.d.ts +1 -2
- package/types/components/pickers/Menu/MenuSection.d.ts +3 -8
- package/types/tasty/index.d.ts +1 -1
- package/types/tasty/tasty.d.ts +4 -8
- package/types/tokens.d.ts +0 -4
|
@@ -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-5cc6499
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -11,42 +11,57 @@ exports.RadioGroup = void 0;
|
|
|
11
11
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
12
12
|
const react_1 = require("react");
|
|
13
13
|
const utils_1 = require("@react-spectrum/utils");
|
|
14
|
+
const Label_1 = require("../Label");
|
|
14
15
|
const provider_1 = require("../../../provider");
|
|
15
16
|
const radio_1 = require("@react-aria/radio");
|
|
16
17
|
const radio_2 = require("@react-stately/radio");
|
|
17
18
|
const Form_1 = require("../Form/Form");
|
|
18
19
|
const context_1 = require("./context");
|
|
19
20
|
const tasty_1 = require("../../../tasty");
|
|
21
|
+
const Base_1 = require("../../Base");
|
|
20
22
|
const FieldWrapper_1 = require("../FieldWrapper");
|
|
21
23
|
const nullableValue_1 = require("../../../utils/react/nullableValue");
|
|
22
|
-
const
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
horizontal: 'row wrap',
|
|
31
|
-
},
|
|
32
|
-
gap: {
|
|
33
|
-
'': '1x',
|
|
34
|
-
horizontal: '1x 2x',
|
|
35
|
-
},
|
|
36
|
-
padding: '(1x - 1bw) 0',
|
|
24
|
+
const StyleProvider_1 = require("../../../providers/StyleProvider");
|
|
25
|
+
const GROUP_STYLES = {
|
|
26
|
+
display: 'flex',
|
|
27
|
+
placeItems: 'start',
|
|
28
|
+
placeContent: 'start',
|
|
29
|
+
flow: {
|
|
30
|
+
'': 'column',
|
|
31
|
+
horizontal: 'row wrap',
|
|
37
32
|
},
|
|
38
|
-
|
|
33
|
+
gap: {
|
|
34
|
+
'': '1x',
|
|
35
|
+
horizontal: '1x 2x',
|
|
36
|
+
},
|
|
37
|
+
padding: '(1x - 1bw) 0',
|
|
38
|
+
};
|
|
39
39
|
function RadioGroup(props, ref) {
|
|
40
40
|
props = (0, nullableValue_1.castNullableStringValue)(props);
|
|
41
41
|
props = (0, provider_1.useProviderProps)(props);
|
|
42
42
|
props = (0, Form_1.useFormProps)(props);
|
|
43
43
|
let { isDisabled, isRequired, necessityIndicator, label, extra, labelPosition = 'top', validationState, children, orientation = 'vertical', message, description, labelStyles, requiredMark = true, tooltip, isHidden, styles, groupStyles, ...otherProps } = props;
|
|
44
44
|
let domRef = (0, utils_1.useDOMRef)(ref);
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
let wrapperContextStyles = (0, StyleProvider_1.useContextStyles)('RadioGroup_Wrapper', props);
|
|
46
|
+
let groupContextStyles = (0, StyleProvider_1.useContextStyles)('RadioGroup', props);
|
|
47
|
+
let labelContextStyles = (0, StyleProvider_1.useContextStyles)('RadioGroup_Label', props);
|
|
48
|
+
styles = (0, tasty_1.extractStyles)(otherProps, tasty_1.OUTER_STYLES, {
|
|
49
|
+
...wrapperContextStyles,
|
|
50
|
+
...styles,
|
|
51
|
+
});
|
|
52
|
+
groupStyles = (0, tasty_1.extractStyles)(otherProps, tasty_1.BLOCK_STYLES, {
|
|
53
|
+
...GROUP_STYLES,
|
|
54
|
+
...groupContextStyles,
|
|
55
|
+
...groupStyles,
|
|
56
|
+
});
|
|
57
|
+
labelStyles = {
|
|
58
|
+
...Label_1.LABEL_STYLES,
|
|
59
|
+
...labelContextStyles,
|
|
60
|
+
...labelStyles,
|
|
61
|
+
};
|
|
47
62
|
let state = (0, radio_2.useRadioGroupState)(props);
|
|
48
63
|
let { radioGroupProps: fieldProps, labelProps } = (0, radio_1.useRadioGroup)(props, state);
|
|
49
|
-
let radioGroup = ((0, jsx_runtime_1.jsx)(
|
|
64
|
+
let radioGroup = ((0, jsx_runtime_1.jsx)(Base_1.Base, { qa: "RadioGroup", styles: groupStyles, mods: {
|
|
50
65
|
horizontal: orientation === 'horizontal',
|
|
51
66
|
}, children: (0, jsx_runtime_1.jsx)(Form_1.FormContext.Provider, { value: {
|
|
52
67
|
isRequired,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.0.0-canary-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-5cc6499
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -16,6 +16,7 @@ const interactions_1 = require("@react-aria/interactions");
|
|
|
16
16
|
const toggle_1 = require("@react-stately/toggle");
|
|
17
17
|
const provider_1 = require("../../../provider");
|
|
18
18
|
const tasty_1 = require("../../../tasty");
|
|
19
|
+
const Base_1 = require("../../Base");
|
|
19
20
|
const interactions_2 = require("../../../utils/react/interactions");
|
|
20
21
|
const react_2 = require("../../../utils/react");
|
|
21
22
|
const HiddenInput_1 = require("../../HiddenInput");
|
|
@@ -24,97 +25,100 @@ const icons_1 = require("@ant-design/icons");
|
|
|
24
25
|
const Form_1 = require("../Form/Form");
|
|
25
26
|
const FieldWrapper_1 = require("../FieldWrapper");
|
|
26
27
|
const nullableValue_1 = require("../../../utils/react/nullableValue");
|
|
27
|
-
const
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
28
|
+
const StyleProvider_1 = require("../../../providers/StyleProvider");
|
|
29
|
+
const STYLES = {
|
|
30
|
+
position: 'relative',
|
|
31
|
+
display: 'flex',
|
|
32
|
+
placeItems: 'center start',
|
|
33
|
+
gap: '1x',
|
|
34
|
+
flow: 'row',
|
|
35
|
+
preset: 'input',
|
|
36
|
+
width: 'min-content',
|
|
37
|
+
cursor: 'pointer',
|
|
38
|
+
};
|
|
39
|
+
const INPUT_STYLES = {
|
|
40
|
+
position: 'relative',
|
|
41
|
+
display: 'grid',
|
|
42
|
+
placeItems: 'center',
|
|
43
|
+
radius: 'round',
|
|
44
|
+
fill: {
|
|
45
|
+
'': '#dark.50',
|
|
46
|
+
checked: '#purple',
|
|
47
|
+
disabled: '#dark.12',
|
|
41
48
|
},
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
fill: {
|
|
50
|
-
'': '#dark.50',
|
|
51
|
-
checked: '#purple',
|
|
52
|
-
disabled: '#dark.12',
|
|
53
|
-
},
|
|
54
|
-
color: '#white',
|
|
55
|
-
border: false,
|
|
56
|
-
width: '5.25x 5.25x',
|
|
57
|
-
height: '3x 3x',
|
|
58
|
-
outline: {
|
|
59
|
-
'': '#purple-03.0',
|
|
60
|
-
focused: '#purple-03',
|
|
61
|
-
},
|
|
62
|
-
transition: 'theme',
|
|
63
|
-
cursor: 'pointer',
|
|
64
|
-
marginTop: {
|
|
65
|
-
'': null,
|
|
66
|
-
'inside-form & side-label': '-3px',
|
|
67
|
-
},
|
|
68
|
-
placeSelf: {
|
|
69
|
-
'': null,
|
|
70
|
-
'inside-form & side-label': 'start',
|
|
71
|
-
},
|
|
49
|
+
color: '#white',
|
|
50
|
+
border: false,
|
|
51
|
+
width: '5.25x 5.25x',
|
|
52
|
+
height: '3x 3x',
|
|
53
|
+
outline: {
|
|
54
|
+
'': '#purple-03.0',
|
|
55
|
+
focused: '#purple-03',
|
|
72
56
|
},
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
},
|
|
88
|
-
transition: 'left',
|
|
89
|
-
cursor: 'pointer',
|
|
57
|
+
transition: 'theme',
|
|
58
|
+
cursor: 'pointer',
|
|
59
|
+
};
|
|
60
|
+
const THUMB_STYLES = {
|
|
61
|
+
position: 'absolute',
|
|
62
|
+
width: '2.5x',
|
|
63
|
+
height: '2.5x',
|
|
64
|
+
radius: 'round',
|
|
65
|
+
fill: 'currentColor',
|
|
66
|
+
shadow: '0px 2px 4px #dark.20;',
|
|
67
|
+
top: '.25x',
|
|
68
|
+
left: {
|
|
69
|
+
'': '.25x',
|
|
70
|
+
checked: '2.5x',
|
|
90
71
|
},
|
|
91
|
-
|
|
72
|
+
transition: 'left',
|
|
73
|
+
cursor: 'pointer',
|
|
74
|
+
};
|
|
92
75
|
function Switch(props, ref) {
|
|
93
76
|
props = (0, nullableValue_1.castNullableIsSelected)(props);
|
|
94
77
|
props = (0, provider_1.useProviderProps)(props);
|
|
95
78
|
props = (0, Form_1.useFormProps)(props);
|
|
96
79
|
let { qa, isDisabled = false, autoFocus, children, label, extra, labelProps, labelStyles, thumbStyles, isLoading, insideForm, validationState, message, description, labelPosition, inputStyles, requiredMark = true, tooltip, ...otherProps } = props;
|
|
97
80
|
label = label || children;
|
|
98
|
-
let
|
|
99
|
-
|
|
100
|
-
|
|
81
|
+
let wrapperContextStyles = (0, StyleProvider_1.useContextStyles)('Switch_Wrapper', props);
|
|
82
|
+
let inputContextStyles = (0, StyleProvider_1.useContextStyles)('Switch', props);
|
|
83
|
+
let labelContextStyles = (0, StyleProvider_1.useContextStyles)('Switch_Label', props);
|
|
84
|
+
let thumbContextStyles = (0, StyleProvider_1.useContextStyles)('Switch_Thumb', props);
|
|
85
|
+
let styles = (0, tasty_1.extractStyles)(props, tasty_1.OUTER_STYLES, {
|
|
86
|
+
...(insideForm ? {} : STYLES),
|
|
87
|
+
...wrapperContextStyles,
|
|
88
|
+
});
|
|
89
|
+
inputStyles = (0, tasty_1.extractStyles)(props, tasty_1.BLOCK_STYLES, {
|
|
90
|
+
...INPUT_STYLES,
|
|
91
|
+
...inputContextStyles,
|
|
92
|
+
...(insideForm && labelPosition === 'side'
|
|
93
|
+
? {
|
|
94
|
+
marginTop: '-3px',
|
|
95
|
+
placeSelf: 'start',
|
|
96
|
+
}
|
|
97
|
+
: null),
|
|
98
|
+
...inputStyles,
|
|
99
|
+
});
|
|
100
|
+
thumbStyles = {
|
|
101
|
+
...THUMB_STYLES,
|
|
102
|
+
...thumbContextStyles,
|
|
103
|
+
...thumbStyles,
|
|
104
|
+
};
|
|
105
|
+
labelStyles = {
|
|
101
106
|
...(insideForm ? Label_1.LABEL_STYLES : Label_1.INLINE_LABEL_STYLES),
|
|
107
|
+
...labelContextStyles,
|
|
102
108
|
...labelStyles,
|
|
103
|
-
}
|
|
109
|
+
};
|
|
104
110
|
let { isFocused, focusProps } = (0, interactions_2.useFocus)({ isDisabled }, true);
|
|
105
111
|
let { hoverProps, isHovered } = (0, interactions_1.useHover)({ isDisabled });
|
|
106
112
|
let inputRef = (0, react_1.useRef)(null);
|
|
107
113
|
let domRef = (0, utils_1.useFocusableRef)(ref, inputRef);
|
|
108
114
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
109
115
|
let { inputProps } = (0, switch_1.useSwitch)(props, (0, toggle_1.useToggleState)(props), inputRef);
|
|
110
|
-
const switchField = ((0, jsx_runtime_1.jsxs)(
|
|
111
|
-
'inside-form': insideForm,
|
|
112
|
-
'side-label': labelPosition === 'side',
|
|
116
|
+
const switchField = ((0, jsx_runtime_1.jsxs)(Base_1.Base, { qa: `${qa || 'Switch'}Wrapper`, styles: { position: 'relative' }, children: [(0, jsx_runtime_1.jsx)(HiddenInput_1.HiddenInput, { "data-qa": qa || 'Switch', ...(0, react_2.mergeProps)(inputProps, focusProps), ref: inputRef }, void 0), (0, jsx_runtime_1.jsx)(Base_1.Base, { mods: {
|
|
113
117
|
checked: inputProps.checked,
|
|
114
118
|
disabled: isDisabled,
|
|
115
119
|
hovered: isHovered,
|
|
116
120
|
focused: isFocused,
|
|
117
|
-
}, styles: inputStyles, children: (0, jsx_runtime_1.jsx)(
|
|
121
|
+
}, styles: inputStyles, children: (0, jsx_runtime_1.jsx)(Base_1.Base, { qa: "SwitchThumb", styles: thumbStyles, "aria-hidden": "true", mods: {
|
|
118
122
|
checked: inputProps.checked,
|
|
119
123
|
} }, void 0) }, void 0)] }, void 0));
|
|
120
124
|
if (insideForm) {
|
|
@@ -136,7 +140,7 @@ function Switch(props, ref) {
|
|
|
136
140
|
ref: domRef,
|
|
137
141
|
} }, void 0));
|
|
138
142
|
}
|
|
139
|
-
return ((0, jsx_runtime_1.jsxs)(
|
|
143
|
+
return ((0, jsx_runtime_1.jsxs)(Base_1.Base, { as: "label", styles: styles, ...hoverProps, ...(0, tasty_1.filterBaseProps)(otherProps), ref: domRef, children: [switchField, label && ((0, jsx_runtime_1.jsxs)(Base_1.Base, { styles: labelStyles, mods: {
|
|
140
144
|
disabled: isDisabled,
|
|
141
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));
|
|
142
146
|
}
|
|
@@ -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-5cc6499
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -15,6 +15,7 @@ const react_1 = require("react");
|
|
|
15
15
|
const Form_1 = require("../Form/Form");
|
|
16
16
|
const interactions_1 = require("@react-aria/interactions");
|
|
17
17
|
const provider_1 = require("../../../provider");
|
|
18
|
+
const Base_1 = require("../../Base");
|
|
18
19
|
const tasty_1 = require("../../../tasty");
|
|
19
20
|
const interactions_2 = require("../../../utils/react/interactions");
|
|
20
21
|
const Prefix_1 = require("../../layout/Prefix");
|
|
@@ -23,21 +24,11 @@ const FieldWrapper_1 = require("../FieldWrapper");
|
|
|
23
24
|
const Space_1 = require("../../layout/Space");
|
|
24
25
|
const Block_1 = require("../../Block");
|
|
25
26
|
const react_2 = require("../../../utils/react");
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
padding: {
|
|
32
|
-
'': '0 1x 0 1.5x',
|
|
33
|
-
'text-prefix': '0 1x 0 2.5x',
|
|
34
|
-
},
|
|
35
|
-
},
|
|
36
|
-
Suffix: {
|
|
37
|
-
padding: '.5x left',
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
});
|
|
27
|
+
const StyleProvider_1 = require("../../../providers/StyleProvider");
|
|
28
|
+
const WRAPPER_STYLES = {
|
|
29
|
+
display: 'grid',
|
|
30
|
+
position: 'relative',
|
|
31
|
+
};
|
|
41
32
|
const STYLE_LIST = [...tasty_1.POSITION_STYLES, ...tasty_1.DIMENSION_STYLES];
|
|
42
33
|
const INPUT_STYLE_PROPS_LIST = [...tasty_1.BLOCK_STYLES, 'resize'];
|
|
43
34
|
exports.DEFAULT_INPUT_STYLES = {
|
|
@@ -81,9 +72,6 @@ exports.DEFAULT_INPUT_STYLES = {
|
|
|
81
72
|
margin: 0,
|
|
82
73
|
resize: 'none',
|
|
83
74
|
};
|
|
84
|
-
const InputElement = (0, tasty_1.tasty)({
|
|
85
|
-
styles: exports.DEFAULT_INPUT_STYLES,
|
|
86
|
-
});
|
|
87
75
|
function TextInputBase(props, ref) {
|
|
88
76
|
props = (0, provider_1.useProviderProps)(props);
|
|
89
77
|
props = (0, Form_1.useFormProps)(props);
|
|
@@ -92,7 +80,16 @@ function TextInputBase(props, ref) {
|
|
|
92
80
|
let [prefixWidth, setPrefixWidth] = (0, react_1.useState)(0);
|
|
93
81
|
let styles = (0, tasty_1.extractStyles)(otherProps, STYLE_LIST);
|
|
94
82
|
let type = otherProps.type;
|
|
95
|
-
|
|
83
|
+
let contextStyles = (0, StyleProvider_1.useContextStyles)('Input', otherProps);
|
|
84
|
+
inputStyles = (0, tasty_1.extractStyles)(otherProps, INPUT_STYLE_PROPS_LIST, {
|
|
85
|
+
...exports.DEFAULT_INPUT_STYLES,
|
|
86
|
+
...contextStyles,
|
|
87
|
+
...inputStyles,
|
|
88
|
+
});
|
|
89
|
+
wrapperStyles = {
|
|
90
|
+
...WRAPPER_STYLES,
|
|
91
|
+
...wrapperStyles,
|
|
92
|
+
};
|
|
96
93
|
if (prefix) {
|
|
97
94
|
inputStyles.paddingLeft = `${prefixWidth}px`;
|
|
98
95
|
}
|
|
@@ -129,13 +126,12 @@ function TextInputBase(props, ref) {
|
|
|
129
126
|
}
|
|
130
127
|
inputProps.placeholder = ' ';
|
|
131
128
|
}
|
|
132
|
-
let textField = ((0, jsx_runtime_1.jsxs)(
|
|
129
|
+
let textField = ((0, jsx_runtime_1.jsxs)(Base_1.Base, { ref: wrapperRef, qa: `${qa || 'TextInput'}Wrapper`, mods: {
|
|
133
130
|
invalid: isInvalid,
|
|
134
131
|
valid: validationState === 'valid',
|
|
135
132
|
loadable: !!loadingIndicator,
|
|
136
133
|
multiline: multiLine,
|
|
137
|
-
|
|
138
|
-
}, "data-size": size, styles: wrapperStyles, ...wrapperProps, children: [(0, jsx_runtime_1.jsx)(InputElement, { qa: "Input", as: ElementType, ...(0, react_2.mergeProps)(inputProps, focusProps, hoverProps), ref: inputRef, rows: multiLine ? rows : undefined, mods: {
|
|
134
|
+
}, "data-size": size, styles: wrapperStyles, ...wrapperProps, children: [(0, jsx_runtime_1.jsx)(Base_1.Base, { qa: qa || 'TextInput', as: ElementType, ...(0, react_2.mergeProps)(inputProps, focusProps, hoverProps), ref: inputRef, rows: multiLine ? rows : undefined, mods: {
|
|
139
135
|
invalid: isInvalid,
|
|
140
136
|
valid: validationState === 'valid',
|
|
141
137
|
disabled: isDisabled,
|
|
@@ -143,7 +139,7 @@ function TextInputBase(props, ref) {
|
|
|
143
139
|
focused: isFocused,
|
|
144
140
|
}, style: {
|
|
145
141
|
WebkitTextSecurity: multiLine && type === 'password' ? 'disc' : 'initial',
|
|
146
|
-
}, autoFocus: autoFocus, "data-size": size, styles: inputStyles }, void 0), (0, jsx_runtime_1.jsx)(Prefix_1.Prefix, { onWidthChange: setPrefixWidth, opacity: isDisabled ? '@disabled-opacity' : false, placeItems: "center", children: prefix }, void 0), (0, jsx_runtime_1.jsxs)(Suffix_1.Suffix, { onWidthChange: setSuffixWidth, opacity: isDisabled ? '@disabled-opacity' : false, children: [suffixPosition === 'before' ? suffix : null, (validationState && !isLoading) || isLoading ? ((0, jsx_runtime_1.jsxs)(Space_1.Space, { gap: false, padding: `0 ${suffix ? '1x' : '1.5x'} 0 0`, children: [validationState && !isLoading ? validation : null, isLoading && (0, jsx_runtime_1.jsx)(icons_1.LoadingOutlined, {}, void 0)] }, void 0)) : null, suffixPosition === 'after' ? suffix : null] }, void 0)] }, void 0));
|
|
142
|
+
}, autoFocus: autoFocus, "data-size": size, styles: inputStyles }, void 0), (0, jsx_runtime_1.jsx)(Prefix_1.Prefix, { padding: "0 1x 0 1.5x", onWidthChange: setPrefixWidth, opacity: isDisabled ? '@disabled-opacity' : false, placeItems: "center", children: typeof prefix === 'string' ? ((0, jsx_runtime_1.jsx)(Block_1.Block, { padding: "1x left", children: prefix }, void 0)) : (prefix) }, void 0), (0, jsx_runtime_1.jsxs)(Suffix_1.Suffix, { padding: ".5x left", onWidthChange: setSuffixWidth, opacity: isDisabled ? '@disabled-opacity' : false, children: [suffixPosition === 'before' ? suffix : null, (validationState && !isLoading) || isLoading ? ((0, jsx_runtime_1.jsxs)(Space_1.Space, { gap: false, padding: `0 ${suffix ? '1x' : '1.5x'} 0 0`, children: [validationState && !isLoading ? validation : null, isLoading && (0, jsx_runtime_1.jsx)(icons_1.LoadingOutlined, {}, void 0)] }, void 0)) : null, suffixPosition === 'after' ? suffix : null] }, void 0)] }, void 0));
|
|
147
143
|
return ((0, jsx_runtime_1.jsx)(FieldWrapper_1.FieldWrapper, { ...{
|
|
148
144
|
labelPosition,
|
|
149
145
|
label,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.0.0-canary-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-5cc6499
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -10,16 +10,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
exports.Flex = void 0;
|
|
11
11
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
12
12
|
const react_1 = require("react");
|
|
13
|
+
const Base_1 = require("../Base");
|
|
13
14
|
const tasty_1 = require("../../tasty");
|
|
14
|
-
const
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
},
|
|
19
|
-
});
|
|
15
|
+
const DEFAULT_STYLES = {
|
|
16
|
+
display: 'flex',
|
|
17
|
+
flow: 'row',
|
|
18
|
+
};
|
|
20
19
|
exports.Flex = (0, react_1.forwardRef)((props, ref) => {
|
|
21
|
-
const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES);
|
|
22
|
-
return ((0, jsx_runtime_1.jsx)(
|
|
20
|
+
const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, DEFAULT_STYLES);
|
|
21
|
+
return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
|
|
23
22
|
});
|
|
24
23
|
|
|
25
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-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-5cc6499
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -10,17 +10,16 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
exports.Flow = void 0;
|
|
11
11
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
12
12
|
const react_1 = require("react");
|
|
13
|
+
const Base_1 = require("../Base");
|
|
13
14
|
const tasty_1 = require("../../tasty");
|
|
14
|
-
const
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
},
|
|
19
|
-
});
|
|
15
|
+
const DEFAULT_STYLES = {
|
|
16
|
+
display: 'block',
|
|
17
|
+
flow: 'column',
|
|
18
|
+
};
|
|
20
19
|
const STYLE_PROPS = tasty_1.CONTAINER_STYLES;
|
|
21
20
|
exports.Flow = (0, react_1.forwardRef)((props, ref) => {
|
|
22
|
-
const styles = (0, tasty_1.extractStyles)(props, STYLE_PROPS);
|
|
23
|
-
return ((0, jsx_runtime_1.jsx)(
|
|
21
|
+
const styles = (0, tasty_1.extractStyles)(props, STYLE_PROPS, DEFAULT_STYLES);
|
|
22
|
+
return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
|
|
24
23
|
});
|
|
25
24
|
|
|
26
25
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.0.0-canary-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-5cc6499
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -10,13 +10,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
exports.Grid = void 0;
|
|
11
11
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
12
12
|
const react_1 = require("react");
|
|
13
|
+
const Base_1 = require("../Base");
|
|
13
14
|
const tasty_1 = require("../../tasty");
|
|
14
|
-
const
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
});
|
|
15
|
+
const DEFAULT_STYLES = {
|
|
16
|
+
display: 'grid',
|
|
17
|
+
flow: 'row',
|
|
18
|
+
gap: '@(column-gap, 0)',
|
|
19
|
+
};
|
|
20
20
|
const PROP_MAP = {
|
|
21
21
|
template: 'gridTemplate',
|
|
22
22
|
columns: 'gridColumns',
|
|
@@ -24,8 +24,8 @@ const PROP_MAP = {
|
|
|
24
24
|
areas: 'gridAreas',
|
|
25
25
|
};
|
|
26
26
|
exports.Grid = (0, react_1.forwardRef)((props, ref) => {
|
|
27
|
-
const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES,
|
|
28
|
-
return ((0, jsx_runtime_1.jsx)(
|
|
27
|
+
const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, DEFAULT_STYLES, PROP_MAP);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.0.0-canary-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-5cc6499
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -10,34 +10,32 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
exports.Prefix = void 0;
|
|
11
11
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
12
12
|
const react_1 = require("react");
|
|
13
|
+
const Base_1 = require("../Base");
|
|
13
14
|
const tasty_1 = require("../../tasty");
|
|
14
15
|
const react_2 = require("../../utils/react");
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
height: '(100% - (2 * @prefix-gap))',
|
|
29
|
-
},
|
|
30
|
-
});
|
|
16
|
+
const DEFAULT_STYLES = {
|
|
17
|
+
position: 'absolute',
|
|
18
|
+
display: 'grid',
|
|
19
|
+
placeContent: 'stretch',
|
|
20
|
+
placeItems: 'center',
|
|
21
|
+
flow: 'column',
|
|
22
|
+
gap: 0,
|
|
23
|
+
left: '@prefix-gap',
|
|
24
|
+
top: '@prefix-gap',
|
|
25
|
+
bottom: '@prefix-gap',
|
|
26
|
+
color: '#dark.75',
|
|
27
|
+
height: '(100% - (2 * @prefix-gap))',
|
|
28
|
+
};
|
|
31
29
|
exports.Prefix = (0, react_1.forwardRef)((allProps, outerRef) => {
|
|
32
30
|
let { onWidthChange, outerGap = '1bw', children, ...props } = allProps;
|
|
33
|
-
const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES);
|
|
31
|
+
const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, DEFAULT_STYLES);
|
|
34
32
|
const ref = (0, react_2.useCombinedRefs)(outerRef);
|
|
35
33
|
(0, react_1.useEffect)(() => {
|
|
36
34
|
if ((ref === null || ref === void 0 ? void 0 : ref.current) && onWidthChange) {
|
|
37
35
|
onWidthChange(ref.current.offsetWidth);
|
|
38
36
|
}
|
|
39
37
|
}, [children, ref, onWidthChange]);
|
|
40
|
-
return ((0, jsx_runtime_1.jsx)(
|
|
38
|
+
return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref, style: {
|
|
41
39
|
// @ts-ignore
|
|
42
40
|
'--prefix-gap': (0, tasty_1.parseStyle)(outerGap).value,
|
|
43
41
|
}, children: children }, void 0));
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.0.0-canary-
|
|
4
|
+
* @cube-dev/ui-kit v0.0.0-canary-5cc6499
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -10,28 +10,24 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
exports.Space = void 0;
|
|
11
11
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
12
12
|
const react_1 = require("react");
|
|
13
|
+
const Base_1 = require("../Base");
|
|
13
14
|
const tasty_1 = require("../../tasty");
|
|
14
|
-
const
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
flow: {
|
|
19
|
-
'': 'row',
|
|
20
|
-
vertical: 'column',
|
|
21
|
-
},
|
|
22
|
-
alignItems: {
|
|
23
|
-
'': 'center',
|
|
24
|
-
vertical: 'stretch',
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
});
|
|
15
|
+
const DEFAULT_STYLES = {
|
|
16
|
+
display: 'flex',
|
|
17
|
+
gap: true,
|
|
18
|
+
};
|
|
28
19
|
exports.Space = (0, react_1.forwardRef)(function Space(props, ref) {
|
|
29
|
-
const
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
20
|
+
const flow = props.direction
|
|
21
|
+
? props.direction === 'vertical'
|
|
22
|
+
? 'column'
|
|
23
|
+
: 'row'
|
|
24
|
+
: props.flow || 'row';
|
|
25
|
+
const styles = (0, tasty_1.extractStyles)(props, tasty_1.CONTAINER_STYLES, {
|
|
26
|
+
...DEFAULT_STYLES,
|
|
27
|
+
flow,
|
|
28
|
+
alignItems: flow === 'row' ? 'center' : 'stretch',
|
|
29
|
+
});
|
|
30
|
+
return ((0, jsx_runtime_1.jsx)(Base_1.Base, { ...(0, tasty_1.filterBaseProps)(props, { eventProps: true }), styles: styles, ref: ref }, void 0));
|
|
35
31
|
});
|
|
36
32
|
|
|
37
33
|
|