@cube-dev/ui-kit 0.12.6 → 0.13.0
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/CHANGELOG.md +297 -0
- package/cjs/_internal/hooks/index.js +1 -1
- 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 +7 -7
- package/cjs/_internal/index.js +1 -1
- package/cjs/components/Base.js +2 -2
- package/cjs/components/Block.js +1 -1
- package/cjs/components/GlobalStyles.js +1 -1
- package/cjs/components/GridProvider.js +2 -3
- package/cjs/components/HiddenInput.js +1 -1
- package/cjs/components/OpenTrasition.js +1 -1
- package/cjs/components/Root.js +38 -3
- package/cjs/components/actions/Action.js +2 -2
- package/cjs/components/actions/Button/Button.js +3 -3
- 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 +2 -3
- 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 +2 -2
- 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.js +1 -1
- package/cjs/components/forms/FileInput/FileInput.js +6 -7
- package/cjs/components/forms/Form/Field.js +5 -5
- package/cjs/components/forms/Form/Form.js +19 -19
- package/cjs/components/forms/Form/index.js +1 -1
- package/cjs/components/forms/Form/types.js +1 -1
- package/cjs/components/forms/Form/useForm.js +4 -7
- package/cjs/components/forms/Form/validation.js +2 -2
- 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 +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 +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 +1 -1
- 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 +4 -4
- 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 +2 -2
- 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 +3 -9
- package/cjs/components/overlays/AlertDialog/AlertDialogApiProvider.js +6 -7
- package/cjs/components/overlays/AlertDialog/AlertDialogZone.js +2 -2
- 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 +7 -7
- 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 +7 -12
- package/cjs/components/overlays/Modal/OpenTransition.js +1 -1
- package/cjs/components/overlays/Modal/Overlay.js +3 -3
- package/cjs/components/overlays/Modal/Popover.js +1 -1
- package/cjs/components/overlays/Modal/Tray.js +3 -34
- 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 +10 -2
- package/cjs/components/overlays/NewNotifications/Bar/NotificationsBar.js +30 -13
- 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 +2 -2
- package/cjs/components/overlays/NewNotifications/Dialog/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/Notification.js +6 -3
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationAction.js +6 -3
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +9 -20
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +4 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +5 -3
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +4 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +4 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +4 -1
- package/cjs/components/overlays/NewNotifications/NotificationView/NotificationView.js +14 -11
- 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 +3 -3
- package/cjs/components/overlays/NewNotifications/NotificationsContext/index.js +1 -1
- package/cjs/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +18 -16
- package/cjs/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +48 -0
- package/cjs/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +33 -0
- package/cjs/components/overlays/NewNotifications/NotificationsList/index.js +22 -0
- package/cjs/components/overlays/NewNotifications/NotificationsList/types.js +11 -0
- 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 +3 -4
- 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 +2 -2
- 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 +5 -5
- package/cjs/components/overlays/Tooltip/TooltipProvider.js +1 -1
- package/cjs/components/overlays/Tooltip/TooltipTrigger.js +2 -3
- package/cjs/components/overlays/Tooltip/context.js +1 -1
- package/cjs/components/pickers/ComboBox/ComboBox.js +2 -3
- package/cjs/components/pickers/Menu/Menu.js +1 -1
- package/cjs/components/pickers/Menu/MenuButton.js +9 -5
- package/cjs/components/pickers/Menu/MenuItem.js +18 -9
- 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 +5 -6
- 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 +5 -7
- 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 +11 -12
- 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 +2 -2
- 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 +8 -9
- 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 +2 -2
- package/cjs/tasty/utils/get-display-name.js +2 -3
- package/cjs/tasty/utils/index.js +1 -1
- package/cjs/tasty/utils/mergeStyles.js +3 -3
- 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 +6 -3
- 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 -1
- package/cjs/type-checks.js +1 -1
- package/cjs/utils/ResizeSensor.js +19 -19
- package/cjs/utils/modules.js +1 -1
- package/cjs/utils/promise.js +1 -1
- package/cjs/utils/random.js +18 -0
- package/cjs/utils/range.js +16 -0
- package/cjs/utils/react/Slots.js +7 -12
- 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 -3
- 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 +2 -2
- 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 +1 -1
- 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 +7 -7
- package/es/_internal/index.js +1 -1
- package/es/components/Base.js +2 -2
- package/es/components/Block.js +1 -1
- package/es/components/GlobalStyles.js +1 -1
- package/es/components/GridProvider.js +2 -3
- package/es/components/HiddenInput.js +1 -1
- package/es/components/OpenTrasition.js +1 -1
- package/es/components/Root.js +38 -3
- package/es/components/actions/Action.js +2 -2
- package/es/components/actions/Button/Button.js +3 -3
- 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 +2 -3
- 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 +2 -2
- 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.js +1 -1
- package/es/components/forms/FileInput/FileInput.js +6 -7
- package/es/components/forms/Form/Field.js +5 -5
- package/es/components/forms/Form/Form.js +19 -19
- package/es/components/forms/Form/index.js +1 -1
- package/es/components/forms/Form/types.js +1 -1
- package/es/components/forms/Form/useForm.js +4 -7
- package/es/components/forms/Form/validation.js +2 -2
- 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 +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 +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 +1 -1
- 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 +4 -4
- 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 +2 -2
- 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 +3 -9
- package/es/components/overlays/AlertDialog/AlertDialogApiProvider.js +6 -7
- package/es/components/overlays/AlertDialog/AlertDialogZone.js +2 -2
- 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 +7 -7
- 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 +7 -12
- package/es/components/overlays/Modal/OpenTransition.js +1 -1
- package/es/components/overlays/Modal/Overlay.js +3 -3
- package/es/components/overlays/Modal/Popover.js +1 -1
- package/es/components/overlays/Modal/Tray.js +4 -35
- 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 +10 -2
- package/es/components/overlays/NewNotifications/Bar/NotificationsBar.js +32 -15
- 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 +2 -2
- package/es/components/overlays/NewNotifications/Dialog/index.js +1 -1
- package/es/components/overlays/NewNotifications/Notification.js +6 -3
- package/es/components/overlays/NewNotifications/NotificationView/NotificationAction.js +6 -3
- package/es/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +9 -20
- package/es/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +4 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +5 -3
- package/es/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +4 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +4 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +4 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationView.js +14 -11
- 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 +3 -3
- package/es/components/overlays/NewNotifications/NotificationsContext/index.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +18 -16
- package/es/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +44 -0
- package/es/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +29 -0
- package/es/components/overlays/NewNotifications/NotificationsList/index.js +10 -0
- package/es/components/overlays/NewNotifications/NotificationsList/types.js +10 -0
- 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 +3 -4
- 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 +2 -2
- 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 +5 -5
- package/es/components/overlays/Tooltip/TooltipProvider.js +1 -1
- package/es/components/overlays/Tooltip/TooltipTrigger.js +2 -3
- package/es/components/overlays/Tooltip/context.js +1 -1
- package/es/components/pickers/ComboBox/ComboBox.js +2 -3
- package/es/components/pickers/Menu/Menu.js +1 -1
- package/es/components/pickers/Menu/MenuButton.js +9 -5
- package/es/components/pickers/Menu/MenuItem.js +18 -9
- 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 +5 -6
- 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 +5 -7
- 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 +11 -12
- 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 +2 -2
- 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 +8 -9
- 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 +2 -2
- package/es/tasty/utils/get-display-name.js +2 -3
- package/es/tasty/utils/index.js +1 -1
- package/es/tasty/utils/mergeStyles.js +3 -3
- 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 +6 -3
- 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 -1
- package/es/type-checks.js +1 -1
- package/es/utils/ResizeSensor.js +19 -19
- package/es/utils/modules.js +1 -1
- package/es/utils/promise.js +1 -1
- package/es/utils/random.js +14 -0
- package/es/utils/range.js +12 -0
- package/es/utils/react/Slots.js +7 -12
- 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 -3
- 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 +2 -2
- 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 +4 -4
- package/types/components/forms/Form/Form.d.ts +3 -5
- package/types/components/overlays/NewNotifications/Bar/FloatingNotification.d.ts +3 -0
- package/types/components/overlays/NewNotifications/Bar/NotificationsBar.d.ts +8 -0
- package/types/components/overlays/NewNotifications/Notification.d.ts +3 -0
- package/types/components/overlays/NewNotifications/NotificationView/NotificationAction.d.ts +3 -0
- package/types/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.d.ts +0 -2
- package/types/components/overlays/NewNotifications/NotificationView/NotificationDescription.d.ts +3 -0
- package/types/components/overlays/NewNotifications/NotificationView/NotificationFooter.d.ts +3 -0
- package/types/components/overlays/NewNotifications/NotificationView/NotificationHeader.d.ts +3 -0
- package/types/components/overlays/NewNotifications/NotificationView/NotificationIcon.d.ts +3 -0
- package/types/components/overlays/NewNotifications/NotificationView/NotificationProvider.d.ts +3 -0
- package/types/components/overlays/NewNotifications/NotificationView/NotificationView.d.ts +3 -0
- package/types/components/overlays/NewNotifications/NotificationsContext/use-notifications.d.ts +1 -1
- package/types/components/overlays/NewNotifications/NotificationsList/NotificationsList.d.ts +21 -0
- package/types/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.d.ts +6 -0
- package/types/components/overlays/NewNotifications/NotificationsList/index.d.ts +2 -0
- package/types/components/overlays/NewNotifications/{NotificationsList.d.ts → NotificationsList/types.d.ts} +9 -7
- package/types/components/pickers/Menu/MenuItem.d.ts +1 -0
- package/types/stories/components/StyledButton.d.ts +3 -3
- package/types/tasty/utils/styles.d.ts +1 -1
- package/types/utils/random.d.ts +1 -0
- package/types/utils/range.d.ts +1 -0
- package/types/utils/react/interactions.d.ts +1 -2
- package/cjs/components/overlays/NewNotifications/NotificationsList.js +0 -43
- package/es/components/overlays/NewNotifications/NotificationsList.js +0 -39
package/es/tasty/utils/styles.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.
|
|
4
|
+
* @cube-dev/ui-kit v0.13.0
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
import { getModCombinations } from './index';
|
|
9
9
|
const devMode = process.env.NODE_ENV !== 'production';
|
|
10
|
+
const IS_DVH_SUPPORTED = typeof CSS?.supports !== 'undefined' ? CSS.supports('height: 100dvh') : false;
|
|
10
11
|
export const CUSTOM_UNITS = {
|
|
11
12
|
r: 'var(--radius)',
|
|
12
13
|
bw: 'var(--border-width)',
|
|
@@ -17,8 +18,10 @@ export const CUSTOM_UNITS = {
|
|
|
17
18
|
rp: 'var(--rem-pixel)',
|
|
18
19
|
gp: 'var(--column-gap)',
|
|
19
20
|
// global setting
|
|
20
|
-
|
|
21
|
-
return
|
|
21
|
+
dvh: function dvh(num) {
|
|
22
|
+
return IS_DVH_SUPPORTED
|
|
23
|
+
? `${num}dvh`
|
|
24
|
+
: `calc(var(--cube-dynamic-viewport-height, 100dvh) / 100 * ${num})`;
|
|
22
25
|
},
|
|
23
26
|
// span unit for GridProvider
|
|
24
27
|
sp: function spanWidth(num) {
|
package/es/test/index.js
CHANGED
package/es/test/render.js
CHANGED
package/es/test/setup.js
CHANGED
package/es/test/utils/index.js
CHANGED
package/es/test/utils/wait.js
CHANGED
package/es/tokens.js
CHANGED
package/es/type-checks.js
CHANGED
package/es/utils/ResizeSensor.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.
|
|
4
|
+
* @cube-dev/ui-kit v0.13.0
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
*/
|
|
15
15
|
function forEachElement(elements, callback) {
|
|
16
16
|
let elementsType = Object.prototype.toString.call(elements);
|
|
17
|
-
let isCollectionTyped = '[object Array]' === elementsType
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
let isCollectionTyped = '[object Array]' === elementsType ||
|
|
18
|
+
'[object NodeList]' === elementsType ||
|
|
19
|
+
'[object HTMLCollection]' === elementsType ||
|
|
20
|
+
'[object Object]' === elementsType ||
|
|
21
|
+
('undefined' !== typeof jQuery && elements instanceof jQuery) || //jquery
|
|
22
|
+
('undefined' !== typeof Elements && elements instanceof Elements); //mootools
|
|
23
23
|
let i = 0, j = elements.length;
|
|
24
24
|
if (isCollectionTyped) {
|
|
25
25
|
for (; i < j; i++) {
|
|
@@ -75,16 +75,16 @@ export let ResizeSensor = function (element, callback) {
|
|
|
75
75
|
// Only used for the dirty checking, so the event callback count is limited to max 1 call per fps per sensor.
|
|
76
76
|
// In combination with the event based resize sensor this saves cpu time, because the sensor is too fast and
|
|
77
77
|
// would generate too many unnecessary events.
|
|
78
|
-
let requestAnimationFrame = globalWindow.requestAnimationFrame
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
let requestAnimationFrame = globalWindow.requestAnimationFrame ||
|
|
79
|
+
globalWindow.mozRequestAnimationFrame ||
|
|
80
|
+
globalWindow.webkitRequestAnimationFrame ||
|
|
81
|
+
function (fn) {
|
|
82
82
|
return globalWindow.setTimeout(fn, 20);
|
|
83
83
|
};
|
|
84
|
-
let cancelAnimationFrame = globalWindow.cancelAnimationFrame
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
84
|
+
let cancelAnimationFrame = globalWindow.cancelAnimationFrame ||
|
|
85
|
+
globalWindow.mozCancelAnimationFrame ||
|
|
86
|
+
globalWindow.webkitCancelAnimationFrame ||
|
|
87
|
+
function (timer) {
|
|
88
88
|
globalWindow.clearTimeout(timer);
|
|
89
89
|
};
|
|
90
90
|
//Is used when checking in reset() only for invisible elements
|
|
@@ -172,10 +172,10 @@ export let ResizeSensor = function (element, callback) {
|
|
|
172
172
|
let position = computedStyle
|
|
173
173
|
? computedStyle.getPropertyValue('position')
|
|
174
174
|
: null;
|
|
175
|
-
if ('absolute' !== position
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
175
|
+
if ('absolute' !== position &&
|
|
176
|
+
'relative' !== position &&
|
|
177
|
+
'fixed' !== position &&
|
|
178
|
+
'sticky' !== position) {
|
|
179
179
|
element.style.position = 'relative';
|
|
180
180
|
}
|
|
181
181
|
let dirty = false;
|
package/es/utils/modules.js
CHANGED
package/es/utils/promise.js
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license MIT
|
|
3
|
+
* author: Cube Dev Team
|
|
4
|
+
* @cube-dev/ui-kit v0.13.0
|
|
5
|
+
* Released under the MIT license.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
export function random(min, max) {
|
|
9
|
+
const realMin = min < max ? min : max;
|
|
10
|
+
const realMax = min < max ? max : min;
|
|
11
|
+
return realMin + Math.random() * (realMax - realMin);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
package/es/utils/react/Slots.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.
|
|
4
|
+
* @cube-dev/ui-kit v0.13.0
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -11,26 +11,21 @@ import { mergeProps } from './mergeProps';
|
|
|
11
11
|
const INITIAL_VALUE = {};
|
|
12
12
|
let SlotContext = createContext(INITIAL_VALUE);
|
|
13
13
|
export function useSlotProps(props, defaultSlot) {
|
|
14
|
-
var _a;
|
|
15
14
|
let slot = props.slot || defaultSlot;
|
|
16
|
-
let allSlots =
|
|
15
|
+
let allSlots = useContext(SlotContext) ?? INITIAL_VALUE;
|
|
17
16
|
let slotProps = allSlots[slot];
|
|
18
17
|
return mergeProps(slotProps, props);
|
|
19
18
|
}
|
|
20
19
|
export function SlotProvider(props) {
|
|
21
|
-
|
|
22
|
-
let parentSlots = (_a = useContext(SlotContext)) !== null && _a !== void 0 ? _a : INITIAL_VALUE;
|
|
20
|
+
let parentSlots = useContext(SlotContext) ?? INITIAL_VALUE;
|
|
23
21
|
let { slots = {}, children } = props;
|
|
24
22
|
// Merge props for each slot from parent context and props
|
|
25
23
|
let value = useMemo(() => Object.keys(parentSlots)
|
|
26
24
|
.concat(Object.keys(slots))
|
|
27
|
-
.reduce((o, p) => {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
[p]: mergeProps((_a = parentSlots[p]) !== null && _a !== void 0 ? _a : {}, (_b = slots[p]) !== null && _b !== void 0 ? _b : {}),
|
|
32
|
-
});
|
|
33
|
-
}, {}), [parentSlots, slots]);
|
|
25
|
+
.reduce((o, p) => ({
|
|
26
|
+
...o,
|
|
27
|
+
[p]: mergeProps(parentSlots[p] ?? {}, slots[p] ?? {}),
|
|
28
|
+
}), {}), [parentSlots, slots]);
|
|
34
29
|
return _jsx(SlotContext.Provider, { value: value, children: children }, void 0);
|
|
35
30
|
}
|
|
36
31
|
export function ClearSlots(props) {
|
package/es/utils/react/chain.js
CHANGED
package/es/utils/react/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.
|
|
4
|
+
* @cube-dev/ui-kit v0.13.0
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -40,8 +40,8 @@ export function mergeProps(...args) {
|
|
|
40
40
|
typeof props.styles === 'object') {
|
|
41
41
|
result[key] = mergeStyles(result[key], props[key]);
|
|
42
42
|
}
|
|
43
|
-
else if (key === 'id' && result.id &&
|
|
44
|
-
result.id = mergeIds(result.id, props
|
|
43
|
+
else if (key === 'id' && result.id && props?.id) {
|
|
44
|
+
result.id = mergeIds(result.id, props?.id);
|
|
45
45
|
// Override others
|
|
46
46
|
}
|
|
47
47
|
else {
|
package/es/utils/react/useId.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license MIT
|
|
3
3
|
* author: Cube Dev Team
|
|
4
|
-
* @cube-dev/ui-kit v0.
|
|
4
|
+
* @cube-dev/ui-kit v0.13.0
|
|
5
5
|
* Released under the MIT license.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
import * as React from 'react';
|
|
9
9
|
// During SSR, React emits a warning when calling useLayoutEffect.
|
|
10
10
|
// Since neither useLayoutEffect nor useEffect run on the server,
|
|
11
|
-
// we can suppress this by
|
|
11
|
+
// we can suppress this by replacing it with a noop on the server.
|
|
12
12
|
export const useLayoutEffect = typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect;
|
|
13
13
|
|
|
14
14
|
|
package/es/utils/transitions.js
CHANGED
package/es/utils/tree.js
CHANGED
package/es/utils/warnings.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cube-dev/ui-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "UIKit for Cube Projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"uikit"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@react-aria/i18n": "^3.3.4",
|
|
23
23
|
"@react-aria/interactions": "^3.7.0",
|
|
24
24
|
"@react-aria/listbox": "^3.5.0",
|
|
25
|
-
"@react-aria/menu": "3.
|
|
25
|
+
"@react-aria/menu": "3.6.1",
|
|
26
26
|
"@react-aria/numberfield": "^3.1.1",
|
|
27
27
|
"@react-aria/overlays": "^3.7.5",
|
|
28
28
|
"@react-aria/radio": "^3.1.6",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"@react-stately/collections": "^3.3.4",
|
|
42
42
|
"@react-stately/combobox": "3.0.1",
|
|
43
43
|
"@react-stately/list": "^3.5.1",
|
|
44
|
+
"@react-stately/menu": "3.4.1",
|
|
44
45
|
"@react-stately/numberfield": "^3.0.2",
|
|
45
46
|
"@react-stately/overlays": "^3.1.6",
|
|
46
47
|
"@react-stately/radio": "^3.3.2",
|
|
@@ -49,13 +50,12 @@
|
|
|
49
50
|
"@react-stately/toggle": "^3.2.3",
|
|
50
51
|
"@react-stately/tooltip": "^3.0.8",
|
|
51
52
|
"@react-stately/tree": "^3.3.1",
|
|
52
|
-
"@react-stately/menu": "^3.3.1",
|
|
53
53
|
"@react-stately/utils": "^3.5.0",
|
|
54
54
|
"@react-types/button": "^3.4.1",
|
|
55
55
|
"@react-types/checkbox": "^3.2.5",
|
|
56
56
|
"@react-types/combobox": "^3.2.1",
|
|
57
57
|
"@react-types/dialog": "^3.3.4",
|
|
58
|
-
"@react-types/menu": "
|
|
58
|
+
"@react-types/menu": "3.7.1",
|
|
59
59
|
"@react-types/numberfield": "^3.1.3",
|
|
60
60
|
"@react-types/overlays": "^3.5.5",
|
|
61
61
|
"@react-types/radio": "^3.1.2",
|
|
@@ -10,13 +10,11 @@ export interface CubeFormProps<T extends FieldTypes = FieldTypes> extends FormBa
|
|
|
10
10
|
/** Form name */
|
|
11
11
|
name?: string;
|
|
12
12
|
/** Default field values */
|
|
13
|
-
defaultValues?:
|
|
14
|
-
[K in keyof T]?: T[K];
|
|
15
|
-
};
|
|
13
|
+
defaultValues?: Partial<T>;
|
|
16
14
|
/** Trigger when any value of Field changed */
|
|
17
|
-
onValuesChange?:
|
|
15
|
+
onValuesChange?: CubeFormInstance<T>['onValuesChange'];
|
|
18
16
|
/** Trigger when form submit and success */
|
|
19
|
-
onSubmit?:
|
|
17
|
+
onSubmit?: CubeFormInstance<T>['onSubmit'];
|
|
20
18
|
/** Trigger when form submit and failed */
|
|
21
19
|
onSubmitFailed?: (any?: any) => void | Promise<any>;
|
|
22
20
|
/** Set form instance created by useForm */
|
|
@@ -9,4 +9,7 @@ export declare type FloatingNotificationProps = {
|
|
|
9
9
|
item: NotificationItemNode<CubeNotifyApiPropsWithID>;
|
|
10
10
|
state: NotificationsListState<CubeNotifyApiPropsWithID>;
|
|
11
11
|
};
|
|
12
|
+
/**
|
|
13
|
+
* @internal This component is unstable and must not be used outside of `NotificationsBar`.
|
|
14
|
+
*/
|
|
12
15
|
export declare const FloatingNotification: import("react").NamedExoticComponent<FloatingNotificationProps>;
|
|
@@ -6,7 +6,15 @@ export declare type NotificationsBarProps = {
|
|
|
6
6
|
children: CollectionChildren<CubeNotifyApiPropsWithID>;
|
|
7
7
|
onRemoveNotification: (id: Key) => void;
|
|
8
8
|
onDismissNotification: (id: Key) => void;
|
|
9
|
+
/**
|
|
10
|
+
* Defines the amount of notifications that can be displayed at once.
|
|
11
|
+
* @default 5
|
|
12
|
+
*/
|
|
13
|
+
limit?: number;
|
|
9
14
|
};
|
|
15
|
+
/**
|
|
16
|
+
* @internal Do not use it
|
|
17
|
+
*/
|
|
10
18
|
export declare function NotificationsBar(props: NotificationsBarProps): JSX.Element;
|
|
11
19
|
export declare namespace NotificationsBar {
|
|
12
20
|
var Item: (props: CubeNotifyApiPropsWithID) => null;
|
|
@@ -8,6 +8,9 @@ export declare type NotificationProps = {
|
|
|
8
8
|
*/
|
|
9
9
|
disableRemoveOnUnmount?: boolean;
|
|
10
10
|
} & CubeNotifyApiProps;
|
|
11
|
+
/**
|
|
12
|
+
* Declarative wrap over the `useNotificationsApi` hook
|
|
13
|
+
*/
|
|
11
14
|
export declare function Notification(props: NotificationProps): null;
|
|
12
15
|
export declare namespace Notification {
|
|
13
16
|
var Success: (props: NotificationProps) => JSX.Element;
|
|
@@ -7,4 +7,7 @@ export declare type NotificationActionProps = PropsWithChildren<{
|
|
|
7
7
|
*/
|
|
8
8
|
disableCloseOnAction?: boolean;
|
|
9
9
|
}> & Omit<CubeButtonProps, 'type' | 'size' | 'mods'>;
|
|
10
|
+
/**
|
|
11
|
+
* @internal This component is unstable and must not be used outside of `NotificationView`.
|
|
12
|
+
*/
|
|
10
13
|
export declare function NotificationAction(props: NotificationActionProps): JSX.Element;
|
package/types/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare type NotificationCloseButtonProps = {
|
|
3
3
|
onPress: () => void;
|
|
4
|
-
isHovered: boolean;
|
|
5
|
-
isFocused: boolean;
|
|
6
4
|
};
|
|
7
5
|
export declare const NotificationCloseButton: import("react").NamedExoticComponent<NotificationCloseButtonProps>;
|
package/types/components/overlays/NewNotifications/NotificationView/NotificationDescription.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ import { NotificationProps } from './types';
|
|
|
3
3
|
export declare type NotificationDescriptionProps = {
|
|
4
4
|
description: NotificationProps['description'];
|
|
5
5
|
} & HTMLAttributes<HTMLElement>;
|
|
6
|
+
/**
|
|
7
|
+
* @internal This component is unstable and must not be used outside of `NotificationView`.
|
|
8
|
+
*/
|
|
6
9
|
export declare const NotificationDescription: import("react").NamedExoticComponent<{
|
|
7
10
|
description: NotificationProps['description'];
|
|
8
11
|
} & HTMLAttributes<HTMLElement>>;
|
|
@@ -6,5 +6,8 @@ interface NotificationFooterProps {
|
|
|
6
6
|
onClose: () => void;
|
|
7
7
|
onDismiss: () => void;
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* @internal This component is unstable and must not be used outside of `NotificationView`.
|
|
11
|
+
*/
|
|
9
12
|
export declare const NotificationFooter: React.NamedExoticComponent<NotificationFooterProps>;
|
|
10
13
|
export {};
|
|
@@ -3,6 +3,9 @@ import { NotificationProps } from './types';
|
|
|
3
3
|
export declare type NotificationHeaderProps = {
|
|
4
4
|
header: NotificationProps['header'];
|
|
5
5
|
} & HTMLAttributes<HTMLElement>;
|
|
6
|
+
/**
|
|
7
|
+
* @internal This component is unstable and must not be used outside of `NotificationView`.
|
|
8
|
+
*/
|
|
6
9
|
export declare const NotificationHeader: import("react").NamedExoticComponent<{
|
|
7
10
|
header: NotificationProps['header'];
|
|
8
11
|
} & HTMLAttributes<HTMLElement>>;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { NotificationIconProps } from './types';
|
|
3
|
+
/**
|
|
4
|
+
* @internal This component is unstable and must not be used outside of `NotificationView`.
|
|
5
|
+
*/
|
|
3
6
|
export declare const NotificationIcon: import("react").NamedExoticComponent<NotificationIconProps>;
|
package/types/components/overlays/NewNotifications/NotificationView/NotificationProvider.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ import { PropsWithChildren } from 'react';
|
|
|
2
2
|
interface NotificationContextType {
|
|
3
3
|
onClose?: () => void;
|
|
4
4
|
}
|
|
5
|
+
/**
|
|
6
|
+
* @internal This component is unstable and must not be used outside of `NotificationView`.
|
|
7
|
+
*/
|
|
5
8
|
export declare function NotificationProvider(props: PropsWithChildren<NotificationContextType>): JSX.Element;
|
|
6
9
|
export declare function useNotificationContext(): NotificationContextType;
|
|
7
10
|
export {};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/**
|
|
3
|
+
* @internal This component is unstable and is a subject to change.
|
|
4
|
+
*/
|
|
2
5
|
export declare const NotificationView: import("react").ForwardRefExoticComponent<{
|
|
3
6
|
qa?: string | undefined;
|
|
4
7
|
attributes?: import("react").HTMLAttributes<HTMLDivElement> | undefined;
|
package/types/components/overlays/NewNotifications/NotificationsContext/use-notifications.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Key, RefObject } from 'react';
|
|
|
2
2
|
import { CubeNotificationsApi, CubeNotifyApiPropsWithID } from '../types';
|
|
3
3
|
export declare function useNotifications(rootRef: RefObject<HTMLElement | null> | null): {
|
|
4
4
|
readonly api: CubeNotificationsApi;
|
|
5
|
-
readonly
|
|
5
|
+
readonly notifications: CubeNotifyApiPropsWithID[];
|
|
6
6
|
readonly onDismissNotification: (id: Key) => void;
|
|
7
7
|
readonly addOnDismissListener: (listener: (notification: CubeNotifyApiPropsWithID) => void) => () => void | undefined;
|
|
8
8
|
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { NotificationsListProps } from './types';
|
|
3
|
+
/**
|
|
4
|
+
* Provides ability to show notifications as a list.
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
* <NotificationsList>
|
|
8
|
+
* <NotificationsList.Item key="id_1" type="success" description="Edit and test your schema without affecting the production." />
|
|
9
|
+
* <NotificationsList.Item key="id_2" type="attention" description="Edit and test your schema without affecting the production." />
|
|
10
|
+
* <NotificationsList.Item key="id_3" type="danger" description="Edit and test your schema without affecting the production." />
|
|
11
|
+
* </NotificationsList>
|
|
12
|
+
*
|
|
13
|
+
* @example Removing a notification
|
|
14
|
+
* <NotificationsList onDismiss={(id) => removeNotification(id)}>
|
|
15
|
+
* <NotificationsList.Item key="id_1" type="success" description="Edit and test your schema without affecting the production." />
|
|
16
|
+
* </NotificationsList>
|
|
17
|
+
*/
|
|
18
|
+
export declare function NotificationsList<T extends object>(props: NotificationsListProps<T>): JSX.Element;
|
|
19
|
+
export declare namespace NotificationsList {
|
|
20
|
+
var Item: (props: Omit<import("../types").BaseNotificationProps, "onDismiss">) => null;
|
|
21
|
+
}
|