@cube-dev/ui-kit 0.85.2 → 0.87.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 +28 -0
- package/es/_internal/hooks/index.js +1 -1
- package/es/_internal/hooks/use-chained-callback.js +1 -1
- package/es/_internal/hooks/use-debounced-value.js +1 -1
- package/es/_internal/hooks/use-deprecation-warning.js +1 -1
- package/es/_internal/hooks/use-effect-once.js +1 -1
- package/es/_internal/hooks/use-event.js +1 -1
- package/es/_internal/hooks/use-is-first-render.js +1 -1
- package/es/_internal/hooks/use-sync-ref.js +1 -1
- package/es/_internal/hooks/use-timer/index.js +1 -1
- package/es/_internal/hooks/use-timer/timer.js +1 -1
- package/es/_internal/hooks/use-timer/use-timer.js +1 -1
- package/es/_internal/hooks/use-update-effect.js +1 -1
- package/es/_internal/hooks/use-warn.js +1 -1
- package/es/_internal/index.js +1 -1
- package/es/components/Block.js +1 -1
- package/es/components/{Item.js → CollectionItem.js} +3 -3
- package/es/components/GlobalStyles.js +8 -6
- package/es/components/GridProvider.js +1 -1
- package/es/components/HiddenInput.js +1 -1
- package/es/components/OpenTrasition.js +1 -1
- package/es/components/Root.js +1 -1
- package/es/components/actions/Action/Action.js +1 -1
- package/es/components/actions/Button/Button.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/CommandMenu/CommandMenu.js +1 -1
- package/es/components/actions/CommandMenu/index.js +1 -1
- package/es/components/actions/CommandMenu/styled.js +3 -6
- package/es/components/actions/ItemAction/ItemAction.js +21 -3
- package/es/components/actions/ItemAction/index.js +1 -1
- package/es/components/actions/ItemActionContext.js +1 -1
- package/es/components/actions/ItemButton/ItemButton.js +10 -6
- package/es/components/actions/ItemButton/index.js +1 -1
- package/es/components/actions/Link/Link.js +1 -1
- package/es/components/actions/Menu/Menu.js +3 -3
- package/es/components/actions/Menu/MenuItem.js +5 -4
- package/es/components/actions/Menu/MenuSection.js +1 -1
- package/es/components/actions/Menu/MenuTrigger.js +1 -1
- package/es/components/actions/Menu/SubMenuTrigger.js +1 -1
- package/es/components/actions/Menu/SubmenuTriggerContext.js +1 -1
- package/es/components/actions/Menu/context.js +1 -1
- package/es/components/actions/Menu/index.js +1 -1
- package/es/components/actions/Menu/styled.js +4 -10
- package/es/components/actions/index.js +1 -1
- package/es/components/actions/use-action.js +1 -1
- package/es/components/actions/use-anchored-menu.js +1 -1
- package/es/components/actions/use-context-menu.js +1 -1
- package/es/components/content/ActiveZone/ActiveZone.js +1 -1
- package/es/components/content/Alert/Alert.js +1 -1
- package/es/components/content/Alert/index.js +1 -1
- package/es/components/content/Alert/types.js +1 -1
- package/es/components/content/Alert/use-alert.js +1 -1
- package/es/components/content/Avatar/Avatar.js +1 -1
- package/es/components/content/Badge/Badge.js +23 -24
- package/es/components/content/Card/Card.js +1 -1
- package/es/components/content/Content.js +1 -1
- package/es/components/content/CopyPasteBlock/CopyPasteBlock.js +1 -1
- package/es/components/content/CopyPasteBlock/index.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/HotKeys/HotKeys.js +1 -1
- package/es/components/content/HotKeys/index.js +1 -1
- package/es/components/content/{ItemBase/ItemBase.js → Item/Item.js} +33 -12
- package/es/components/content/{ItemBase → Item}/index.js +2 -2
- package/es/components/content/ItemBadge/ItemBadge.js +1 -1
- package/es/components/content/ItemBadge/index.js +1 -1
- package/es/components/content/List/SectionHeading.js +1 -1
- package/es/components/content/List/index.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/PrismCode/prismSetup.js +1 -1
- package/es/components/content/PrismDiffCode/PrismDiffCode.js +1 -1
- package/es/components/content/Result/Result.js +1 -1
- package/es/components/content/Skeleton/Skeleton.js +1 -1
- package/es/components/content/Tag/Tag.js +8 -47
- package/es/components/content/Text.js +1 -1
- package/es/components/content/Title.js +1 -1
- package/es/components/fields/Checkbox/Checkbox.js +1 -1
- package/es/components/fields/Checkbox/CheckboxGroup.js +1 -1
- package/es/components/fields/Checkbox/context.js +1 -1
- package/es/components/fields/Checkbox/index.js +1 -1
- package/es/components/fields/ComboBox/ComboBox.js +3 -4
- package/es/components/fields/ComboBox/index.js +1 -1
- package/es/components/fields/DatePicker/DateInput.js +1 -1
- package/es/components/fields/DatePicker/DateInputBase.js +1 -1
- package/es/components/fields/DatePicker/DatePicker.js +1 -1
- package/es/components/fields/DatePicker/DatePickerButton.js +1 -1
- package/es/components/fields/DatePicker/DatePickerElement.js +1 -1
- package/es/components/fields/DatePicker/DatePickerInput.js +1 -1
- package/es/components/fields/DatePicker/DatePickerSegment.js +1 -1
- package/es/components/fields/DatePicker/DateRangePicker.js +1 -1
- package/es/components/fields/DatePicker/DateRangeSeparatedPicker.js +1 -1
- package/es/components/fields/DatePicker/TimeInput.js +1 -1
- package/es/components/fields/DatePicker/index.js +1 -1
- package/es/components/fields/DatePicker/intl.js +1 -1
- package/es/components/fields/DatePicker/parseDate.js +1 -1
- package/es/components/fields/DatePicker/props.js +1 -1
- package/es/components/fields/DatePicker/types.js +1 -1
- package/es/components/fields/DatePicker/utils.js +1 -1
- package/es/components/fields/FileInput/FileInput.js +1 -1
- package/es/components/fields/FilterListBox/FilterListBox.js +3 -6
- package/es/components/fields/FilterListBox/index.js +1 -1
- package/es/components/fields/FilterPicker/FilterPicker.js +1 -1
- package/es/components/fields/FilterPicker/index.js +1 -1
- package/es/components/fields/Input/Input.js +1 -1
- package/es/components/fields/Input/index.js +1 -1
- package/es/components/fields/ListBox/ListBox.js +38 -42
- package/es/components/fields/ListBox/index.js +1 -1
- package/es/components/fields/NumberInput/NumberInput.js +1 -1
- package/es/components/fields/NumberInput/StepButton.js +1 -1
- package/es/components/fields/PasswordInput/PasswordInput.js +1 -1
- package/es/components/fields/Picker/Picker.js +1 -1
- package/es/components/fields/Picker/index.js +1 -1
- package/es/components/fields/RadioGroup/Radio.js +5 -7
- package/es/components/fields/RadioGroup/RadioGroup.js +1 -1
- package/es/components/fields/RadioGroup/context.js +1 -1
- package/es/components/fields/RadioGroup/index.js +1 -1
- package/es/components/fields/SearchInput/SearchInput.js +1 -1
- package/es/components/fields/SearchInput/index.js +1 -1
- package/es/components/fields/Select/Select.js +8 -7
- package/es/components/fields/Select/index.js +1 -1
- package/es/components/fields/Slider/Gradation.js +1 -1
- package/es/components/fields/Slider/Header.js +1 -1
- package/es/components/fields/Slider/RangeSlider.js +1 -1
- package/es/components/fields/Slider/Slider.js +1 -1
- package/es/components/fields/Slider/SliderBase.js +1 -1
- package/es/components/fields/Slider/SliderInput.js +1 -1
- package/es/components/fields/Slider/SliderThumb.js +1 -1
- package/es/components/fields/Slider/SliderTrack.js +1 -1
- package/es/components/fields/Slider/elements.js +1 -1
- package/es/components/fields/Slider/index.js +1 -1
- package/es/components/fields/Slider/types.js +1 -1
- package/es/components/fields/Switch/Switch.js +1 -1
- package/es/components/fields/Switch/index.js +1 -1
- package/es/components/fields/TextArea/TextArea.js +1 -1
- package/es/components/fields/TextArea/index.js +1 -1
- package/es/components/fields/TextInput/TextInput.js +1 -1
- package/es/components/fields/TextInput/TextInputBase.js +2 -1
- package/es/components/fields/TextInput/index.js +1 -1
- package/es/components/fields/TextInputMapper/TextInputMapper.js +1 -1
- package/es/components/fields/TextInputMapper/index.js +1 -1
- package/es/components/fields/index.js +1 -1
- package/es/components/form/FieldWrapper/FieldWrapper.js +12 -2
- package/es/components/form/FieldWrapper/extract-field-wrapper-props.js +1 -1
- package/es/components/form/FieldWrapper/index.js +1 -1
- package/es/components/form/FieldWrapper/types.js +1 -1
- package/es/components/form/Form/Field.js +1 -1
- package/es/components/form/Form/Form.js +6 -2
- package/es/components/form/Form/ResetButton/ResetButton.js +1 -1
- package/es/components/form/Form/ResetButton/index.js +1 -1
- package/es/components/form/Form/SubmitButton/SubmitButton.js +1 -1
- package/es/components/form/Form/SubmitButton/index.js +1 -1
- package/es/components/form/Form/SubmitError.js +1 -1
- package/es/components/form/Form/index.js +1 -1
- package/es/components/form/Form/types.js +1 -1
- package/es/components/form/Form/use-field/index.js +1 -1
- package/es/components/form/Form/use-field/types.js +1 -1
- package/es/components/form/Form/use-field/use-field-props.js +1 -1
- package/es/components/form/Form/use-field/use-field.js +1 -1
- package/es/components/form/Form/use-form.js +1 -1
- package/es/components/form/Form/validation.js +1 -1
- package/es/components/form/Label.js +2 -1
- package/es/components/form/index.js +1 -1
- package/es/components/form/wrapper.js +1 -1
- package/es/components/helpers/DisplayTransition/DisplayTransition.js +1 -1
- package/es/components/helpers/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/Panel.js +1 -1
- package/es/components/layout/Prefix.js +1 -1
- package/es/components/layout/ResizablePanel.js +1 -1
- package/es/components/layout/Space.js +1 -1
- package/es/components/layout/Suffix.js +1 -1
- package/es/components/navigation/LegacyTabs/LegacyTabs.js +1 -1
- package/es/components/organisms/FileTabs/FileTabs.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/Calendar/Calendar.js +3 -2
- package/es/components/other/Calendar/CalendarCell.js +1 -1
- package/es/components/other/Calendar/CalendarGrid.js +1 -1
- package/es/components/other/Calendar/RangeCalendar.js +3 -2
- package/es/components/other/CloudLogo/CloudLogo.js +1 -1
- package/es/components/overlays/AlertDialog/AlertDialog.js +2 -2
- 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 +7 -2
- 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/Dialog/use-dialog-container.js +1 -1
- package/es/components/overlays/Modal/Modal.js +1 -1
- package/es/components/overlays/Modal/OpenTransition.js +1 -1
- package/es/components/overlays/Modal/Overlay.js +1 -1
- package/es/components/overlays/Modal/Popover.js +1 -1
- package/es/components/overlays/Modal/Tray.js +1 -1
- package/es/components/overlays/Modal/Underlay.js +1 -1
- package/es/components/overlays/Modal/index.js +1 -1
- package/es/components/overlays/Modal/types.js +1 -1
- package/es/components/overlays/NewNotifications/Bar/FloatingNotification.js +1 -1
- package/es/components/overlays/NewNotifications/Bar/NotificationsBar.js +1 -1
- package/es/components/overlays/NewNotifications/Bar/TransitionComponent.js +1 -1
- package/es/components/overlays/NewNotifications/Bar/index.js +1 -1
- package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogContext.js +1 -1
- package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.js +1 -1
- package/es/components/overlays/NewNotifications/Dialog/index.js +1 -1
- package/es/components/overlays/NewNotifications/Notification.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationAction.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/NotificationView.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/index.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationView/types.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsContext.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsContext/index.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsList/index.js +1 -1
- package/es/components/overlays/NewNotifications/NotificationsList/types.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/index.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/types.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/use-notification-list-item.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/use-notifications-api.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/use-notifications-list.js +1 -1
- package/es/components/overlays/NewNotifications/hooks/use-notifications-observer.js +1 -1
- package/es/components/overlays/NewNotifications/index.js +1 -1
- package/es/components/overlays/NewNotifications/types.js +1 -1
- package/es/components/overlays/Notification/Notification.js +1 -1
- package/es/components/overlays/OverlayWrapper.js +1 -1
- package/es/components/overlays/Toasts/Toast.js +1 -1
- package/es/components/overlays/Toasts/index.js +1 -1
- package/es/components/overlays/Toasts/types.js +1 -1
- package/es/components/overlays/Toasts/use-toasts-api.js +1 -1
- package/es/components/overlays/Tooltip/Tooltip.js +1 -1
- package/es/components/overlays/Tooltip/TooltipProvider.js +1 -1
- package/es/components/overlays/Tooltip/TooltipTrigger.js +1 -1
- package/es/components/overlays/Tooltip/context.js +1 -1
- package/es/components/overlays/Tooltip/index.js +1 -1
- package/es/components/portal/Portal.js +1 -1
- package/es/components/portal/PortalProvider.js +1 -1
- package/es/components/portal/index.js +1 -1
- package/es/components/portal/types.js +1 -1
- package/es/components/portal/usePortal.js +1 -1
- package/es/components/shared/InvalidIcon.js +1 -1
- package/es/components/shared/ValidIcon.js +1 -1
- package/es/components/status/LoadingAnimation/LoadingAnimation.js +1 -1
- package/es/components/status/LoadingAnimation/index.js +1 -1
- package/es/components/status/Spin/Cube.js +1 -1
- package/es/components/status/Spin/InternalSpinner.js +1 -1
- package/es/components/status/Spin/Spin.js +1 -1
- package/es/components/status/Spin/SpinsContainer.js +1 -1
- package/es/components/status/Spin/index.js +1 -1
- package/es/components/status/Spin/types.js +1 -1
- package/es/components/status/index.js +1 -1
- package/es/data/item-themes.js +9 -8
- package/es/data/themes.js +1 -1
- package/es/icons/AdjustmentsHorizontalIcon.js +1 -1
- package/es/icons/AdjustmentsIcon.js +1 -1
- package/es/icons/AiIcon.js +1 -1
- package/es/icons/AreaChartIcon.js +1 -1
- package/es/icons/BackwardIcon.js +1 -1
- package/es/icons/BarChartIcon.js +1 -1
- package/es/icons/BellFilledIcon.js +1 -1
- package/es/icons/BellIcon.js +1 -1
- package/es/icons/BooleanIcon.js +2 -2
- package/es/icons/CalendarEditIcon.js +2 -2
- package/es/icons/CalendarIcon.js +2 -2
- package/es/icons/CaretDownIcon.js +1 -1
- package/es/icons/CaretUpIcon.js +1 -1
- package/es/icons/ChartAreaStackedIcon.js +1 -1
- package/es/icons/ChartAreaStackedPercentageIcon.js +1 -1
- package/es/icons/ChartBarGroupedHorizontalIcon.js +1 -1
- package/es/icons/ChartBarGroupedIcon.js +1 -1
- package/es/icons/ChartBarHorizontalIcon.js +1 -1
- package/es/icons/ChartBarLineIcon.js +1 -1
- package/es/icons/ChartBarStackedHorizontalIcon.js +1 -1
- package/es/icons/ChartBarStackedIcon.js +1 -1
- package/es/icons/ChartBarStackedPercentageHorizontalIcon.js +1 -1
- package/es/icons/ChartBarStackedPercentageIcon.js +1 -1
- package/es/icons/ChartBoxPlot2Icon.js +1 -1
- package/es/icons/ChartBoxPlotIcon.js +1 -1
- package/es/icons/ChartBubbleIcon.js +1 -1
- package/es/icons/ChartDonut2Icon.js +1 -1
- package/es/icons/ChartFunnelIcon.js +1 -1
- package/es/icons/ChartHeatmapIcon.js +1 -1
- package/es/icons/ChartKPIIcon.js +1 -1
- package/es/icons/ChartPie2Icon.js +1 -1
- package/es/icons/ChartScatterIcon.js +1 -1
- package/es/icons/CheckCircleFilledIcon.js +1 -1
- package/es/icons/CheckCircleIcon.js +1 -1
- package/es/icons/CheckIcon.js +1 -1
- package/es/icons/CircleFilledIcon.js +1 -1
- package/es/icons/ClearIcon.js +1 -1
- package/es/icons/CloseCircleFilledIcon.js +1 -1
- package/es/icons/CloseCircleIcon.js +1 -1
- package/es/icons/CloseIcon.js +1 -1
- package/es/icons/CodeIcon.js +1 -1
- package/es/icons/CopyIcon.js +1 -1
- package/es/icons/CountIcon.js +2 -2
- package/es/icons/CubeIcon.js +2 -2
- package/es/icons/CubePauseIcon.js +1 -1
- package/es/icons/CubePlayIcon.js +1 -1
- package/es/icons/CurrencyDollarIcon.js +1 -1
- package/es/icons/DangerIcon.js +1 -1
- package/es/icons/DashboardIcon.js +1 -1
- package/es/icons/DatabaseIcon.js +1 -1
- package/es/icons/DecimalDecreaseIcon.js +1 -1
- package/es/icons/DecimalIncreaseIcon.js +1 -1
- package/es/icons/DirectionIcon.js +1 -1
- package/es/icons/DonutIcon.js +1 -1
- package/es/icons/DownIcon.js +1 -1
- package/es/icons/EditIcon.js +1 -1
- package/es/icons/ExclamationCircleFilledIcon.js +1 -1
- package/es/icons/ExclamationCircleIcon.js +1 -1
- package/es/icons/ExclamationIcon.js +1 -1
- package/es/icons/EyeIcon.js +1 -1
- package/es/icons/EyeInvisibleIcon.js +1 -1
- package/es/icons/FilterIcon.js +1 -1
- package/es/icons/FolderFilledIcon.js +2 -3
- package/es/icons/FolderIcon.js +3 -4
- package/es/icons/FolderOpenFilledIcon.js +2 -2
- package/es/icons/FolderOpenIcon.js +2 -3
- package/es/icons/ForwardIcon.js +1 -1
- package/es/icons/HierarchyIcon.js +2 -2
- package/es/icons/HierarchyOpenIcon.js +12 -0
- package/es/icons/Icon.js +2 -8
- package/es/icons/InfoCircleIcon.js +1 -1
- package/es/icons/InfoIcon.js +1 -1
- package/es/icons/KeyIcon.js +1 -1
- package/es/icons/LeftIcon.js +1 -1
- package/es/icons/LineChartIcon.js +1 -1
- package/es/icons/LoadingIcon.js +3 -3
- package/es/icons/LockFilledIcon.js +1 -1
- package/es/icons/LockIcon.js +1 -1
- package/es/icons/MoreIcon.js +1 -1
- package/es/icons/NotAllowedIcon.js +1 -1
- package/es/icons/Number123Icon.js +1 -1
- package/es/icons/NumberIcon.js +1 -1
- package/es/icons/PauseCircleFilledIcon.js +2 -2
- package/es/icons/PauseCircleIcon.js +2 -2
- package/es/icons/PauseIcon.js +1 -1
- package/es/icons/PercentageIcon.js +1 -1
- package/es/icons/PieChartIcon.js +1 -1
- package/es/icons/PlayCircleIcon.js +1 -1
- package/es/icons/PlayIcon.js +1 -1
- package/es/icons/PlusIcon.js +1 -1
- package/es/icons/ProgressBarIcon.js +1 -1
- package/es/icons/ReloadIcon.js +1 -1
- package/es/icons/ReportIcon.js +1 -1
- package/es/icons/ReturnIcon.js +1 -1
- package/es/icons/RightIcon.js +1 -1
- package/es/icons/SchemeIcon.js +1 -1
- package/es/icons/SearchIcon.js +1 -1
- package/es/icons/SettingsIcon.js +1 -1
- package/es/icons/ShieldFilledIcon.js +1 -1
- package/es/icons/ShieldIcon.js +1 -1
- package/es/icons/SlashIcon.js +1 -1
- package/es/icons/SparklesIcon.js +1 -1
- package/es/icons/SqlIcon.js +1 -1
- package/es/icons/StatsIcon.js +2 -2
- package/es/icons/StopIcon.js +1 -1
- package/es/icons/StringIcon.js +3 -3
- package/es/icons/SwitchIcon.js +1 -1
- package/es/icons/TableIcon.js +1 -1
- package/es/icons/ThumbsDownIcon.js +1 -1
- package/es/icons/ThumbsUpIcon.js +1 -1
- package/es/icons/ThunderboltCrossedIcon.js +1 -1
- package/es/icons/ThunderboltFilledIcon.js +1 -1
- package/es/icons/ThunderboltIcon.js +1 -1
- package/es/icons/TimeIcon.js +1 -1
- package/es/icons/UnlockIcon.js +1 -1
- package/es/icons/UpIcon.js +1 -1
- package/es/icons/UserGroupIcon.js +2 -2
- package/es/icons/UserIcon.js +3 -3
- package/es/icons/UserLockIcon.js +2 -2
- package/es/icons/ViewIcon.js +2 -2
- package/es/icons/WarningFilledIcon.js +1 -1
- package/es/icons/WarningIcon.js +1 -1
- package/es/icons/add-new-icon.js +1 -1
- package/es/icons/index.js +2 -1
- package/es/icons/wrap-icon.js +1 -1
- package/es/index.js +5 -3
- package/es/provider.js +1 -1
- package/es/providers/TrackingProvider.js +1 -1
- package/es/providers/navigation.types.js +1 -1
- package/es/providers/navigationAdapter.default.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/Form.legacy-stories.js +1 -1
- package/es/stories/FormFieldArgs.js +1 -1
- package/es/stories/Layout.stories.js +1 -1
- package/es/stories/Tasty.stories.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/tasty/debug.js +1 -1
- package/es/tasty/index.js +1 -1
- package/es/tasty/injector/index.js +1 -1
- package/es/tasty/injector/injector.js +1 -1
- package/es/tasty/injector/sheet-manager.js +1 -1
- package/es/tasty/injector/types.js +1 -1
- package/es/tasty/parser/classify.js +1 -1
- package/es/tasty/parser/const.js +1 -1
- package/es/tasty/parser/lru.js +1 -1
- package/es/tasty/parser/parser.js +1 -1
- package/es/tasty/parser/tokenizer.js +1 -1
- package/es/tasty/parser/types.js +1 -1
- package/es/tasty/providers/BreakpointsProvider.js +1 -1
- package/es/tasty/styles/align.js +1 -1
- package/es/tasty/styles/border.js +1 -1
- package/es/tasty/styles/boxShadow.combinator.js +1 -1
- package/es/tasty/styles/color.js +1 -1
- package/es/tasty/styles/createStyle.js +1 -1
- package/es/tasty/styles/dimension.js +1 -1
- package/es/tasty/styles/display.js +1 -1
- package/es/tasty/styles/fade.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/inset.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/outline.js +1 -1
- package/es/tasty/styles/padding.js +1 -1
- package/es/tasty/styles/place.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/scrollbar.js +1 -1
- package/es/tasty/styles/shadow.js +1 -1
- package/es/tasty/styles/styledScrollbar.js +1 -1
- package/es/tasty/styles/transition.js +1 -1
- package/es/tasty/styles/types.js +1 -1
- package/es/tasty/styles/width.js +1 -1
- package/es/tasty/tasty.js +1 -1
- package/es/tasty/types.js +1 -1
- package/es/tasty/utils/cache-wrapper.js +1 -1
- package/es/tasty/utils/case-converter.js +1 -1
- package/es/tasty/utils/colors.js +1 -1
- package/es/tasty/utils/dotize.js +1 -1
- package/es/tasty/utils/filterBaseProps.js +1 -1
- package/es/tasty/utils/getDisplayName.js +1 -1
- package/es/tasty/utils/getModCombinations.js +1 -1
- package/es/tasty/utils/isDevEnv.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 +9 -5
- 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/tokens.js +1 -1
- package/es/utils/ResizeSensor.js +1 -1
- package/es/utils/index.js +1 -1
- package/es/utils/modules.js +1 -1
- package/es/utils/promise.js +1 -1
- package/es/utils/raf.js +1 -1
- package/es/utils/random.js +1 -1
- package/es/utils/range.js +1 -1
- package/es/utils/react/Slots.js +1 -1
- package/es/utils/react/chain.js +1 -1
- package/es/utils/react/forwardRefWithGenerics.js +1 -1
- package/es/utils/react/index.js +1 -1
- package/es/utils/react/interactions.js +1 -1
- package/es/utils/react/isTextOnly.js +1 -1
- package/es/utils/react/mapProps.js +1 -1
- package/es/utils/react/mergeProps.js +1 -1
- package/es/utils/react/nullableValue.js +1 -1
- package/es/utils/react/sharedStore.js +1 -1
- package/es/utils/react/useCombinedRefs.js +1 -1
- package/es/utils/react/useControlledFocusVisible.js +1 -1
- package/es/utils/react/useEventBus.js +1 -1
- package/es/utils/react/useId.js +1 -1
- package/es/utils/react/useIsDarwin.js +1 -1
- package/es/utils/react/useKeySymbols.js +1 -1
- package/es/utils/react/useLayoutEffect.js +1 -1
- package/es/utils/react/useQaProps.js +1 -1
- package/es/utils/react/useViewportSize.js +1 -1
- package/es/utils/react/wrapNodeIfPlain.js +1 -1
- package/es/utils/tree.js +1 -1
- package/es/utils/warnings.js +1 -1
- package/es/version.js +2 -2
- package/package.json +1 -1
- package/types/components/{Item.d.ts → CollectionItem.d.ts} +4 -4
- package/types/components/actions/ItemAction/ItemAction.d.ts +3 -1
- package/types/components/actions/ItemActionContext.d.ts +3 -3
- package/types/components/actions/ItemButton/ItemButton.d.ts +4 -4
- package/types/components/actions/Menu/Menu.d.ts +3 -3
- package/types/components/content/Badge/Badge.d.ts +5 -3
- package/types/components/content/{ItemBase/ItemBase.d.ts → Item/Item.d.ts} +9 -4
- package/types/components/content/{ItemBase → Item}/index.d.ts +1 -1
- package/types/components/content/Tag/Tag.d.ts +3 -4
- package/types/components/fields/ComboBox/ComboBox.d.ts +1 -1
- package/types/components/fields/FilterListBox/FilterListBox.d.ts +3 -3
- package/types/components/fields/FilterPicker/FilterPicker.d.ts +4 -4
- package/types/components/fields/ListBox/ListBox.d.ts +3 -3
- package/types/components/fields/Picker/Picker.d.ts +4 -4
- package/types/components/fields/RadioGroup/Radio.d.ts +10 -10
- package/types/components/fields/RadioGroup/RadioGroup.d.ts +3 -3
- package/types/components/fields/RadioGroup/context.d.ts +3 -3
- package/types/components/fields/Select/Select.d.ts +4 -4
- package/types/icons/HierarchyOpenIcon.d.ts +4 -0
- package/types/icons/index.d.ts +1 -0
- package/types/index.d.ts +5 -3
- package/types/shared/form.d.ts +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { CubeItemProps } from '../content/Item';
|
|
3
3
|
interface ItemActionContextValue {
|
|
4
|
-
type?:
|
|
4
|
+
type?: CubeItemProps['type'];
|
|
5
5
|
theme?: 'default' | 'danger' | 'success' | 'special' | (string & {});
|
|
6
6
|
}
|
|
7
7
|
export interface ItemActionProviderProps {
|
|
8
|
-
type?:
|
|
8
|
+
type?: CubeItemProps['type'];
|
|
9
9
|
theme?: 'default' | 'danger' | 'success' | 'special' | (string & {});
|
|
10
10
|
children: ReactNode;
|
|
11
11
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { Styles } from '../../../tasty';
|
|
3
|
-
import {
|
|
3
|
+
import { CubeItemProps } from '../../content/Item';
|
|
4
4
|
import { CubeItemActionProps } from '../ItemAction';
|
|
5
5
|
import { CubeUseActionProps } from '../use-action';
|
|
6
|
-
export interface CubeItemButtonProps extends Omit<
|
|
6
|
+
export interface CubeItemButtonProps extends Omit<CubeItemProps, 'size'>, Omit<CubeUseActionProps, 'as'> {
|
|
7
7
|
actions?: ReactNode;
|
|
8
|
-
size?: Omit<
|
|
8
|
+
size?: Omit<CubeItemProps['size'], 'inline'>;
|
|
9
9
|
wrapperStyles?: Styles;
|
|
10
10
|
showActionsOnHover?: boolean;
|
|
11
11
|
}
|
|
12
12
|
declare const _ItemButton: import("react").ForwardRefExoticComponent<Omit<CubeItemButtonProps, "ref"> & import("react").RefAttributes<import("@react-types/shared").FocusableRefValue<HTMLElement, HTMLElement>>> & {
|
|
13
13
|
Action: import("react").ForwardRefExoticComponent<Omit<CubeItemActionProps, "ref"> & import("react").RefAttributes<import("@react-types/shared").FocusableRefValue<HTMLElement, HTMLElement>>>;
|
|
14
|
-
Badge: import("react").ForwardRefExoticComponent<import("../../content/
|
|
14
|
+
Badge: import("react").ForwardRefExoticComponent<import("../../content/Item").CubeItemBadgeProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
15
15
|
};
|
|
16
16
|
export { _ItemButton as ItemButton };
|
|
17
17
|
export type { CubeItemButtonProps as ItemButtonProps, CubeItemActionProps as ItemActionProps, };
|
|
@@ -3,7 +3,7 @@ import React, { ReactElement, ReactNode } from 'react';
|
|
|
3
3
|
import { AriaMenuProps } from 'react-aria';
|
|
4
4
|
import { Section as BaseSection } from 'react-stately';
|
|
5
5
|
import { BasePropsWithoutChildren, ContainerStyleProps, Styles } from '../../../tasty';
|
|
6
|
-
import {
|
|
6
|
+
import { CollectionItem } from '../../CollectionItem';
|
|
7
7
|
import { MenuTrigger } from './MenuTrigger';
|
|
8
8
|
import { SubMenuTrigger } from './SubMenuTrigger';
|
|
9
9
|
export interface CubeMenuProps<T> extends BasePropsWithoutChildren, ContainerStyleProps, Omit<AriaMenuProps<T>, 'selectedKeys' | 'defaultSelectedKeys' | 'onSelectionChange'> {
|
|
@@ -39,12 +39,12 @@ export interface CubeMenuProps<T> extends BasePropsWithoutChildren, ContainerSty
|
|
|
39
39
|
type SectionComponent = typeof BaseSection;
|
|
40
40
|
declare const Section: SectionComponent;
|
|
41
41
|
declare const __Menu: (<T>(props: CubeMenuProps<T> & React.RefAttributes<HTMLUListElement>) => ReactElement) & {
|
|
42
|
-
Item: typeof
|
|
42
|
+
Item: typeof CollectionItem;
|
|
43
43
|
Section: typeof Section;
|
|
44
44
|
SubMenuTrigger: typeof SubMenuTrigger;
|
|
45
45
|
Trigger: typeof MenuTrigger;
|
|
46
46
|
} & {
|
|
47
|
-
Item: (<T>(props: import("../../
|
|
47
|
+
Item: (<T>(props: import("../../CollectionItem").CubeCollectionItemProps<T>) => ReactElement) & {
|
|
48
48
|
Action: React.ForwardRefExoticComponent<Omit<import("..").CubeItemActionProps, "ref"> & React.RefAttributes<import("@react-types/shared").FocusableRefValue<HTMLElement, HTMLElement>>>;
|
|
49
49
|
Badge: React.ForwardRefExoticComponent<import("../../..").CubeItemBadgeProps & React.RefAttributes<HTMLDivElement>>;
|
|
50
50
|
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import THEMES from '../../../data/themes';
|
|
2
|
-
import {
|
|
3
|
-
export interface CubeBadgeProps extends
|
|
2
|
+
import { CubeItemProps } from '../Item';
|
|
3
|
+
export interface CubeBadgeProps extends CubeItemProps {
|
|
4
4
|
type?: keyof typeof THEMES | string;
|
|
5
|
+
theme?: keyof typeof THEMES | string;
|
|
5
6
|
}
|
|
6
|
-
|
|
7
|
+
declare const _Badge: import("react").ForwardRefExoticComponent<CubeBadgeProps & import("react").RefAttributes<unknown>>;
|
|
8
|
+
export { _Badge as Badge };
|
|
@@ -3,7 +3,7 @@ import { OverlayProps } from 'react-aria';
|
|
|
3
3
|
import { ItemVariant } from '../../../data/item-themes';
|
|
4
4
|
import { BaseProps, ContainerStyleProps, Props } from '../../../tasty';
|
|
5
5
|
import { CubeTooltipProviderProps } from '../../overlays/Tooltip/TooltipProvider';
|
|
6
|
-
export interface
|
|
6
|
+
export interface CubeItemProps extends BaseProps, ContainerStyleProps {
|
|
7
7
|
icon?: ReactNode | 'checkbox';
|
|
8
8
|
rightIcon?: ReactNode;
|
|
9
9
|
prefix?: ReactNode;
|
|
@@ -72,7 +72,7 @@ export interface CubeItemBaseProps extends BaseProps, ContainerStyleProps {
|
|
|
72
72
|
labelRef?: RefObject<HTMLElement>;
|
|
73
73
|
}
|
|
74
74
|
export declare function useAutoTooltip({ tooltip, children, labelProps, isDynamicLabel, }: {
|
|
75
|
-
tooltip:
|
|
75
|
+
tooltip: CubeItemProps['tooltip'];
|
|
76
76
|
children: ReactNode;
|
|
77
77
|
labelProps?: Props;
|
|
78
78
|
isDynamicLabel?: boolean;
|
|
@@ -86,8 +86,13 @@ export declare function useAutoTooltip({ tooltip, children, labelProps, isDynami
|
|
|
86
86
|
hasTooltip: boolean;
|
|
87
87
|
renderWithTooltip: (renderElement: (tooltipTriggerProps?: HTMLAttributes<HTMLElement>, tooltipRef?: RefObject<HTMLElement>) => ReactNode, defaultTooltipPlacement: OverlayProps["placement"]) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
88
88
|
};
|
|
89
|
-
declare const
|
|
89
|
+
declare const _Item: import("react").ForwardRefExoticComponent<CubeItemProps & import("react").RefAttributes<HTMLElement>> & {
|
|
90
90
|
Action: import("react").ForwardRefExoticComponent<Omit<import("../../actions/ItemAction").CubeItemActionProps, "ref"> & import("react").RefAttributes<import("@react-types/shared").FocusableRefValue<HTMLElement, HTMLElement>>>;
|
|
91
91
|
Badge: import("react").ForwardRefExoticComponent<import("../ItemBadge").CubeItemBadgeProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
92
92
|
};
|
|
93
|
-
export {
|
|
93
|
+
export { _Item as Item };
|
|
94
|
+
/**
|
|
95
|
+
* @deprecated Use `Item` instead. This export will be removed in a future version.
|
|
96
|
+
*/
|
|
97
|
+
export { _Item as ItemBase };
|
|
98
|
+
export type { CubeItemProps as CubeItemBaseProps };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './Item';
|
|
2
2
|
export * from '../ItemBadge';
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
1
|
import THEMES from '../../../data/themes';
|
|
3
|
-
import {
|
|
4
|
-
|
|
2
|
+
import { Styles } from '../../../tasty';
|
|
3
|
+
import { CubeItemProps } from '../Item';
|
|
4
|
+
export interface CubeTagProps extends CubeItemProps {
|
|
5
5
|
type?: keyof typeof THEMES | string;
|
|
6
6
|
theme?: keyof typeof THEMES | string;
|
|
7
7
|
isClosable?: boolean;
|
|
8
8
|
onClose?: () => void;
|
|
9
9
|
closeButtonStyles?: Styles;
|
|
10
|
-
icon?: ReactNode;
|
|
11
10
|
}
|
|
12
11
|
declare const _Tag: import("react").ForwardRefExoticComponent<CubeTagProps & import("react").RefAttributes<unknown>>;
|
|
13
12
|
export { _Tag as Tag };
|
|
@@ -3,7 +3,7 @@ import React, { ForwardedRef, ReactElement, ReactNode, RefObject } from 'react';
|
|
|
3
3
|
import { Section as BaseSection } from 'react-stately';
|
|
4
4
|
import { FieldBaseProps } from '../../../shared';
|
|
5
5
|
import { BasePropsWithoutChildren, BaseStyleProps, ColorStyleProps, OuterStyleProps, Styles } from '../../../tasty';
|
|
6
|
-
import { Item } from '../../
|
|
6
|
+
import { CollectionItem as Item } from '../../CollectionItem';
|
|
7
7
|
type FilterFn = (textValue: string, inputValue: string) => boolean;
|
|
8
8
|
export type PopoverTriggerAction = 'focus' | 'input' | 'manual';
|
|
9
9
|
export interface CubeComboBoxProps<T> extends BasePropsWithoutChildren, BaseStyleProps, OuterStyleProps, ColorStyleProps, FieldBaseProps {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Key } from '@react-types/shared';
|
|
2
2
|
import { ForwardedRef, ReactElement, ReactNode, RefObject } from 'react';
|
|
3
3
|
import { Section as BaseSection, Item } from 'react-stately';
|
|
4
|
+
import { CubeCollectionItemProps } from 'src/components/CollectionItem';
|
|
4
5
|
import { Styles } from '../../../tasty';
|
|
5
|
-
import { CubeItemProps } from '../../Item';
|
|
6
6
|
import { CubeListBoxProps } from '../ListBox/ListBox';
|
|
7
7
|
import type { Collection, Node } from '@react-types/shared';
|
|
8
8
|
import type { FieldBaseProps } from '../../../shared';
|
|
@@ -49,12 +49,12 @@ export interface CubeFilterListBoxProps<T> extends Omit<CubeListBoxProps<T>, 'fi
|
|
|
49
49
|
/**
|
|
50
50
|
* Props to apply to existing custom values (values that are already selected but not in the predefined options).
|
|
51
51
|
*/
|
|
52
|
-
customValueProps?: Partial<
|
|
52
|
+
customValueProps?: Partial<CubeCollectionItemProps<T>>;
|
|
53
53
|
/**
|
|
54
54
|
* Props to apply to new custom values (values typed in the search input that are about to be added).
|
|
55
55
|
* These are merged with customValueProps for new custom values.
|
|
56
56
|
*/
|
|
57
|
-
newCustomValueProps?: Partial<
|
|
57
|
+
newCustomValueProps?: Partial<CubeCollectionItemProps<T>>;
|
|
58
58
|
/**
|
|
59
59
|
* Controlled search value. When provided, the search input becomes controlled.
|
|
60
60
|
* Use with `onSearchChange` to manage the search state externally.
|
|
@@ -2,11 +2,11 @@ import { ForwardedRef, ReactElement, ReactNode, RefObject } from 'react';
|
|
|
2
2
|
import { Section as BaseSection, ListState } from 'react-stately';
|
|
3
3
|
import { BasePropsWithoutChildren, BaseStyleProps, ColorStyleProps, OuterStyleProps, Styles } from '../../../tasty';
|
|
4
4
|
import { CubeItemButtonProps } from '../../actions';
|
|
5
|
-
import {
|
|
5
|
+
import { CubeItemProps } from '../../content/Item';
|
|
6
6
|
import { CubeFilterListBoxProps } from '../FilterListBox/FilterListBox';
|
|
7
7
|
import { ListBox } from '../ListBox';
|
|
8
8
|
import type { FieldBaseProps } from '../../../shared';
|
|
9
|
-
export interface CubeFilterPickerProps<T> extends Omit<CubeFilterListBoxProps<T>, 'size' | 'tooltip'>, Omit<
|
|
9
|
+
export interface CubeFilterPickerProps<T> extends Omit<CubeFilterListBoxProps<T>, 'size' | 'tooltip'>, Omit<CubeItemProps, 'children' | 'size'>, BasePropsWithoutChildren, BaseStyleProps, OuterStyleProps, ColorStyleProps, Omit<FieldBaseProps, 'tooltip'>, Pick<CubeItemButtonProps, 'type' | 'theme' | 'icon' | 'rightIcon' | 'prefix' | 'suffix' | 'hotkeys'> {
|
|
10
10
|
/** Placeholder text when no selection is made */
|
|
11
11
|
placeholder?: string;
|
|
12
12
|
/** Size of the picker component */
|
|
@@ -22,9 +22,9 @@ export interface CubeFilterPickerProps<T> extends Omit<CubeFilterListBoxProps<T>
|
|
|
22
22
|
/** Whether to flip the popover placement */
|
|
23
23
|
shouldFlip?: boolean;
|
|
24
24
|
/** Tooltip for the trigger button (separate from field tooltip) */
|
|
25
|
-
triggerTooltip?:
|
|
25
|
+
triggerTooltip?: CubeItemProps['tooltip'];
|
|
26
26
|
/** Description for the trigger button (separate from field description) */
|
|
27
|
-
triggerDescription?:
|
|
27
|
+
triggerDescription?: CubeItemProps['description'];
|
|
28
28
|
/**
|
|
29
29
|
* Custom renderer for the summary shown inside the trigger when there is a selection.
|
|
30
30
|
*
|
|
@@ -2,7 +2,7 @@ import { ForwardedRef, ReactElement, ReactNode, RefObject } from 'react';
|
|
|
2
2
|
import { AriaListBoxProps } from 'react-aria';
|
|
3
3
|
import { Section as BaseSection } from 'react-stately';
|
|
4
4
|
import { BasePropsWithoutChildren, Styles } from '../../../tasty';
|
|
5
|
-
import {
|
|
5
|
+
import { CollectionItem, CubeCollectionItemProps } from '../../CollectionItem';
|
|
6
6
|
import type { CollectionBase, Key } from '@react-types/shared';
|
|
7
7
|
import type { FieldBaseProps } from '../../../shared';
|
|
8
8
|
export interface CubeListBoxProps<T> extends AriaListBoxProps<T>, CollectionBase<T>, FieldBaseProps, BasePropsWithoutChildren {
|
|
@@ -95,7 +95,7 @@ export interface CubeListBoxProps<T> extends AriaListBoxProps<T>, CollectionBase
|
|
|
95
95
|
/**
|
|
96
96
|
* Props to apply to the "Select All" option.
|
|
97
97
|
*/
|
|
98
|
-
allValueProps?: Partial<
|
|
98
|
+
allValueProps?: Partial<CubeCollectionItemProps<T>>;
|
|
99
99
|
/**
|
|
100
100
|
* Filter function to apply to the collection nodes.
|
|
101
101
|
* Takes an iterable of nodes and returns a filtered iterable.
|
|
@@ -111,6 +111,6 @@ export interface CubeListBoxProps<T> extends AriaListBoxProps<T>, CollectionBase
|
|
|
111
111
|
export declare const ListBox: (<T>(props: CubeListBoxProps<T> & {
|
|
112
112
|
ref?: ForwardedRef<HTMLDivElement>;
|
|
113
113
|
}) => ReactElement) & {
|
|
114
|
-
Item: typeof
|
|
114
|
+
Item: typeof CollectionItem;
|
|
115
115
|
Section: typeof BaseSection;
|
|
116
116
|
};
|
|
@@ -2,10 +2,10 @@ import { ForwardedRef, MutableRefObject, ReactElement, ReactNode } from 'react';
|
|
|
2
2
|
import { Section as BaseSection, ListState } from 'react-stately';
|
|
3
3
|
import { BasePropsWithoutChildren, BaseStyleProps, ColorStyleProps, OuterStyleProps, Styles } from '../../../tasty';
|
|
4
4
|
import { CubeItemButtonProps } from '../../actions';
|
|
5
|
-
import {
|
|
5
|
+
import { CubeItemProps } from '../../content/Item';
|
|
6
6
|
import { CubeListBoxProps, ListBox } from '../ListBox/ListBox';
|
|
7
7
|
import type { FieldBaseProps } from '../../../shared';
|
|
8
|
-
export interface CubePickerProps<T> extends Omit<CubeListBoxProps<T>, 'size' | 'tooltip'>, Omit<
|
|
8
|
+
export interface CubePickerProps<T> extends Omit<CubeListBoxProps<T>, 'size' | 'tooltip'>, Omit<CubeItemProps, 'children' | 'size'>, BasePropsWithoutChildren, BaseStyleProps, OuterStyleProps, ColorStyleProps, Omit<FieldBaseProps, 'tooltip'>, Pick<CubeItemButtonProps, 'type' | 'theme' | 'icon' | 'rightIcon' | 'prefix' | 'suffix' | 'hotkeys'> {
|
|
9
9
|
/** Placeholder text when no selection is made */
|
|
10
10
|
placeholder?: string;
|
|
11
11
|
/** Size of the picker component */
|
|
@@ -21,9 +21,9 @@ export interface CubePickerProps<T> extends Omit<CubeListBoxProps<T>, 'size' | '
|
|
|
21
21
|
/** Whether to flip the popover placement */
|
|
22
22
|
shouldFlip?: boolean;
|
|
23
23
|
/** Tooltip for the trigger button (separate from field tooltip) */
|
|
24
|
-
triggerTooltip?:
|
|
24
|
+
triggerTooltip?: CubeItemProps['tooltip'];
|
|
25
25
|
/** Description for the trigger button (separate from field description) */
|
|
26
|
-
triggerDescription?:
|
|
26
|
+
triggerDescription?: CubeItemProps['description'];
|
|
27
27
|
/**
|
|
28
28
|
* Custom renderer for the summary shown inside the trigger when there is a selection.
|
|
29
29
|
*
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { useRadio } from 'react-aria';
|
|
2
2
|
import { FieldBaseProps } from '../../../shared';
|
|
3
3
|
import { BaseProps, OuterStyleProps } from '../../../tasty';
|
|
4
|
-
import {
|
|
4
|
+
import { CubeItemProps } from '../../content/Item/Item';
|
|
5
5
|
import { RadioGroup } from './RadioGroup';
|
|
6
6
|
import type { AriaRadioProps } from 'react-aria';
|
|
7
7
|
export { AriaRadioProps };
|
|
8
8
|
export { useRadio };
|
|
9
9
|
export interface CubeRadioProps extends BaseProps, AriaRadioProps, Omit<FieldBaseProps, 'tooltip'>, OuterStyleProps {
|
|
10
10
|
type?: 'button' | 'radio';
|
|
11
|
-
buttonType?: Exclude<
|
|
11
|
+
buttonType?: Exclude<CubeItemProps['type'], 'secondary'>;
|
|
12
12
|
value?: string;
|
|
13
13
|
isInvalid?: boolean;
|
|
14
|
-
size?: Omit<
|
|
15
|
-
icon?:
|
|
16
|
-
rightIcon?:
|
|
17
|
-
prefix?:
|
|
18
|
-
suffix?:
|
|
19
|
-
description?:
|
|
20
|
-
tooltip?:
|
|
21
|
-
hotkeys?:
|
|
14
|
+
size?: Omit<CubeItemProps['size'], 'inline'>;
|
|
15
|
+
icon?: CubeItemProps['icon'];
|
|
16
|
+
rightIcon?: CubeItemProps['rightIcon'];
|
|
17
|
+
prefix?: CubeItemProps['prefix'];
|
|
18
|
+
suffix?: CubeItemProps['suffix'];
|
|
19
|
+
description?: CubeItemProps['description'];
|
|
20
|
+
tooltip?: CubeItemProps['tooltip'];
|
|
21
|
+
hotkeys?: CubeItemProps['hotkeys'];
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
24
|
* Radio buttons allow users to select a single option from a list of mutually exclusive options.
|
|
@@ -2,7 +2,7 @@ import { AriaRadioGroupProps } from 'react-aria';
|
|
|
2
2
|
import { FieldBaseProps } from '../../../shared';
|
|
3
3
|
import { BaseProps, ContainerStyleProps, Styles } from '../../../tasty';
|
|
4
4
|
import { WithNullableValue } from '../../../utils/react/nullableValue';
|
|
5
|
-
import {
|
|
5
|
+
import { CubeItemProps } from '../../content/Item/Item';
|
|
6
6
|
export interface CubeRadioGroupProps extends BaseProps, Omit<AriaRadioGroupProps, 'errorMessage'>, ContainerStyleProps, FieldBaseProps {
|
|
7
7
|
groupStyles?: Styles;
|
|
8
8
|
orientation?: 'horizontal' | 'vertical';
|
|
@@ -10,8 +10,8 @@ export interface CubeRadioGroupProps extends BaseProps, Omit<AriaRadioGroupProps
|
|
|
10
10
|
defaultValue?: string;
|
|
11
11
|
onChange?: (value: string) => void;
|
|
12
12
|
isInvalid?: boolean;
|
|
13
|
-
size?: Omit<
|
|
14
|
-
buttonType?: Exclude<
|
|
13
|
+
size?: Omit<CubeItemProps['size'], 'inline'>;
|
|
14
|
+
buttonType?: Exclude<CubeItemProps['type'], 'secondary'>;
|
|
15
15
|
type?: 'radio' | 'button' | 'tabs';
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RadioGroupState } from 'react-stately';
|
|
2
|
-
import {
|
|
2
|
+
import { CubeItemProps } from '../../content/Item/Item';
|
|
3
3
|
interface CubeRadioGroupState {
|
|
4
4
|
name?: string;
|
|
5
5
|
state: RadioGroupState;
|
|
6
|
-
size?:
|
|
7
|
-
buttonType?:
|
|
6
|
+
size?: CubeItemProps['size'];
|
|
7
|
+
buttonType?: CubeItemProps['type'];
|
|
8
8
|
type?: 'radio' | 'button' | 'tabs';
|
|
9
9
|
isDisabled?: boolean;
|
|
10
10
|
}
|
|
@@ -5,7 +5,7 @@ import { Section as BaseSection, useSelectState } from 'react-stately';
|
|
|
5
5
|
import { CubeTooltipProviderProps } from 'src/components/overlays/Tooltip/TooltipProvider';
|
|
6
6
|
import { FieldBaseProps } from '../../../shared/index';
|
|
7
7
|
import { BasePropsWithoutChildren, BaseStyleProps, ColorStyleProps, OuterStyleProps, Props, Styles } from '../../../tasty/index';
|
|
8
|
-
import {
|
|
8
|
+
import { CollectionItem } from '../../CollectionItem';
|
|
9
9
|
export declare const ListBoxElement: React.ComponentType<Omit<Props, "variant"> & import("../../../tasty/tasty").WithVariant<import("../../../tasty/tasty").VariantMap>>;
|
|
10
10
|
export interface CubeSelectBaseProps<T> extends BasePropsWithoutChildren, AriaLabelingProps, BaseStyleProps, OuterStyleProps, ColorStyleProps, Omit<FieldBaseProps, 'tooltip'>, CollectionBase<T>, Omit<AriaSelectProps<T>, 'errorMessage'> {
|
|
11
11
|
icon?: ReactElement;
|
|
@@ -83,12 +83,12 @@ declare const SelectSectionComponent: SectionComponent;
|
|
|
83
83
|
declare const __Select: (<T extends object>(props: CubeSelectProps<object> & {
|
|
84
84
|
ref?: DOMRef<HTMLDivElement> | undefined;
|
|
85
85
|
}) => React.ReactElement<unknown, string | React.JSXElementConstructor<any>>) & {
|
|
86
|
-
Item: typeof
|
|
86
|
+
Item: typeof CollectionItem;
|
|
87
87
|
Section: typeof SelectSectionComponent;
|
|
88
88
|
} & {
|
|
89
|
-
Item: (<T>(props: import("../../
|
|
89
|
+
Item: (<T>(props: import("../../CollectionItem").CubeCollectionItemProps<T>) => ReactElement) & {
|
|
90
90
|
Action: React.ForwardRefExoticComponent<Omit<import("../../actions").CubeItemActionProps, "ref"> & React.RefAttributes<import("@react-types/shared").FocusableRefValue<HTMLElement, HTMLElement>>>;
|
|
91
|
-
Badge: React.ForwardRefExoticComponent<import("../../content/
|
|
91
|
+
Badge: React.ForwardRefExoticComponent<import("../../content/Item").CubeItemBadgeProps & React.RefAttributes<HTMLDivElement>>;
|
|
92
92
|
};
|
|
93
93
|
Section: any;
|
|
94
94
|
};
|
package/types/icons/index.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ export { FolderOpenFilledIcon } from './FolderOpenFilledIcon';
|
|
|
66
66
|
export { FolderOpenIcon } from './FolderOpenIcon';
|
|
67
67
|
export { ForwardIcon } from './ForwardIcon';
|
|
68
68
|
export { HierarchyIcon } from './HierarchyIcon';
|
|
69
|
+
export { HierarchyOpenIcon } from './HierarchyOpenIcon';
|
|
69
70
|
export { InfoCircleIcon } from './InfoCircleIcon';
|
|
70
71
|
export { InfoIcon } from './InfoIcon';
|
|
71
72
|
export { KeyIcon } from './KeyIcon';
|
package/types/index.d.ts
CHANGED
|
@@ -4,11 +4,13 @@ import { CubeTitleProps, Title } from './components/content/Title';
|
|
|
4
4
|
import './version';
|
|
5
5
|
export { Section } from 'react-stately';
|
|
6
6
|
export * from '@internationalized/date';
|
|
7
|
-
export {
|
|
7
|
+
export { CollectionItem } from './components/CollectionItem';
|
|
8
8
|
export { Block } from './components/Block';
|
|
9
9
|
export type { CubeBlockProps } from './components/Block';
|
|
10
|
-
export {
|
|
11
|
-
export type {
|
|
10
|
+
export { Item } from './components/content/Item/Item';
|
|
11
|
+
export type { CubeItemProps } from './components/content/Item/Item';
|
|
12
|
+
export { ItemBase } from './components/content/Item/Item';
|
|
13
|
+
export type { CubeItemBaseProps } from './components/content/Item/Item';
|
|
12
14
|
export { ItemBadge } from './components/content/ItemBadge/ItemBadge';
|
|
13
15
|
export type { CubeItemBadgeProps } from './components/content/ItemBadge/ItemBadge';
|
|
14
16
|
export { ActiveZone } from './components/content/ActiveZone/ActiveZone';
|
package/types/shared/form.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export interface ValidationResult {
|
|
|
10
10
|
validationDetails: ValidityState;
|
|
11
11
|
}
|
|
12
12
|
/** Where to place label relative to input */
|
|
13
|
-
export type LabelPosition = 'side' | 'top';
|
|
13
|
+
export type LabelPosition = 'side' | 'top' | 'split';
|
|
14
14
|
/** The type of necessity indicator */
|
|
15
15
|
export type NecessityIndicator = 'icon' | 'label';
|
|
16
16
|
/** The validation state of the field */
|