@carbon/react 1.110.0-rc.0 → 1.111.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 +994 -994
- package/es/components/AILabel/index.js +47 -0
- package/es/components/AISkeleton/AISkeletonIcon.js +6 -0
- package/es/components/AISkeleton/AISkeletonPlaceholder.js +6 -1
- package/es/components/AISkeleton/AISkeletonText.js +15 -0
- package/es/components/Accordion/Accordion.Skeleton.js +15 -0
- package/es/components/Accordion/Accordion.js +22 -0
- package/es/components/Accordion/AccordionItem.js +33 -0
- package/es/components/AspectRatio/AspectRatio.js +19 -0
- package/es/components/BadgeIndicator/index.js +9 -0
- package/es/components/Breadcrumb/Breadcrumb.Skeleton.js +12 -0
- package/es/components/Breadcrumb/Breadcrumb.js +16 -0
- package/es/components/Breadcrumb/BreadcrumbItem.js +12 -0
- package/es/components/Button/Button.Skeleton.js +17 -0
- package/es/components/Button/Button.js +96 -0
- package/es/components/ButtonSet/ButtonSet.js +14 -0
- package/es/components/ChatButton/ChatButton.Skeleton.js +6 -0
- package/es/components/ChatButton/ChatButton.js +24 -0
- package/es/components/Checkbox/Checkbox.Skeleton.js +5 -1
- package/es/components/Checkbox/Checkbox.js +57 -0
- package/es/components/CheckboxGroup/CheckboxGroup.js +40 -0
- package/es/components/ClassPrefix/index.js +3 -0
- package/es/components/CodeSnippet/CodeSnippet.Skeleton.js +6 -0
- package/es/components/CodeSnippet/CodeSnippet.js +76 -0
- package/es/components/ComboBox/ComboBox.js +140 -0
- package/es/components/ComboButton/index.js +27 -0
- package/es/components/ComposedModal/ComposedModal.js +68 -0
- package/es/components/ComposedModal/ModalFooter.js +63 -0
- package/es/components/ComposedModal/ModalHeader.js +35 -0
- package/es/components/ContainedList/ContainedList.js +21 -0
- package/es/components/ContainedList/ContainedListItem/ContainedListItem.js +18 -0
- package/es/components/ContentSwitcher/ContentSwitcher.js +25 -0
- package/es/components/Copy/Copy.js +29 -0
- package/es/components/CopyButton/CopyButton.js +26 -0
- package/es/components/DataTable/DataTable.js +59 -0
- package/es/components/DataTable/Table.js +27 -0
- package/es/components/DataTable/TableBatchAction.js +10 -0
- package/es/components/DataTable/TableBatchActions.js +24 -0
- package/es/components/DataTable/TableBody.js +3 -0
- package/es/components/DataTable/TableCell.js +15 -0
- package/es/components/DataTable/TableContainer.js +18 -0
- package/es/components/DataTable/TableDecoratorRow.js +6 -0
- package/es/components/DataTable/TableExpandHeader.js +31 -0
- package/es/components/DataTable/TableExpandRow.js +29 -0
- package/es/components/DataTable/TableExpandedRow.js +9 -0
- package/es/components/DataTable/TableHeader.js +35 -0
- package/es/components/DataTable/TableRow.js +21 -0
- package/es/components/DataTable/TableSelectAll.js +28 -0
- package/es/components/DataTable/TableSelectRow.js +31 -0
- package/es/components/DataTable/TableSlugRow.js +6 -0
- package/es/components/DataTable/TableToolbar.js +15 -0
- package/es/components/DataTable/TableToolbarMenu.js +15 -0
- package/es/components/DataTable/TableToolbarSearch.js +58 -0
- package/es/components/DataTableSkeleton/DataTableSkeleton.js +24 -0
- package/es/components/DatePicker/DatePicker.Skeleton.js +12 -0
- package/es/components/DatePicker/DatePicker.js +88 -0
- package/es/components/DatePickerInput/DatePickerInput.js +79 -0
- package/es/components/Dialog/Dialog.js +130 -3
- package/es/components/Dropdown/Dropdown.Skeleton.js +9 -0
- package/es/components/Dropdown/Dropdown.js +109 -0
- package/es/components/FeatureFlags/index.js +3 -0
- package/es/components/FileUploader/FileUploader.Skeleton.js +5 -1
- package/es/components/FileUploader/FileUploader.js +57 -0
- package/es/components/FileUploader/FileUploaderButton.js +47 -0
- package/es/components/FileUploader/FileUploaderDropContainer.js +42 -0
- package/es/components/FileUploader/FileUploaderItem.js +29 -0
- package/es/components/FileUploader/Filename.js +18 -0
- package/es/components/FluidComboBox/FluidComboBox.Skeleton.js +5 -1
- package/es/components/FluidComboBox/FluidComboBox.js +61 -0
- package/es/components/FluidDatePicker/FluidDatePicker.Skeleton.js +6 -0
- package/es/components/FluidDatePicker/FluidDatePicker.js +21 -0
- package/es/components/FluidDropdown/FluidDropdown.Skeleton.js +5 -1
- package/es/components/FluidDropdown/FluidDropdown.js +65 -0
- package/es/components/FluidForm/FluidForm.js +6 -0
- package/es/components/FluidMultiSelect/FluidMultiSelect.Skeleton.js +5 -1
- package/es/components/FluidMultiSelect/FluidMultiSelect.js +128 -0
- package/es/components/FluidNumberInput/FluidNumberInput.Skeleton.js +5 -1
- package/es/components/FluidNumberInput/FluidNumberInput.js +95 -0
- package/es/components/FluidSearch/FluidSearch.Skeleton.js +5 -1
- package/es/components/FluidSearch/FluidSearch.js +45 -0
- package/es/components/FluidSelect/FluidSelect.Skeleton.js +5 -1
- package/es/components/FluidSelect/FluidSelect.js +38 -0
- package/es/components/FluidTextArea/FluidTextArea.Skeleton.js +5 -1
- package/es/components/FluidTextArea/FluidTextArea.js +67 -0
- package/es/components/FluidTextInput/FluidPasswordInput.js +58 -0
- package/es/components/FluidTextInput/FluidTextInput.Skeleton.js +5 -1
- package/es/components/FluidTextInput/FluidTextInput.js +54 -0
- package/es/components/FluidTimePicker/FluidTimePicker.Skeleton.js +6 -0
- package/es/components/FluidTimePicker/FluidTimePicker.js +28 -0
- package/es/components/FluidTimePickerSelect/FluidTimePickerSelect.js +26 -0
- package/es/components/Form/Form.js +6 -0
- package/es/components/FormGroup/FormGroup.js +25 -0
- package/es/components/FormItem/FormItem.js +6 -0
- package/es/components/FormLabel/FormLabel.js +9 -0
- package/es/components/Grid/CSSGrid.js +43 -0
- package/es/components/Grid/Column.js +86 -0
- package/es/components/Grid/ColumnHang.js +9 -0
- package/es/components/Grid/FlexGrid.js +24 -0
- package/es/components/Grid/Grid.js +27 -0
- package/es/components/Grid/GridContext.js +10 -0
- package/es/components/Grid/Row.js +17 -0
- package/es/components/Heading/index.js +19 -0
- package/es/components/Icon/Icon.Skeleton.js +5 -1
- package/es/components/IconButton/index.js +68 -0
- package/es/components/IconIndicator/index.js +12 -0
- package/es/components/IdPrefix/index.js +3 -0
- package/es/components/InlineCheckbox/InlineCheckbox.js +34 -0
- package/es/components/InlineLoading/InlineLoading.js +19 -0
- package/es/components/Layer/index.js +17 -0
- package/es/components/Layout/index.js +34 -0
- package/es/components/LayoutDirection/LayoutDirection.js +10 -0
- package/es/components/Link/Link.d.ts +1 -1
- package/es/components/Link/Link.js +28 -0
- package/es/components/ListBox/ListBox.js +41 -0
- package/es/components/ListBox/ListBoxField.js +17 -0
- package/es/components/ListBox/ListBoxMenu.js +6 -0
- package/es/components/ListBox/ListBoxMenuIcon.js +7 -0
- package/es/components/ListBox/ListBoxMenuItem.js +16 -0
- package/es/components/ListBox/ListBoxSelection.d.ts +1 -1
- package/es/components/ListBox/ListBoxSelection.js +32 -9
- package/es/components/ListBox/next/ListBoxSelection.d.ts +1 -1
- package/es/components/ListBox/next/ListBoxSelection.js +41 -6
- package/es/components/ListBox/next/ListBoxTrigger.js +7 -0
- package/es/components/ListItem/ListItem.js +6 -0
- package/es/components/Loading/Loading.js +18 -0
- package/es/components/Menu/Menu.js +52 -0
- package/es/components/Menu/MenuContext.d.ts +11 -12
- package/es/components/Menu/MenuItem.js +77 -1
- package/es/components/MenuButton/index.js +33 -0
- package/es/components/Modal/Modal.js +115 -1
- package/es/components/MultiSelect/FilterableMultiSelect.js +128 -0
- package/es/components/MultiSelect/MultiSelect.js +149 -1
- package/es/components/MultiSelect/MultiSelectPropTypes.js +25 -0
- package/es/components/Notification/Notification.js +207 -0
- package/es/components/NumberInput/NumberInput.Skeleton.js +9 -0
- package/es/components/NumberInput/NumberInput.js +138 -0
- package/es/components/OrderedList/OrderedList.js +15 -0
- package/es/components/OverflowMenu/OverflowMenu.js +76 -0
- package/es/components/OverflowMenu/next/index.js +30 -0
- package/es/components/OverflowMenuItem/OverflowMenuItem.js +36 -0
- package/es/components/PageHeader/PageHeader.js +48 -0
- package/es/components/Pagination/Pagination.Skeleton.js +5 -1
- package/es/components/Pagination/Pagination.d.ts +8 -0
- package/es/components/Pagination/Pagination.js +85 -3
- package/es/components/Pagination/experimental/PageSelector.js +8 -0
- package/es/components/Pagination/experimental/Pagination.js +54 -0
- package/es/components/PaginationNav/PaginationNav.js +80 -0
- package/es/components/Popover/index.js +58 -0
- package/es/components/ProgressBar/ProgressBar.js +27 -0
- package/es/components/ProgressIndicator/ProgressIndicator.Skeleton.js +6 -0
- package/es/components/ProgressIndicator/ProgressIndicator.js +58 -0
- package/es/components/RadioButton/RadioButton.Skeleton.js +5 -1
- package/es/components/RadioButton/RadioButton.js +63 -0
- package/es/components/RadioButtonGroup/RadioButtonGroup.js +59 -0
- package/es/components/RadioTile/RadioTile.js +45 -0
- package/es/components/Search/Search.Skeleton.js +9 -0
- package/es/components/Search/Search.js +66 -1
- package/es/components/Select/Select.Skeleton.js +6 -0
- package/es/components/Select/Select.js +82 -19
- package/es/components/SelectItem/SelectItem.js +15 -0
- package/es/components/SelectItemGroup/SelectItemGroup.js +12 -0
- package/es/components/ShapeIndicator/index.js +12 -0
- package/es/components/SkeletonIcon/SkeletonIcon.js +5 -1
- package/es/components/SkeletonPlaceholder/SkeletonPlaceholder.js +5 -1
- package/es/components/SkeletonText/SkeletonText.js +15 -0
- package/es/components/Slider/Slider.Skeleton.js +15 -0
- package/es/components/Slider/Slider.js +104 -0
- package/es/components/Stack/Stack.js +20 -0
- package/es/components/StructuredList/StructuredList.Skeleton.js +6 -0
- package/es/components/StructuredList/StructuredList.js +97 -0
- package/es/components/Switch/IconSwitch.js +47 -0
- package/es/components/Switch/Switch.js +30 -0
- package/es/components/TabContent/TabContent.js +9 -0
- package/es/components/Tabs/Tabs.Skeleton.js +6 -0
- package/es/components/Tabs/Tabs.d.ts +15 -1
- package/es/components/Tabs/Tabs.js +185 -5
- package/es/components/Tag/DismissibleTag.js +43 -0
- package/es/components/Tag/OperationalTag.js +22 -0
- package/es/components/Tag/SelectableTag.js +31 -0
- package/es/components/Tag/Tag.Skeleton.js +7 -0
- package/es/components/Tag/Tag.js +41 -0
- package/es/components/Text/Text.js +10 -0
- package/es/components/Text/TextDirection.js +11 -0
- package/es/components/TextArea/TextArea.Skeleton.js +6 -0
- package/es/components/TextArea/TextArea.js +80 -0
- package/es/components/TextInput/ControlledPasswordInput.js +64 -0
- package/es/components/TextInput/PasswordInput.js +83 -0
- package/es/components/TextInput/TextInput.Skeleton.js +9 -0
- package/es/components/TextInput/TextInput.js +76 -0
- package/es/components/Theme/index.js +21 -0
- package/es/components/Tile/Tile.js +157 -2
- package/es/components/TileGroup/TileGroup.js +28 -0
- package/es/components/TimePicker/TimePicker.js +67 -0
- package/es/components/TimePickerSelect/TimePickerSelect.js +15 -0
- package/es/components/Toggle/Toggle.js +46 -0
- package/es/components/ToggleSmall/ToggleSmall.Skeleton.js +11 -0
- package/es/components/Toggletip/index.js +38 -0
- package/es/components/Tooltip/DefinitionTooltip.js +36 -0
- package/es/components/Tooltip/Tooltip.js +46 -0
- package/es/components/TreeView/TreeNode.js +64 -0
- package/es/components/TreeView/TreeView.js +32 -0
- package/es/components/UIShell/Content.js +9 -0
- package/es/components/UIShell/Header.js +9 -0
- package/es/components/UIShell/HeaderContainer.js +9 -0
- package/es/components/UIShell/HeaderGlobalAction.js +28 -0
- package/es/components/UIShell/HeaderMenu.js +37 -0
- package/es/components/UIShell/HeaderMenuButton.js +17 -0
- package/es/components/UIShell/HeaderMenuItem.js +25 -0
- package/es/components/UIShell/HeaderName.js +18 -0
- package/es/components/UIShell/HeaderNavigation.js +10 -0
- package/es/components/UIShell/HeaderPanel.js +19 -0
- package/es/components/UIShell/HeaderSideNavItems.js +11 -0
- package/es/components/UIShell/Link.js +14 -0
- package/es/components/UIShell/SideNav.js +53 -0
- package/es/components/UIShell/SideNavDetails.js +10 -0
- package/es/components/UIShell/SideNavDivider.js +5 -1
- package/es/components/UIShell/SideNavFooter.js +11 -0
- package/es/components/UIShell/SideNavHeader.js +13 -0
- package/es/components/UIShell/SideNavIcon.js +10 -0
- package/es/components/UIShell/SideNavItem.js +10 -0
- package/es/components/UIShell/SideNavItems.js +11 -0
- package/es/components/UIShell/SideNavLink.js +22 -0
- package/es/components/UIShell/SideNavLinkText.js +6 -0
- package/es/components/UIShell/SideNavMenu.js +31 -0
- package/es/components/UIShell/SideNavMenuItem.js +17 -0
- package/es/components/UIShell/SideNavSwitcher.js +16 -0
- package/es/components/UIShell/SkipToContent.js +11 -0
- package/es/components/UIShell/Switcher.js +12 -0
- package/es/components/UIShell/SwitcherDivider.js +5 -1
- package/es/components/UIShell/SwitcherItem.js +30 -0
- package/es/components/UnorderedList/UnorderedList.js +12 -0
- package/es/index.d.ts +1 -0
- package/es/internal/OptimizedResize.js +6 -2
- package/es/internal/usePresence.js +6 -0
- package/es/internal/warnAboutDeprecatedReactVersion.d.ts +7 -0
- package/lib/components/AILabel/index.js +47 -0
- package/lib/components/AISkeleton/AISkeletonIcon.js +6 -0
- package/lib/components/AISkeleton/AISkeletonPlaceholder.js +6 -1
- package/lib/components/AISkeleton/AISkeletonText.js +15 -0
- package/lib/components/Accordion/Accordion.Skeleton.js +15 -0
- package/lib/components/Accordion/Accordion.js +22 -0
- package/lib/components/Accordion/AccordionItem.js +33 -0
- package/lib/components/AspectRatio/AspectRatio.js +19 -0
- package/lib/components/BadgeIndicator/index.js +9 -0
- package/lib/components/Breadcrumb/Breadcrumb.Skeleton.js +12 -0
- package/lib/components/Breadcrumb/Breadcrumb.js +16 -0
- package/lib/components/Breadcrumb/BreadcrumbItem.js +12 -0
- package/lib/components/Button/Button.Skeleton.js +17 -0
- package/lib/components/Button/Button.js +96 -0
- package/lib/components/ButtonSet/ButtonSet.js +14 -0
- package/lib/components/ChatButton/ChatButton.Skeleton.js +6 -0
- package/lib/components/ChatButton/ChatButton.js +24 -0
- package/lib/components/Checkbox/Checkbox.Skeleton.js +5 -1
- package/lib/components/Checkbox/Checkbox.js +57 -0
- package/lib/components/CheckboxGroup/CheckboxGroup.js +40 -0
- package/lib/components/ClassPrefix/index.js +3 -0
- package/lib/components/CodeSnippet/CodeSnippet.Skeleton.js +6 -0
- package/lib/components/CodeSnippet/CodeSnippet.js +76 -0
- package/lib/components/ComboBox/ComboBox.js +140 -0
- package/lib/components/ComboButton/index.js +27 -0
- package/lib/components/ComposedModal/ComposedModal.js +68 -0
- package/lib/components/ComposedModal/ComposedModalContext.js +0 -1
- package/lib/components/ComposedModal/ModalFooter.js +63 -0
- package/lib/components/ComposedModal/ModalHeader.js +35 -0
- package/lib/components/ComposedModal/useComposedModalState.js +0 -1
- package/lib/components/ContainedList/ContainedList.js +21 -0
- package/lib/components/ContainedList/ContainedListItem/ContainedListItem.js +18 -0
- package/lib/components/ContainedList/index.js +2 -2
- package/lib/components/ContentSwitcher/ContentSwitcher.js +25 -0
- package/lib/components/ContextMenu/useContextMenu.js +0 -1
- package/lib/components/Copy/Copy.js +29 -0
- package/lib/components/CopyButton/CopyButton.js +26 -0
- package/lib/components/DataTable/DataTable.js +59 -0
- package/lib/components/DataTable/Table.js +27 -0
- package/lib/components/DataTable/TableBatchAction.js +10 -0
- package/lib/components/DataTable/TableBatchActions.js +24 -0
- package/lib/components/DataTable/TableBody.js +3 -0
- package/lib/components/DataTable/TableCell.js +15 -0
- package/lib/components/DataTable/TableContainer.js +18 -0
- package/lib/components/DataTable/TableContext.js +0 -1
- package/lib/components/DataTable/TableDecoratorRow.js +6 -0
- package/lib/components/DataTable/TableExpandHeader.js +31 -0
- package/lib/components/DataTable/TableExpandRow.js +29 -0
- package/lib/components/DataTable/TableExpandedRow.js +9 -0
- package/lib/components/DataTable/TableHeader.js +35 -0
- package/lib/components/DataTable/TableRow.js +21 -0
- package/lib/components/DataTable/TableSelectAll.js +28 -0
- package/lib/components/DataTable/TableSelectRow.js +31 -0
- package/lib/components/DataTable/TableSlugRow.js +6 -0
- package/lib/components/DataTable/TableToolbar.js +15 -0
- package/lib/components/DataTable/TableToolbarMenu.js +15 -0
- package/lib/components/DataTable/TableToolbarSearch.js +58 -0
- package/lib/components/DataTableSkeleton/DataTableSkeleton.js +24 -0
- package/lib/components/DatePicker/DatePicker.Skeleton.js +12 -0
- package/lib/components/DatePicker/DatePicker.js +88 -0
- package/lib/components/DatePickerInput/DatePickerInput.js +79 -0
- package/lib/components/Dialog/Dialog.js +130 -3
- package/lib/components/Dropdown/Dropdown.Skeleton.js +9 -0
- package/lib/components/Dropdown/Dropdown.js +109 -0
- package/lib/components/ErrorBoundary/ErrorBoundaryContext.js +0 -1
- package/lib/components/FeatureFlags/index.js +3 -0
- package/lib/components/FileUploader/FileUploader.Skeleton.js +5 -1
- package/lib/components/FileUploader/FileUploader.js +57 -0
- package/lib/components/FileUploader/FileUploaderButton.js +47 -0
- package/lib/components/FileUploader/FileUploaderDropContainer.js +42 -0
- package/lib/components/FileUploader/FileUploaderItem.js +29 -0
- package/lib/components/FileUploader/Filename.js +18 -0
- package/lib/components/FluidComboBox/FluidComboBox.Skeleton.js +5 -1
- package/lib/components/FluidComboBox/FluidComboBox.js +61 -0
- package/lib/components/FluidDatePicker/FluidDatePicker.Skeleton.js +6 -0
- package/lib/components/FluidDatePicker/FluidDatePicker.js +21 -0
- package/lib/components/FluidDropdown/FluidDropdown.Skeleton.js +5 -1
- package/lib/components/FluidDropdown/FluidDropdown.js +65 -0
- package/lib/components/FluidForm/FluidForm.js +6 -0
- package/lib/components/FluidForm/FormContext.js +0 -1
- package/lib/components/FluidMultiSelect/FluidMultiSelect.Skeleton.js +5 -1
- package/lib/components/FluidMultiSelect/FluidMultiSelect.js +128 -0
- package/lib/components/FluidNumberInput/FluidNumberInput.Skeleton.js +5 -1
- package/lib/components/FluidNumberInput/FluidNumberInput.js +95 -0
- package/lib/components/FluidSearch/FluidSearch.Skeleton.js +5 -1
- package/lib/components/FluidSearch/FluidSearch.js +45 -0
- package/lib/components/FluidSelect/FluidSelect.Skeleton.js +5 -1
- package/lib/components/FluidSelect/FluidSelect.js +38 -0
- package/lib/components/FluidTextArea/FluidTextArea.Skeleton.js +5 -1
- package/lib/components/FluidTextArea/FluidTextArea.js +67 -0
- package/lib/components/FluidTextInput/FluidPasswordInput.js +58 -0
- package/lib/components/FluidTextInput/FluidTextInput.Skeleton.js +5 -1
- package/lib/components/FluidTextInput/FluidTextInput.js +54 -0
- package/lib/components/FluidTimePicker/FluidTimePicker.Skeleton.js +6 -0
- package/lib/components/FluidTimePicker/FluidTimePicker.js +28 -0
- package/lib/components/FluidTimePickerSelect/FluidTimePickerSelect.js +26 -0
- package/lib/components/Form/Form.js +6 -0
- package/lib/components/FormGroup/FormGroup.js +25 -0
- package/lib/components/FormItem/FormItem.js +6 -0
- package/lib/components/FormLabel/FormLabel.js +9 -0
- package/lib/components/Grid/CSSGrid.js +43 -0
- package/lib/components/Grid/Column.js +86 -0
- package/lib/components/Grid/ColumnHang.js +9 -0
- package/lib/components/Grid/FlexGrid.js +24 -0
- package/lib/components/Grid/Grid.js +27 -0
- package/lib/components/Grid/GridContext.js +10 -0
- package/lib/components/Grid/Row.js +17 -0
- package/lib/components/Heading/index.js +19 -0
- package/lib/components/Icon/Icon.Skeleton.js +5 -1
- package/lib/components/IconButton/index.js +68 -0
- package/lib/components/IconIndicator/index.js +12 -0
- package/lib/components/IdPrefix/index.js +3 -0
- package/lib/components/InlineCheckbox/InlineCheckbox.js +34 -0
- package/lib/components/InlineLoading/InlineLoading.js +19 -0
- package/lib/components/Layer/index.js +17 -0
- package/lib/components/Layout/index.js +34 -0
- package/lib/components/LayoutDirection/LayoutDirection.js +10 -0
- package/lib/components/LayoutDirection/useLayoutDirection.js +0 -1
- package/lib/components/Link/Link.d.ts +1 -1
- package/lib/components/Link/Link.js +28 -0
- package/lib/components/ListBox/ListBox.js +41 -0
- package/lib/components/ListBox/ListBoxField.js +17 -0
- package/lib/components/ListBox/ListBoxMenu.js +6 -0
- package/lib/components/ListBox/ListBoxMenuIcon.js +7 -0
- package/lib/components/ListBox/ListBoxMenuItem.js +16 -0
- package/lib/components/ListBox/ListBoxSelection.d.ts +1 -1
- package/lib/components/ListBox/ListBoxSelection.js +32 -9
- package/lib/components/ListBox/next/ListBoxSelection.d.ts +1 -1
- package/lib/components/ListBox/next/ListBoxSelection.js +41 -6
- package/lib/components/ListBox/next/ListBoxTrigger.js +7 -0
- package/lib/components/ListItem/ListItem.js +6 -0
- package/lib/components/Loading/Loading.js +18 -0
- package/lib/components/Menu/Menu.js +52 -0
- package/lib/components/Menu/MenuContext.d.ts +11 -12
- package/lib/components/Menu/MenuContext.js +0 -1
- package/lib/components/Menu/MenuItem.js +77 -1
- package/lib/components/MenuButton/index.js +33 -0
- package/lib/components/Modal/Modal.js +115 -1
- package/lib/components/MultiSelect/FilterableMultiSelect.js +128 -0
- package/lib/components/MultiSelect/MultiSelect.js +148 -0
- package/lib/components/MultiSelect/MultiSelectPropTypes.js +25 -0
- package/lib/components/Notification/Notification.js +207 -0
- package/lib/components/NumberInput/NumberInput.Skeleton.js +9 -0
- package/lib/components/NumberInput/NumberInput.js +138 -0
- package/lib/components/OrderedList/OrderedList.js +15 -0
- package/lib/components/OverflowMenu/OverflowMenu.js +76 -0
- package/lib/components/OverflowMenu/next/index.js +30 -0
- package/lib/components/OverflowMenuItem/OverflowMenuItem.js +36 -0
- package/lib/components/PageHeader/PageHeader.js +48 -0
- package/lib/components/Pagination/Pagination.Skeleton.js +5 -1
- package/lib/components/Pagination/Pagination.d.ts +8 -0
- package/lib/components/Pagination/Pagination.js +85 -3
- package/lib/components/Pagination/experimental/PageSelector.js +8 -0
- package/lib/components/Pagination/experimental/Pagination.js +54 -0
- package/lib/components/PaginationNav/PaginationNav.js +80 -0
- package/lib/components/Popover/index.js +58 -0
- package/lib/components/ProgressBar/ProgressBar.js +27 -0
- package/lib/components/ProgressIndicator/ProgressIndicator.Skeleton.js +6 -0
- package/lib/components/ProgressIndicator/ProgressIndicator.js +58 -0
- package/lib/components/RadioButton/RadioButton.Skeleton.js +5 -1
- package/lib/components/RadioButton/RadioButton.js +63 -0
- package/lib/components/RadioButtonGroup/RadioButtonGroup.js +59 -0
- package/lib/components/RadioTile/RadioTile.js +45 -0
- package/lib/components/Search/Search.Skeleton.js +9 -0
- package/lib/components/Search/Search.js +66 -1
- package/lib/components/Select/Select.Skeleton.js +6 -0
- package/lib/components/Select/Select.js +82 -19
- package/lib/components/SelectItem/SelectItem.js +15 -0
- package/lib/components/SelectItemGroup/SelectItemGroup.js +12 -0
- package/lib/components/ShapeIndicator/index.js +12 -0
- package/lib/components/SkeletonIcon/SkeletonIcon.js +5 -1
- package/lib/components/SkeletonPlaceholder/SkeletonPlaceholder.js +5 -1
- package/lib/components/SkeletonText/SkeletonText.js +15 -0
- package/lib/components/Slider/Slider.Skeleton.js +15 -0
- package/lib/components/Slider/Slider.js +104 -0
- package/lib/components/Stack/Stack.js +20 -0
- package/lib/components/StructuredList/StructuredList.Skeleton.js +6 -0
- package/lib/components/StructuredList/StructuredList.js +97 -0
- package/lib/components/Switch/IconSwitch.js +47 -0
- package/lib/components/Switch/Switch.js +30 -0
- package/lib/components/TabContent/TabContent.js +9 -0
- package/lib/components/Tabs/Tabs.Skeleton.js +6 -0
- package/lib/components/Tabs/Tabs.d.ts +15 -1
- package/lib/components/Tabs/Tabs.js +185 -5
- package/lib/components/Tabs/usePressable.js +0 -1
- package/lib/components/Tag/DismissibleTag.js +43 -0
- package/lib/components/Tag/OperationalTag.js +22 -0
- package/lib/components/Tag/SelectableTag.js +31 -0
- package/lib/components/Tag/Tag.Skeleton.js +7 -0
- package/lib/components/Tag/Tag.js +41 -0
- package/lib/components/Text/Text.js +10 -0
- package/lib/components/Text/TextDirection.js +11 -0
- package/lib/components/Text/TextDirectionContext.js +0 -1
- package/lib/components/TextArea/TextArea.Skeleton.js +6 -0
- package/lib/components/TextArea/TextArea.js +80 -0
- package/lib/components/TextInput/ControlledPasswordInput.js +64 -0
- package/lib/components/TextInput/PasswordInput.js +83 -0
- package/lib/components/TextInput/TextInput.Skeleton.js +9 -0
- package/lib/components/TextInput/TextInput.js +76 -0
- package/lib/components/Theme/index.js +21 -0
- package/lib/components/Tile/Tile.js +157 -2
- package/lib/components/TileGroup/TileGroup.js +28 -0
- package/lib/components/TimePicker/TimePicker.js +67 -0
- package/lib/components/TimePickerSelect/TimePickerSelect.js +15 -0
- package/lib/components/Toggle/Toggle.js +46 -0
- package/lib/components/ToggleSmall/ToggleSmall.Skeleton.js +11 -0
- package/lib/components/Toggletip/index.js +38 -0
- package/lib/components/Tooltip/DefinitionTooltip.js +36 -0
- package/lib/components/Tooltip/Tooltip.js +46 -0
- package/lib/components/TreeView/TreeContext.js +0 -1
- package/lib/components/TreeView/TreeNode.js +64 -0
- package/lib/components/TreeView/TreeView.js +32 -0
- package/lib/components/UIShell/Content.js +9 -0
- package/lib/components/UIShell/Header.js +9 -0
- package/lib/components/UIShell/HeaderContainer.js +9 -0
- package/lib/components/UIShell/HeaderGlobalAction.js +28 -0
- package/lib/components/UIShell/HeaderMenu.js +37 -0
- package/lib/components/UIShell/HeaderMenuButton.js +17 -0
- package/lib/components/UIShell/HeaderMenuItem.js +25 -0
- package/lib/components/UIShell/HeaderName.js +18 -0
- package/lib/components/UIShell/HeaderNavigation.js +10 -0
- package/lib/components/UIShell/HeaderPanel.js +19 -0
- package/lib/components/UIShell/HeaderSideNavItems.js +11 -0
- package/lib/components/UIShell/Link.js +14 -0
- package/lib/components/UIShell/SideNav.js +53 -0
- package/lib/components/UIShell/SideNavDetails.js +10 -0
- package/lib/components/UIShell/SideNavDivider.js +5 -1
- package/lib/components/UIShell/SideNavFooter.js +11 -0
- package/lib/components/UIShell/SideNavHeader.js +13 -0
- package/lib/components/UIShell/SideNavIcon.js +10 -0
- package/lib/components/UIShell/SideNavItem.js +10 -0
- package/lib/components/UIShell/SideNavItems.js +11 -0
- package/lib/components/UIShell/SideNavLink.js +22 -0
- package/lib/components/UIShell/SideNavLinkText.js +6 -0
- package/lib/components/UIShell/SideNavMenu.js +31 -0
- package/lib/components/UIShell/SideNavMenuItem.js +17 -0
- package/lib/components/UIShell/SideNavSwitcher.js +16 -0
- package/lib/components/UIShell/SkipToContent.js +11 -0
- package/lib/components/UIShell/Switcher.js +12 -0
- package/lib/components/UIShell/SwitcherDivider.js +5 -1
- package/lib/components/UIShell/SwitcherItem.js +30 -0
- package/lib/components/UnorderedList/UnorderedList.js +12 -0
- package/lib/feature-flags.js +0 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +241 -241
- package/lib/internal/OptimizedResize.js +6 -2
- package/lib/internal/useAttachedMenu.js +0 -1
- package/lib/internal/useControllableState.js +0 -1
- package/lib/internal/useDelayedState.js +0 -1
- package/lib/internal/useEvent.js +0 -1
- package/lib/internal/useIsomorphicEffect.js +0 -1
- package/lib/internal/useMatchMedia.js +0 -1
- package/lib/internal/useMergedRefs.js +0 -1
- package/lib/internal/useNoInteractiveChildren.js +0 -1
- package/lib/internal/useOutsideClick.js +0 -1
- package/lib/internal/useOverflowItems.js +0 -1
- package/lib/internal/usePresence.js +6 -1
- package/lib/internal/usePresenceContext.js +0 -1
- package/lib/internal/usePreviousValue.js +0 -1
- package/lib/internal/useResizeObserver.js +0 -1
- package/lib/internal/useSavedCallback.js +0 -1
- package/lib/internal/utils.js +0 -1
- package/lib/internal/warnAboutDeprecatedReactVersion.d.ts +7 -0
- package/lib/internal/wrapFocus.js +0 -1
- package/package.json +9 -9
- package/telemetry.yml +12 -0
|
@@ -43,12 +43,36 @@ const FlexGrid = react.default.forwardRef(({ as, condensed = false, narrow = fal
|
|
|
43
43
|
});
|
|
44
44
|
});
|
|
45
45
|
FlexGrid.propTypes = {
|
|
46
|
+
/**
|
|
47
|
+
* Provide a custom element to render instead of the default <div>
|
|
48
|
+
*/
|
|
46
49
|
as: prop_types.default.oneOfType([prop_types.default.string, prop_types.default.elementType]),
|
|
50
|
+
/**
|
|
51
|
+
* Pass in content that will be rendered within the `FlexGrid`
|
|
52
|
+
*/
|
|
47
53
|
children: prop_types.default.node,
|
|
54
|
+
/**
|
|
55
|
+
* Specify a custom className to be applied to the `FlexGrid`
|
|
56
|
+
*/
|
|
48
57
|
className: prop_types.default.string,
|
|
58
|
+
/**
|
|
59
|
+
* Collapse the gutter to 1px. Useful for fluid layouts.
|
|
60
|
+
* Rows have 1px of margin between them to match gutter.
|
|
61
|
+
*/
|
|
49
62
|
condensed: prop_types.default.bool,
|
|
63
|
+
/**
|
|
64
|
+
* Remove the default max width that the grid has set
|
|
65
|
+
*/
|
|
50
66
|
fullWidth: prop_types.default.bool,
|
|
67
|
+
/**
|
|
68
|
+
* Container hangs 16px into the gutter. Useful for
|
|
69
|
+
* typographic alignment with and without containers.
|
|
70
|
+
*/
|
|
51
71
|
narrow: prop_types.default.bool,
|
|
72
|
+
/**
|
|
73
|
+
* Add a row gap to the grid that matches the current gutter size.
|
|
74
|
+
* This is useful when you want consistent vertical spacing between rows.
|
|
75
|
+
*/
|
|
52
76
|
withRowGap: prop_types.default.bool
|
|
53
77
|
};
|
|
54
78
|
const FlexGridComponent = FlexGrid;
|
|
@@ -26,17 +26,44 @@ function Grid(props) {
|
|
|
26
26
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_FlexGrid.FlexGridComponent, { ...props });
|
|
27
27
|
}
|
|
28
28
|
Grid.propTypes = {
|
|
29
|
+
/**
|
|
30
|
+
* Specify grid alignment. Default is center
|
|
31
|
+
*/
|
|
29
32
|
align: prop_types.default.oneOf([
|
|
30
33
|
"start",
|
|
31
34
|
"center",
|
|
32
35
|
"end"
|
|
33
36
|
]),
|
|
37
|
+
/**
|
|
38
|
+
* Provide a custom element to render instead of the default <div>
|
|
39
|
+
*/
|
|
34
40
|
as: prop_types.default.oneOfType([prop_types.default.string, prop_types.default.elementType]),
|
|
41
|
+
/**
|
|
42
|
+
* Pass in content that will be rendered within the `Grid`
|
|
43
|
+
*/
|
|
35
44
|
children: prop_types.default.node,
|
|
45
|
+
/**
|
|
46
|
+
* Specify a custom className to be applied to the `Grid`
|
|
47
|
+
*/
|
|
36
48
|
className: prop_types.default.string,
|
|
49
|
+
/**
|
|
50
|
+
* Collapse the gutter to 1px. Useful for fluid layouts.
|
|
51
|
+
* Rows have 1px of margin between them to match gutter.
|
|
52
|
+
*/
|
|
37
53
|
condensed: prop_types.default.bool,
|
|
54
|
+
/**
|
|
55
|
+
* Remove the default max width that the grid has set
|
|
56
|
+
*/
|
|
38
57
|
fullWidth: prop_types.default.bool,
|
|
58
|
+
/**
|
|
59
|
+
* Container hangs 16px into the gutter. Useful for
|
|
60
|
+
* typographic alignment with and without containers.
|
|
61
|
+
*/
|
|
39
62
|
narrow: prop_types.default.bool,
|
|
63
|
+
/**
|
|
64
|
+
* Add a row gap to the grid that matches the current gutter size.
|
|
65
|
+
* This is useful when you want consistent vertical spacing between rows.
|
|
66
|
+
*/
|
|
40
67
|
withRowGap: prop_types.default.bool
|
|
41
68
|
};
|
|
42
69
|
const GridAsGridComponent = Grid;
|
|
@@ -39,8 +39,18 @@ const GridSettings = ({ children, mode, subgrid = false }) => {
|
|
|
39
39
|
});
|
|
40
40
|
};
|
|
41
41
|
GridSettings.propTypes = {
|
|
42
|
+
/**
|
|
43
|
+
* Pass in components which will be rendered within the `GridSettings`
|
|
44
|
+
* component
|
|
45
|
+
*/
|
|
42
46
|
children: prop_types.default.node,
|
|
47
|
+
/**
|
|
48
|
+
* Specify the gutter mode for the GridContext
|
|
49
|
+
*/
|
|
43
50
|
mode: prop_types.default.oneOf(["flexbox", "css-grid"]).isRequired,
|
|
51
|
+
/**
|
|
52
|
+
* Specify whether subgrid should be enabled
|
|
53
|
+
*/
|
|
44
54
|
subgrid: prop_types.default.bool
|
|
45
55
|
};
|
|
46
56
|
/**
|
|
@@ -34,10 +34,27 @@ function Row({ as: BaseComponent = "div", condensed = false, narrow = false, cla
|
|
|
34
34
|
});
|
|
35
35
|
}
|
|
36
36
|
Row.propTypes = {
|
|
37
|
+
/**
|
|
38
|
+
* Provide a custom element to render instead of the default <div>
|
|
39
|
+
*/
|
|
37
40
|
as: prop_types.default.oneOfType([prop_types.default.string, prop_types.default.elementType]),
|
|
41
|
+
/**
|
|
42
|
+
* Pass in content that will be rendered within the `Row`
|
|
43
|
+
*/
|
|
38
44
|
children: prop_types.default.node,
|
|
45
|
+
/**
|
|
46
|
+
* Specify a custom className to be applied to the `Row`
|
|
47
|
+
*/
|
|
39
48
|
className: prop_types.default.string,
|
|
49
|
+
/**
|
|
50
|
+
* Specify a single row as condensed.Rows that are adjacent
|
|
51
|
+
* and are condensed will have 2px of margin between them to match gutter.
|
|
52
|
+
*/
|
|
40
53
|
condensed: prop_types.default.bool,
|
|
54
|
+
/**
|
|
55
|
+
* Specify a single row as narrow. The container will hang
|
|
56
|
+
* 16px into the gutter.
|
|
57
|
+
*/
|
|
41
58
|
narrow: prop_types.default.bool
|
|
42
59
|
};
|
|
43
60
|
//#endregion
|
|
@@ -32,9 +32,22 @@ const Section = react.default.forwardRef(function Section({ as: BaseComponent =
|
|
|
32
32
|
});
|
|
33
33
|
});
|
|
34
34
|
Section.propTypes = {
|
|
35
|
+
/**
|
|
36
|
+
* Provide an alternative tag or component to use instead of the default
|
|
37
|
+
* <section> element
|
|
38
|
+
*/
|
|
35
39
|
as: prop_types.default.elementType,
|
|
40
|
+
/**
|
|
41
|
+
* Specify the content that will be placed in the component
|
|
42
|
+
*/
|
|
36
43
|
children: prop_types.default.node,
|
|
44
|
+
/**
|
|
45
|
+
* Specify a class name for the outermost node of the component
|
|
46
|
+
*/
|
|
37
47
|
className: prop_types.default.string,
|
|
48
|
+
/**
|
|
49
|
+
* Overrides the level of the section
|
|
50
|
+
*/
|
|
38
51
|
level: prop_types.default.number
|
|
39
52
|
};
|
|
40
53
|
const Heading = react.default.forwardRef((props, ref) => {
|
|
@@ -44,7 +57,13 @@ const Heading = react.default.forwardRef((props, ref) => {
|
|
|
44
57
|
});
|
|
45
58
|
});
|
|
46
59
|
Heading.propTypes = {
|
|
60
|
+
/**
|
|
61
|
+
* Specify the content that will be placed in the component
|
|
62
|
+
*/
|
|
47
63
|
children: prop_types.default.node,
|
|
64
|
+
/**
|
|
65
|
+
* Specify a class name for the outermost node of the component
|
|
66
|
+
*/
|
|
48
67
|
className: prop_types.default.string
|
|
49
68
|
};
|
|
50
69
|
//#endregion
|
|
@@ -27,6 +27,10 @@ const IconSkeleton = ({ className, ...rest }) => {
|
|
|
27
27
|
...rest
|
|
28
28
|
});
|
|
29
29
|
};
|
|
30
|
-
IconSkeleton.propTypes = {
|
|
30
|
+
IconSkeleton.propTypes = {
|
|
31
|
+
/**
|
|
32
|
+
* Specify an optional className to add.
|
|
33
|
+
*/
|
|
34
|
+
className: prop_types.default.string };
|
|
31
35
|
//#endregion
|
|
32
36
|
exports.default = IconSkeleton;
|
|
@@ -67,6 +67,9 @@ const IconButton = (0, react.forwardRef)(({ align, autoAlign = false, badgeCount
|
|
|
67
67
|
});
|
|
68
68
|
});
|
|
69
69
|
IconButton.propTypes = {
|
|
70
|
+
/**
|
|
71
|
+
* Specify how the trigger should align with the tooltip
|
|
72
|
+
*/
|
|
70
73
|
align: require_deprecateValuesWithin.deprecateValuesWithin(prop_types.default.oneOf([
|
|
71
74
|
"top",
|
|
72
75
|
"top-left",
|
|
@@ -102,28 +105,93 @@ IconButton.propTypes = {
|
|
|
102
105
|
"right-start",
|
|
103
106
|
"right-end"
|
|
104
107
|
], require_mapPopoverAlign.mapPopoverAlign),
|
|
108
|
+
/**
|
|
109
|
+
* **Experimental**: Will attempt to automatically align the tooltip. Requires
|
|
110
|
+
* React v17+
|
|
111
|
+
* @see https://github.com/carbon-design-system/carbon/issues/18714
|
|
112
|
+
*/
|
|
105
113
|
autoAlign: prop_types.default.bool,
|
|
114
|
+
/**
|
|
115
|
+
* **Experimental**: Display a badge on the button. An empty/dot badge if 0, a numbered badge if > 0.
|
|
116
|
+
* Must be used with size="lg", kind="ghost" and hasIconOnly=true
|
|
117
|
+
*/
|
|
106
118
|
badgeCount: prop_types.default.number,
|
|
119
|
+
/**
|
|
120
|
+
* Optionally specify an href for your IconButton to become an `<a>` element
|
|
121
|
+
*/
|
|
107
122
|
href: prop_types.default.string,
|
|
123
|
+
/**
|
|
124
|
+
* Provide an icon or asset to be rendered inside of the IconButton
|
|
125
|
+
*/
|
|
108
126
|
children: prop_types.default.node,
|
|
127
|
+
/**
|
|
128
|
+
* Specify an optional className to be added to your Button
|
|
129
|
+
*/
|
|
109
130
|
className: prop_types.default.string,
|
|
131
|
+
/**
|
|
132
|
+
* Determines whether the tooltip should close when inner content is activated (click, Enter or Space)
|
|
133
|
+
*/
|
|
110
134
|
closeOnActivation: prop_types.default.bool,
|
|
135
|
+
/**
|
|
136
|
+
* Specify whether the tooltip should be open when it first renders
|
|
137
|
+
*/
|
|
111
138
|
defaultOpen: prop_types.default.bool,
|
|
139
|
+
/**
|
|
140
|
+
* Specify whether a drop shadow should be rendered on the tooltip
|
|
141
|
+
*/
|
|
112
142
|
dropShadow: prop_types.default.bool,
|
|
143
|
+
/**
|
|
144
|
+
* Specify whether the Button should be disabled, or not
|
|
145
|
+
*/
|
|
113
146
|
disabled: prop_types.default.bool,
|
|
147
|
+
/**
|
|
148
|
+
* Specify the duration in milliseconds to delay before displaying the tooltip
|
|
149
|
+
*/
|
|
114
150
|
enterDelayMs: prop_types.default.number,
|
|
151
|
+
/**
|
|
152
|
+
* Specify whether the IconButton is currently selected
|
|
153
|
+
*/
|
|
115
154
|
isSelected: prop_types.default.bool,
|
|
155
|
+
/**
|
|
156
|
+
* Render the tooltip using the high-contrast theme
|
|
157
|
+
*/
|
|
116
158
|
highContrast: prop_types.default.bool,
|
|
159
|
+
/**
|
|
160
|
+
* Specify the type of button to be used as the base for the IconButton
|
|
161
|
+
*/
|
|
117
162
|
kind: prop_types.default.oneOf(IconButtonKinds),
|
|
163
|
+
/**
|
|
164
|
+
* Provide the label to be rendered inside of the Tooltip. The label will use
|
|
165
|
+
* `aria-labelledby` and will fully describe the child node that is provided.
|
|
166
|
+
* This means that if you have text in the child node it will not be
|
|
167
|
+
* announced to the screen reader.
|
|
168
|
+
* If using `badgeCount={0}`, make sure the label explains that there is a
|
|
169
|
+
* new notification.
|
|
170
|
+
*/
|
|
118
171
|
label: prop_types.default.node.isRequired,
|
|
172
|
+
/**
|
|
173
|
+
* Specify the duration in milliseconds to delay before hiding the tooltip
|
|
174
|
+
*/
|
|
119
175
|
leaveDelayMs: prop_types.default.number,
|
|
176
|
+
/**
|
|
177
|
+
* Optionally specify a `rel` when using an `<a>` element.
|
|
178
|
+
*/
|
|
120
179
|
rel: prop_types.default.string,
|
|
180
|
+
/**
|
|
181
|
+
* Specify the size of the Button.
|
|
182
|
+
*/
|
|
121
183
|
size: prop_types.default.oneOf([
|
|
122
184
|
"sm",
|
|
123
185
|
"md",
|
|
124
186
|
"lg"
|
|
125
187
|
]),
|
|
188
|
+
/**
|
|
189
|
+
* Optionally specify a `target` when using an `<a>` element.
|
|
190
|
+
*/
|
|
126
191
|
target: prop_types.default.string,
|
|
192
|
+
/**
|
|
193
|
+
* Specify an optional className to be added to your Tooltip wrapper
|
|
194
|
+
*/
|
|
127
195
|
wrapperClasses: prop_types.default.string
|
|
128
196
|
};
|
|
129
197
|
//#endregion
|
|
@@ -65,9 +65,21 @@ const IconIndicator = react.default.forwardRef(({ className: customClassName, ki
|
|
|
65
65
|
});
|
|
66
66
|
});
|
|
67
67
|
IconIndicator.propTypes = {
|
|
68
|
+
/**
|
|
69
|
+
* Specify an optional className to add.
|
|
70
|
+
*/
|
|
68
71
|
className: prop_types.default.string,
|
|
72
|
+
/**
|
|
73
|
+
* Specify the kind of the Icon Indicator
|
|
74
|
+
*/
|
|
69
75
|
kind: prop_types.default.oneOf(IconIndicatorKinds).isRequired,
|
|
76
|
+
/**
|
|
77
|
+
* Label next to the icon.
|
|
78
|
+
*/
|
|
70
79
|
label: prop_types.default.string.isRequired,
|
|
80
|
+
/**
|
|
81
|
+
* Specify the size of the Icon Indicator. Defaults to 16.
|
|
82
|
+
*/
|
|
71
83
|
size: prop_types.default.oneOf([16, 20])
|
|
72
84
|
};
|
|
73
85
|
//#endregion
|
|
@@ -27,6 +27,9 @@ function IdPrefix({ children, prefix }) {
|
|
|
27
27
|
}
|
|
28
28
|
IdPrefix.propTypes = {
|
|
29
29
|
children: prop_types.default.node,
|
|
30
|
+
/**
|
|
31
|
+
* The value used to prefix the auto-generated id placed on some DOM elements
|
|
32
|
+
*/
|
|
30
33
|
prefix: prop_types.default.string
|
|
31
34
|
};
|
|
32
35
|
//#endregion
|
|
@@ -65,16 +65,50 @@ const InlineCheckbox = react.default.forwardRef((props, forwardRef) => {
|
|
|
65
65
|
});
|
|
66
66
|
});
|
|
67
67
|
InlineCheckbox.propTypes = {
|
|
68
|
+
/**
|
|
69
|
+
* Specify the label for the control
|
|
70
|
+
*/
|
|
68
71
|
["aria-label"]: prop_types.default.string.isRequired,
|
|
72
|
+
/**
|
|
73
|
+
* Deprecated, please use `aria-label` instead.
|
|
74
|
+
* Specify the label for the control
|
|
75
|
+
*/
|
|
69
76
|
ariaLabel: require_deprecate.deprecate(prop_types.default.string.isRequired, "The `ariaLabel` prop has been deprecated in favor of `aria-label`. This prop will be removed in the next major release."),
|
|
77
|
+
/**
|
|
78
|
+
* Specify whether the underlying control is checked, or not
|
|
79
|
+
*/
|
|
70
80
|
checked: prop_types.default.bool,
|
|
81
|
+
/**
|
|
82
|
+
* Specify whether the underlying input control should be disabled
|
|
83
|
+
*/
|
|
71
84
|
disabled: prop_types.default.bool,
|
|
85
|
+
/**
|
|
86
|
+
* Provide an `id` for the underlying input control
|
|
87
|
+
*/
|
|
72
88
|
id: prop_types.default.string.isRequired,
|
|
89
|
+
/**
|
|
90
|
+
* Specify whether the control is in an indeterminate state
|
|
91
|
+
*/
|
|
73
92
|
indeterminate: prop_types.default.bool,
|
|
93
|
+
/**
|
|
94
|
+
* Provide a `name` for the underlying input control
|
|
95
|
+
*/
|
|
74
96
|
name: prop_types.default.string.isRequired,
|
|
97
|
+
/**
|
|
98
|
+
* Provide an optional hook that is called each time the input is updated
|
|
99
|
+
*/
|
|
75
100
|
onChange: prop_types.default.func,
|
|
101
|
+
/**
|
|
102
|
+
* Provide a handler that is invoked when a user clicks on the control
|
|
103
|
+
*/
|
|
76
104
|
onClick: prop_types.default.func,
|
|
105
|
+
/**
|
|
106
|
+
* Provide a handler that is invoked on the key down event for the control
|
|
107
|
+
*/
|
|
77
108
|
onKeyDown: prop_types.default.func,
|
|
109
|
+
/**
|
|
110
|
+
* Provide an optional tooltip for the InlineCheckbox
|
|
111
|
+
*/
|
|
78
112
|
title: prop_types.default.string
|
|
79
113
|
};
|
|
80
114
|
//#endregion
|
|
@@ -80,16 +80,35 @@ const InlineLoading = ({ className, status = "active", iconDescription, descript
|
|
|
80
80
|
});
|
|
81
81
|
};
|
|
82
82
|
InlineLoading.propTypes = {
|
|
83
|
+
/**
|
|
84
|
+
* Specify a custom className to be applied to the container node
|
|
85
|
+
*/
|
|
83
86
|
className: prop_types.default.string,
|
|
87
|
+
/**
|
|
88
|
+
* Specify the description for the inline loading text
|
|
89
|
+
*/
|
|
84
90
|
description: prop_types.default.node,
|
|
91
|
+
/**
|
|
92
|
+
* Specify the description for the inline loading text
|
|
93
|
+
*/
|
|
85
94
|
iconDescription: prop_types.default.string,
|
|
95
|
+
/**
|
|
96
|
+
* Provide an optional handler to be invoked when <InlineLoading> is
|
|
97
|
+
* successful
|
|
98
|
+
*/
|
|
86
99
|
onSuccess: prop_types.default.func,
|
|
100
|
+
/**
|
|
101
|
+
* Specify the loading status
|
|
102
|
+
*/
|
|
87
103
|
status: prop_types.default.oneOf([
|
|
88
104
|
"inactive",
|
|
89
105
|
"active",
|
|
90
106
|
"finished",
|
|
91
107
|
"error"
|
|
92
108
|
]),
|
|
109
|
+
/**
|
|
110
|
+
* Provide a delay for the `setTimeout` for success
|
|
111
|
+
*/
|
|
93
112
|
successDelay: prop_types.default.number
|
|
94
113
|
};
|
|
95
114
|
//#endregion
|
|
@@ -52,18 +52,35 @@ const Layer = react.default.forwardRef((props, ref) => {
|
|
|
52
52
|
});
|
|
53
53
|
Layer.displayName = "Layer";
|
|
54
54
|
Layer.propTypes = {
|
|
55
|
+
/**
|
|
56
|
+
* Specify a custom component or element to be rendered as the top-level
|
|
57
|
+
* element in the component
|
|
58
|
+
*/
|
|
55
59
|
as: prop_types.default.oneOfType([
|
|
56
60
|
prop_types.default.func,
|
|
57
61
|
prop_types.default.string,
|
|
58
62
|
prop_types.default.elementType
|
|
59
63
|
]),
|
|
64
|
+
/**
|
|
65
|
+
* Provide child elements to be rendered inside of `Theme`
|
|
66
|
+
*/
|
|
60
67
|
children: prop_types.default.node,
|
|
68
|
+
/**
|
|
69
|
+
* Provide a custom class name to be used on the outermost element rendered by
|
|
70
|
+
* the component
|
|
71
|
+
*/
|
|
61
72
|
className: prop_types.default.string,
|
|
73
|
+
/**
|
|
74
|
+
* Specify the layer level and override any existing levels based on hierarchy
|
|
75
|
+
*/
|
|
62
76
|
level: prop_types.default.oneOf([
|
|
63
77
|
0,
|
|
64
78
|
1,
|
|
65
79
|
2
|
|
66
80
|
]),
|
|
81
|
+
/**
|
|
82
|
+
* Applies a css background-color set to $layer-background
|
|
83
|
+
*/
|
|
67
84
|
withBackground: prop_types.default.bool
|
|
68
85
|
};
|
|
69
86
|
//#endregion
|
|
@@ -44,14 +44,31 @@ const Layout = react.default.forwardRef(({ as: BaseComponent = "div", children,
|
|
|
44
44
|
});
|
|
45
45
|
});
|
|
46
46
|
Layout.propTypes = {
|
|
47
|
+
/**
|
|
48
|
+
* Specify a custom component or element to be rendered as the top-level
|
|
49
|
+
* element in the component
|
|
50
|
+
*/
|
|
47
51
|
as: prop_types.default.oneOfType([
|
|
48
52
|
prop_types.default.func,
|
|
49
53
|
prop_types.default.string,
|
|
50
54
|
prop_types.default.elementType
|
|
51
55
|
]),
|
|
56
|
+
/**
|
|
57
|
+
* Provide child elements to be rendered inside of `Layout`
|
|
58
|
+
*/
|
|
52
59
|
children: prop_types.default.node,
|
|
60
|
+
/**
|
|
61
|
+
* Provide a custom class name to be used on the outermost element rendered by
|
|
62
|
+
* the component
|
|
63
|
+
*/
|
|
53
64
|
className: prop_types.default.string,
|
|
65
|
+
/**
|
|
66
|
+
* Specify the desired density of components within this layout
|
|
67
|
+
*/
|
|
54
68
|
density: prop_types.default.oneOf(densities),
|
|
69
|
+
/**
|
|
70
|
+
* Specify the desired size of components within this layout
|
|
71
|
+
*/
|
|
55
72
|
size: prop_types.default.oneOf(sizes)
|
|
56
73
|
};
|
|
57
74
|
const LayoutConstraint = react.default.forwardRef(({ as: BaseComponent = "div", children, className, density, size, ...rest }, forwardRef) => {
|
|
@@ -72,18 +89,35 @@ const LayoutConstraint = react.default.forwardRef(({ as: BaseComponent = "div",
|
|
|
72
89
|
});
|
|
73
90
|
});
|
|
74
91
|
LayoutConstraint.propTypes = {
|
|
92
|
+
/**
|
|
93
|
+
* Specify a custom component or element to be rendered as the top-level
|
|
94
|
+
* element in the component
|
|
95
|
+
*/
|
|
75
96
|
as: prop_types.default.oneOfType([
|
|
76
97
|
prop_types.default.func,
|
|
77
98
|
prop_types.default.string,
|
|
78
99
|
prop_types.default.elementType
|
|
79
100
|
]),
|
|
101
|
+
/**
|
|
102
|
+
* Provide child elements to be rendered inside of `LayoutConstraint`
|
|
103
|
+
*/
|
|
80
104
|
children: prop_types.default.node,
|
|
105
|
+
/**
|
|
106
|
+
* Provide a custom class name to be used on the outermost element rendered by
|
|
107
|
+
* the component
|
|
108
|
+
*/
|
|
81
109
|
className: prop_types.default.string,
|
|
110
|
+
/**
|
|
111
|
+
* Specify the desired layout density constraints of this element's children
|
|
112
|
+
*/
|
|
82
113
|
density: prop_types.default.shape({
|
|
83
114
|
min: prop_types.default.oneOf(densities),
|
|
84
115
|
default: prop_types.default.oneOf(densities),
|
|
85
116
|
max: prop_types.default.oneOf(densities)
|
|
86
117
|
}),
|
|
118
|
+
/**
|
|
119
|
+
* Specify the desired layout size constraints of this element's children
|
|
120
|
+
*/
|
|
87
121
|
size: prop_types.default.shape({
|
|
88
122
|
min: prop_types.default.oneOf(sizes),
|
|
89
123
|
default: prop_types.default.oneOf(sizes),
|
|
@@ -33,12 +33,22 @@ function LayoutDirection({ as: BaseComponent = "div", children, dir, ...rest })
|
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
LayoutDirection.propTypes = {
|
|
36
|
+
/**
|
|
37
|
+
* Customize the element type used to render the outermost node
|
|
38
|
+
*/
|
|
36
39
|
as: prop_types.default.oneOfType([
|
|
37
40
|
prop_types.default.func,
|
|
38
41
|
prop_types.default.string,
|
|
39
42
|
prop_types.default.elementType
|
|
40
43
|
]),
|
|
44
|
+
/**
|
|
45
|
+
* Provide child elements or components to be rendered inside of this
|
|
46
|
+
* component
|
|
47
|
+
*/
|
|
41
48
|
children: prop_types.default.node,
|
|
49
|
+
/**
|
|
50
|
+
* Specify the layout direction of this part of the page
|
|
51
|
+
*/
|
|
42
52
|
dir: prop_types.default.oneOf(["ltr", "rtl"]).isRequired
|
|
43
53
|
};
|
|
44
54
|
//#endregion
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
require("../../_virtual/_rolldown/runtime.js");
|
|
9
8
|
const require_LayoutDirectionContext = require("./LayoutDirectionContext.js");
|
|
10
9
|
let react = require("react");
|
|
11
10
|
//#region src/components/LayoutDirection/useLayoutDirection.ts
|
|
@@ -43,7 +43,7 @@ export interface LinkBaseProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
|
43
43
|
*/
|
|
44
44
|
target?: HTMLAttributeAnchorTarget;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* When enabled, applies Carbon's visited-link styles to browser-controlled :visited link state.
|
|
47
47
|
*/
|
|
48
48
|
visited?: boolean;
|
|
49
49
|
}
|
|
@@ -59,18 +59,46 @@ const Link = react.default.forwardRef(({ as: BaseComponent, children, className:
|
|
|
59
59
|
});
|
|
60
60
|
Link.displayName = "Link";
|
|
61
61
|
Link.propTypes = {
|
|
62
|
+
/**
|
|
63
|
+
* Provide a custom element or component to render the top-level node for the
|
|
64
|
+
* component.
|
|
65
|
+
*/
|
|
62
66
|
as: prop_types.default.elementType,
|
|
67
|
+
/**
|
|
68
|
+
* Provide the content for the Link
|
|
69
|
+
*/
|
|
63
70
|
children: prop_types.default.node,
|
|
71
|
+
/**
|
|
72
|
+
* Provide a custom className to be applied to the containing `<a>` node
|
|
73
|
+
*/
|
|
64
74
|
className: prop_types.default.string,
|
|
75
|
+
/**
|
|
76
|
+
* Specify if the control should be disabled, or not
|
|
77
|
+
*/
|
|
65
78
|
disabled: prop_types.default.bool,
|
|
79
|
+
/**
|
|
80
|
+
* Provide the `href` attribute for the `<a>` node
|
|
81
|
+
*/
|
|
66
82
|
href: prop_types.default.string,
|
|
83
|
+
/**
|
|
84
|
+
* Specify whether you want the inline version of this control
|
|
85
|
+
*/
|
|
67
86
|
inline: prop_types.default.bool,
|
|
87
|
+
/**
|
|
88
|
+
* A component used to render an icon.
|
|
89
|
+
*/
|
|
68
90
|
renderIcon: prop_types.default.oneOfType([prop_types.default.func, prop_types.default.object]),
|
|
91
|
+
/**
|
|
92
|
+
* Specify the size of the Link. Currently supports either `sm`, `md` (default) or `lg` as an option.
|
|
93
|
+
*/
|
|
69
94
|
size: prop_types.default.oneOf([
|
|
70
95
|
"sm",
|
|
71
96
|
"md",
|
|
72
97
|
"lg"
|
|
73
98
|
]),
|
|
99
|
+
/**
|
|
100
|
+
* When enabled, applies Carbon's visited-link styles to browser-controlled :visited link state.
|
|
101
|
+
*/
|
|
74
102
|
visited: prop_types.default.bool
|
|
75
103
|
};
|
|
76
104
|
//#endregion
|
|
@@ -77,18 +77,59 @@ const ListBox = (0, react.forwardRef)((props, ref) => {
|
|
|
77
77
|
});
|
|
78
78
|
ListBox.displayName = "ListBox";
|
|
79
79
|
ListBox.propTypes = {
|
|
80
|
+
/**
|
|
81
|
+
* Provide the contents of your ListBox
|
|
82
|
+
*/
|
|
80
83
|
children: prop_types.default.node,
|
|
84
|
+
/**
|
|
85
|
+
* Specify a class name to be applied on the containing list box node
|
|
86
|
+
*/
|
|
81
87
|
className: prop_types.default.string,
|
|
88
|
+
/**
|
|
89
|
+
* Specify whether the ListBox is currently disabled
|
|
90
|
+
*/
|
|
82
91
|
disabled: prop_types.default.bool,
|
|
92
|
+
/**
|
|
93
|
+
* Specify whether the control is currently invalid
|
|
94
|
+
*/
|
|
83
95
|
invalid: prop_types.default.bool,
|
|
96
|
+
/**
|
|
97
|
+
* Specify the text to be displayed when the control is invalid
|
|
98
|
+
*/
|
|
84
99
|
invalidText: prop_types.default.node,
|
|
100
|
+
/**
|
|
101
|
+
* Specify the id to be applied to the element containing the invalid text
|
|
102
|
+
*/
|
|
85
103
|
invalidTextId: prop_types.default.string,
|
|
104
|
+
/**
|
|
105
|
+
* Specify if the control should render open
|
|
106
|
+
*/
|
|
86
107
|
isOpen: prop_types.default.bool,
|
|
108
|
+
/**
|
|
109
|
+
* `true` to use the light version. For use on $ui-01 backgrounds only.
|
|
110
|
+
* Don't use this to make tile background color same as container background color.
|
|
111
|
+
*/
|
|
87
112
|
light: require_deprecate.deprecate(prop_types.default.bool, "The `light` prop for `ListBox` has been deprecated in favor of the new `Layer` component. It will be removed in the next major release."),
|
|
113
|
+
/**
|
|
114
|
+
* Specify the size of the ListBox. Currently supports either `xs`, `sm`, `md` or `lg` as an option.
|
|
115
|
+
*/
|
|
88
116
|
size: require_ListBoxPropTypes.ListBoxSizePropType,
|
|
117
|
+
/**
|
|
118
|
+
* Specify the "type" of the ListBox. Currently supports either `default` or
|
|
119
|
+
* `inline` as an option.
|
|
120
|
+
*/
|
|
89
121
|
type: require_ListBoxPropTypes.ListBoxTypePropType,
|
|
122
|
+
/**
|
|
123
|
+
* Specify whether the control is currently in warning state
|
|
124
|
+
*/
|
|
90
125
|
warn: prop_types.default.bool,
|
|
126
|
+
/**
|
|
127
|
+
* Provide the text that is displayed when the control is in warning state
|
|
128
|
+
*/
|
|
91
129
|
warnText: prop_types.default.string,
|
|
130
|
+
/**
|
|
131
|
+
* Specify the id to be applied to the element containing the warn text
|
|
132
|
+
*/
|
|
92
133
|
warnTextId: prop_types.default.string
|
|
93
134
|
};
|
|
94
135
|
//#endregion
|
|
@@ -33,10 +33,27 @@ function ListBoxField({ children, disabled, tabIndex, ...rest }) {
|
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
ListBoxField.propTypes = {
|
|
36
|
+
/**
|
|
37
|
+
* Typically set by `getToggleButtonProps`, this should specify whether the
|
|
38
|
+
* field has a popup.
|
|
39
|
+
*/
|
|
36
40
|
"aria-haspopup": prop_types.default.oneOfType([prop_types.default.string, prop_types.default.bool]),
|
|
41
|
+
/**
|
|
42
|
+
* Provide the contents of your ListBoxField
|
|
43
|
+
*/
|
|
37
44
|
children: prop_types.default.node,
|
|
45
|
+
/**
|
|
46
|
+
* Specify if the parent <ListBox> is disabled
|
|
47
|
+
*/
|
|
38
48
|
disabled: prop_types.default.bool,
|
|
49
|
+
/**
|
|
50
|
+
* The role for the component, should be set by `getToggleButtonProps` coming
|
|
51
|
+
* from Downshift
|
|
52
|
+
*/
|
|
39
53
|
role: prop_types.default.string,
|
|
54
|
+
/**
|
|
55
|
+
* Optional prop to specify the tabIndex of the <ListBox> trigger button
|
|
56
|
+
*/
|
|
40
57
|
tabIndex: prop_types.default.oneOfType([prop_types.default.number, prop_types.default.string])
|
|
41
58
|
};
|
|
42
59
|
//#endregion
|