@carbon/react 1.103.0 → 1.104.0-rc.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/.playwright/INTERNAL_AVT_REPORT_DO_NOT_USE.json +956 -956
- package/es/_virtual/_rolldown/runtime.js +25 -0
- package/es/components/AILabel/index.d.ts +29 -2
- package/es/components/AILabel/index.js +114 -169
- package/es/components/AISkeleton/AISkeletonIcon.js +23 -27
- package/es/components/AISkeleton/AISkeletonPlaceholder.js +19 -27
- package/es/components/AISkeleton/AISkeletonText.js +26 -39
- package/es/components/Accordion/Accordion.Skeleton.js +55 -79
- package/es/components/Accordion/Accordion.js +43 -61
- package/es/components/Accordion/AccordionItem.js +102 -156
- package/es/components/Accordion/AccordionProvider.js +18 -15
- package/es/components/AspectRatio/AspectRatio.js +41 -47
- package/es/components/BadgeIndicator/index.js +28 -33
- package/es/components/Breadcrumb/Breadcrumb.Skeleton.js +39 -50
- package/es/components/Breadcrumb/Breadcrumb.js +39 -51
- package/es/components/Breadcrumb/BreadcrumbItem.js +80 -83
- package/es/components/Button/Button.Skeleton.js +49 -58
- package/es/components/Button/Button.d.ts +1 -1
- package/es/components/Button/Button.js +146 -240
- package/es/components/Button/ButtonBase.js +82 -104
- package/es/components/Button/index.js +13 -6
- package/es/components/ButtonSet/ButtonSet.js +74 -98
- package/es/components/ButtonSet/index.js +12 -4
- package/es/components/ChatButton/ChatButton.Skeleton.js +27 -27
- package/es/components/ChatButton/ChatButton.js +64 -79
- package/es/components/Checkbox/Checkbox.Skeleton.js +26 -25
- package/es/components/Checkbox/Checkbox.js +116 -195
- package/es/components/Checkbox/index.js +13 -5
- package/es/components/CheckboxGroup/CheckboxGroup.js +100 -148
- package/es/components/ClassPrefix/index.js +21 -17
- package/es/components/CodeSnippet/CodeSnippet.Skeleton.js +45 -42
- package/es/components/CodeSnippet/CodeSnippet.js +210 -299
- package/es/components/ComboBox/ComboBox.js +621 -970
- package/es/components/ComboBox/index.js +12 -4
- package/es/components/ComboButton/index.js +172 -208
- package/es/components/ComposedModal/ComposedModal.js +311 -450
- package/es/components/ComposedModal/ComposedModalPresence.js +47 -42
- package/es/components/ComposedModal/ModalFooter.js +127 -207
- package/es/components/ComposedModal/ModalHeader.js +71 -101
- package/es/components/ComposedModal/useComposedModalState.js +21 -15
- package/es/components/ContainedList/ContainedList.js +67 -102
- package/es/components/ContainedList/ContainedListItem/ContainedListItem.js +49 -67
- package/es/components/ContainedList/ContainedListItem/index.js +12 -4
- package/es/components/ContainedList/index.js +15 -12
- package/es/components/ContentSwitcher/ContentSwitcher.js +108 -140
- package/es/components/ContextMenu/useContextMenu.js +41 -36
- package/es/components/Copy/Copy.js +97 -117
- package/es/components/Copy/index.js +12 -4
- package/es/components/CopyButton/CopyButton.js +81 -94
- package/es/components/CopyButton/index.js +12 -4
- package/es/components/DangerButton/DangerButton.js +11 -9
- package/es/components/DataTable/DataTable.d.ts +11 -11
- package/es/components/DataTable/DataTable.js +448 -630
- package/es/components/DataTable/Table.js +111 -156
- package/es/components/DataTable/TableActionList.js +14 -6
- package/es/components/DataTable/TableBatchAction.js +25 -34
- package/es/components/DataTable/TableBatchActions.js +78 -113
- package/es/components/DataTable/TableBody.js +26 -19
- package/es/components/DataTable/TableCell.js +31 -46
- package/es/components/DataTable/TableContainer.js +75 -82
- package/es/components/DataTable/TableContext.js +14 -6
- package/es/components/DataTable/TableDecoratorRow.js +30 -36
- package/es/components/DataTable/TableExpandHeader.js +53 -90
- package/es/components/DataTable/TableExpandRow.js +82 -119
- package/es/components/DataTable/TableExpandedRow.js +45 -51
- package/es/components/DataTable/TableHead.js +7 -5
- package/es/components/DataTable/TableHeader.js +138 -181
- package/es/components/DataTable/TableRow.d.ts +1 -1
- package/es/components/DataTable/TableRow.js +42 -76
- package/es/components/DataTable/TableSelectAll.js +42 -70
- package/es/components/DataTable/TableSelectRow.js +63 -98
- package/es/components/DataTable/TableSlugRow.js +35 -43
- package/es/components/DataTable/TableToolbar.js +33 -45
- package/es/components/DataTable/TableToolbarAction.js +25 -20
- package/es/components/DataTable/TableToolbarContent.js +14 -6
- package/es/components/DataTable/TableToolbarMenu.js +35 -46
- package/es/components/DataTable/TableToolbarSearch.js +97 -187
- package/es/components/DataTable/state/getDerivedStateFromProps.js +38 -43
- package/es/components/DataTable/state/sortStates.js +11 -9
- package/es/components/DataTable/state/sorting.js +53 -72
- package/es/components/DataTable/tools/cells.js +15 -7
- package/es/components/DataTable/tools/denormalize.js +27 -19
- package/es/components/DataTable/tools/filter.js +21 -22
- package/es/components/DataTable/tools/normalize.js +57 -72
- package/es/components/DataTable/tools/sorting.js +50 -71
- package/es/components/DataTableSkeleton/DataTableSkeleton.js +66 -94
- package/es/components/DatePicker/DatePicker.Skeleton.js +44 -51
- package/es/components/DatePicker/DatePicker.js +485 -752
- package/es/components/DatePicker/DatePickerLocales.js +75 -126
- package/es/components/DatePicker/index.js +13 -5
- package/es/components/DatePicker/plugins/appendToPlugin.js +31 -45
- package/es/components/DatePicker/plugins/fixEventsPlugin.js +127 -171
- package/es/components/DatePicker/plugins/rangePlugin.js +40 -48
- package/es/components/DatePicker/utils.js +11 -3
- package/es/components/DatePickerInput/DatePickerInput.js +179 -289
- package/es/components/DatePickerInput/index.js +12 -4
- package/es/components/Dialog/Dialog.js +303 -574
- package/es/components/Dialog/index.js +18 -2
- package/es/components/Dropdown/Dropdown.Skeleton.js +26 -38
- package/es/components/Dropdown/Dropdown.js +344 -535
- package/es/components/Dropdown/index.js +13 -5
- package/es/components/ErrorBoundary/ErrorBoundary.js +36 -58
- package/es/components/ErrorBoundary/ErrorBoundaryContext.js +14 -9
- package/es/components/ExpandableSearch/ExpandableSearch.js +60 -69
- package/es/components/ExpandableSearch/index.js +12 -4
- package/es/components/FeatureFlags/index.d.ts +11 -2
- package/es/components/FeatureFlags/index.js +79 -77
- package/es/components/FileUploader/FileUploader.Skeleton.js +35 -30
- package/es/components/FileUploader/FileUploader.js +269 -343
- package/es/components/FileUploader/FileUploaderButton.js +110 -160
- package/es/components/FileUploader/FileUploaderDropContainer.js +144 -221
- package/es/components/FileUploader/FileUploaderItem.js +138 -157
- package/es/components/FileUploader/Filename.d.ts +1 -1
- package/es/components/FileUploader/Filename.js +53 -72
- package/es/components/FluidComboBox/FluidComboBox.Skeleton.js +26 -28
- package/es/components/FluidComboBox/FluidComboBox.js +54 -105
- package/es/components/FluidDatePicker/FluidDatePicker.Skeleton.js +56 -53
- package/es/components/FluidDatePicker/FluidDatePicker.js +46 -68
- package/es/components/FluidDatePickerInput/FluidDatePickerInput.js +23 -16
- package/es/components/FluidDropdown/FluidDropdown.Skeleton.js +26 -28
- package/es/components/FluidDropdown/FluidDropdown.js +55 -111
- package/es/components/FluidForm/FluidForm.js +29 -31
- package/es/components/FluidForm/FormContext.js +12 -6
- package/es/components/FluidMultiSelect/FluidMultiSelect.Skeleton.js +26 -28
- package/es/components/FluidMultiSelect/FluidMultiSelect.js +67 -197
- package/es/components/FluidNumberInput/FluidNumberInput.Skeleton.js +27 -30
- package/es/components/FluidNumberInput/FluidNumberInput.js +63 -147
- package/es/components/FluidSearch/FluidSearch.Skeleton.js +27 -30
- package/es/components/FluidSearch/FluidSearch.js +41 -84
- package/es/components/FluidSelect/FluidSelect.Skeleton.js +26 -28
- package/es/components/FluidSelect/FluidSelect.js +40 -76
- package/es/components/FluidSelect/index.js +13 -5
- package/es/components/FluidTextArea/FluidTextArea.Skeleton.js +27 -30
- package/es/components/FluidTextArea/FluidTextArea.js +48 -112
- package/es/components/FluidTextInput/FluidPasswordInput.js +44 -99
- package/es/components/FluidTextInput/FluidTextInput.Skeleton.js +27 -30
- package/es/components/FluidTextInput/FluidTextInput.js +49 -104
- package/es/components/FluidTextInput/index.js +14 -6
- package/es/components/FluidTimePicker/FluidTimePicker.Skeleton.js +30 -33
- package/es/components/FluidTimePicker/FluidTimePicker.js +68 -115
- package/es/components/FluidTimePickerSelect/FluidTimePickerSelect.js +28 -47
- package/es/components/Form/Form.js +23 -25
- package/es/components/FormGroup/FormGroup.js +45 -67
- package/es/components/FormItem/FormItem.js +23 -25
- package/es/components/FormLabel/FormLabel.js +28 -34
- package/es/components/Grid/CSSGrid.d.ts +1 -1
- package/es/components/Grid/CSSGrid.js +85 -127
- package/es/components/Grid/Column.js +192 -324
- package/es/components/Grid/ColumnHang.js +28 -36
- package/es/components/Grid/FlexGrid.js +40 -60
- package/es/components/Grid/Grid.js +29 -42
- package/es/components/Grid/GridContext.js +36 -42
- package/es/components/Grid/Row.js +31 -49
- package/es/components/Heading/index.js +36 -51
- package/es/components/Icon/Icon.Skeleton.js +21 -21
- package/es/components/IconButton/index.js +117 -178
- package/es/components/IconIndicator/index.d.ts +1 -1
- package/es/components/IconIndicator/index.js +59 -60
- package/es/components/IdPrefix/index.js +21 -17
- package/es/components/InlineCheckbox/InlineCheckbox.js +69 -113
- package/es/components/InlineCheckbox/index.js +12 -4
- package/es/components/InlineLoading/InlineLoading.js +83 -100
- package/es/components/InlineLoading/index.js +12 -4
- package/es/components/Layer/LayerContext.js +12 -4
- package/es/components/Layer/LayerLevel.js +20 -4
- package/es/components/Layer/index.js +54 -66
- package/es/components/Layout/index.js +77 -109
- package/es/components/LayoutDirection/LayoutDirection.d.ts +1 -1
- package/es/components/LayoutDirection/LayoutDirection.js +33 -37
- package/es/components/LayoutDirection/LayoutDirectionContext.js +12 -6
- package/es/components/LayoutDirection/useLayoutDirection.js +15 -7
- package/es/components/Link/Link.js +63 -108
- package/es/components/Link/index.js +12 -4
- package/es/components/ListBox/ListBox.js +78 -126
- package/es/components/ListBox/ListBoxField.js +24 -43
- package/es/components/ListBox/ListBoxMenu.js +36 -42
- package/es/components/ListBox/ListBoxMenuIcon.js +39 -40
- package/es/components/ListBox/ListBoxMenuItem.js +67 -88
- package/es/components/ListBox/ListBoxPropTypes.js +17 -5
- package/es/components/ListBox/ListBoxSelection.js +71 -96
- package/es/components/ListBox/index.js +16 -14
- package/es/components/ListBox/next/ListBoxSelection.js +79 -117
- package/es/components/ListBox/next/ListBoxTrigger.js +44 -48
- package/es/components/ListItem/ListItem.js +25 -28
- package/es/components/Loading/Loading.js +64 -73
- package/es/components/Loading/index.js +12 -4
- package/es/components/Menu/Menu.js +220 -363
- package/es/components/Menu/MenuContext.d.ts +1 -1
- package/es/components/Menu/MenuContext.js +41 -38
- package/es/components/Menu/MenuItem.js +282 -413
- package/es/components/MenuButton/index.js +134 -195
- package/es/components/Modal/Modal.js +500 -660
- package/es/components/Modal/ModalPresence.js +39 -37
- package/es/components/Modal/index.js +13 -5
- package/es/components/ModalWrapper/ModalWrapper.d.ts +2 -2
- package/es/components/ModalWrapper/ModalWrapper.js +106 -130
- package/es/components/MultiSelect/FilterableMultiSelect.js +605 -918
- package/es/components/MultiSelect/MultiSelect.js +454 -716
- package/es/components/MultiSelect/MultiSelectPropTypes.js +13 -30
- package/es/components/MultiSelect/filter.js +14 -9
- package/es/components/MultiSelect/tools/sorting.js +21 -34
- package/es/components/Notification/Notification.js +508 -785
- package/es/components/NumberInput/NumberFormatPropTypes.js +69 -30
- package/es/components/NumberInput/NumberInput.Skeleton.js +29 -33
- package/es/components/NumberInput/NumberInput.js +567 -947
- package/es/components/OrderedList/OrderedList.js +31 -44
- package/es/components/OverflowMenu/OverflowMenu.js +335 -450
- package/es/components/OverflowMenu/index.js +25 -16
- package/es/components/OverflowMenu/next/index.js +154 -186
- package/es/components/OverflowMenuItem/OverflowMenuItem.js +100 -160
- package/es/components/OverflowMenuItem/index.js +12 -4
- package/es/components/OverflowMenuV2/index.js +15 -13
- package/es/components/PageHeader/PageHeader.js +297 -442
- package/es/components/PageHeader/index.js +24 -2
- package/es/components/Pagination/Pagination.Skeleton.js +34 -35
- package/es/components/Pagination/Pagination.d.ts +1 -1
- package/es/components/Pagination/Pagination.js +251 -356
- package/es/components/Pagination/experimental/PageSelector.js +38 -54
- package/es/components/Pagination/experimental/Pagination-story.d.ts +114 -0
- package/es/components/Pagination/experimental/Pagination.js +144 -196
- package/es/components/PaginationNav/PaginationNav.js +320 -426
- package/es/components/Popover/index.js +318 -437
- package/es/components/PrimaryButton/PrimaryButton.js +11 -9
- package/es/components/ProgressBar/ProgressBar.js +117 -143
- package/es/components/ProgressIndicator/ProgressIndicator.Skeleton.js +42 -38
- package/es/components/ProgressIndicator/ProgressIndicator.js +146 -243
- package/es/components/RadioButton/RadioButton.Skeleton.js +23 -25
- package/es/components/RadioButton/RadioButton.js +101 -174
- package/es/components/RadioButton/index.js +12 -4
- package/es/components/RadioButtonGroup/RadioButtonGroup.js +135 -207
- package/es/components/RadioTile/RadioTile.js +104 -168
- package/es/components/RadioTile/index.js +12 -4
- package/es/components/Search/Search.Skeleton.js +28 -33
- package/es/components/Search/Search.js +182 -278
- package/es/components/Search/index.js +13 -5
- package/es/components/Search/utils.js +11 -3
- package/es/components/SecondaryButton/SecondaryButton.js +11 -9
- package/es/components/Select/Select.Skeleton.js +27 -30
- package/es/components/Select/Select.js +178 -257
- package/es/components/Select/index.js +13 -5
- package/es/components/SelectItem/SelectItem.js +33 -48
- package/es/components/SelectItem/index.js +12 -4
- package/es/components/SelectItemGroup/SelectItemGroup.js +27 -37
- package/es/components/ShapeIndicator/index.d.ts +1 -1
- package/es/components/ShapeIndicator/index.js +74 -80
- package/es/components/SkeletonIcon/SkeletonIcon.js +21 -24
- package/es/components/SkeletonPlaceholder/SkeletonPlaceholder.js +15 -24
- package/es/components/SkeletonText/SkeletonText.js +67 -81
- package/es/components/SkeletonText/index.js +12 -4
- package/es/components/Slider/Slider.Skeleton.js +68 -91
- package/es/components/Slider/Slider.js +864 -1315
- package/es/components/Slider/SliderHandles.js +73 -66
- package/es/components/Stack/HStack.js +19 -11
- package/es/components/Stack/Stack.js +56 -80
- package/es/components/Stack/VStack.js +19 -11
- package/es/components/StructuredList/StructuredList.Skeleton.js +55 -48
- package/es/components/StructuredList/StructuredList.js +178 -317
- package/es/components/Switch/IconSwitch.js +99 -145
- package/es/components/Switch/Switch.js +66 -99
- package/es/components/TabContent/TabContent.js +28 -34
- package/es/components/Tabs/Tabs.Skeleton.js +41 -36
- package/es/components/Tabs/Tabs.js +732 -1149
- package/es/components/Tabs/usePressable.js +97 -112
- package/es/components/Tag/DismissibleTag.js +119 -156
- package/es/components/Tag/OperationalTag.js +91 -111
- package/es/components/Tag/SelectableTag.js +94 -129
- package/es/components/Tag/Tag.Skeleton.js +26 -30
- package/es/components/Tag/Tag.js +152 -200
- package/es/components/Tag/isEllipsisActive.js +13 -8
- package/es/components/Text/Text.js +66 -79
- package/es/components/Text/TextDirection.js +36 -37
- package/es/components/Text/TextDirectionContext.js +14 -8
- package/es/components/Text/createTextComponent.js +21 -20
- package/es/components/TextArea/TextArea.Skeleton.js +25 -29
- package/es/components/TextArea/TextArea.js +315 -422
- package/es/components/TextArea/index.js +13 -5
- package/es/components/TextInput/ControlledPasswordInput.js +133 -198
- package/es/components/TextInput/PasswordInput.js +196 -303
- package/es/components/TextInput/TextInput.Skeleton.js +24 -28
- package/es/components/TextInput/TextInput.js +219 -317
- package/es/components/TextInput/index.js +13 -5
- package/es/components/TextInput/util.js +21 -25
- package/es/components/Theme/index.js +79 -95
- package/es/components/Tile/Tile.js +394 -593
- package/es/components/TileGroup/TileGroup.js +70 -111
- package/es/components/TimePicker/TimePicker.d.ts +1 -1
- package/es/components/TimePicker/TimePicker.js +148 -247
- package/es/components/TimePickerSelect/TimePickerSelect.js +43 -58
- package/es/components/Toggle/Toggle.Skeleton.js +24 -22
- package/es/components/Toggle/Toggle.js +102 -171
- package/es/components/ToggleSmall/ToggleSmall.Skeleton.js +46 -51
- package/es/components/Toggletip/index.d.ts +2 -2
- package/es/components/Toggletip/index.js +170 -256
- package/es/components/Tooltip/DefinitionTooltip.js +98 -138
- package/es/components/Tooltip/Tooltip.js +188 -263
- package/es/components/TreeView/TreeContext.js +13 -5
- package/es/components/TreeView/TreeNode.js +361 -500
- package/es/components/TreeView/TreeView.js +164 -237
- package/es/components/UIShell/Content.js +23 -30
- package/es/components/UIShell/Header.js +25 -29
- package/es/components/UIShell/HeaderContainer.js +31 -40
- package/es/components/UIShell/HeaderGlobalAction.js +65 -90
- package/es/components/UIShell/HeaderGlobalBar.js +16 -9
- package/es/components/UIShell/HeaderMenu.js +141 -215
- package/es/components/UIShell/HeaderMenuButton.js +43 -66
- package/es/components/UIShell/HeaderMenuItem.js +49 -76
- package/es/components/UIShell/HeaderName.js +32 -44
- package/es/components/UIShell/HeaderNavigation.js +32 -37
- package/es/components/UIShell/HeaderPanel.js +74 -97
- package/es/components/UIShell/HeaderSideNavItems.js +27 -33
- package/es/components/UIShell/Link.js +29 -50
- package/es/components/UIShell/SideNav.js +132 -241
- package/es/components/UIShell/SideNavContext.js +21 -15
- package/es/components/UIShell/SideNavDetails.js +29 -34
- package/es/components/UIShell/SideNavDivider.js +21 -21
- package/es/components/UIShell/SideNavFooter.js +43 -52
- package/es/components/UIShell/SideNavHeader.js +26 -35
- package/es/components/UIShell/SideNavIcon.js +28 -33
- package/es/components/UIShell/SideNavItem.js +28 -33
- package/es/components/UIShell/SideNavItems.js +31 -40
- package/es/components/UIShell/SideNavLink.js +52 -79
- package/es/components/UIShell/SideNavLinkText.js +24 -25
- package/es/components/UIShell/SideNavMenu.js +102 -143
- package/es/components/UIShell/SideNavMenuItem.js +40 -52
- package/es/components/UIShell/SideNavSwitcher.js +59 -68
- package/es/components/UIShell/SkipToContent.js +28 -36
- package/es/components/UIShell/Switcher.js +69 -99
- package/es/components/UIShell/SwitcherDivider.js +16 -24
- package/es/components/UIShell/SwitcherItem.js +74 -114
- package/es/components/UnorderedList/UnorderedList.js +28 -37
- package/es/feature-flags.js +19 -10
- package/es/index.js +249 -242
- package/es/internal/FloatingMenu.js +246 -292
- package/es/internal/OptimizedResize.js +35 -46
- package/es/internal/Selection.js +99 -132
- package/es/internal/clamp.js +12 -4
- package/es/internal/defaultItemToString.js +15 -9
- package/es/internal/deprecateFieldOnObject.js +22 -14
- package/es/internal/environment.js +15 -7
- package/es/internal/getAnnouncement.js +16 -13
- package/es/internal/keyboard/keys.js +48 -48
- package/es/internal/keyboard/match.js +25 -42
- package/es/internal/keyboard/navigation.js +22 -27
- package/es/internal/noopFn.js +10 -2
- package/es/internal/useAttachedMenu.js +43 -51
- package/es/internal/useControllableState.js +43 -48
- package/es/internal/useDelayedState.js +30 -35
- package/es/internal/useEvent.js +39 -35
- package/es/internal/useId.js +51 -87
- package/es/internal/useIdPrefix.js +13 -5
- package/es/internal/useIsomorphicEffect.js +12 -4
- package/es/internal/useMatchMedia.js +29 -21
- package/es/internal/useMergedRefs.js +26 -22
- package/es/internal/useNoInteractiveChildren.js +70 -99
- package/es/internal/useNormalizedInputProps.js +47 -51
- package/es/internal/useOutsideClick.js +21 -24
- package/es/internal/useOverflowItems.js +89 -90
- package/es/internal/usePrefix.js +13 -5
- package/es/internal/usePresence.js +51 -54
- package/es/internal/usePresenceContext.js +35 -35
- package/es/internal/usePreviousValue.js +26 -18
- package/es/internal/useResizeObserver.js +57 -66
- package/es/internal/useSavedCallback.js +24 -17
- package/es/internal/utils.js +17 -9
- package/es/internal/warning.js +17 -22
- package/es/internal/wrapFocus.js +77 -98
- package/es/prop-types/AriaPropTypes.js +14 -6
- package/es/prop-types/deprecate.js +30 -27
- package/es/prop-types/deprecateComponent.js +17 -8
- package/es/prop-types/deprecateValuesWithin.js +18 -21
- package/es/prop-types/isRequiredOneOf.js +21 -24
- package/es/prop-types/requiredIfGivenPropIsTruthy.js +14 -14
- package/es/tools/events.js +17 -21
- package/es/tools/mapPopoverAlign.js +19 -18
- package/es/tools/mergeRefs.js +14 -17
- package/es/tools/setupGetInstanceId.js +16 -8
- package/es/tools/toggleClass.js +17 -9
- package/es/tools/wrapComponent.js +34 -39
- package/icons/index.d.ts +2 -1
- package/icons/index.esm.js +2 -2
- package/icons/index.js +7 -10
- package/lib/_virtual/_rolldown/runtime.js +50 -0
- package/lib/components/AILabel/index.d.ts +29 -2
- package/lib/components/AILabel/index.js +118 -171
- package/lib/components/AISkeleton/AISkeletonIcon.js +27 -31
- package/lib/components/AISkeleton/AISkeletonPlaceholder.js +29 -31
- package/lib/components/AISkeleton/AISkeletonText.js +30 -43
- package/lib/components/Accordion/Accordion.Skeleton.js +59 -84
- package/lib/components/Accordion/Accordion.js +47 -65
- package/lib/components/Accordion/AccordionItem.js +106 -160
- package/lib/components/Accordion/AccordionProvider.js +20 -17
- package/lib/components/AspectRatio/AspectRatio.js +45 -51
- package/lib/components/BadgeIndicator/index.js +33 -39
- package/lib/components/Breadcrumb/Breadcrumb.Skeleton.js +43 -55
- package/lib/components/Breadcrumb/Breadcrumb.js +43 -55
- package/lib/components/Breadcrumb/BreadcrumbItem.js +84 -87
- package/lib/components/Button/Button.Skeleton.js +53 -63
- package/lib/components/Button/Button.d.ts +1 -1
- package/lib/components/Button/Button.js +149 -244
- package/lib/components/Button/ButtonBase.js +85 -108
- package/lib/components/Button/index.js +13 -15
- package/lib/components/ButtonSet/ButtonSet.js +78 -102
- package/lib/components/ButtonSet/index.js +12 -9
- package/lib/components/ChatButton/ChatButton.Skeleton.js +31 -31
- package/lib/components/ChatButton/ChatButton.js +68 -83
- package/lib/components/Checkbox/Checkbox.Skeleton.js +30 -30
- package/lib/components/Checkbox/Checkbox.js +119 -198
- package/lib/components/Checkbox/index.js +13 -11
- package/lib/components/CheckboxGroup/CheckboxGroup.js +104 -152
- package/lib/components/ClassPrefix/index.js +24 -19
- package/lib/components/CodeSnippet/CodeSnippet.Skeleton.js +49 -47
- package/lib/components/CodeSnippet/CodeSnippet.js +215 -303
- package/lib/components/ComboBox/ComboBox.js +626 -974
- package/lib/components/ComboBox/index.js +12 -9
- package/lib/components/ComboButton/index.js +176 -210
- package/lib/components/ComposedModal/ComposedModal.js +315 -454
- package/lib/components/ComposedModal/ComposedModalPresence.js +49 -44
- package/lib/components/ComposedModal/ModalFooter.js +131 -209
- package/lib/components/ComposedModal/ModalHeader.js +75 -103
- package/lib/components/ComposedModal/useComposedModalState.js +22 -17
- package/lib/components/ContainedList/ContainedList.js +77 -106
- package/lib/components/ContainedList/ContainedListItem/ContainedListItem.js +59 -71
- package/lib/components/ContainedList/ContainedListItem/index.js +12 -9
- package/lib/components/ContainedList/index.js +18 -15
- package/lib/components/ContentSwitcher/ContentSwitcher.js +112 -142
- package/lib/components/ContextMenu/useContextMenu.js +42 -40
- package/lib/components/Copy/Copy.js +101 -121
- package/lib/components/Copy/index.js +12 -9
- package/lib/components/CopyButton/CopyButton.js +85 -98
- package/lib/components/CopyButton/index.js +12 -9
- package/lib/components/DangerButton/DangerButton.js +19 -13
- package/lib/components/DataTable/DataTable.d.ts +11 -11
- package/lib/components/DataTable/DataTable.js +474 -655
- package/lib/components/DataTable/Table.js +115 -161
- package/lib/components/DataTable/TableActionList.js +15 -11
- package/lib/components/DataTable/TableBatchAction.js +28 -38
- package/lib/components/DataTable/TableBatchActions.js +82 -117
- package/lib/components/DataTable/TableBody.js +29 -23
- package/lib/components/DataTable/TableCell.js +35 -50
- package/lib/components/DataTable/TableContainer.js +79 -86
- package/lib/components/DataTable/TableContext.js +15 -8
- package/lib/components/DataTable/TableDecoratorRow.js +34 -40
- package/lib/components/DataTable/TableExpandHeader.js +57 -94
- package/lib/components/DataTable/TableExpandRow.js +86 -123
- package/lib/components/DataTable/TableExpandedRow.js +49 -55
- package/lib/components/DataTable/TableHead.js +8 -10
- package/lib/components/DataTable/TableHeader.js +142 -185
- package/lib/components/DataTable/TableRow.d.ts +1 -1
- package/lib/components/DataTable/TableRow.js +46 -80
- package/lib/components/DataTable/TableSelectAll.js +46 -74
- package/lib/components/DataTable/TableSelectRow.js +67 -102
- package/lib/components/DataTable/TableSlugRow.js +39 -47
- package/lib/components/DataTable/TableToolbar.js +37 -49
- package/lib/components/DataTable/TableToolbarAction.js +28 -24
- package/lib/components/DataTable/TableToolbarContent.js +15 -11
- package/lib/components/DataTable/TableToolbarMenu.js +39 -50
- package/lib/components/DataTable/TableToolbarSearch.js +101 -191
- package/lib/components/DataTable/state/getDerivedStateFromProps.js +38 -47
- package/lib/components/DataTable/state/sortStates.js +11 -10
- package/lib/components/DataTable/state/sorting.js +54 -76
- package/lib/components/DataTable/tools/cells.js +15 -8
- package/lib/components/DataTable/tools/denormalize.js +27 -22
- package/lib/components/DataTable/tools/filter.js +21 -23
- package/lib/components/DataTable/tools/normalize.js +57 -76
- package/lib/components/DataTable/tools/sorting.js +50 -75
- package/lib/components/DataTableSkeleton/DataTableSkeleton.js +70 -98
- package/lib/components/DatePicker/DatePicker.Skeleton.js +48 -56
- package/lib/components/DatePicker/DatePicker.js +491 -756
- package/lib/components/DatePicker/DatePickerLocales.js +75 -127
- package/lib/components/DatePicker/index.js +13 -11
- package/lib/components/DatePicker/plugins/appendToPlugin.js +31 -46
- package/lib/components/DatePicker/plugins/fixEventsPlugin.js +127 -175
- package/lib/components/DatePicker/plugins/rangePlugin.js +42 -50
- package/lib/components/DatePicker/utils.js +11 -4
- package/lib/components/DatePickerInput/DatePickerInput.js +183 -293
- package/lib/components/DatePickerInput/index.js +12 -9
- package/lib/components/Dialog/Dialog.js +307 -576
- package/lib/components/Dialog/index.js +21 -13
- package/lib/components/Dropdown/Dropdown.Skeleton.js +30 -43
- package/lib/components/Dropdown/Dropdown.js +348 -539
- package/lib/components/Dropdown/index.js +13 -11
- package/lib/components/ErrorBoundary/ErrorBoundary.js +39 -62
- package/lib/components/ErrorBoundary/ErrorBoundaryContext.js +15 -11
- package/lib/components/ExpandableSearch/ExpandableSearch.js +63 -73
- package/lib/components/ExpandableSearch/index.js +12 -9
- package/lib/components/FeatureFlags/index.d.ts +11 -2
- package/lib/components/FeatureFlags/index.js +82 -79
- package/lib/components/FileUploader/FileUploader.Skeleton.js +39 -35
- package/lib/components/FileUploader/FileUploader.js +273 -347
- package/lib/components/FileUploader/FileUploaderButton.js +114 -164
- package/lib/components/FileUploader/FileUploaderDropContainer.js +148 -225
- package/lib/components/FileUploader/FileUploaderItem.js +142 -161
- package/lib/components/FileUploader/Filename.d.ts +1 -1
- package/lib/components/FileUploader/Filename.js +56 -76
- package/lib/components/FluidComboBox/FluidComboBox.Skeleton.js +30 -32
- package/lib/components/FluidComboBox/FluidComboBox.js +58 -109
- package/lib/components/FluidDatePicker/FluidDatePicker.Skeleton.js +60 -57
- package/lib/components/FluidDatePicker/FluidDatePicker.js +50 -72
- package/lib/components/FluidDatePickerInput/FluidDatePickerInput.js +25 -20
- package/lib/components/FluidDropdown/FluidDropdown.Skeleton.js +30 -32
- package/lib/components/FluidDropdown/FluidDropdown.js +59 -115
- package/lib/components/FluidForm/FluidForm.js +33 -35
- package/lib/components/FluidForm/FormContext.js +13 -8
- package/lib/components/FluidMultiSelect/FluidMultiSelect.Skeleton.js +30 -32
- package/lib/components/FluidMultiSelect/FluidMultiSelect.js +71 -201
- package/lib/components/FluidNumberInput/FluidNumberInput.Skeleton.js +31 -34
- package/lib/components/FluidNumberInput/FluidNumberInput.js +67 -151
- package/lib/components/FluidSearch/FluidSearch.Skeleton.js +31 -34
- package/lib/components/FluidSearch/FluidSearch.js +45 -88
- package/lib/components/FluidSelect/FluidSelect.Skeleton.js +30 -32
- package/lib/components/FluidSelect/FluidSelect.js +44 -80
- package/lib/components/FluidSelect/index.js +13 -11
- package/lib/components/FluidTextArea/FluidTextArea.Skeleton.js +31 -34
- package/lib/components/FluidTextArea/FluidTextArea.js +52 -116
- package/lib/components/FluidTextInput/FluidPasswordInput.js +48 -103
- package/lib/components/FluidTextInput/FluidTextInput.Skeleton.js +31 -34
- package/lib/components/FluidTextInput/FluidTextInput.js +53 -108
- package/lib/components/FluidTextInput/index.js +14 -13
- package/lib/components/FluidTimePicker/FluidTimePicker.Skeleton.js +34 -37
- package/lib/components/FluidTimePicker/FluidTimePicker.js +72 -119
- package/lib/components/FluidTimePickerSelect/FluidTimePickerSelect.js +31 -51
- package/lib/components/Form/Form.js +27 -29
- package/lib/components/FormGroup/FormGroup.js +49 -71
- package/lib/components/FormItem/FormItem.js +27 -29
- package/lib/components/FormLabel/FormLabel.js +32 -38
- package/lib/components/Grid/CSSGrid.d.ts +1 -1
- package/lib/components/Grid/CSSGrid.js +89 -129
- package/lib/components/Grid/Column.js +196 -328
- package/lib/components/Grid/ColumnHang.js +32 -38
- package/lib/components/Grid/FlexGrid.js +44 -62
- package/lib/components/Grid/Grid.js +32 -44
- package/lib/components/Grid/GridContext.js +39 -44
- package/lib/components/Grid/Row.js +35 -53
- package/lib/components/Heading/index.js +39 -53
- package/lib/components/Icon/Icon.Skeleton.js +25 -23
- package/lib/components/IconButton/index.js +121 -180
- package/lib/components/IconIndicator/index.d.ts +1 -1
- package/lib/components/IconIndicator/index.js +63 -63
- package/lib/components/IdPrefix/index.js +24 -19
- package/lib/components/InlineCheckbox/InlineCheckbox.js +72 -117
- package/lib/components/InlineCheckbox/index.js +12 -9
- package/lib/components/InlineLoading/InlineLoading.js +87 -104
- package/lib/components/InlineLoading/index.js +12 -9
- package/lib/components/Layer/LayerContext.js +14 -6
- package/lib/components/Layer/LayerLevel.js +20 -6
- package/lib/components/Layer/index.js +58 -68
- package/lib/components/Layout/index.js +81 -111
- package/lib/components/LayoutDirection/LayoutDirection.d.ts +1 -1
- package/lib/components/LayoutDirection/LayoutDirection.js +36 -40
- package/lib/components/LayoutDirection/LayoutDirectionContext.js +14 -8
- package/lib/components/LayoutDirection/useLayoutDirection.js +16 -9
- package/lib/components/Link/Link.js +67 -112
- package/lib/components/Link/index.js +12 -9
- package/lib/components/ListBox/ListBox.js +82 -130
- package/lib/components/ListBox/ListBoxField.js +33 -47
- package/lib/components/ListBox/ListBoxMenu.js +39 -46
- package/lib/components/ListBox/ListBoxMenuIcon.js +43 -44
- package/lib/components/ListBox/ListBoxMenuItem.js +71 -92
- package/lib/components/ListBox/ListBoxPropTypes.js +21 -9
- package/lib/components/ListBox/ListBoxSelection.js +75 -100
- package/lib/components/ListBox/index.js +17 -21
- package/lib/components/ListBox/next/ListBoxSelection.js +83 -121
- package/lib/components/ListBox/next/ListBoxTrigger.js +48 -52
- package/lib/components/ListItem/ListItem.js +29 -32
- package/lib/components/Loading/Loading.js +68 -77
- package/lib/components/Loading/index.js +12 -9
- package/lib/components/Menu/Menu.js +224 -365
- package/lib/components/Menu/MenuContext.d.ts +1 -1
- package/lib/components/Menu/MenuContext.js +42 -40
- package/lib/components/Menu/MenuItem.js +286 -415
- package/lib/components/MenuButton/index.js +138 -197
- package/lib/components/Modal/Modal.js +504 -665
- package/lib/components/Modal/ModalPresence.js +41 -39
- package/lib/components/Modal/index.js +13 -10
- package/lib/components/ModalWrapper/ModalWrapper.d.ts +2 -2
- package/lib/components/ModalWrapper/ModalWrapper.js +112 -134
- package/lib/components/MultiSelect/FilterableMultiSelect.js +611 -920
- package/lib/components/MultiSelect/MultiSelect.js +459 -718
- package/lib/components/MultiSelect/MultiSelectPropTypes.js +15 -32
- package/lib/components/MultiSelect/filter.js +14 -10
- package/lib/components/MultiSelect/tools/sorting.js +21 -35
- package/lib/components/Notification/Notification.js +514 -787
- package/lib/components/NumberInput/NumberFormatPropTypes.js +72 -33
- package/lib/components/NumberInput/NumberInput.Skeleton.js +33 -37
- package/lib/components/NumberInput/NumberInput.js +571 -950
- package/lib/components/OrderedList/OrderedList.js +35 -48
- package/lib/components/OverflowMenu/OverflowMenu.js +341 -454
- package/lib/components/OverflowMenu/index.js +27 -21
- package/lib/components/OverflowMenu/next/index.js +158 -188
- package/lib/components/OverflowMenuItem/OverflowMenuItem.js +104 -164
- package/lib/components/OverflowMenuItem/index.js +12 -9
- package/lib/components/OverflowMenuV2/index.js +25 -15
- package/lib/components/PageHeader/PageHeader.js +301 -444
- package/lib/components/PageHeader/index.js +27 -19
- package/lib/components/Pagination/Pagination.Skeleton.js +38 -37
- package/lib/components/Pagination/Pagination.d.ts +1 -1
- package/lib/components/Pagination/Pagination.js +256 -360
- package/lib/components/Pagination/experimental/PageSelector.js +48 -58
- package/lib/components/Pagination/experimental/Pagination-story.d.ts +114 -0
- package/lib/components/Pagination/experimental/Pagination.js +148 -200
- package/lib/components/PaginationNav/PaginationNav.js +324 -430
- package/lib/components/Popover/index.js +323 -440
- package/lib/components/PrimaryButton/PrimaryButton.js +19 -13
- package/lib/components/ProgressBar/ProgressBar.js +121 -147
- package/lib/components/ProgressIndicator/ProgressIndicator.Skeleton.js +46 -43
- package/lib/components/ProgressIndicator/ProgressIndicator.js +150 -245
- package/lib/components/RadioButton/RadioButton.Skeleton.js +27 -27
- package/lib/components/RadioButton/RadioButton.js +105 -178
- package/lib/components/RadioButton/index.js +12 -9
- package/lib/components/RadioButtonGroup/RadioButtonGroup.js +139 -211
- package/lib/components/RadioTile/RadioTile.js +108 -172
- package/lib/components/RadioTile/index.js +12 -9
- package/lib/components/Search/Search.Skeleton.js +32 -38
- package/lib/components/Search/Search.js +185 -281
- package/lib/components/Search/index.js +13 -11
- package/lib/components/Search/utils.js +11 -4
- package/lib/components/SecondaryButton/SecondaryButton.js +19 -13
- package/lib/components/Select/Select.Skeleton.js +31 -35
- package/lib/components/Select/Select.js +182 -261
- package/lib/components/Select/index.js +13 -11
- package/lib/components/SelectItem/SelectItem.js +37 -52
- package/lib/components/SelectItem/index.js +12 -9
- package/lib/components/SelectItemGroup/SelectItemGroup.js +31 -41
- package/lib/components/ShapeIndicator/index.d.ts +1 -1
- package/lib/components/ShapeIndicator/index.js +78 -83
- package/lib/components/SkeletonIcon/SkeletonIcon.js +25 -28
- package/lib/components/SkeletonPlaceholder/SkeletonPlaceholder.js +25 -28
- package/lib/components/SkeletonText/SkeletonText.js +71 -85
- package/lib/components/SkeletonText/index.js +12 -9
- package/lib/components/Slider/Slider.Skeleton.js +72 -95
- package/lib/components/Slider/Slider.js +868 -1319
- package/lib/components/Slider/SliderHandles.js +75 -68
- package/lib/components/Stack/HStack.js +22 -14
- package/lib/components/Stack/Stack.js +60 -82
- package/lib/components/Stack/VStack.js +22 -14
- package/lib/components/StructuredList/StructuredList.Skeleton.js +59 -52
- package/lib/components/StructuredList/StructuredList.js +182 -319
- package/lib/components/Switch/IconSwitch.js +103 -149
- package/lib/components/Switch/Switch.js +70 -103
- package/lib/components/TabContent/TabContent.js +32 -38
- package/lib/components/Tabs/Tabs.Skeleton.js +45 -41
- package/lib/components/Tabs/Tabs.js +738 -1153
- package/lib/components/Tabs/usePressable.js +98 -114
- package/lib/components/Tag/DismissibleTag.js +123 -160
- package/lib/components/Tag/OperationalTag.js +95 -115
- package/lib/components/Tag/SelectableTag.js +98 -133
- package/lib/components/Tag/Tag.Skeleton.js +30 -32
- package/lib/components/Tag/Tag.js +156 -204
- package/lib/components/Tag/isEllipsisActive.js +13 -9
- package/lib/components/Text/Text.js +69 -81
- package/lib/components/Text/TextDirection.js +39 -39
- package/lib/components/Text/TextDirectionContext.js +15 -10
- package/lib/components/Text/createTextComponent.js +29 -22
- package/lib/components/TextArea/TextArea.Skeleton.js +29 -34
- package/lib/components/TextArea/TextArea.js +319 -426
- package/lib/components/TextArea/index.js +13 -11
- package/lib/components/TextInput/ControlledPasswordInput.js +137 -202
- package/lib/components/TextInput/PasswordInput.js +200 -307
- package/lib/components/TextInput/TextInput.Skeleton.js +28 -33
- package/lib/components/TextInput/TextInput.js +223 -321
- package/lib/components/TextInput/index.js +13 -11
- package/lib/components/TextInput/util.js +21 -26
- package/lib/components/Theme/index.js +83 -97
- package/lib/components/Tile/Tile.js +398 -595
- package/lib/components/TileGroup/TileGroup.js +73 -113
- package/lib/components/TimePicker/TimePicker.d.ts +1 -1
- package/lib/components/TimePicker/TimePicker.js +152 -251
- package/lib/components/TimePickerSelect/TimePickerSelect.js +47 -62
- package/lib/components/Toggle/Toggle.Skeleton.js +28 -24
- package/lib/components/Toggle/Toggle.js +106 -176
- package/lib/components/ToggleSmall/ToggleSmall.Skeleton.js +50 -53
- package/lib/components/Toggletip/index.d.ts +2 -2
- package/lib/components/Toggletip/index.js +174 -258
- package/lib/components/Tooltip/DefinitionTooltip.js +102 -140
- package/lib/components/Tooltip/Tooltip.js +192 -265
- package/lib/components/TreeView/TreeContext.js +14 -7
- package/lib/components/TreeView/TreeNode.js +365 -504
- package/lib/components/TreeView/TreeView.js +169 -242
- package/lib/components/UIShell/Content.js +27 -34
- package/lib/components/UIShell/Header.js +29 -33
- package/lib/components/UIShell/HeaderContainer.js +34 -44
- package/lib/components/UIShell/HeaderGlobalAction.js +69 -94
- package/lib/components/UIShell/HeaderGlobalBar.js +17 -14
- package/lib/components/UIShell/HeaderMenu.js +146 -221
- package/lib/components/UIShell/HeaderMenuButton.js +47 -70
- package/lib/components/UIShell/HeaderMenuItem.js +53 -80
- package/lib/components/UIShell/HeaderName.js +36 -48
- package/lib/components/UIShell/HeaderNavigation.js +36 -41
- package/lib/components/UIShell/HeaderPanel.js +78 -101
- package/lib/components/UIShell/HeaderSideNavItems.js +31 -37
- package/lib/components/UIShell/Link.js +32 -54
- package/lib/components/UIShell/SideNav.js +136 -245
- package/lib/components/UIShell/SideNavContext.js +23 -17
- package/lib/components/UIShell/SideNavDetails.js +33 -38
- package/lib/components/UIShell/SideNavDivider.js +25 -25
- package/lib/components/UIShell/SideNavFooter.js +47 -56
- package/lib/components/UIShell/SideNavHeader.js +30 -39
- package/lib/components/UIShell/SideNavIcon.js +32 -37
- package/lib/components/UIShell/SideNavItem.js +32 -37
- package/lib/components/UIShell/SideNavItems.js +35 -44
- package/lib/components/UIShell/SideNavLink.js +56 -83
- package/lib/components/UIShell/SideNavLinkText.js +28 -29
- package/lib/components/UIShell/SideNavMenu.js +106 -148
- package/lib/components/UIShell/SideNavMenuItem.js +44 -56
- package/lib/components/UIShell/SideNavSwitcher.js +63 -72
- package/lib/components/UIShell/SkipToContent.js +32 -40
- package/lib/components/UIShell/Switcher.js +73 -103
- package/lib/components/UIShell/SwitcherDivider.js +26 -28
- package/lib/components/UIShell/SwitcherItem.js +78 -118
- package/lib/components/UnorderedList/UnorderedList.js +32 -41
- package/lib/feature-flags.js +21 -13
- package/lib/index.js +622 -602
- package/lib/internal/FloatingMenu.js +249 -296
- package/lib/internal/OptimizedResize.js +35 -47
- package/lib/internal/Selection.js +102 -134
- package/lib/internal/clamp.js +12 -5
- package/lib/internal/defaultItemToString.js +15 -10
- package/lib/internal/deprecateFieldOnObject.js +23 -16
- package/lib/internal/environment.js +15 -8
- package/lib/internal/getAnnouncement.js +16 -14
- package/lib/internal/keyboard/keys.js +48 -49
- package/lib/internal/keyboard/match.js +25 -43
- package/lib/internal/keyboard/navigation.js +22 -29
- package/lib/internal/noopFn.js +10 -3
- package/lib/internal/useAttachedMenu.js +44 -53
- package/lib/internal/useControllableState.js +44 -50
- package/lib/internal/useDelayedState.js +31 -37
- package/lib/internal/useEvent.js +40 -37
- package/lib/internal/useId.js +54 -91
- package/lib/internal/useIdPrefix.js +15 -7
- package/lib/internal/useIsomorphicEffect.js +13 -8
- package/lib/internal/useMatchMedia.js +30 -23
- package/lib/internal/useMergedRefs.js +27 -24
- package/lib/internal/useNoInteractiveChildren.js +73 -101
- package/lib/internal/useNormalizedInputProps.js +55 -53
- package/lib/internal/useOutsideClick.js +22 -26
- package/lib/internal/useOverflowItems.js +90 -94
- package/lib/internal/usePrefix.js +15 -7
- package/lib/internal/usePresence.js +52 -56
- package/lib/internal/usePresenceContext.js +36 -37
- package/lib/internal/usePreviousValue.js +27 -20
- package/lib/internal/useResizeObserver.js +58 -68
- package/lib/internal/useSavedCallback.js +25 -19
- package/lib/internal/utils.js +18 -11
- package/lib/internal/warning.js +24 -23
- package/lib/internal/wrapFocus.js +78 -100
- package/lib/prop-types/AriaPropTypes.js +17 -9
- package/lib/prop-types/deprecate.js +30 -29
- package/lib/prop-types/deprecateComponent.js +17 -10
- package/lib/prop-types/deprecateValuesWithin.js +18 -23
- package/lib/prop-types/isRequiredOneOf.js +21 -25
- package/lib/prop-types/requiredIfGivenPropIsTruthy.js +14 -15
- package/lib/tools/events.js +17 -22
- package/lib/tools/mapPopoverAlign.js +19 -19
- package/lib/tools/mergeRefs.js +14 -18
- package/lib/tools/setupGetInstanceId.js +16 -9
- package/lib/tools/toggleClass.js +17 -10
- package/lib/tools/wrapComponent.js +38 -43
- package/package.json +10 -16
- package/es/_virtual/_rollupPluginBabelHelpers.js +0 -40
- package/es/components/DataTable/stories/examples/TableToolbarFilter.d.ts +0 -54
- package/es/node_modules/es-toolkit/dist/compat/function/debounce.js +0 -55
- package/es/node_modules/es-toolkit/dist/compat/function/throttle.js +0 -23
- package/es/node_modules/es-toolkit/dist/function/debounce.js +0 -70
- package/lib/_virtual/_rollupPluginBabelHelpers.js +0 -45
- package/lib/components/DataTable/stories/examples/TableToolbarFilter.d.ts +0 -54
- package/lib/node_modules/es-toolkit/dist/compat/function/debounce.js +0 -57
- package/lib/node_modules/es-toolkit/dist/compat/function/throttle.js +0 -25
- package/lib/node_modules/es-toolkit/dist/function/debounce.js +0 -72
|
@@ -1,985 +1,636 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright IBM Corp. 2016,
|
|
2
|
+
* Copyright IBM Corp. 2016, 2026
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import {
|
|
9
|
-
import
|
|
10
|
-
import {
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import {
|
|
14
|
-
import
|
|
15
|
-
import {
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import { mergeRefs } from
|
|
24
|
-
import {
|
|
25
|
-
import
|
|
26
|
-
import {
|
|
27
|
-
import
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import
|
|
33
|
-
import { isComponentElement } from '../../internal/utils.js';
|
|
34
|
-
import { ListBoxSizePropType } from '../ListBox/ListBoxPropTypes.js';
|
|
8
|
+
import { usePrefix } from "../../internal/usePrefix.js";
|
|
9
|
+
import { Text } from "../Text/Text.js";
|
|
10
|
+
import { End, Enter, Escape, Home, Space } from "../../internal/keyboard/keys.js";
|
|
11
|
+
import { match } from "../../internal/keyboard/match.js";
|
|
12
|
+
import { useId } from "../../internal/useId.js";
|
|
13
|
+
import { deprecate } from "../../prop-types/deprecate.js";
|
|
14
|
+
import { useFeatureFlag } from "../FeatureFlags/index.js";
|
|
15
|
+
import { AILabel } from "../AILabel/index.js";
|
|
16
|
+
import { defaultItemToString } from "../../internal/defaultItemToString.js";
|
|
17
|
+
import { isComponentElement } from "../../internal/utils.js";
|
|
18
|
+
import { ListBoxSizePropType } from "../ListBox/ListBoxPropTypes.js";
|
|
19
|
+
import { FormContext } from "../FluidForm/FormContext.js";
|
|
20
|
+
import ListBox from "../ListBox/index.js";
|
|
21
|
+
import ListBoxSelection from "../ListBox/next/ListBoxSelection.js";
|
|
22
|
+
import ListBoxTrigger from "../ListBox/next/ListBoxTrigger.js";
|
|
23
|
+
import { mergeRefs } from "../../tools/mergeRefs.js";
|
|
24
|
+
import { useNormalizedInputProps } from "../../internal/useNormalizedInputProps.js";
|
|
25
|
+
import classNames from "classnames";
|
|
26
|
+
import React, { cloneElement, forwardRef, useCallback, useContext, useEffect, useMemo, useRef, useState } from "react";
|
|
27
|
+
import PropTypes from "prop-types";
|
|
28
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
29
|
+
import { Checkmark, WarningAltFilled, WarningFilled } from "@carbon/icons-react";
|
|
30
|
+
import { autoUpdate, flip, hide, useFloating } from "@floating-ui/react";
|
|
31
|
+
import { useCombobox } from "downshift";
|
|
32
|
+
import isEqual from "react-fast-compare";
|
|
35
33
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
MenuMouseLeave,
|
|
45
|
-
ItemClick,
|
|
46
|
-
FunctionSelectItem
|
|
47
|
-
} = useCombobox.stateChangeTypes;
|
|
34
|
+
//#region src/components/ComboBox/ComboBox.tsx
|
|
35
|
+
/**
|
|
36
|
+
* Copyright IBM Corp. 2016, 2026
|
|
37
|
+
*
|
|
38
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
39
|
+
* LICENSE file in the root directory of this source tree.
|
|
40
|
+
*/
|
|
41
|
+
const { InputBlur, InputKeyDownEnter, FunctionToggleMenu, ToggleButtonClick, ItemMouseMove, InputKeyDownArrowUp, InputKeyDownArrowDown, MenuMouseLeave, ItemClick, FunctionSelectItem } = useCombobox.stateChangeTypes;
|
|
48
42
|
const defaultShouldFilterItem = () => true;
|
|
49
|
-
const
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}
|
|
56
|
-
const lowercaseItem = item.toLowerCase();
|
|
57
|
-
const lowercaseInput = inputValue.toLowerCase();
|
|
58
|
-
return lowercaseItem.startsWith(lowercaseInput);
|
|
43
|
+
const isDisabledItem = (item) => item !== null && typeof item === "object" && "disabled" in item && Boolean(item.disabled);
|
|
44
|
+
const autocompleteCustomFilter = ({ item, inputValue }) => {
|
|
45
|
+
if (inputValue === null || inputValue === "") return true;
|
|
46
|
+
const lowercaseItem = item.toLowerCase();
|
|
47
|
+
const lowercaseInput = inputValue.toLowerCase();
|
|
48
|
+
return lowercaseItem.startsWith(lowercaseInput);
|
|
59
49
|
};
|
|
60
|
-
const getInputValue = ({
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
prevSelectedItem
|
|
65
|
-
}) => {
|
|
66
|
-
// If there's a current selection (even if it's an object or string), use it.
|
|
67
|
-
if (selectedItem !== null && typeof selectedItem !== 'undefined') {
|
|
68
|
-
return itemToString(selectedItem);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
// On the very first render (when no previous value exists), use
|
|
72
|
-
// `initialSelectedItem`.
|
|
73
|
-
if (typeof prevSelectedItem === 'undefined' && initialSelectedItem !== null && typeof initialSelectedItem !== 'undefined') {
|
|
74
|
-
return itemToString(initialSelectedItem);
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// Otherwise (i.e., after the user has cleared the selection), return an empty
|
|
78
|
-
// string.
|
|
79
|
-
return '';
|
|
50
|
+
const getInputValue = ({ initialSelectedItem, itemToString, selectedItem, prevSelectedItem }) => {
|
|
51
|
+
if (selectedItem !== null && typeof selectedItem !== "undefined") return itemToString(selectedItem);
|
|
52
|
+
if (typeof prevSelectedItem === "undefined" && initialSelectedItem !== null && typeof initialSelectedItem !== "undefined") return itemToString(initialSelectedItem);
|
|
53
|
+
return "";
|
|
80
54
|
};
|
|
81
|
-
const findHighlightedIndex = ({
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
for (let i = 0; i < items.length; i++) {
|
|
90
|
-
const item = itemToString(items[i]).toLowerCase();
|
|
91
|
-
if (!items[i]['disabled'] && item.indexOf(searchValue) !== -1) {
|
|
92
|
-
return i;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
return -1;
|
|
55
|
+
const findHighlightedIndex = ({ items, itemToString = defaultItemToString }, inputValue) => {
|
|
56
|
+
if (!inputValue) return -1;
|
|
57
|
+
const searchValue = inputValue.toLowerCase();
|
|
58
|
+
for (let i = 0; i < items.length; i++) {
|
|
59
|
+
const item = itemToString(items[i]).toLowerCase();
|
|
60
|
+
if (!items[i]["disabled"] && item.indexOf(searchValue) !== -1) return i;
|
|
61
|
+
}
|
|
62
|
+
return -1;
|
|
96
63
|
};
|
|
97
|
-
const ComboBox =
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
inputRef.current.setSelectionRange(selectionStart, selectionEnd);
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
}, [inputValue, typeaheadText]);
|
|
625
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
626
|
-
className: wrapperClasses
|
|
627
|
-
}, titleText && /*#__PURE__*/React.createElement(Text, _extends({
|
|
628
|
-
as: "label",
|
|
629
|
-
className: titleClasses
|
|
630
|
-
}, getLabelProps()), titleText), /*#__PURE__*/React.createElement(ListBox, {
|
|
631
|
-
onFocus: handleFocus,
|
|
632
|
-
onBlur: handleFocus,
|
|
633
|
-
className: className,
|
|
634
|
-
disabled: disabled,
|
|
635
|
-
invalid: normalizedProps.invalid,
|
|
636
|
-
invalidText: invalidText,
|
|
637
|
-
invalidTextId: invalidTextId,
|
|
638
|
-
isOpen: isOpen,
|
|
639
|
-
light: light,
|
|
640
|
-
size: size,
|
|
641
|
-
warn: normalizedProps.warn,
|
|
642
|
-
ref: enableFloatingStyles ? refs.setReference : null,
|
|
643
|
-
warnText: warnText,
|
|
644
|
-
warnTextId: warnTextId
|
|
645
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
646
|
-
className: `${prefix}--list-box__field`
|
|
647
|
-
}, /*#__PURE__*/React.createElement("input", _extends({
|
|
648
|
-
disabled: disabled,
|
|
649
|
-
className: inputClasses,
|
|
650
|
-
type: "text",
|
|
651
|
-
tabIndex: 0,
|
|
652
|
-
"aria-haspopup": "listbox",
|
|
653
|
-
title: textInput?.current?.value
|
|
654
|
-
}, getInputProps({
|
|
655
|
-
'aria-label': titleText ? undefined : deprecatedAriaLabel || ariaLabel,
|
|
656
|
-
'aria-controls': menuProps.id,
|
|
657
|
-
placeholder,
|
|
658
|
-
value: inputValue,
|
|
659
|
-
...inputProps,
|
|
660
|
-
onChange: e => {
|
|
661
|
-
const newValue = e.target.value;
|
|
662
|
-
const shouldClearSelection = allowCustomValue && committedCustomValueRef.current && inputValue === committedCustomValueRef.current && newValue === '';
|
|
663
|
-
setInputValue(newValue);
|
|
664
|
-
downshiftSetInputValue(newValue);
|
|
665
|
-
if (shouldClearSelection) {
|
|
666
|
-
setIsClearing(true);
|
|
667
|
-
onChange({
|
|
668
|
-
selectedItem: null,
|
|
669
|
-
inputValue: ''
|
|
670
|
-
});
|
|
671
|
-
selectItem(null);
|
|
672
|
-
committedCustomValueRef.current = '';
|
|
673
|
-
}
|
|
674
|
-
},
|
|
675
|
-
ref: mergeRefs(textInput, ref, inputRef),
|
|
676
|
-
onKeyDown: event => {
|
|
677
|
-
if (match(event, Space)) {
|
|
678
|
-
event.stopPropagation();
|
|
679
|
-
}
|
|
680
|
-
if (match(event, Enter) && (!inputValue || allowCustomValue)) {
|
|
681
|
-
toggleMenu();
|
|
682
|
-
if (highlightedIndex !== -1) {
|
|
683
|
-
selectItem(filterItems(items, itemToString, inputValue)[highlightedIndex]);
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
// Since `onChange` does not normally fire when the menu is closed, we should
|
|
687
|
-
// manually fire it when `allowCustomValue` is provided, the menu is closing,
|
|
688
|
-
// and there is a value.
|
|
689
|
-
if (allowCustomValue && isOpen && inputValue && highlightedIndex === -1) {
|
|
690
|
-
committedCustomValueRef.current = inputValue;
|
|
691
|
-
onChange({
|
|
692
|
-
selectedItem: null,
|
|
693
|
-
inputValue
|
|
694
|
-
});
|
|
695
|
-
}
|
|
696
|
-
event.preventDownshiftDefault = true;
|
|
697
|
-
event?.persist?.();
|
|
698
|
-
}
|
|
699
|
-
if (match(event, Escape) && inputValue) {
|
|
700
|
-
if (event.target === textInput.current && isOpen) {
|
|
701
|
-
toggleMenu();
|
|
702
|
-
event.preventDownshiftDefault = true;
|
|
703
|
-
event?.persist?.();
|
|
704
|
-
}
|
|
705
|
-
}
|
|
706
|
-
if (match(event, Home) && event.code !== 'Numpad7') {
|
|
707
|
-
event.target.setSelectionRange(0, 0);
|
|
708
|
-
}
|
|
709
|
-
if (match(event, End) && event.code !== 'Numpad1') {
|
|
710
|
-
event.target.setSelectionRange(event.target.value.length, event.target.value.length);
|
|
711
|
-
}
|
|
712
|
-
if (event.altKey && event.key == 'ArrowDown') {
|
|
713
|
-
event.preventDownshiftDefault = true;
|
|
714
|
-
if (!isOpen) {
|
|
715
|
-
toggleMenu();
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
if (event.altKey && event.key == 'ArrowUp') {
|
|
719
|
-
event.preventDownshiftDefault = true;
|
|
720
|
-
if (isOpen) {
|
|
721
|
-
toggleMenu();
|
|
722
|
-
}
|
|
723
|
-
}
|
|
724
|
-
if (!inputValue && highlightedIndex == -1 && event.key == 'Enter') {
|
|
725
|
-
if (!isOpen) toggleMenu();
|
|
726
|
-
selectItem(null);
|
|
727
|
-
event.preventDownshiftDefault = true;
|
|
728
|
-
if (event.currentTarget.ariaExpanded === 'false') openMenu();
|
|
729
|
-
}
|
|
730
|
-
if (typeahead && event.key === 'Tab') {
|
|
731
|
-
// event.preventDefault();
|
|
732
|
-
const matchingItem = items.find(item => itemToString(item).toLowerCase().startsWith(inputValue.toLowerCase()));
|
|
733
|
-
if (matchingItem) {
|
|
734
|
-
const newValue = itemToString(matchingItem);
|
|
735
|
-
downshiftSetInputValue(newValue);
|
|
736
|
-
selectItem(matchingItem);
|
|
737
|
-
}
|
|
738
|
-
}
|
|
739
|
-
}
|
|
740
|
-
}), rest, readOnlyEventHandlers, {
|
|
741
|
-
readOnly: readOnly,
|
|
742
|
-
"aria-describedby": ariaDescribedBy
|
|
743
|
-
})), normalizedProps.invalid && /*#__PURE__*/React.createElement(WarningFilled, {
|
|
744
|
-
className: `${prefix}--list-box__invalid-icon`
|
|
745
|
-
}), normalizedProps.warn && /*#__PURE__*/React.createElement(WarningAltFilled, {
|
|
746
|
-
className: `${prefix}--list-box__invalid-icon ${prefix}--list-box__invalid-icon--warning`
|
|
747
|
-
}), inputValue && /*#__PURE__*/React.createElement(ListBoxSelection, {
|
|
748
|
-
clearSelection: () => {
|
|
749
|
-
setIsClearing(true); // This updates the state which syncs to the ref
|
|
750
|
-
setInputValue('');
|
|
751
|
-
onChange({
|
|
752
|
-
selectedItem: null
|
|
753
|
-
});
|
|
754
|
-
selectItem(null);
|
|
755
|
-
committedCustomValueRef.current = '';
|
|
756
|
-
handleSelectionClear();
|
|
757
|
-
},
|
|
758
|
-
translateWithId: translateWithId,
|
|
759
|
-
disabled: disabled || readOnly,
|
|
760
|
-
onClearSelection: handleSelectionClear,
|
|
761
|
-
selectionCount: 0
|
|
762
|
-
}), /*#__PURE__*/React.createElement(ListBoxTrigger, _extends({}, buttonProps, {
|
|
763
|
-
isOpen: isOpen,
|
|
764
|
-
translateWithId: translateWithId
|
|
765
|
-
}))), slug ? normalizedDecorator : decorator ? /*#__PURE__*/React.createElement("div", {
|
|
766
|
-
className: `${prefix}--list-box__inner-wrapper--decorator`
|
|
767
|
-
}, candidateIsAILabel ? normalizedDecorator : /*#__PURE__*/React.createElement("span", null, normalizedDecorator)) : '', /*#__PURE__*/React.createElement(ListBox.Menu, menuProps, isOpen ? filterItems(items, itemToString, inputValue).map((item, index) => {
|
|
768
|
-
const isObject = item !== null && typeof item === 'object';
|
|
769
|
-
const title = isObject && 'text' in item && itemToElement ? item.text?.toString() : itemToString(item);
|
|
770
|
-
const itemProps = getItemProps({
|
|
771
|
-
item,
|
|
772
|
-
index
|
|
773
|
-
});
|
|
774
|
-
|
|
775
|
-
// The initial implementation using <Downshift> would place the disabled attribute
|
|
776
|
-
// on disabled menu items. Conversely, useCombobox places aria-disabled instead.
|
|
777
|
-
// To avoid any potential breaking changes, we avoid placing aria-disabled and
|
|
778
|
-
// instead match the old behavior of placing the disabled attribute.
|
|
779
|
-
const disabled = itemProps['aria-disabled'];
|
|
780
|
-
const {
|
|
781
|
-
'aria-disabled': unusedAriaDisabled,
|
|
782
|
-
// eslint-disable-line @typescript-eslint/no-unused-vars
|
|
783
|
-
'aria-selected': unusedAriaSelected,
|
|
784
|
-
// eslint-disable-line @typescript-eslint/no-unused-vars
|
|
785
|
-
...modifiedItemProps
|
|
786
|
-
} = itemProps;
|
|
787
|
-
const isSelected = isEqual(currentSelectedItem, item);
|
|
788
|
-
return /*#__PURE__*/React.createElement(ListBox.MenuItem, _extends({
|
|
789
|
-
key: itemProps.id,
|
|
790
|
-
isActive: isSelected,
|
|
791
|
-
isHighlighted: highlightedIndex === index,
|
|
792
|
-
title: title,
|
|
793
|
-
disabled: disabled
|
|
794
|
-
}, modifiedItemProps, {
|
|
795
|
-
"aria-selected": isSelected
|
|
796
|
-
}), itemToElement ? itemToElement(item) : itemToString(item), isSelected && /*#__PURE__*/React.createElement(Checkmark, {
|
|
797
|
-
className: `${prefix}--list-box__menu-item__selected-icon`
|
|
798
|
-
}));
|
|
799
|
-
}) : null)), helperText && !normalizedProps.invalid && !normalizedProps.warn && !isFluid && /*#__PURE__*/React.createElement(Text, {
|
|
800
|
-
as: "div",
|
|
801
|
-
id: helperTextId,
|
|
802
|
-
className: helperClasses
|
|
803
|
-
}, helperText));
|
|
64
|
+
const ComboBox = forwardRef((props, ref) => {
|
|
65
|
+
const prevInputLengthRef = useRef(0);
|
|
66
|
+
const inputRef = useRef(null);
|
|
67
|
+
const { ["aria-label"]: ariaLabel = "Choose an item", ariaLabel: deprecatedAriaLabel, autoAlign = false, className: containerClassName, decorator, direction = "bottom", disabled = false, downshiftActions, downshiftProps, helperText, id, initialSelectedItem, invalid, invalidText, items, itemToElement = null, itemToString = defaultItemToString, light, onChange, onInputChange, onToggleClick, placeholder, readOnly, selectedItem: selectedItemProp, shouldFilterItem = defaultShouldFilterItem, size, titleText, translateWithId, typeahead = false, warn, warnText, allowCustomValue = false, slug, inputProps, ...rest } = props;
|
|
68
|
+
const enableFloatingStyles = useFeatureFlag("enable-v12-dynamic-floating-styles") || autoAlign;
|
|
69
|
+
const { refs, floatingStyles, middlewareData } = useFloating(enableFloatingStyles ? {
|
|
70
|
+
placement: direction,
|
|
71
|
+
strategy: "fixed",
|
|
72
|
+
middleware: autoAlign ? [flip(), hide()] : void 0,
|
|
73
|
+
whileElementsMounted: autoUpdate
|
|
74
|
+
} : {});
|
|
75
|
+
const referenceElement = refs?.reference?.current;
|
|
76
|
+
const parentWidth = typeof HTMLElement !== "undefined" && referenceElement instanceof HTMLElement ? referenceElement.clientWidth : void 0;
|
|
77
|
+
useEffect(() => {
|
|
78
|
+
if (enableFloatingStyles) {
|
|
79
|
+
const updatedFloatingStyles = {
|
|
80
|
+
...floatingStyles,
|
|
81
|
+
visibility: middlewareData.hide?.referenceHidden ? "hidden" : "visible"
|
|
82
|
+
};
|
|
83
|
+
Object.keys(updatedFloatingStyles).forEach((style) => {
|
|
84
|
+
if (refs.floating.current) refs.floating.current.style[style] = updatedFloatingStyles[style];
|
|
85
|
+
});
|
|
86
|
+
if (parentWidth && refs.floating.current) refs.floating.current.style.width = parentWidth + "px";
|
|
87
|
+
}
|
|
88
|
+
}, [
|
|
89
|
+
enableFloatingStyles,
|
|
90
|
+
floatingStyles,
|
|
91
|
+
refs.floating,
|
|
92
|
+
parentWidth
|
|
93
|
+
]);
|
|
94
|
+
const [inputValue, setInputValue] = useState(getInputValue({
|
|
95
|
+
initialSelectedItem,
|
|
96
|
+
itemToString,
|
|
97
|
+
selectedItem: selectedItemProp
|
|
98
|
+
}));
|
|
99
|
+
const [typeaheadText, setTypeaheadText] = useState("");
|
|
100
|
+
useEffect(() => {
|
|
101
|
+
if (typeahead) {
|
|
102
|
+
if (inputValue.length >= prevInputLengthRef.current) if (inputValue) {
|
|
103
|
+
const filteredItems = items.filter((item) => !isDisabledItem(item) && autocompleteCustomFilter({
|
|
104
|
+
item: itemToString(item),
|
|
105
|
+
inputValue
|
|
106
|
+
}));
|
|
107
|
+
if (filteredItems.length > 0) setTypeaheadText(itemToString(filteredItems[0]).slice(inputValue.length));
|
|
108
|
+
else setTypeaheadText("");
|
|
109
|
+
} else setTypeaheadText("");
|
|
110
|
+
else setTypeaheadText("");
|
|
111
|
+
prevInputLengthRef.current = inputValue.length;
|
|
112
|
+
}
|
|
113
|
+
}, [
|
|
114
|
+
typeahead,
|
|
115
|
+
inputValue,
|
|
116
|
+
items,
|
|
117
|
+
itemToString,
|
|
118
|
+
autocompleteCustomFilter
|
|
119
|
+
]);
|
|
120
|
+
const isManualClearingRef = useRef(false);
|
|
121
|
+
const committedCustomValueRef = useRef("");
|
|
122
|
+
const [isClearing, setIsClearing] = useState(false);
|
|
123
|
+
const prefix = usePrefix();
|
|
124
|
+
const { isFluid } = useContext(FormContext);
|
|
125
|
+
const textInput = useRef(null);
|
|
126
|
+
const comboBoxInstanceId = useId();
|
|
127
|
+
const [isFocused, setIsFocused] = useState(false);
|
|
128
|
+
const prevInputValue = useRef(inputValue);
|
|
129
|
+
const prevSelectedItemProp = useRef(selectedItemProp);
|
|
130
|
+
useEffect(() => {
|
|
131
|
+
isManualClearingRef.current = isClearing;
|
|
132
|
+
if (isClearing) setIsClearing(false);
|
|
133
|
+
}, [isClearing]);
|
|
134
|
+
useEffect(() => {
|
|
135
|
+
if (prevSelectedItemProp.current !== selectedItemProp) {
|
|
136
|
+
const currentInputValue = getInputValue({
|
|
137
|
+
initialSelectedItem,
|
|
138
|
+
itemToString,
|
|
139
|
+
selectedItem: selectedItemProp,
|
|
140
|
+
prevSelectedItem: prevSelectedItemProp.current
|
|
141
|
+
});
|
|
142
|
+
if (inputValue !== currentInputValue) {
|
|
143
|
+
setInputValue(currentInputValue);
|
|
144
|
+
onChange({
|
|
145
|
+
selectedItem: selectedItemProp,
|
|
146
|
+
inputValue: currentInputValue
|
|
147
|
+
});
|
|
148
|
+
}
|
|
149
|
+
prevSelectedItemProp.current = selectedItemProp;
|
|
150
|
+
}
|
|
151
|
+
}, [selectedItemProp]);
|
|
152
|
+
const filterItems = (items, itemToString, inputValue) => items.filter((item) => typeahead ? autocompleteCustomFilter({
|
|
153
|
+
item: itemToString(item),
|
|
154
|
+
inputValue
|
|
155
|
+
}) : shouldFilterItem ? shouldFilterItem({
|
|
156
|
+
item,
|
|
157
|
+
itemToString,
|
|
158
|
+
inputValue
|
|
159
|
+
}) : defaultShouldFilterItem());
|
|
160
|
+
useEffect(() => {
|
|
161
|
+
if (prevInputValue.current !== inputValue) {
|
|
162
|
+
prevInputValue.current = inputValue;
|
|
163
|
+
onInputChange?.(inputValue);
|
|
164
|
+
}
|
|
165
|
+
}, [inputValue]);
|
|
166
|
+
const handleSelectionClear = () => {
|
|
167
|
+
if (textInput?.current) textInput.current.focus();
|
|
168
|
+
};
|
|
169
|
+
const filteredItems = (inputValue) => filterItems(items, itemToString, inputValue || null);
|
|
170
|
+
const indexToHighlight = (inputValue) => findHighlightedIndex({
|
|
171
|
+
...props,
|
|
172
|
+
items: filteredItems(inputValue)
|
|
173
|
+
}, inputValue);
|
|
174
|
+
const stateReducer = useCallback((state, actionAndChanges) => {
|
|
175
|
+
const { type, changes } = actionAndChanges;
|
|
176
|
+
const { highlightedIndex } = changes;
|
|
177
|
+
switch (type) {
|
|
178
|
+
case InputBlur:
|
|
179
|
+
if (allowCustomValue && highlightedIndex === -1) {
|
|
180
|
+
const inputValue = state.inputValue ?? "";
|
|
181
|
+
const currentSelectedItem = typeof changes.selectedItem === "undefined" ? state.selectedItem : changes.selectedItem;
|
|
182
|
+
if (currentSelectedItem !== null && typeof currentSelectedItem !== "undefined" && itemToString(currentSelectedItem) === inputValue && items.some((item) => isEqual(item, currentSelectedItem))) return changes;
|
|
183
|
+
const nextSelectedItem = inputValue === "" ? null : items.find((item) => itemToString(item) === inputValue) ?? inputValue;
|
|
184
|
+
const isCustomSelection = typeof nextSelectedItem === "string" && nextSelectedItem !== "" && !items.some((item) => isEqual(item, nextSelectedItem));
|
|
185
|
+
if (!isEqual(currentSelectedItem, nextSelectedItem) && onChange) {
|
|
186
|
+
onChange({
|
|
187
|
+
selectedItem: nextSelectedItem,
|
|
188
|
+
inputValue
|
|
189
|
+
});
|
|
190
|
+
committedCustomValueRef.current = isCustomSelection ? inputValue : "";
|
|
191
|
+
}
|
|
192
|
+
return {
|
|
193
|
+
...changes,
|
|
194
|
+
selectedItem: nextSelectedItem
|
|
195
|
+
};
|
|
196
|
+
}
|
|
197
|
+
if (state.inputValue && highlightedIndex === -1 && changes.selectedItem) return {
|
|
198
|
+
...changes,
|
|
199
|
+
inputValue: itemToString(changes.selectedItem)
|
|
200
|
+
};
|
|
201
|
+
if (!allowCustomValue) {
|
|
202
|
+
const currentInput = state.inputValue ?? "";
|
|
203
|
+
if (!(!!currentInput && items.some((item) => itemToString(item) === currentInput))) {
|
|
204
|
+
const restoredInput = state.selectedItem !== null ? itemToString(state.selectedItem) : "";
|
|
205
|
+
return {
|
|
206
|
+
...changes,
|
|
207
|
+
inputValue: restoredInput
|
|
208
|
+
};
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
return changes;
|
|
212
|
+
case InputKeyDownEnter:
|
|
213
|
+
if (!allowCustomValue) if (state.highlightedIndex !== -1) {
|
|
214
|
+
const highlightedItem = filterItems(items, itemToString, inputValue)[state.highlightedIndex];
|
|
215
|
+
if (highlightedItem && !highlightedItem.disabled) return {
|
|
216
|
+
...changes,
|
|
217
|
+
selectedItem: highlightedItem,
|
|
218
|
+
inputValue: itemToString(highlightedItem)
|
|
219
|
+
};
|
|
220
|
+
} else {
|
|
221
|
+
const autoIndex = indexToHighlight(inputValue);
|
|
222
|
+
if (autoIndex !== -1) {
|
|
223
|
+
const matchingItem = items[autoIndex];
|
|
224
|
+
if (matchingItem && !matchingItem.disabled) return {
|
|
225
|
+
...changes,
|
|
226
|
+
selectedItem: matchingItem,
|
|
227
|
+
inputValue: itemToString(matchingItem)
|
|
228
|
+
};
|
|
229
|
+
}
|
|
230
|
+
if (state.selectedItem !== null) return {
|
|
231
|
+
...changes,
|
|
232
|
+
selectedItem: null,
|
|
233
|
+
inputValue
|
|
234
|
+
};
|
|
235
|
+
}
|
|
236
|
+
return {
|
|
237
|
+
...changes,
|
|
238
|
+
isOpen: true
|
|
239
|
+
};
|
|
240
|
+
case FunctionToggleMenu:
|
|
241
|
+
case ToggleButtonClick:
|
|
242
|
+
if (state.isOpen && !changes.isOpen && !allowCustomValue) {
|
|
243
|
+
const currentInput = state.inputValue ?? "";
|
|
244
|
+
if (!(!!currentInput && items.some((item) => itemToString(item) === currentInput))) {
|
|
245
|
+
const restoredInput = state.selectedItem !== null ? itemToString(state.selectedItem) : "";
|
|
246
|
+
return {
|
|
247
|
+
...changes,
|
|
248
|
+
inputValue: restoredInput
|
|
249
|
+
};
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
return changes;
|
|
253
|
+
case MenuMouseLeave: return {
|
|
254
|
+
...changes,
|
|
255
|
+
highlightedIndex: state.highlightedIndex
|
|
256
|
+
};
|
|
257
|
+
case InputKeyDownArrowUp:
|
|
258
|
+
case InputKeyDownArrowDown:
|
|
259
|
+
if (highlightedIndex === -1) return {
|
|
260
|
+
...changes,
|
|
261
|
+
highlightedIndex: 0
|
|
262
|
+
};
|
|
263
|
+
return changes;
|
|
264
|
+
case ItemMouseMove: return {
|
|
265
|
+
...changes,
|
|
266
|
+
highlightedIndex: state.highlightedIndex
|
|
267
|
+
};
|
|
268
|
+
default: return changes;
|
|
269
|
+
}
|
|
270
|
+
}, [
|
|
271
|
+
allowCustomValue,
|
|
272
|
+
inputValue,
|
|
273
|
+
itemToString,
|
|
274
|
+
items,
|
|
275
|
+
onChange
|
|
276
|
+
]);
|
|
277
|
+
const handleToggleClick = (isOpen) => (event) => {
|
|
278
|
+
if (onToggleClick) onToggleClick(event);
|
|
279
|
+
if (readOnly) {
|
|
280
|
+
event.preventDownshiftDefault = true;
|
|
281
|
+
event?.persist?.();
|
|
282
|
+
return;
|
|
283
|
+
}
|
|
284
|
+
if (event.target === textInput.current && isOpen) {
|
|
285
|
+
event.preventDownshiftDefault = true;
|
|
286
|
+
event?.persist?.();
|
|
287
|
+
}
|
|
288
|
+
};
|
|
289
|
+
const normalizedProps = useNormalizedInputProps({
|
|
290
|
+
id,
|
|
291
|
+
readOnly,
|
|
292
|
+
disabled: disabled || false,
|
|
293
|
+
invalid: invalid || false,
|
|
294
|
+
invalidText,
|
|
295
|
+
warn: warn || false,
|
|
296
|
+
warnText
|
|
297
|
+
});
|
|
298
|
+
const className = classNames(`${prefix}--combo-box`, {
|
|
299
|
+
[`${prefix}--combo-box--invalid--focused`]: invalid && isFocused,
|
|
300
|
+
[`${prefix}--list-box--up`]: direction === "top",
|
|
301
|
+
[`${prefix}--combo-box--warning`]: normalizedProps.warn,
|
|
302
|
+
[`${prefix}--combo-box--readonly`]: readOnly,
|
|
303
|
+
[`${prefix}--autoalign`]: enableFloatingStyles
|
|
304
|
+
});
|
|
305
|
+
const titleClasses = classNames(`${prefix}--label`, { [`${prefix}--label--disabled`]: disabled });
|
|
306
|
+
const helperTextId = `combobox-helper-text-${comboBoxInstanceId}`;
|
|
307
|
+
const warnTextId = `combobox-warn-text-${comboBoxInstanceId}`;
|
|
308
|
+
const invalidTextId = `combobox-invalid-text-${comboBoxInstanceId}`;
|
|
309
|
+
const helperClasses = classNames(`${prefix}--form__helper-text`, { [`${prefix}--form__helper-text--disabled`]: disabled });
|
|
310
|
+
const wrapperClasses = classNames(`${prefix}--list-box__wrapper`, [containerClassName, {
|
|
311
|
+
[`${prefix}--list-box__wrapper--fluid--invalid`]: isFluid && invalid,
|
|
312
|
+
[`${prefix}--list-box__wrapper--slug`]: slug,
|
|
313
|
+
[`${prefix}--list-box__wrapper--decorator`]: decorator
|
|
314
|
+
}]);
|
|
315
|
+
const inputClasses = classNames(`${prefix}--text-input`, {
|
|
316
|
+
[`${prefix}--text-input--empty`]: !inputValue,
|
|
317
|
+
[`${prefix}--combo-box--input--focus`]: isFocused
|
|
318
|
+
});
|
|
319
|
+
const candidate = slug ?? decorator;
|
|
320
|
+
const candidateIsAILabel = isComponentElement(candidate, AILabel);
|
|
321
|
+
const normalizedDecorator = candidateIsAILabel ? cloneElement(candidate, { size: "mini" }) : candidate;
|
|
322
|
+
const { getInputProps, getItemProps, getLabelProps, getMenuProps, getToggleButtonProps, isOpen, highlightedIndex, selectedItem, closeMenu, openMenu, reset, selectItem, setHighlightedIndex, setInputValue: downshiftSetInputValue, toggleMenu } = useCombobox({
|
|
323
|
+
items: filterItems(items, itemToString, inputValue),
|
|
324
|
+
inputValue,
|
|
325
|
+
itemToString: (item) => {
|
|
326
|
+
return itemToString(item);
|
|
327
|
+
},
|
|
328
|
+
onInputValueChange({ inputValue }) {
|
|
329
|
+
const normalizedInput = inputValue || "";
|
|
330
|
+
setInputValue(normalizedInput);
|
|
331
|
+
setHighlightedIndex(indexToHighlight(normalizedInput));
|
|
332
|
+
},
|
|
333
|
+
onHighlightedIndexChange: ({ highlightedIndex }) => {
|
|
334
|
+
if (highlightedIndex > -1) {
|
|
335
|
+
const highlightedItem = document.querySelectorAll(`li.${prefix}--list-box__menu-item[role="option"]`)[highlightedIndex];
|
|
336
|
+
if (highlightedItem) highlightedItem.scrollIntoView({
|
|
337
|
+
behavior: "smooth",
|
|
338
|
+
block: "nearest"
|
|
339
|
+
});
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
initialSelectedItem,
|
|
343
|
+
inputId: id,
|
|
344
|
+
stateReducer,
|
|
345
|
+
isItemDisabled(item) {
|
|
346
|
+
return item?.disabled;
|
|
347
|
+
},
|
|
348
|
+
...downshiftProps,
|
|
349
|
+
onStateChange: ({ type, selectedItem: newSelectedItem }) => {
|
|
350
|
+
downshiftProps?.onStateChange?.({
|
|
351
|
+
type,
|
|
352
|
+
selectedItem: newSelectedItem
|
|
353
|
+
});
|
|
354
|
+
if (isManualClearingRef.current) return;
|
|
355
|
+
if ((type === ItemClick || type === FunctionSelectItem || type === InputKeyDownEnter) && typeof newSelectedItem !== "undefined" && !isEqual(selectedItemProp, newSelectedItem)) {
|
|
356
|
+
if (items.some((item) => isEqual(item, newSelectedItem))) committedCustomValueRef.current = "";
|
|
357
|
+
onChange({ selectedItem: newSelectedItem });
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
});
|
|
361
|
+
const currentSelectedItem = typeof selectedItemProp !== "undefined" ? selectedItemProp : selectedItem;
|
|
362
|
+
useEffect(() => {
|
|
363
|
+
if (downshiftActions) downshiftActions.current = {
|
|
364
|
+
closeMenu,
|
|
365
|
+
openMenu,
|
|
366
|
+
reset,
|
|
367
|
+
selectItem,
|
|
368
|
+
setHighlightedIndex,
|
|
369
|
+
setInputValue: downshiftSetInputValue,
|
|
370
|
+
toggleMenu
|
|
371
|
+
};
|
|
372
|
+
}, [
|
|
373
|
+
closeMenu,
|
|
374
|
+
openMenu,
|
|
375
|
+
reset,
|
|
376
|
+
selectItem,
|
|
377
|
+
setHighlightedIndex,
|
|
378
|
+
downshiftSetInputValue,
|
|
379
|
+
toggleMenu
|
|
380
|
+
]);
|
|
381
|
+
const buttonProps = getToggleButtonProps({
|
|
382
|
+
disabled: disabled || readOnly,
|
|
383
|
+
onClick: handleToggleClick(isOpen),
|
|
384
|
+
onMouseUp(event) {
|
|
385
|
+
if (isOpen) event.stopPropagation();
|
|
386
|
+
}
|
|
387
|
+
});
|
|
388
|
+
const handleFocus = (evt) => {
|
|
389
|
+
setIsFocused(evt.type === "focus");
|
|
390
|
+
if (!inputRef.current?.value && evt.type === "blur") selectItem(null);
|
|
391
|
+
};
|
|
392
|
+
const readOnlyEventHandlers = readOnly ? {
|
|
393
|
+
onKeyDown: (evt) => {
|
|
394
|
+
if (evt.key !== "Tab") evt.preventDefault();
|
|
395
|
+
},
|
|
396
|
+
onClick: (evt) => {
|
|
397
|
+
evt.preventDefault();
|
|
398
|
+
evt.currentTarget.focus();
|
|
399
|
+
}
|
|
400
|
+
} : {};
|
|
401
|
+
const ariaDescribedBy = normalizedProps.invalid && invalidText && invalidTextId || normalizedProps.warn && warnText && warnTextId || helperText && !isFluid && helperTextId || void 0;
|
|
402
|
+
const menuProps = useMemo(() => getMenuProps({ ref: enableFloatingStyles ? refs.setFloating : null }), [
|
|
403
|
+
enableFloatingStyles,
|
|
404
|
+
deprecatedAriaLabel,
|
|
405
|
+
ariaLabel,
|
|
406
|
+
getMenuProps,
|
|
407
|
+
refs.setFloating
|
|
408
|
+
]);
|
|
409
|
+
useEffect(() => {
|
|
410
|
+
if (textInput.current) {
|
|
411
|
+
if (inputRef.current && typeaheadText) {
|
|
412
|
+
const selectionStart = inputValue.length;
|
|
413
|
+
const selectionEnd = selectionStart + typeaheadText.length;
|
|
414
|
+
inputRef.current.value = inputValue + typeaheadText;
|
|
415
|
+
inputRef.current.setSelectionRange(selectionStart, selectionEnd);
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}, [inputValue, typeaheadText]);
|
|
419
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
420
|
+
className: wrapperClasses,
|
|
421
|
+
children: [
|
|
422
|
+
titleText && /* @__PURE__ */ jsx(Text, {
|
|
423
|
+
as: "label",
|
|
424
|
+
className: titleClasses,
|
|
425
|
+
...getLabelProps(),
|
|
426
|
+
children: titleText
|
|
427
|
+
}),
|
|
428
|
+
/* @__PURE__ */ jsxs(ListBox, {
|
|
429
|
+
onFocus: handleFocus,
|
|
430
|
+
onBlur: handleFocus,
|
|
431
|
+
className,
|
|
432
|
+
disabled,
|
|
433
|
+
invalid: normalizedProps.invalid,
|
|
434
|
+
invalidText,
|
|
435
|
+
invalidTextId,
|
|
436
|
+
isOpen,
|
|
437
|
+
light,
|
|
438
|
+
size,
|
|
439
|
+
warn: normalizedProps.warn,
|
|
440
|
+
ref: enableFloatingStyles ? refs.setReference : null,
|
|
441
|
+
warnText,
|
|
442
|
+
warnTextId,
|
|
443
|
+
children: [
|
|
444
|
+
/* @__PURE__ */ jsxs("div", {
|
|
445
|
+
className: `${prefix}--list-box__field`,
|
|
446
|
+
children: [
|
|
447
|
+
/* @__PURE__ */ jsx("input", {
|
|
448
|
+
disabled,
|
|
449
|
+
className: inputClasses,
|
|
450
|
+
type: "text",
|
|
451
|
+
tabIndex: 0,
|
|
452
|
+
"aria-haspopup": "listbox",
|
|
453
|
+
title: textInput?.current?.value,
|
|
454
|
+
...getInputProps({
|
|
455
|
+
"aria-label": titleText ? void 0 : deprecatedAriaLabel || ariaLabel,
|
|
456
|
+
"aria-controls": menuProps.id,
|
|
457
|
+
placeholder,
|
|
458
|
+
value: inputValue,
|
|
459
|
+
...inputProps,
|
|
460
|
+
onChange: (e) => {
|
|
461
|
+
const newValue = e.target.value;
|
|
462
|
+
const shouldClearSelection = allowCustomValue && committedCustomValueRef.current && inputValue === committedCustomValueRef.current && newValue === "";
|
|
463
|
+
setInputValue(newValue);
|
|
464
|
+
downshiftSetInputValue(newValue);
|
|
465
|
+
if (shouldClearSelection) {
|
|
466
|
+
setIsClearing(true);
|
|
467
|
+
onChange({
|
|
468
|
+
selectedItem: null,
|
|
469
|
+
inputValue: ""
|
|
470
|
+
});
|
|
471
|
+
selectItem(null);
|
|
472
|
+
committedCustomValueRef.current = "";
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
ref: mergeRefs(textInput, ref, inputRef),
|
|
476
|
+
onKeyDown: (event) => {
|
|
477
|
+
if (match(event, Space)) event.stopPropagation();
|
|
478
|
+
if (match(event, Enter) && (!inputValue || allowCustomValue)) {
|
|
479
|
+
toggleMenu();
|
|
480
|
+
if (highlightedIndex !== -1) selectItem(filterItems(items, itemToString, inputValue)[highlightedIndex]);
|
|
481
|
+
if (allowCustomValue && isOpen && inputValue && highlightedIndex === -1) {
|
|
482
|
+
committedCustomValueRef.current = inputValue;
|
|
483
|
+
onChange({
|
|
484
|
+
selectedItem: null,
|
|
485
|
+
inputValue
|
|
486
|
+
});
|
|
487
|
+
}
|
|
488
|
+
event.preventDownshiftDefault = true;
|
|
489
|
+
event?.persist?.();
|
|
490
|
+
}
|
|
491
|
+
if (match(event, Escape) && inputValue) {
|
|
492
|
+
if (event.target === textInput.current && isOpen) {
|
|
493
|
+
toggleMenu();
|
|
494
|
+
event.preventDownshiftDefault = true;
|
|
495
|
+
event?.persist?.();
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
if (match(event, Home) && event.code !== "Numpad7") event.target.setSelectionRange(0, 0);
|
|
499
|
+
if (match(event, End) && event.code !== "Numpad1") event.target.setSelectionRange(event.target.value.length, event.target.value.length);
|
|
500
|
+
if (event.altKey && event.key == "ArrowDown") {
|
|
501
|
+
event.preventDownshiftDefault = true;
|
|
502
|
+
if (!isOpen) toggleMenu();
|
|
503
|
+
}
|
|
504
|
+
if (event.altKey && event.key == "ArrowUp") {
|
|
505
|
+
event.preventDownshiftDefault = true;
|
|
506
|
+
if (isOpen) toggleMenu();
|
|
507
|
+
}
|
|
508
|
+
if (!inputValue && highlightedIndex == -1 && event.key == "Enter") {
|
|
509
|
+
if (!isOpen) toggleMenu();
|
|
510
|
+
selectItem(null);
|
|
511
|
+
event.preventDownshiftDefault = true;
|
|
512
|
+
if (event.currentTarget.ariaExpanded === "false") openMenu();
|
|
513
|
+
}
|
|
514
|
+
if (typeahead && event.key === "Tab") {
|
|
515
|
+
if (!isOpen) return;
|
|
516
|
+
const matchingItem = items.find((item) => !isDisabledItem(item) && itemToString(item).toLowerCase().startsWith(inputValue.toLowerCase()));
|
|
517
|
+
if (matchingItem) {
|
|
518
|
+
downshiftSetInputValue(itemToString(matchingItem));
|
|
519
|
+
selectItem(matchingItem);
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
}),
|
|
524
|
+
...rest,
|
|
525
|
+
...readOnlyEventHandlers,
|
|
526
|
+
readOnly,
|
|
527
|
+
"aria-describedby": ariaDescribedBy
|
|
528
|
+
}),
|
|
529
|
+
normalizedProps.invalid && /* @__PURE__ */ jsx(WarningFilled, { className: `${prefix}--list-box__invalid-icon` }),
|
|
530
|
+
normalizedProps.warn && /* @__PURE__ */ jsx(WarningAltFilled, { className: `${prefix}--list-box__invalid-icon ${prefix}--list-box__invalid-icon--warning` }),
|
|
531
|
+
inputValue && /* @__PURE__ */ jsx(ListBoxSelection, {
|
|
532
|
+
clearSelection: () => {
|
|
533
|
+
setIsClearing(true);
|
|
534
|
+
setInputValue("");
|
|
535
|
+
onChange({ selectedItem: null });
|
|
536
|
+
selectItem(null);
|
|
537
|
+
committedCustomValueRef.current = "";
|
|
538
|
+
handleSelectionClear();
|
|
539
|
+
},
|
|
540
|
+
translateWithId,
|
|
541
|
+
disabled: disabled || readOnly,
|
|
542
|
+
onClearSelection: handleSelectionClear,
|
|
543
|
+
selectionCount: 0
|
|
544
|
+
}),
|
|
545
|
+
/* @__PURE__ */ jsx(ListBoxTrigger, {
|
|
546
|
+
...buttonProps,
|
|
547
|
+
isOpen,
|
|
548
|
+
translateWithId
|
|
549
|
+
})
|
|
550
|
+
]
|
|
551
|
+
}),
|
|
552
|
+
slug ? normalizedDecorator : decorator ? /* @__PURE__ */ jsx("div", {
|
|
553
|
+
className: `${prefix}--list-box__inner-wrapper--decorator`,
|
|
554
|
+
children: candidateIsAILabel ? normalizedDecorator : /* @__PURE__ */ jsx("span", { children: normalizedDecorator })
|
|
555
|
+
}) : "",
|
|
556
|
+
/* @__PURE__ */ jsx(ListBox.Menu, {
|
|
557
|
+
...menuProps,
|
|
558
|
+
children: isOpen ? filterItems(items, itemToString, inputValue).map((item, index) => {
|
|
559
|
+
const title = item !== null && typeof item === "object" && "text" in item && itemToElement ? item.text?.toString() : itemToString(item);
|
|
560
|
+
const itemProps = getItemProps({
|
|
561
|
+
item,
|
|
562
|
+
index
|
|
563
|
+
});
|
|
564
|
+
const disabled = itemProps["aria-disabled"];
|
|
565
|
+
const { "aria-disabled": unusedAriaDisabled, "aria-selected": unusedAriaSelected, ...modifiedItemProps } = itemProps;
|
|
566
|
+
const isSelected = isEqual(currentSelectedItem, item);
|
|
567
|
+
return /* @__PURE__ */ jsxs(ListBox.MenuItem, {
|
|
568
|
+
isActive: isSelected,
|
|
569
|
+
isHighlighted: highlightedIndex === index,
|
|
570
|
+
title,
|
|
571
|
+
disabled,
|
|
572
|
+
...modifiedItemProps,
|
|
573
|
+
"aria-selected": isSelected,
|
|
574
|
+
children: [itemToElement ? itemToElement(item) : itemToString(item), isSelected && /* @__PURE__ */ jsx(Checkmark, { className: `${prefix}--list-box__menu-item__selected-icon` })]
|
|
575
|
+
}, itemProps.id);
|
|
576
|
+
}) : null
|
|
577
|
+
})
|
|
578
|
+
]
|
|
579
|
+
}),
|
|
580
|
+
helperText && !normalizedProps.invalid && !normalizedProps.warn && !isFluid && /* @__PURE__ */ jsx(Text, {
|
|
581
|
+
as: "div",
|
|
582
|
+
id: helperTextId,
|
|
583
|
+
className: helperClasses,
|
|
584
|
+
children: helperText
|
|
585
|
+
})
|
|
586
|
+
]
|
|
587
|
+
});
|
|
804
588
|
});
|
|
805
|
-
ComboBox.displayName =
|
|
589
|
+
ComboBox.displayName = "ComboBox";
|
|
806
590
|
ComboBox.propTypes = {
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
* **Use with caution:** anything you define here overrides the components'
|
|
850
|
-
* internal handling of that prop. Downshift APIs and internals are subject to
|
|
851
|
-
* change, and in some cases they can not be shimmed by Carbon to shield you
|
|
852
|
-
* from potentially breaking changes.
|
|
853
|
-
*/
|
|
854
|
-
downshiftProps: PropTypes.object,
|
|
855
|
-
/**
|
|
856
|
-
* Provide a ref that will be mutated to contain an object of downshift
|
|
857
|
-
* action functions. These can be called to change the internal state of the
|
|
858
|
-
* downshift useCombobox hook.
|
|
859
|
-
*
|
|
860
|
-
* **Use with caution:** calling these actions modifies the internal state of
|
|
861
|
-
* downshift. It may conflict with or override the state management used within
|
|
862
|
-
* Combobox. Downshift APIs and internals are subject to change, and in some
|
|
863
|
-
* cases they can not be shimmed by Carbon to shield you from potentially breaking
|
|
864
|
-
* changes.
|
|
865
|
-
*/
|
|
866
|
-
downshiftActions: PropTypes.exact({
|
|
867
|
-
current: PropTypes.any
|
|
868
|
-
}),
|
|
869
|
-
/**
|
|
870
|
-
* Provide helper text that is used alongside the control label for
|
|
871
|
-
* additional help
|
|
872
|
-
*/
|
|
873
|
-
helperText: PropTypes.node,
|
|
874
|
-
/**
|
|
875
|
-
* Specify a custom `id` for the input
|
|
876
|
-
*/
|
|
877
|
-
id: PropTypes.string.isRequired,
|
|
878
|
-
/**
|
|
879
|
-
* Allow users to pass in an arbitrary item or a string (in case their items are an array of strings)
|
|
880
|
-
* from their collection that are pre-selected
|
|
881
|
-
*/
|
|
882
|
-
initialSelectedItem: PropTypes.oneOfType([PropTypes.object, PropTypes.string, PropTypes.number]),
|
|
883
|
-
/**
|
|
884
|
-
* Specify if the currently selected value is invalid.
|
|
885
|
-
*/
|
|
886
|
-
invalid: PropTypes.bool,
|
|
887
|
-
/**
|
|
888
|
-
* Message which is displayed if the value is invalid.
|
|
889
|
-
*/
|
|
890
|
-
invalidText: PropTypes.node,
|
|
891
|
-
/**
|
|
892
|
-
* Renders an item as a custom React node instead of a string.
|
|
893
|
-
*/
|
|
894
|
-
itemToElement: PropTypes.func,
|
|
895
|
-
/**
|
|
896
|
-
* Helper function passed to downshift that allows the library to render a
|
|
897
|
-
* given item to a string label. By default, it extracts the `label` field
|
|
898
|
-
* from a given item to serve as the item label in the list
|
|
899
|
-
*/
|
|
900
|
-
itemToString: PropTypes.func,
|
|
901
|
-
/**
|
|
902
|
-
* We try to stay as generic as possible here to allow individuals to pass
|
|
903
|
-
* in a collection of whatever kind of data structure they prefer
|
|
904
|
-
*/
|
|
905
|
-
items: PropTypes.array.isRequired,
|
|
906
|
-
/**
|
|
907
|
-
* should use "light theme" (white background)?
|
|
908
|
-
*/
|
|
909
|
-
light: deprecate(PropTypes.bool, 'The `light` prop for `Combobox` has ' + 'been deprecated in favor of the new `Layer` component. It will be removed in the next major release.'),
|
|
910
|
-
/**
|
|
911
|
-
* `onChange` is a utility for this controlled component to communicate to a
|
|
912
|
-
* consuming component when a specific dropdown item is selected.
|
|
913
|
-
* `({ selectedItem }) => void`
|
|
914
|
-
* @param {{ selectedItem }}
|
|
915
|
-
*/
|
|
916
|
-
onChange: PropTypes.func.isRequired,
|
|
917
|
-
/**
|
|
918
|
-
* Callback function to notify consumer when the text input changes.
|
|
919
|
-
* This provides support to change available items based on the text.
|
|
920
|
-
* `(inputText) => void`
|
|
921
|
-
* @param {string} inputText
|
|
922
|
-
*/
|
|
923
|
-
onInputChange: PropTypes.func,
|
|
924
|
-
/**
|
|
925
|
-
* Callback function that fires when the combobox menu toggle is clicked
|
|
926
|
-
* `(evt) => void`
|
|
927
|
-
* @param {MouseEvent} event
|
|
928
|
-
*/
|
|
929
|
-
onToggleClick: PropTypes.func,
|
|
930
|
-
/**
|
|
931
|
-
* Used to provide a placeholder text node before a user enters any input.
|
|
932
|
-
* This is only present if the control has no items selected
|
|
933
|
-
*/
|
|
934
|
-
placeholder: PropTypes.string,
|
|
935
|
-
/**
|
|
936
|
-
* Is the ComboBox readonly?
|
|
937
|
-
*/
|
|
938
|
-
readOnly: PropTypes.bool,
|
|
939
|
-
/**
|
|
940
|
-
* For full control of the selection
|
|
941
|
-
*/
|
|
942
|
-
selectedItem: PropTypes.oneOfType([PropTypes.object, PropTypes.string, PropTypes.number]),
|
|
943
|
-
/**
|
|
944
|
-
* Specify your own filtering logic by passing in a `shouldFilterItem`
|
|
945
|
-
* function that takes in the current input and an item and passes back
|
|
946
|
-
* whether or not the item should be filtered.
|
|
947
|
-
* this prop will be ignored if `typeahead` prop is enabled
|
|
948
|
-
*/
|
|
949
|
-
shouldFilterItem: PropTypes.func,
|
|
950
|
-
/**
|
|
951
|
-
* Specify the size of the ListBox. Currently supports either `sm`, `md` or `lg` as an option.
|
|
952
|
-
*/
|
|
953
|
-
size: ListBoxSizePropType,
|
|
954
|
-
slug: deprecate(PropTypes.node, 'The `slug` prop has been deprecated and will be removed in the next major version. Use the decorator prop instead.'),
|
|
955
|
-
/**
|
|
956
|
-
* Provide text to be used in a `<label>` element that is tied to the
|
|
957
|
-
* combobox via ARIA attributes.
|
|
958
|
-
*/
|
|
959
|
-
titleText: PropTypes.node,
|
|
960
|
-
/**
|
|
961
|
-
* Translates component strings using your i18n tool.
|
|
962
|
-
*/
|
|
963
|
-
translateWithId: PropTypes.func,
|
|
964
|
-
/**
|
|
965
|
-
* **Experimental**: will enable autocomplete and typeahead for the input field
|
|
966
|
-
*/
|
|
967
|
-
typeahead: PropTypes.bool,
|
|
968
|
-
/**
|
|
969
|
-
* Specify whether the control is currently in warning state
|
|
970
|
-
*/
|
|
971
|
-
warn: PropTypes.bool,
|
|
972
|
-
/**
|
|
973
|
-
* Provide the text that is displayed when the control is in warning state
|
|
974
|
-
*/
|
|
975
|
-
warnText: PropTypes.node,
|
|
976
|
-
/**
|
|
977
|
-
* Specify native input attributes to place on the `<input>`, like maxLength.
|
|
978
|
-
* These are passed to downshift's getInputProps() and will override the
|
|
979
|
-
* internal input props.
|
|
980
|
-
* https://github.com/downshift-js/downshift?tab=readme-ov-file#getinputprops
|
|
981
|
-
*/
|
|
982
|
-
inputProps: PropTypes.object
|
|
591
|
+
allowCustomValue: PropTypes.bool,
|
|
592
|
+
["aria-label"]: PropTypes.string,
|
|
593
|
+
ariaLabel: deprecate(PropTypes.string, "This prop syntax has been deprecated. Please use the new `aria-label`."),
|
|
594
|
+
autoAlign: PropTypes.bool,
|
|
595
|
+
className: PropTypes.string,
|
|
596
|
+
decorator: PropTypes.node,
|
|
597
|
+
direction: PropTypes.oneOf(["top", "bottom"]),
|
|
598
|
+
disabled: PropTypes.bool,
|
|
599
|
+
downshiftProps: PropTypes.object,
|
|
600
|
+
downshiftActions: PropTypes.exact({ current: PropTypes.any }),
|
|
601
|
+
helperText: PropTypes.node,
|
|
602
|
+
id: PropTypes.string.isRequired,
|
|
603
|
+
initialSelectedItem: PropTypes.oneOfType([
|
|
604
|
+
PropTypes.object,
|
|
605
|
+
PropTypes.string,
|
|
606
|
+
PropTypes.number
|
|
607
|
+
]),
|
|
608
|
+
invalid: PropTypes.bool,
|
|
609
|
+
invalidText: PropTypes.node,
|
|
610
|
+
itemToElement: PropTypes.func,
|
|
611
|
+
itemToString: PropTypes.func,
|
|
612
|
+
items: PropTypes.array.isRequired,
|
|
613
|
+
light: deprecate(PropTypes.bool, "The `light` prop for `Combobox` has been deprecated in favor of the new `Layer` component. It will be removed in the next major release."),
|
|
614
|
+
onChange: PropTypes.func.isRequired,
|
|
615
|
+
onInputChange: PropTypes.func,
|
|
616
|
+
onToggleClick: PropTypes.func,
|
|
617
|
+
placeholder: PropTypes.string,
|
|
618
|
+
readOnly: PropTypes.bool,
|
|
619
|
+
selectedItem: PropTypes.oneOfType([
|
|
620
|
+
PropTypes.object,
|
|
621
|
+
PropTypes.string,
|
|
622
|
+
PropTypes.number
|
|
623
|
+
]),
|
|
624
|
+
shouldFilterItem: PropTypes.func,
|
|
625
|
+
size: ListBoxSizePropType,
|
|
626
|
+
slug: deprecate(PropTypes.node, "The `slug` prop has been deprecated and will be removed in the next major version. Use the decorator prop instead."),
|
|
627
|
+
titleText: PropTypes.node,
|
|
628
|
+
translateWithId: PropTypes.func,
|
|
629
|
+
typeahead: PropTypes.bool,
|
|
630
|
+
warn: PropTypes.bool,
|
|
631
|
+
warnText: PropTypes.node,
|
|
632
|
+
inputProps: PropTypes.object
|
|
983
633
|
};
|
|
984
634
|
|
|
985
|
-
|
|
635
|
+
//#endregion
|
|
636
|
+
export { ComboBox as default };
|