@itwin/itwinui-react 3.0.4 → 3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/cjs/core/Alert/Alert.js +46 -106
- package/cjs/core/Avatar/Avatar.js +21 -58
- package/cjs/core/AvatarGroup/AvatarGroup.js +26 -64
- package/cjs/core/Backdrop/Backdrop.js +8 -16
- package/cjs/core/Badge/Badge.js +22 -39
- package/cjs/core/Breadcrumbs/Breadcrumbs.js +61 -138
- package/cjs/core/ButtonGroup/ButtonGroup.js +32 -68
- package/cjs/core/Buttons/Button.js +11 -57
- package/cjs/core/Buttons/DropdownButton.js +15 -49
- package/cjs/core/Buttons/IconButton.js +13 -53
- package/cjs/core/Buttons/IdeasButton.js +8 -20
- package/cjs/core/Buttons/SplitButton.js +43 -103
- package/cjs/core/Carousel/Carousel.js +54 -78
- package/cjs/core/Carousel/CarouselContext.js +4 -4
- package/cjs/core/Carousel/CarouselDot.js +12 -23
- package/cjs/core/Carousel/CarouselDotsList.js +92 -153
- package/cjs/core/Carousel/CarouselNavigation.js +41 -84
- package/cjs/core/Carousel/CarouselSlide.js +26 -49
- package/cjs/core/Carousel/CarouselSlider.js +47 -66
- package/cjs/core/Checkbox/Checkbox.js +32 -88
- package/cjs/core/ColorPicker/ColorBuilder.js +174 -292
- package/cjs/core/ColorPicker/ColorInputPanel.js +246 -411
- package/cjs/core/ColorPicker/ColorPalette.js +23 -47
- package/cjs/core/ColorPicker/ColorPicker.js +53 -87
- package/cjs/core/ColorPicker/ColorPickerContext.js +9 -11
- package/cjs/core/ColorPicker/ColorSwatch.js +15 -40
- package/cjs/core/ComboBox/ComboBox.js +280 -402
- package/cjs/core/ComboBox/ComboBoxEndIcon.js +12 -28
- package/cjs/core/ComboBox/ComboBoxInput.js +131 -207
- package/cjs/core/ComboBox/ComboBoxInputContainer.js +12 -35
- package/cjs/core/ComboBox/ComboBoxMenu.js +43 -87
- package/cjs/core/ComboBox/ComboBoxMenuItem.js +21 -73
- package/cjs/core/ComboBox/ComboBoxMultipleContainer.js +7 -13
- package/cjs/core/ComboBox/helpers.js +43 -47
- package/cjs/core/DatePicker/DatePicker.js +333 -569
- package/cjs/core/Dialog/Dialog.js +36 -65
- package/cjs/core/Dialog/DialogBackdrop.js +27 -47
- package/cjs/core/Dialog/DialogButtonBar.js +3 -3
- package/cjs/core/Dialog/DialogContent.js +18 -26
- package/cjs/core/Dialog/DialogContext.js +5 -5
- package/cjs/core/Dialog/DialogDragContext.js +8 -8
- package/cjs/core/Dialog/DialogMain.js +137 -183
- package/cjs/core/Dialog/DialogTitleBar.js +20 -67
- package/cjs/core/Dialog/DialogTitleBarTitle.js +3 -3
- package/cjs/core/Divider/Divider.js +8 -14
- package/cjs/core/DropdownMenu/DropdownMenu.js +46 -80
- package/cjs/core/ExpandableBlock/ExpandableBlock.js +101 -206
- package/cjs/core/Fieldset/Fieldset.js +14 -25
- package/cjs/core/FileUpload/FileEmptyCard.js +17 -43
- package/cjs/core/FileUpload/FileUpload.js +42 -88
- package/cjs/core/FileUpload/FileUploadCard.js +84 -169
- package/cjs/core/FileUpload/FileUploadTemplate.js +16 -51
- package/cjs/core/Flex/Flex.js +77 -93
- package/cjs/core/Footer/Footer.js +64 -103
- package/cjs/core/Footer/FooterItem.js +3 -3
- package/cjs/core/Footer/FooterList.js +3 -3
- package/cjs/core/Footer/FooterSeparator.js +5 -8
- package/cjs/core/Header/Header.js +22 -67
- package/cjs/core/Header/HeaderBasicButton.js +13 -24
- package/cjs/core/Header/HeaderBreadcrumbs.js +14 -38
- package/cjs/core/Header/HeaderButton.js +22 -76
- package/cjs/core/Header/HeaderDropdownButton.js +20 -48
- package/cjs/core/Header/HeaderLogo.js +11 -42
- package/cjs/core/Header/HeaderSplitButton.js +21 -66
- package/cjs/core/Icon/Icon.js +18 -32
- package/cjs/core/InformationPanel/InformationPanel.js +42 -77
- package/cjs/core/InformationPanel/InformationPanelBody.js +4 -6
- package/cjs/core/InformationPanel/InformationPanelContent.js +8 -20
- package/cjs/core/InformationPanel/InformationPanelHeader.js +14 -34
- package/cjs/core/InformationPanel/InformationPanelWrapper.js +4 -6
- package/cjs/core/Input/Input.js +10 -18
- package/cjs/core/InputGrid/InputGrid.js +8 -17
- package/cjs/core/InputGroup/InputGroup.js +25 -72
- package/cjs/core/InputWithDecorations/InputWithDecorations.js +23 -51
- package/cjs/core/Label/Label.js +11 -32
- package/cjs/core/LabeledInput/LabeledInput.js +20 -70
- package/cjs/core/LabeledSelect/LabeledSelect.js +28 -77
- package/cjs/core/LabeledTextarea/LabeledTextarea.js +7 -13
- package/cjs/core/LinkAction/LinkAction.js +3 -3
- package/cjs/core/List/List.js +3 -3
- package/cjs/core/List/ListItem.js +35 -55
- package/cjs/core/Menu/Menu.js +53 -66
- package/cjs/core/Menu/MenuDivider.js +4 -4
- package/cjs/core/Menu/MenuExtraContent.js +4 -4
- package/cjs/core/Menu/MenuItem.js +92 -168
- package/cjs/core/Menu/MenuItemSkeleton.js +19 -54
- package/cjs/core/Modal/Modal.js +11 -38
- package/cjs/core/Modal/ModalButtonBar.js +4 -7
- package/cjs/core/Modal/ModalContent.js +3 -3
- package/cjs/core/NonIdealState/ErrorPage.js +131 -187
- package/cjs/core/NonIdealState/NonIdealState.js +12 -77
- package/cjs/core/NotificationMarker/NotificationMarker.js +8 -29
- package/cjs/core/Overlay/Overlay.d.ts +20 -24
- package/cjs/core/Overlay/Overlay.js +50 -64
- package/cjs/core/Popover/Popover.js +87 -157
- package/cjs/core/ProgressIndicators/ProgressLinear.js +11 -49
- package/cjs/core/ProgressIndicators/ProgressRadial.js +19 -51
- package/cjs/core/Radio/Radio.js +12 -54
- package/cjs/core/RadioTiles/RadioTile.js +14 -80
- package/cjs/core/RadioTiles/RadioTileGroup.js +9 -16
- package/cjs/core/SearchBox/SearchBox.js +104 -221
- package/cjs/core/Select/Select.js +141 -276
- package/cjs/core/Select/SelectTag.js +9 -21
- package/cjs/core/Select/SelectTagContainer.js +14 -30
- package/cjs/core/SideNavigation/SideNavigation.js +29 -138
- package/cjs/core/SideNavigation/SidenavButton.js +8 -30
- package/cjs/core/SideNavigation/SidenavSubmenu.js +9 -23
- package/cjs/core/SideNavigation/SidenavSubmenuHeader.js +10 -29
- package/cjs/core/SkipToContentLink/SkipToContentLink.js +8 -20
- package/cjs/core/Slider/Slider.js +195 -376
- package/cjs/core/Slider/Thumb.js +57 -108
- package/cjs/core/Slider/Track.js +55 -83
- package/cjs/core/StatusMessage/StatusMessage.js +12 -34
- package/cjs/core/Stepper/Stepper.js +21 -80
- package/cjs/core/Stepper/StepperStep.js +36 -109
- package/cjs/core/Stepper/WorkflowDiagram.js +15 -38
- package/cjs/core/Stepper/WorkflowDiagramStep.js +11 -39
- package/cjs/core/Surface/Surface.js +54 -94
- package/cjs/core/Table/SubRowExpander.js +15 -37
- package/cjs/core/Table/Table.js +419 -763
- package/cjs/core/Table/TableCell.js +63 -113
- package/cjs/core/Table/TablePaginator.js +136 -312
- package/cjs/core/Table/TableRowMemoized.js +64 -137
- package/cjs/core/Table/actionHandlers/expandHandler.js +12 -12
- package/cjs/core/Table/actionHandlers/filterHandler.js +17 -25
- package/cjs/core/Table/actionHandlers/index.js +14 -56
- package/cjs/core/Table/actionHandlers/resizeHandler.js +13 -13
- package/cjs/core/Table/actionHandlers/selectHandler.js +98 -128
- package/cjs/core/Table/cells/DefaultCell.js +13 -48
- package/cjs/core/Table/cells/EditableCell.js +46 -75
- package/cjs/core/Table/cells/index.js +6 -16
- package/cjs/core/Table/columns/actionColumn.js +67 -97
- package/cjs/core/Table/columns/expanderColumn.js +32 -46
- package/cjs/core/Table/columns/index.js +11 -41
- package/cjs/core/Table/columns/selectionColumn.js +29 -57
- package/cjs/core/Table/filters/BaseFilter.js +13 -24
- package/cjs/core/Table/filters/DateRangeFilter/DatePickerInput.js +52 -120
- package/cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.js +60 -120
- package/cjs/core/Table/filters/FilterButtonBar.js +16 -39
- package/cjs/core/Table/filters/FilterToggle.js +26 -62
- package/cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +36 -58
- package/cjs/core/Table/filters/TextFilter/TextFilter.js +28 -40
- package/cjs/core/Table/filters/customFilterFunctions.js +14 -16
- package/cjs/core/Table/filters/defaultFilterFunctions.js +81 -86
- package/cjs/core/Table/filters/index.js +11 -35
- package/cjs/core/Table/filters/tableFilters.js +32 -44
- package/cjs/core/Table/filters/types.js +2 -2
- package/cjs/core/Table/hooks/index.js +19 -67
- package/cjs/core/Table/hooks/useColumnDragAndDrop.js +86 -101
- package/cjs/core/Table/hooks/useExpanderCell.js +25 -33
- package/cjs/core/Table/hooks/useResizeColumns.js +290 -362
- package/cjs/core/Table/hooks/useScrollToRow.js +38 -46
- package/cjs/core/Table/hooks/useSelectionCell.js +10 -17
- package/cjs/core/Table/hooks/useStickyColumns.js +62 -64
- package/cjs/core/Table/hooks/useSubRowFiltering.js +88 -95
- package/cjs/core/Table/hooks/useSubRowSelection.js +31 -32
- package/cjs/core/Table/index.js +18 -78
- package/cjs/core/Table/utils.js +40 -42
- package/cjs/core/Tabs/Tabs.js +232 -417
- package/cjs/core/Tag/Tag.js +15 -42
- package/cjs/core/Tag/TagContainer.js +11 -23
- package/cjs/core/Textarea/Textarea.js +6 -11
- package/cjs/core/ThemeProvider/ThemeContext.js +4 -4
- package/cjs/core/ThemeProvider/ThemeProvider.js +52 -105
- package/cjs/core/Tile/Tile.js +230 -410
- package/cjs/core/TimePicker/TimePicker.js +234 -458
- package/cjs/core/Toast/Toast.js +107 -204
- package/cjs/core/Toast/Toaster.js +77 -102
- package/cjs/core/ToggleSwitch/ToggleSwitch.js +23 -66
- package/cjs/core/Tooltip/Tooltip.js +91 -137
- package/cjs/core/TransferList/TransferList.js +103 -177
- package/cjs/core/Tree/Tree.js +129 -204
- package/cjs/core/Tree/TreeContext.js +9 -9
- package/cjs/core/Tree/TreeNode.js +104 -207
- package/cjs/core/Tree/TreeNodeExpander.js +12 -26
- package/cjs/core/Typography/Anchor.js +3 -3
- package/cjs/core/Typography/Blockquote.js +10 -18
- package/cjs/core/Typography/Code.js +3 -3
- package/cjs/core/Typography/Kbd.js +21 -30
- package/cjs/core/Typography/Text.js +13 -26
- package/cjs/core/VisuallyHidden/VisuallyHidden.js +8 -14
- package/cjs/core/utils/color/ColorValue.js +453 -535
- package/cjs/core/utils/color/index.js +4 -4
- package/cjs/core/utils/components/AutoclearingHiddenLiveRegion.js +13 -20
- package/cjs/core/utils/components/Box.js +3 -3
- package/cjs/core/utils/components/ButtonBase.js +20 -38
- package/cjs/core/utils/components/FocusTrap.js +38 -47
- package/cjs/core/utils/components/InputContainer.js +19 -58
- package/cjs/core/utils/components/InputFlexContainer.js +8 -24
- package/cjs/core/utils/components/MiddleTextTruncation.js +22 -32
- package/cjs/core/utils/components/Portal.js +20 -22
- package/cjs/core/utils/components/Resizer.js +196 -253
- package/cjs/core/utils/components/VirtualScroll.js +223 -304
- package/cjs/core/utils/components/WithCSSTransition.js +32 -49
- package/cjs/core/utils/components/index.js +14 -14
- package/cjs/core/utils/functions/colors.js +22 -25
- package/cjs/core/utils/functions/date.js +10 -10
- package/cjs/core/utils/functions/dev.js +14 -13
- package/cjs/core/utils/functions/dom.d.ts +2 -1
- package/cjs/core/utils/functions/dom.js +22 -25
- package/cjs/core/utils/functions/focusable.js +17 -26
- package/cjs/core/utils/functions/import.js +23 -46
- package/cjs/core/utils/functions/index.js +13 -13
- package/cjs/core/utils/functions/numbers.d.ts +7 -0
- package/cjs/core/utils/functions/numbers.js +21 -10
- package/cjs/core/utils/functions/polymorphic.js +30 -43
- package/cjs/core/utils/functions/react.js +24 -26
- package/cjs/core/utils/functions/supports.js +4 -5
- package/cjs/core/utils/hooks/index.js +17 -17
- package/cjs/core/utils/hooks/useContainerWidth.js +19 -26
- package/cjs/core/utils/hooks/useControlledState.js +12 -21
- package/cjs/core/utils/hooks/useDragAndDrop.js +87 -110
- package/cjs/core/utils/hooks/useEventListener.js +22 -22
- package/cjs/core/utils/hooks/useGlobals.js +27 -33
- package/cjs/core/utils/hooks/useId.js +8 -10
- package/cjs/core/utils/hooks/useIntersection.js +24 -30
- package/cjs/core/utils/hooks/useIsClient.js +9 -9
- package/cjs/core/utils/hooks/useIsomorphicLayoutEffect.js +5 -6
- package/cjs/core/utils/hooks/useLatestRef.js +9 -9
- package/cjs/core/utils/hooks/useMediaQuery.js +31 -31
- package/cjs/core/utils/hooks/useMergedRefs.js +16 -15
- package/cjs/core/utils/hooks/useOverflow.js +57 -70
- package/cjs/core/utils/hooks/useResizeObserver.js +17 -22
- package/cjs/core/utils/hooks/useSafeContext.js +9 -9
- package/cjs/core/utils/icons/StatusIconMap.js +12 -28
- package/cjs/core/utils/icons/Svg.js +3 -3
- package/cjs/core/utils/icons/SvgCalendar.js +7 -12
- package/cjs/core/utils/icons/SvgCaretDownSmall.js +7 -12
- package/cjs/core/utils/icons/SvgCaretRightSmall.js +7 -12
- package/cjs/core/utils/icons/SvgCaretUpSmall.js +7 -12
- package/cjs/core/utils/icons/SvgCheckmark.js +7 -10
- package/cjs/core/utils/icons/SvgCheckmarkSmall.js +7 -12
- package/cjs/core/utils/icons/SvgChevronLeft.js +7 -12
- package/cjs/core/utils/icons/SvgChevronLeftDouble.js +7 -12
- package/cjs/core/utils/icons/SvgChevronRight.js +7 -12
- package/cjs/core/utils/icons/SvgChevronRightDouble.js +7 -12
- package/cjs/core/utils/icons/SvgClose.js +7 -12
- package/cjs/core/utils/icons/SvgCloseSmall.js +7 -12
- package/cjs/core/utils/icons/SvgColumnManager.js +7 -12
- package/cjs/core/utils/icons/SvgDocument.js +7 -10
- package/cjs/core/utils/icons/SvgFilter.js +7 -10
- package/cjs/core/utils/icons/SvgFilterHollow.js +7 -12
- package/cjs/core/utils/icons/SvgImportantSmall.js +7 -12
- package/cjs/core/utils/icons/SvgInfoCircular.js +7 -12
- package/cjs/core/utils/icons/SvgMore.js +7 -12
- package/cjs/core/utils/icons/SvgMoreVertical.js +7 -12
- package/cjs/core/utils/icons/SvgNew.js +7 -12
- package/cjs/core/utils/icons/SvgSearch.js +7 -12
- package/cjs/core/utils/icons/SvgSmileyHappy.js +7 -12
- package/cjs/core/utils/icons/SvgSortDown.js +7 -12
- package/cjs/core/utils/icons/SvgSortUp.js +7 -12
- package/cjs/core/utils/icons/SvgStatusError.js +7 -12
- package/cjs/core/utils/icons/SvgStatusSuccess.js +7 -12
- package/cjs/core/utils/icons/SvgStatusWarning.js +7 -12
- package/cjs/core/utils/icons/SvgSwap.js +7 -12
- package/cjs/core/utils/icons/SvgUpload.js +7 -12
- package/cjs/core/utils/icons/index.js +34 -34
- package/cjs/core/utils/index.js +10 -10
- package/cjs/core/utils/props.js +2 -2
- package/cjs/core/utils/types.js +2 -2
- package/cjs/index.js +229 -949
- package/cjs/react-table/react-table.js +2 -2
- package/cjs/styles.js +412 -425
- package/esm/core/Alert/Alert.js +39 -106
- package/esm/core/Avatar/Avatar.js +14 -42
- package/esm/core/AvatarGroup/AvatarGroup.js +20 -58
- package/esm/core/Backdrop/Backdrop.js +2 -10
- package/esm/core/Badge/Badge.js +16 -31
- package/esm/core/Breadcrumbs/Breadcrumbs.js +55 -135
- package/esm/core/ButtonGroup/ButtonGroup.js +25 -61
- package/esm/core/Buttons/Button.js +5 -45
- package/esm/core/Buttons/DropdownButton.js +7 -37
- package/esm/core/Buttons/IconButton.js +5 -40
- package/esm/core/Buttons/IdeasButton.js +2 -12
- package/esm/core/Buttons/SplitButton.js +34 -101
- package/esm/core/Carousel/Carousel.js +43 -72
- package/esm/core/Carousel/CarouselDot.js +6 -17
- package/esm/core/Carousel/CarouselDotsList.js +85 -147
- package/esm/core/Carousel/CarouselNavigation.js +32 -68
- package/esm/core/Carousel/CarouselSlide.js +19 -41
- package/esm/core/Carousel/CarouselSlider.js +41 -65
- package/esm/core/Checkbox/Checkbox.js +25 -78
- package/esm/core/ColorPicker/ColorBuilder.js +167 -280
- package/esm/core/ColorPicker/ColorInputPanel.js +237 -395
- package/esm/core/ColorPicker/ColorPalette.js +14 -35
- package/esm/core/ColorPicker/ColorPicker.js +46 -79
- package/esm/core/ColorPicker/ColorPickerContext.js +5 -7
- package/esm/core/ColorPicker/ColorSwatch.js +7 -24
- package/esm/core/ComboBox/ComboBox.js +267 -396
- package/esm/core/ComboBox/ComboBoxEndIcon.js +5 -18
- package/esm/core/ComboBox/ComboBoxInput.js +125 -197
- package/esm/core/ComboBox/ComboBoxInputContainer.js +5 -20
- package/esm/core/ComboBox/ComboBoxMenu.js +37 -77
- package/esm/core/ComboBox/ComboBoxMenuItem.js +14 -61
- package/esm/core/ComboBox/ComboBoxMultipleContainer.js +2 -6
- package/esm/core/ComboBox/helpers.js +38 -38
- package/esm/core/DatePicker/DatePicker.js +326 -555
- package/esm/core/Dialog/Dialog.js +24 -53
- package/esm/core/Dialog/DialogBackdrop.js +19 -39
- package/esm/core/Dialog/DialogContent.js +12 -20
- package/esm/core/Dialog/DialogContext.js +1 -1
- package/esm/core/Dialog/DialogDragContext.js +4 -4
- package/esm/core/Dialog/DialogMain.js +128 -177
- package/esm/core/Dialog/DialogTitleBar.js +10 -45
- package/esm/core/Divider/Divider.js +2 -8
- package/esm/core/DropdownMenu/DropdownMenu.js +40 -75
- package/esm/core/ExpandableBlock/ExpandableBlock.js +92 -193
- package/esm/core/Fieldset/Fieldset.js +8 -19
- package/esm/core/FileUpload/FileEmptyCard.js +8 -19
- package/esm/core/FileUpload/FileUpload.js +36 -72
- package/esm/core/FileUpload/FileUploadCard.js +76 -153
- package/esm/core/FileUpload/FileUploadTemplate.js +9 -37
- package/esm/core/Flex/Flex.js +71 -87
- package/esm/core/Footer/Footer.js +55 -86
- package/esm/core/Footer/FooterSeparator.js +1 -1
- package/esm/core/Header/Header.js +14 -55
- package/esm/core/Header/HeaderBasicButton.js +7 -15
- package/esm/core/Header/HeaderBreadcrumbs.js +8 -32
- package/esm/core/Header/HeaderButton.js +14 -62
- package/esm/core/Header/HeaderDropdownButton.js +13 -42
- package/esm/core/Header/HeaderLogo.js +5 -36
- package/esm/core/Header/HeaderSplitButton.js +14 -61
- package/esm/core/Icon/Icon.js +12 -26
- package/esm/core/InformationPanel/InformationPanel.js +36 -71
- package/esm/core/InformationPanel/InformationPanelContent.js +3 -17
- package/esm/core/InformationPanel/InformationPanelHeader.js +8 -32
- package/esm/core/InformationPanel/InformationPanelWrapper.js +1 -3
- package/esm/core/Input/Input.js +4 -12
- package/esm/core/InputGrid/InputGrid.js +2 -11
- package/esm/core/InputGroup/InputGroup.js +16 -57
- package/esm/core/InputWithDecorations/InputWithDecorations.js +11 -42
- package/esm/core/Label/Label.js +5 -26
- package/esm/core/LabeledInput/LabeledInput.js +10 -63
- package/esm/core/LabeledSelect/LabeledSelect.js +18 -67
- package/esm/core/LabeledTextarea/LabeledTextarea.js +2 -8
- package/esm/core/List/ListItem.js +28 -46
- package/esm/core/Menu/Menu.js +48 -64
- package/esm/core/Menu/MenuDivider.js +1 -1
- package/esm/core/Menu/MenuExtraContent.js +1 -1
- package/esm/core/Menu/MenuItem.js +84 -164
- package/esm/core/Menu/MenuItemSkeleton.js +12 -43
- package/esm/core/Modal/Modal.js +6 -33
- package/esm/core/NonIdealState/ErrorPage.js +123 -173
- package/esm/core/NonIdealState/NonIdealState.js +6 -65
- package/esm/core/NotificationMarker/NotificationMarker.js +2 -20
- package/esm/core/Overlay/Overlay.d.ts +20 -24
- package/esm/core/Overlay/Overlay.js +45 -55
- package/esm/core/Popover/Popover.js +80 -172
- package/esm/core/ProgressIndicators/ProgressLinear.js +5 -40
- package/esm/core/ProgressIndicators/ProgressRadial.js +14 -40
- package/esm/core/Radio/Radio.js +6 -45
- package/esm/core/RadioTiles/RadioTile.js +8 -62
- package/esm/core/RadioTiles/RadioTileGroup.js +3 -10
- package/esm/core/SearchBox/SearchBox.js +97 -214
- package/esm/core/Select/Select.js +130 -265
- package/esm/core/Select/SelectTag.js +3 -15
- package/esm/core/Select/SelectTagContainer.js +7 -20
- package/esm/core/SideNavigation/SideNavigation.js +21 -118
- package/esm/core/SideNavigation/SidenavButton.js +2 -24
- package/esm/core/SideNavigation/SidenavSubmenu.js +3 -14
- package/esm/core/SideNavigation/SidenavSubmenuHeader.js +4 -20
- package/esm/core/SkipToContentLink/SkipToContentLink.js +2 -11
- package/esm/core/Slider/Slider.js +187 -340
- package/esm/core/Slider/Thumb.js +50 -97
- package/esm/core/Slider/Track.js +49 -74
- package/esm/core/StatusMessage/StatusMessage.js +5 -23
- package/esm/core/Stepper/Stepper.js +14 -70
- package/esm/core/Stepper/StepperStep.js +29 -92
- package/esm/core/Stepper/WorkflowDiagram.js +8 -21
- package/esm/core/Stepper/WorkflowDiagramStep.js +4 -22
- package/esm/core/Surface/Surface.js +48 -84
- package/esm/core/Table/SubRowExpander.js +9 -31
- package/esm/core/Table/Table.js +408 -763
- package/esm/core/Table/TableCell.js +53 -87
- package/esm/core/Table/TablePaginator.js +125 -306
- package/esm/core/Table/TableRowMemoized.js +58 -129
- package/esm/core/Table/actionHandlers/expandHandler.js +10 -10
- package/esm/core/Table/actionHandlers/filterHandler.js +15 -23
- package/esm/core/Table/actionHandlers/index.js +1 -5
- package/esm/core/Table/actionHandlers/resizeHandler.js +11 -11
- package/esm/core/Table/actionHandlers/selectHandler.js +95 -122
- package/esm/core/Table/cells/DefaultCell.js +7 -42
- package/esm/core/Table/cells/EditableCell.js +41 -70
- package/esm/core/Table/columns/actionColumn.js +55 -85
- package/esm/core/Table/columns/expanderColumn.js +25 -39
- package/esm/core/Table/columns/selectionColumn.js +23 -51
- package/esm/core/Table/filters/BaseFilter.js +7 -15
- package/esm/core/Table/filters/DateRangeFilter/DatePickerInput.js +42 -107
- package/esm/core/Table/filters/DateRangeFilter/DateRangeFilter.js +52 -110
- package/esm/core/Table/filters/FilterButtonBar.js +9 -28
- package/esm/core/Table/filters/FilterToggle.js +18 -51
- package/esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +28 -50
- package/esm/core/Table/filters/TextFilter/TextFilter.js +20 -32
- package/esm/core/Table/filters/customFilterFunctions.js +12 -14
- package/esm/core/Table/filters/defaultFilterFunctions.js +79 -84
- package/esm/core/Table/filters/tableFilters.js +25 -34
- package/esm/core/Table/hooks/useColumnDragAndDrop.js +81 -88
- package/esm/core/Table/hooks/useExpanderCell.js +20 -26
- package/esm/core/Table/hooks/useResizeColumns.js +287 -353
- package/esm/core/Table/hooks/useScrollToRow.js +34 -42
- package/esm/core/Table/hooks/useSelectionCell.js +6 -10
- package/esm/core/Table/hooks/useStickyColumns.js +59 -61
- package/esm/core/Table/hooks/useSubRowFiltering.js +83 -90
- package/esm/core/Table/hooks/useSubRowSelection.js +27 -28
- package/esm/core/Table/index.js +1 -5
- package/esm/core/Table/utils.js +38 -40
- package/esm/core/Tabs/Tabs.js +226 -401
- package/esm/core/Tag/Tag.js +8 -35
- package/esm/core/Tag/TagContainer.js +5 -17
- package/esm/core/Textarea/Textarea.js +1 -6
- package/esm/core/ThemeProvider/ThemeProvider.js +44 -101
- package/esm/core/Tile/Tile.js +218 -386
- package/esm/core/TimePicker/TimePicker.js +228 -448
- package/esm/core/Toast/Toast.js +99 -193
- package/esm/core/Toast/Toaster.js +69 -82
- package/esm/core/ToggleSwitch/ToggleSwitch.js +17 -60
- package/esm/core/Tooltip/Tooltip.js +86 -151
- package/esm/core/TransferList/TransferList.js +93 -157
- package/esm/core/Tree/Tree.js +122 -196
- package/esm/core/Tree/TreeContext.js +5 -5
- package/esm/core/Tree/TreeNode.js +96 -195
- package/esm/core/Tree/TreeNodeExpander.js +5 -16
- package/esm/core/Typography/Blockquote.js +4 -12
- package/esm/core/Typography/Kbd.js +15 -24
- package/esm/core/Typography/Text.js +7 -20
- package/esm/core/VisuallyHidden/VisuallyHidden.js +2 -8
- package/esm/core/utils/color/ColorValue.js +449 -524
- package/esm/core/utils/components/AutoclearingHiddenLiveRegion.js +7 -11
- package/esm/core/utils/components/ButtonBase.js +13 -31
- package/esm/core/utils/components/FocusTrap.js +32 -41
- package/esm/core/utils/components/InputContainer.js +11 -50
- package/esm/core/utils/components/InputFlexContainer.js +2 -15
- package/esm/core/utils/components/MiddleTextTruncation.js +17 -27
- package/esm/core/utils/components/Portal.js +12 -12
- package/esm/core/utils/components/Resizer.js +192 -250
- package/esm/core/utils/components/VirtualScroll.js +218 -297
- package/esm/core/utils/components/WithCSSTransition.js +26 -43
- package/esm/core/utils/functions/colors.js +19 -19
- package/esm/core/utils/functions/date.js +8 -8
- package/esm/core/utils/functions/dev.js +12 -11
- package/esm/core/utils/functions/dom.d.ts +2 -1
- package/esm/core/utils/functions/dom.js +18 -18
- package/esm/core/utils/functions/focusable.js +15 -24
- package/esm/core/utils/functions/import.js +2 -4
- package/esm/core/utils/functions/numbers.d.ts +7 -0
- package/esm/core/utils/functions/numbers.js +17 -7
- package/esm/core/utils/functions/polymorphic.js +23 -32
- package/esm/core/utils/functions/react.js +19 -21
- package/esm/core/utils/functions/supports.js +1 -2
- package/esm/core/utils/hooks/useContainerWidth.js +13 -16
- package/esm/core/utils/hooks/useControlledState.js +8 -17
- package/esm/core/utils/hooks/useDragAndDrop.js +81 -100
- package/esm/core/utils/hooks/useEventListener.js +18 -18
- package/esm/core/utils/hooks/useGlobals.js +21 -27
- package/esm/core/utils/hooks/useId.js +3 -4
- package/esm/core/utils/hooks/useIntersection.js +19 -25
- package/esm/core/utils/hooks/useIsClient.js +5 -5
- package/esm/core/utils/hooks/useIsomorphicLayoutEffect.js +1 -2
- package/esm/core/utils/hooks/useLatestRef.js +5 -5
- package/esm/core/utils/hooks/useMediaQuery.js +25 -23
- package/esm/core/utils/hooks/useMergedRefs.js +12 -11
- package/esm/core/utils/hooks/useOverflow.js +51 -63
- package/esm/core/utils/hooks/useResizeObserver.js +12 -17
- package/esm/core/utils/hooks/useSafeContext.js +5 -5
- package/esm/core/utils/icons/StatusIconMap.js +4 -8
- package/esm/core/utils/icons/SvgCalendar.js +2 -7
- package/esm/core/utils/icons/SvgCaretDownSmall.js +2 -7
- package/esm/core/utils/icons/SvgCaretRightSmall.js +2 -7
- package/esm/core/utils/icons/SvgCaretUpSmall.js +2 -7
- package/esm/core/utils/icons/SvgCheckmark.js +2 -5
- package/esm/core/utils/icons/SvgCheckmarkSmall.js +2 -7
- package/esm/core/utils/icons/SvgChevronLeft.js +2 -7
- package/esm/core/utils/icons/SvgChevronLeftDouble.js +2 -7
- package/esm/core/utils/icons/SvgChevronRight.js +2 -7
- package/esm/core/utils/icons/SvgChevronRightDouble.js +2 -7
- package/esm/core/utils/icons/SvgClose.js +2 -7
- package/esm/core/utils/icons/SvgCloseSmall.js +2 -7
- package/esm/core/utils/icons/SvgColumnManager.js +2 -7
- package/esm/core/utils/icons/SvgDocument.js +2 -5
- package/esm/core/utils/icons/SvgFilter.js +2 -5
- package/esm/core/utils/icons/SvgFilterHollow.js +2 -7
- package/esm/core/utils/icons/SvgImportantSmall.js +2 -7
- package/esm/core/utils/icons/SvgInfoCircular.js +2 -7
- package/esm/core/utils/icons/SvgMore.js +2 -7
- package/esm/core/utils/icons/SvgMoreVertical.js +2 -7
- package/esm/core/utils/icons/SvgNew.js +2 -7
- package/esm/core/utils/icons/SvgSearch.js +2 -7
- package/esm/core/utils/icons/SvgSmileyHappy.js +2 -7
- package/esm/core/utils/icons/SvgSortDown.js +2 -7
- package/esm/core/utils/icons/SvgSortUp.js +2 -7
- package/esm/core/utils/icons/SvgStatusError.js +2 -7
- package/esm/core/utils/icons/SvgStatusSuccess.js +2 -7
- package/esm/core/utils/icons/SvgStatusWarning.js +2 -7
- package/esm/core/utils/icons/SvgSwap.js +2 -7
- package/esm/core/utils/icons/SvgUpload.js +2 -7
- package/esm/index.js +3 -21
- package/esm/styles.js +414 -425
- package/package.json +2 -2
- package/styles.css +6 -6
package/cjs/core/Tabs/Tabs.js
CHANGED
|
@@ -1,254 +1,155 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Tabs = exports.Tab = void 0;
|
|
4
|
-
const tslib_1 = require(
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
5
|
/*---------------------------------------------------------------------------------------------
|
|
6
6
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
7
7
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
8
8
|
*--------------------------------------------------------------------------------------------*/
|
|
9
|
-
const classnames_1 = tslib_1.__importDefault(require(
|
|
10
|
-
const React = tslib_1.__importStar(require(
|
|
11
|
-
const index_js_1 = require(
|
|
12
|
-
const Icon_js_1 = require(
|
|
9
|
+
const classnames_1 = tslib_1.__importDefault(require("classnames"));
|
|
10
|
+
const React = tslib_1.__importStar(require("react"));
|
|
11
|
+
const index_js_1 = require("../utils/index.js");
|
|
12
|
+
const Icon_js_1 = require("../Icon/Icon.js");
|
|
13
13
|
const TabsWrapper = React.forwardRef((props, ref) => {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
const [hasSublabel, setHasSublabel] = React.useState(false); // used for setting size
|
|
33
|
-
const idPrefix = (0, index_js_1.useId)();
|
|
34
|
-
return React.createElement(
|
|
35
|
-
index_js_1.Box,
|
|
36
|
-
{
|
|
37
|
-
className: (0, classnames_1.default)(
|
|
38
|
-
'iui-tabs-wrapper',
|
|
39
|
-
`iui-${orientation}`,
|
|
40
|
-
className,
|
|
41
|
-
),
|
|
42
|
-
...rest,
|
|
43
|
-
style: { ...stripeProperties, ...props?.style },
|
|
44
|
-
ref: ref,
|
|
45
|
-
},
|
|
46
|
-
React.createElement(
|
|
47
|
-
TabsContext.Provider,
|
|
48
|
-
{
|
|
49
|
-
value: {
|
|
50
|
-
orientation,
|
|
51
|
-
type,
|
|
52
|
-
activeValue,
|
|
53
|
-
setActiveValue,
|
|
54
|
-
setStripeProperties,
|
|
55
|
-
idPrefix,
|
|
56
|
-
focusActivationMode,
|
|
57
|
-
hasSublabel,
|
|
58
|
-
setHasSublabel,
|
|
59
|
-
color,
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
children,
|
|
63
|
-
),
|
|
64
|
-
);
|
|
14
|
+
const { className, children, orientation = 'horizontal', type = 'default', focusActivationMode = 'auto', color = 'blue', defaultValue, value: activeValueProp, onValueChange, ...rest } = props;
|
|
15
|
+
const [activeValue, setActiveValue] = (0, index_js_1.useControlledState)(defaultValue, activeValueProp, onValueChange);
|
|
16
|
+
const [stripeProperties, setStripeProperties] = React.useState({});
|
|
17
|
+
const [hasSublabel, setHasSublabel] = React.useState(false); // used for setting size
|
|
18
|
+
const idPrefix = (0, index_js_1.useId)();
|
|
19
|
+
return (React.createElement(index_js_1.Box, { className: (0, classnames_1.default)('iui-tabs-wrapper', `iui-${orientation}`, className), ...rest, style: { ...stripeProperties, ...props?.style }, ref: ref },
|
|
20
|
+
React.createElement(TabsContext.Provider, { value: {
|
|
21
|
+
orientation,
|
|
22
|
+
type,
|
|
23
|
+
activeValue,
|
|
24
|
+
setActiveValue,
|
|
25
|
+
setStripeProperties,
|
|
26
|
+
idPrefix,
|
|
27
|
+
focusActivationMode,
|
|
28
|
+
hasSublabel,
|
|
29
|
+
setHasSublabel,
|
|
30
|
+
color,
|
|
31
|
+
} }, children)));
|
|
65
32
|
});
|
|
66
33
|
TabsWrapper.displayName = 'Tabs.Wrapper';
|
|
67
34
|
const TabList = React.forwardRef((props, ref) => {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
`iui-${type}`,
|
|
84
|
-
{
|
|
85
|
-
'iui-green': color === 'green',
|
|
86
|
-
'iui-animated': type !== 'default' && isClient,
|
|
87
|
-
'iui-not-animated': type !== 'default' && !isClient,
|
|
88
|
-
'iui-large': hasSublabel,
|
|
89
|
-
},
|
|
90
|
-
className,
|
|
91
|
-
),
|
|
92
|
-
role: 'tablist',
|
|
93
|
-
ref: refs,
|
|
94
|
-
...rest,
|
|
95
|
-
},
|
|
96
|
-
React.createElement(
|
|
97
|
-
TabListContext.Provider,
|
|
98
|
-
{
|
|
99
|
-
value: {
|
|
100
|
-
tabsWidth,
|
|
101
|
-
},
|
|
102
|
-
},
|
|
103
|
-
children,
|
|
104
|
-
),
|
|
105
|
-
);
|
|
35
|
+
const { className, children, ...rest } = props;
|
|
36
|
+
const { type, hasSublabel, color } = (0, index_js_1.useSafeContext)(TabsContext);
|
|
37
|
+
const isClient = (0, index_js_1.useIsClient)();
|
|
38
|
+
const tablistRef = React.useRef(null);
|
|
39
|
+
const [tablistSizeRef, tabsWidth] = (0, index_js_1.useContainerWidth)(type !== 'default');
|
|
40
|
+
const refs = (0, index_js_1.useMergedRefs)(ref, tablistRef, tablistSizeRef);
|
|
41
|
+
return (React.createElement(index_js_1.Box, { className: (0, classnames_1.default)('iui-tabs', `iui-${type}`, {
|
|
42
|
+
'iui-green': color === 'green',
|
|
43
|
+
'iui-animated': type !== 'default' && isClient,
|
|
44
|
+
'iui-not-animated': type !== 'default' && !isClient,
|
|
45
|
+
'iui-large': hasSublabel,
|
|
46
|
+
}, className), role: 'tablist', ref: refs, ...rest },
|
|
47
|
+
React.createElement(TabListContext.Provider, { value: {
|
|
48
|
+
tabsWidth,
|
|
49
|
+
} }, children)));
|
|
106
50
|
});
|
|
107
51
|
TabList.displayName = 'Tabs.TabList';
|
|
108
52
|
const Tab = React.forwardRef((props, forwardedRef) => {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
const isActiveRef = (0, index_js_1.useLatestRef)(isActive);
|
|
123
|
-
// Scroll to active tab only on initial render
|
|
124
|
-
(0, index_js_1.useIsomorphicLayoutEffect)(() => {
|
|
125
|
-
if (isActiveRef.current) {
|
|
126
|
-
tabRef.current?.parentElement?.scrollTo({
|
|
127
|
-
[orientation === 'horizontal' ? 'left' : 'top']:
|
|
128
|
-
tabRef.current?.[
|
|
129
|
-
orientation === 'horizontal' ? 'offsetLeft' : 'offsetTop'
|
|
130
|
-
] - 4,
|
|
131
|
-
behavior: 'instant', // not using 'smooth' to reduce layout shift on page load
|
|
132
|
-
});
|
|
133
|
-
}
|
|
134
|
-
}, []);
|
|
135
|
-
const updateStripe = () => {
|
|
136
|
-
const currentTabRect = tabRef.current?.getBoundingClientRect();
|
|
137
|
-
setStripeProperties({
|
|
138
|
-
'--iui-tabs-stripe-size':
|
|
139
|
-
orientation === 'horizontal'
|
|
140
|
-
? `${currentTabRect?.width}px`
|
|
141
|
-
: `${currentTabRect?.height}px`,
|
|
142
|
-
'--iui-tabs-stripe-position':
|
|
143
|
-
orientation === 'horizontal'
|
|
144
|
-
? `${tabRef.current?.offsetLeft}px`
|
|
145
|
-
: `${tabRef.current?.offsetTop}px`,
|
|
146
|
-
});
|
|
147
|
-
};
|
|
148
|
-
// CSS custom properties to place the active stripe
|
|
149
|
-
(0, index_js_1.useIsomorphicLayoutEffect)(() => {
|
|
150
|
-
if (type !== 'default' && isActive) {
|
|
151
|
-
updateStripe();
|
|
152
|
-
}
|
|
153
|
-
}, [
|
|
154
|
-
type,
|
|
155
|
-
orientation,
|
|
156
|
-
isActive,
|
|
157
|
-
tabsWidth, // to fix visual artifact on initial render
|
|
158
|
-
]);
|
|
159
|
-
const onKeyDown = (event) => {
|
|
160
|
-
if (event.altKey) {
|
|
161
|
-
return;
|
|
162
|
-
}
|
|
163
|
-
const allTabs = Array.from(
|
|
164
|
-
event.currentTarget.parentElement?.children ?? [],
|
|
165
|
-
);
|
|
166
|
-
const nextTab = tabRef.current?.nextElementSibling ?? allTabs.at(0);
|
|
167
|
-
const previousTab =
|
|
168
|
-
tabRef.current?.previousElementSibling ?? allTabs.at(-1);
|
|
169
|
-
switch (event.key) {
|
|
170
|
-
case 'ArrowDown': {
|
|
171
|
-
if (orientation === 'vertical') {
|
|
172
|
-
nextTab?.focus();
|
|
173
|
-
event.preventDefault();
|
|
53
|
+
const { className, children, value, label, ...rest } = props;
|
|
54
|
+
const { orientation, activeValue, setActiveValue, type, setStripeProperties, idPrefix, focusActivationMode, } = (0, index_js_1.useSafeContext)(TabsContext);
|
|
55
|
+
const { tabsWidth } = (0, index_js_1.useSafeContext)(TabListContext);
|
|
56
|
+
const tabRef = React.useRef();
|
|
57
|
+
const isActive = activeValue === value;
|
|
58
|
+
const isActiveRef = (0, index_js_1.useLatestRef)(isActive);
|
|
59
|
+
// Scroll to active tab only on initial render
|
|
60
|
+
(0, index_js_1.useIsomorphicLayoutEffect)(() => {
|
|
61
|
+
if (isActiveRef.current) {
|
|
62
|
+
tabRef.current?.parentElement?.scrollTo({
|
|
63
|
+
[orientation === 'horizontal' ? 'left' : 'top']: tabRef.current?.[orientation === 'horizontal' ? 'offsetLeft' : 'offsetTop'] - 4,
|
|
64
|
+
behavior: 'instant', // not using 'smooth' to reduce layout shift on page load
|
|
65
|
+
});
|
|
174
66
|
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
67
|
+
}, []);
|
|
68
|
+
const updateStripe = () => {
|
|
69
|
+
const currentTabRect = tabRef.current?.getBoundingClientRect();
|
|
70
|
+
setStripeProperties({
|
|
71
|
+
'--iui-tabs-stripe-size': orientation === 'horizontal'
|
|
72
|
+
? `${currentTabRect?.width}px`
|
|
73
|
+
: `${currentTabRect?.height}px`,
|
|
74
|
+
'--iui-tabs-stripe-position': orientation === 'horizontal'
|
|
75
|
+
? `${tabRef.current?.offsetLeft}px`
|
|
76
|
+
: `${tabRef.current?.offsetTop}px`,
|
|
77
|
+
});
|
|
78
|
+
};
|
|
79
|
+
// CSS custom properties to place the active stripe
|
|
80
|
+
(0, index_js_1.useIsomorphicLayoutEffect)(() => {
|
|
81
|
+
if (type !== 'default' && isActive) {
|
|
82
|
+
updateStripe();
|
|
181
83
|
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
84
|
+
}, [
|
|
85
|
+
type,
|
|
86
|
+
orientation,
|
|
87
|
+
isActive,
|
|
88
|
+
tabsWidth, // to fix visual artifact on initial render
|
|
89
|
+
]);
|
|
90
|
+
const onKeyDown = (event) => {
|
|
91
|
+
if (event.altKey) {
|
|
92
|
+
return;
|
|
188
93
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
94
|
+
const allTabs = Array.from(event.currentTarget.parentElement?.children ?? []);
|
|
95
|
+
const nextTab = (tabRef.current?.nextElementSibling ??
|
|
96
|
+
allTabs.at(0));
|
|
97
|
+
const previousTab = (tabRef.current?.previousElementSibling ??
|
|
98
|
+
allTabs.at(-1));
|
|
99
|
+
switch (event.key) {
|
|
100
|
+
case 'ArrowDown': {
|
|
101
|
+
if (orientation === 'vertical') {
|
|
102
|
+
nextTab?.focus();
|
|
103
|
+
event.preventDefault();
|
|
104
|
+
}
|
|
105
|
+
break;
|
|
106
|
+
}
|
|
107
|
+
case 'ArrowRight': {
|
|
108
|
+
if (orientation === 'horizontal') {
|
|
109
|
+
nextTab?.focus();
|
|
110
|
+
event.preventDefault();
|
|
111
|
+
}
|
|
112
|
+
break;
|
|
113
|
+
}
|
|
114
|
+
case 'ArrowUp': {
|
|
115
|
+
if (orientation === 'vertical') {
|
|
116
|
+
previousTab?.focus();
|
|
117
|
+
event.preventDefault();
|
|
118
|
+
}
|
|
119
|
+
break;
|
|
120
|
+
}
|
|
121
|
+
case 'ArrowLeft': {
|
|
122
|
+
if (orientation === 'horizontal') {
|
|
123
|
+
previousTab?.focus();
|
|
124
|
+
event.preventDefault();
|
|
125
|
+
}
|
|
126
|
+
break;
|
|
127
|
+
}
|
|
128
|
+
default:
|
|
129
|
+
break;
|
|
195
130
|
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
};
|
|
202
|
-
// use first tab as active if no `value` passed.
|
|
203
|
-
const setInitialActiveRef = React.useCallback(
|
|
204
|
-
(element) => {
|
|
205
|
-
if (activeValue !== undefined) {
|
|
206
|
-
return;
|
|
207
|
-
}
|
|
208
|
-
if (element?.matches(':first-of-type')) {
|
|
209
|
-
setActiveValue(value);
|
|
210
|
-
}
|
|
211
|
-
},
|
|
212
|
-
[activeValue, setActiveValue, value],
|
|
213
|
-
);
|
|
214
|
-
return React.createElement(
|
|
215
|
-
index_js_1.ButtonBase,
|
|
216
|
-
{
|
|
217
|
-
className: (0, classnames_1.default)('iui-tab', className),
|
|
218
|
-
role: 'tab',
|
|
219
|
-
tabIndex: isActive ? 0 : -1,
|
|
220
|
-
'aria-selected': isActive,
|
|
221
|
-
'aria-controls': `${idPrefix}-panel-${value}`,
|
|
222
|
-
ref: (0, index_js_1.useMergedRefs)(
|
|
223
|
-
tabRef,
|
|
224
|
-
forwardedRef,
|
|
225
|
-
setInitialActiveRef,
|
|
226
|
-
),
|
|
227
|
-
...rest,
|
|
228
|
-
id: `${idPrefix}-tab-${value}`,
|
|
229
|
-
onClick: (0, index_js_1.mergeEventHandlers)(props.onClick, () =>
|
|
230
|
-
setActiveValue(value),
|
|
231
|
-
),
|
|
232
|
-
onKeyDown: (0, index_js_1.mergeEventHandlers)(props.onKeyDown, onKeyDown),
|
|
233
|
-
onFocus: (0, index_js_1.mergeEventHandlers)(props.onFocus, () => {
|
|
234
|
-
tabRef.current?.scrollIntoView({ block: 'nearest', inline: 'nearest' });
|
|
235
|
-
if (focusActivationMode === 'auto' && !props.disabled) {
|
|
236
|
-
setActiveValue(value);
|
|
131
|
+
};
|
|
132
|
+
// use first tab as active if no `value` passed.
|
|
133
|
+
const setInitialActiveRef = React.useCallback((element) => {
|
|
134
|
+
if (activeValue !== undefined) {
|
|
135
|
+
return;
|
|
237
136
|
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
137
|
+
if (element?.matches(':first-of-type')) {
|
|
138
|
+
setActiveValue(value);
|
|
139
|
+
}
|
|
140
|
+
}, [activeValue, setActiveValue, value]);
|
|
141
|
+
return (React.createElement(index_js_1.ButtonBase, { className: (0, classnames_1.default)('iui-tab', className), role: 'tab', tabIndex: isActive ? 0 : -1, "aria-selected": isActive, "aria-controls": `${idPrefix}-panel-${value}`, ref: (0, index_js_1.useMergedRefs)(tabRef, forwardedRef, setInitialActiveRef), ...rest, id: `${idPrefix}-tab-${value}`, onClick: (0, index_js_1.mergeEventHandlers)(props.onClick, () => setActiveValue(value)), onKeyDown: (0, index_js_1.mergeEventHandlers)(props.onKeyDown, onKeyDown), onFocus: (0, index_js_1.mergeEventHandlers)(props.onFocus, () => {
|
|
142
|
+
tabRef.current?.scrollIntoView({ block: 'nearest', inline: 'nearest' });
|
|
143
|
+
if (focusActivationMode === 'auto' && !props.disabled) {
|
|
144
|
+
setActiveValue(value);
|
|
145
|
+
}
|
|
146
|
+
}) }, label ? React.createElement(exports.Tabs.TabLabel, null, label) : children));
|
|
242
147
|
});
|
|
243
148
|
Tab.displayName = 'Tabs.Tab';
|
|
244
149
|
// ----------------------------------------------------------------------------
|
|
245
150
|
// Tabs.TabIcon component
|
|
246
151
|
const TabIcon = React.forwardRef((props, ref) => {
|
|
247
|
-
|
|
248
|
-
...props,
|
|
249
|
-
className: (0, classnames_1.default)('iui-tab-icon', props?.className),
|
|
250
|
-
ref: ref,
|
|
251
|
-
});
|
|
152
|
+
return (React.createElement(Icon_js_1.Icon, { ...props, className: (0, classnames_1.default)('iui-tab-icon', props?.className), ref: ref }));
|
|
252
153
|
});
|
|
253
154
|
TabIcon.displayName = 'Tabs.TabIcon';
|
|
254
155
|
// ----------------------------------------------------------------------------
|
|
@@ -258,126 +159,46 @@ TabLabel.displayName = 'Tabs.TabLabel';
|
|
|
258
159
|
// ----------------------------------------------------------------------------
|
|
259
160
|
// Tabs.TabDescription component
|
|
260
161
|
const TabDescription = React.forwardRef((props, ref) => {
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
}
|
|
269
|
-
}, [hasSublabel, setHasSublabel]);
|
|
270
|
-
return React.createElement(
|
|
271
|
-
index_js_1.Box,
|
|
272
|
-
{
|
|
273
|
-
as: 'span',
|
|
274
|
-
className: (0, classnames_1.default)('iui-tab-description', className),
|
|
275
|
-
ref: ref,
|
|
276
|
-
...rest,
|
|
277
|
-
},
|
|
278
|
-
children,
|
|
279
|
-
);
|
|
162
|
+
const { className, children, ...rest } = props;
|
|
163
|
+
const { hasSublabel, setHasSublabel } = (0, index_js_1.useSafeContext)(TabsContext);
|
|
164
|
+
(0, index_js_1.useIsomorphicLayoutEffect)(() => {
|
|
165
|
+
if (!hasSublabel) {
|
|
166
|
+
setHasSublabel(true);
|
|
167
|
+
}
|
|
168
|
+
}, [hasSublabel, setHasSublabel]);
|
|
169
|
+
return (React.createElement(index_js_1.Box, { as: 'span', className: (0, classnames_1.default)('iui-tab-description', className), ref: ref, ...rest }, children));
|
|
280
170
|
});
|
|
281
171
|
TabDescription.displayName = 'Tabs.TabDescription';
|
|
282
172
|
const TabsActions = React.forwardRef((props, ref) => {
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
{
|
|
287
|
-
...wrapperProps,
|
|
288
|
-
className: (0, classnames_1.default)(
|
|
289
|
-
'iui-tabs-actions-wrapper',
|
|
290
|
-
wrapperProps?.className,
|
|
291
|
-
),
|
|
292
|
-
},
|
|
293
|
-
React.createElement(
|
|
294
|
-
index_js_1.Box,
|
|
295
|
-
{
|
|
296
|
-
className: (0, classnames_1.default)('iui-tabs-actions', className),
|
|
297
|
-
ref: ref,
|
|
298
|
-
...rest,
|
|
299
|
-
},
|
|
300
|
-
children,
|
|
301
|
-
),
|
|
302
|
-
);
|
|
173
|
+
const { wrapperProps, className, children, ...rest } = props;
|
|
174
|
+
return (React.createElement(index_js_1.Box, { ...wrapperProps, className: (0, classnames_1.default)('iui-tabs-actions-wrapper', wrapperProps?.className) },
|
|
175
|
+
React.createElement(index_js_1.Box, { className: (0, classnames_1.default)('iui-tabs-actions', className), ref: ref, ...rest }, children)));
|
|
303
176
|
});
|
|
304
177
|
TabsActions.displayName = 'Tabs.Actions';
|
|
305
178
|
const TabsPanel = React.forwardRef((props, ref) => {
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
index_js_1.Box,
|
|
310
|
-
{
|
|
311
|
-
className: (0, classnames_1.default)('iui-tabs-content', className),
|
|
312
|
-
'aria-labelledby': `${idPrefix}-tab-${value}`,
|
|
313
|
-
role: 'tabpanel',
|
|
314
|
-
hidden: activeValue !== value ? true : undefined,
|
|
315
|
-
ref: ref,
|
|
316
|
-
...rest,
|
|
317
|
-
id: `${idPrefix}-panel-${value}`,
|
|
318
|
-
},
|
|
319
|
-
children,
|
|
320
|
-
);
|
|
179
|
+
const { value, className, children, ...rest } = props;
|
|
180
|
+
const { activeValue, idPrefix } = (0, index_js_1.useSafeContext)(TabsContext);
|
|
181
|
+
return (React.createElement(index_js_1.Box, { className: (0, classnames_1.default)('iui-tabs-content', className), "aria-labelledby": `${idPrefix}-tab-${value}`, role: 'tabpanel', hidden: activeValue !== value ? true : undefined, ref: ref, ...rest, id: `${idPrefix}-panel-${value}` }, children));
|
|
321
182
|
});
|
|
322
183
|
TabsPanel.displayName = 'Tabs.Panel';
|
|
323
184
|
const LegacyTabsComponent = React.forwardRef((props, forwardedRef) => {
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
} = props;
|
|
342
|
-
const [activeIndex, setActiveIndex] = (0, index_js_1.useControlledState)(
|
|
343
|
-
0,
|
|
344
|
-
activeIndexProp,
|
|
345
|
-
onTabSelected,
|
|
346
|
-
);
|
|
347
|
-
return React.createElement(
|
|
348
|
-
TabsWrapper,
|
|
349
|
-
{
|
|
350
|
-
className: wrapperClassName,
|
|
351
|
-
focusActivationMode: focusActivationMode,
|
|
352
|
-
color: color,
|
|
353
|
-
value: `${activeIndex}`,
|
|
354
|
-
onValueChange: (value) => setActiveIndex(Number(value)),
|
|
355
|
-
...rest,
|
|
356
|
-
},
|
|
357
|
-
React.createElement(
|
|
358
|
-
TabList,
|
|
359
|
-
{ className: tabsClassName, ref: forwardedRef },
|
|
360
|
-
labels.map((label, index) => {
|
|
361
|
-
const tabValue = `${index}`;
|
|
362
|
-
return React.isValidElement(label)
|
|
363
|
-
? React.cloneElement(label, {
|
|
364
|
-
value: tabValue,
|
|
365
|
-
})
|
|
366
|
-
: React.createElement(LegacyTab, {
|
|
367
|
-
key: index,
|
|
368
|
-
value: tabValue,
|
|
369
|
-
label: label,
|
|
370
|
-
});
|
|
371
|
-
}),
|
|
372
|
-
),
|
|
373
|
-
actions && React.createElement(TabsActions, null, actions),
|
|
374
|
-
children &&
|
|
375
|
-
React.createElement(
|
|
376
|
-
TabsPanel,
|
|
377
|
-
{ value: `${activeIndex}`, className: contentClassName },
|
|
378
|
-
children,
|
|
379
|
-
),
|
|
380
|
-
);
|
|
185
|
+
let actions;
|
|
186
|
+
if (props.type !== 'pill' && props.actions) {
|
|
187
|
+
actions = props.actions;
|
|
188
|
+
props = { ...props };
|
|
189
|
+
delete props.actions;
|
|
190
|
+
}
|
|
191
|
+
const { labels, onTabSelected, focusActivationMode, color, activeIndex: activeIndexProp, tabsClassName, contentClassName, wrapperClassName, children, ...rest } = props;
|
|
192
|
+
const [activeIndex, setActiveIndex] = (0, index_js_1.useControlledState)(0, activeIndexProp, onTabSelected);
|
|
193
|
+
return (React.createElement(TabsWrapper, { className: wrapperClassName, focusActivationMode: focusActivationMode, color: color, value: `${activeIndex}`, onValueChange: (value) => setActiveIndex(Number(value)), ...rest },
|
|
194
|
+
React.createElement(TabList, { className: tabsClassName, ref: forwardedRef }, labels.map((label, index) => {
|
|
195
|
+
const tabValue = `${index}`;
|
|
196
|
+
return React.isValidElement(label) ? (React.cloneElement(label, {
|
|
197
|
+
value: tabValue,
|
|
198
|
+
})) : (React.createElement(LegacyTab, { key: index, value: tabValue, label: label }));
|
|
199
|
+
})),
|
|
200
|
+
actions && React.createElement(TabsActions, null, actions),
|
|
201
|
+
children && (React.createElement(TabsPanel, { value: `${activeIndex}`, className: contentClassName }, children))));
|
|
381
202
|
});
|
|
382
203
|
LegacyTabsComponent.displayName = 'Tabs';
|
|
383
204
|
/**
|
|
@@ -392,19 +213,13 @@ LegacyTabsComponent.displayName = 'Tabs';
|
|
|
392
213
|
* ];
|
|
393
214
|
*/
|
|
394
215
|
const LegacyTab = React.forwardRef((props, forwardedRef) => {
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
startIcon && React.createElement(TabIcon, null, startIcon),
|
|
403
|
-
React.createElement(TabLabel, null, label),
|
|
404
|
-
sublabel && React.createElement(TabDescription, null, sublabel),
|
|
405
|
-
children,
|
|
406
|
-
),
|
|
407
|
-
);
|
|
216
|
+
const { label, sublabel, startIcon, children, value, ...rest } = props;
|
|
217
|
+
return (React.createElement(React.Fragment, null,
|
|
218
|
+
React.createElement(Tab, { ...rest, value: value, ref: forwardedRef },
|
|
219
|
+
startIcon && React.createElement(TabIcon, null, startIcon),
|
|
220
|
+
React.createElement(TabLabel, null, label),
|
|
221
|
+
sublabel && React.createElement(TabDescription, null, sublabel),
|
|
222
|
+
children)));
|
|
408
223
|
});
|
|
409
224
|
exports.Tab = LegacyTab;
|
|
410
225
|
/**
|
|
@@ -440,70 +255,70 @@ exports.Tab = LegacyTab;
|
|
|
440
255
|
* </Tabs.Wrapper>
|
|
441
256
|
*/
|
|
442
257
|
exports.Tabs = Object.assign(LegacyTabsComponent, {
|
|
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
|
-
|
|
258
|
+
/**
|
|
259
|
+
* A wrapper component for Tabs
|
|
260
|
+
*/
|
|
261
|
+
Wrapper: TabsWrapper,
|
|
262
|
+
/**
|
|
263
|
+
* Tablist subcomponent which contains all of the tab subcomponents.
|
|
264
|
+
* @example
|
|
265
|
+
* <Tabs.TabList>
|
|
266
|
+
* <Tabs.Tab value='tab1' label='Label 1' />
|
|
267
|
+
* <Tabs.Tab value='tab2' label='Label 2' />
|
|
268
|
+
* <Tabs.Tab value='tab3' label='Label 3' />
|
|
269
|
+
* </Tabs.TabList>
|
|
270
|
+
*
|
|
271
|
+
* @example
|
|
272
|
+
* <Tabs.TabList>
|
|
273
|
+
* <Tabs.Tab value='tab1' label='Green Tab' />
|
|
274
|
+
* </Tabs.TabList>
|
|
275
|
+
*
|
|
276
|
+
* @example
|
|
277
|
+
* <Tabs.TabList focusActivationMode='manual'>
|
|
278
|
+
* <Tabs.Tab value='tab1' label='Manual Focus Tab' />
|
|
279
|
+
* </Tabs.TabList>
|
|
280
|
+
*/
|
|
281
|
+
TabList: TabList,
|
|
282
|
+
/**
|
|
283
|
+
* Tab subcomponent which is used for each of the tabs.
|
|
284
|
+
* @example
|
|
285
|
+
* <Tabs.Tab value='tab1' label='Label 1' />
|
|
286
|
+
*
|
|
287
|
+
* @example
|
|
288
|
+
* <Tabs.Tab value='sample'>
|
|
289
|
+
* <Tabs.TabIcon>
|
|
290
|
+
* <SvgPlaceholder />
|
|
291
|
+
* </Tabs.TabIcon>
|
|
292
|
+
* <Tabs.TabLabel>Sample Label</Tabs.TabLabel>
|
|
293
|
+
* <Tabs.TabDescription>Sample Description</Tabs.TabDescription>
|
|
294
|
+
* </Tabs.Tab>
|
|
295
|
+
*
|
|
296
|
+
*/
|
|
297
|
+
Tab: Tab,
|
|
298
|
+
/**
|
|
299
|
+
* Tab icon subcomponent which places an icon on the left side of the tab.
|
|
300
|
+
*/
|
|
301
|
+
TabIcon: TabIcon,
|
|
302
|
+
/**
|
|
303
|
+
* Tab label subcomponent which holds the tab's label.
|
|
304
|
+
*/
|
|
305
|
+
TabLabel: TabLabel,
|
|
306
|
+
/**
|
|
307
|
+
* Tab description subcomponent which places a description under the tab label.
|
|
308
|
+
*/
|
|
309
|
+
TabDescription: TabDescription,
|
|
310
|
+
/**
|
|
311
|
+
* Tab actions subcomponent which contains action buttons that are placed at the end of the tabs.
|
|
312
|
+
*/
|
|
313
|
+
Actions: TabsActions,
|
|
314
|
+
/**
|
|
315
|
+
* Tab panel subcomponent which contains the tab's content.
|
|
316
|
+
* @example
|
|
317
|
+
* <Tabs.Panel value='tab1'>
|
|
318
|
+
* Sample Panel
|
|
319
|
+
* </Tabs.Panel>
|
|
320
|
+
*/
|
|
321
|
+
Panel: TabsPanel,
|
|
507
322
|
});
|
|
508
323
|
const TabsContext = React.createContext(undefined);
|
|
509
324
|
const TabListContext = React.createContext(undefined);
|