@itwin/itwinui-react 3.11.3 → 3.12.1
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 +50 -0
- package/cjs/core/Alert/Alert.d.ts +3 -7
- package/cjs/core/Alert/Alert.js +130 -121
- package/cjs/core/Avatar/Avatar.js +77 -70
- package/cjs/core/AvatarGroup/AvatarGroup.js +73 -83
- package/cjs/core/Backdrop/Backdrop.js +27 -38
- package/cjs/core/Badge/Badge.js +49 -65
- package/cjs/core/Breadcrumbs/Breadcrumbs.js +169 -129
- package/cjs/core/ButtonGroup/ButtonGroup.js +153 -108
- package/cjs/core/Buttons/Button.js +97 -55
- package/cjs/core/Buttons/DropdownButton.js +58 -54
- package/cjs/core/Buttons/IconButton.js +75 -52
- package/cjs/core/Buttons/IdeasButton.js +31 -44
- package/cjs/core/Buttons/SplitButton.js +105 -87
- package/cjs/core/Carousel/Carousel.d.ts +13 -119
- package/cjs/core/Carousel/Carousel.js +80 -103
- package/cjs/core/Carousel/CarouselContext.js +12 -31
- package/cjs/core/Carousel/CarouselDot.js +32 -46
- package/cjs/core/Carousel/CarouselDotsList.js +162 -144
- package/cjs/core/Carousel/CarouselNavigation.d.ts +6 -112
- package/cjs/core/Carousel/CarouselNavigation.js +102 -83
- package/cjs/core/Carousel/CarouselSlide.js +54 -61
- package/cjs/core/Carousel/CarouselSlider.d.ts +1 -1
- package/cjs/core/Carousel/CarouselSlider.js +74 -80
- package/cjs/core/Checkbox/Checkbox.js +97 -74
- package/cjs/core/ColorPicker/ColorBuilder.d.ts +1 -1
- package/cjs/core/ColorPicker/ColorBuilder.js +300 -209
- package/cjs/core/ColorPicker/ColorInputPanel.js +431 -285
- package/cjs/core/ColorPicker/ColorPalette.js +60 -64
- package/cjs/core/ColorPicker/ColorPicker.js +101 -97
- package/cjs/core/ColorPicker/ColorPickerContext.d.ts +2 -2
- package/cjs/core/ColorPicker/ColorPickerContext.js +28 -37
- package/cjs/core/ColorPicker/ColorSwatch.js +51 -51
- package/cjs/core/ComboBox/ComboBox.d.ts +13 -3
- package/cjs/core/ComboBox/ComboBox.js +422 -323
- package/cjs/core/ComboBox/ComboBox.types-test.js +92 -0
- package/cjs/core/ComboBox/ComboBoxEndIcon.js +38 -43
- package/cjs/core/ComboBox/ComboBoxInput.js +214 -172
- package/cjs/core/ComboBox/ComboBoxInputContainer.js +42 -40
- package/cjs/core/ComboBox/ComboBoxMenu.d.ts +1 -1
- package/cjs/core/ComboBox/ComboBoxMenu.js +102 -76
- package/cjs/core/ComboBox/ComboBoxMenuItem.js +87 -49
- package/cjs/core/ComboBox/ComboBoxMultipleContainer.js +20 -35
- package/cjs/core/ComboBox/helpers.d.ts +4 -27
- package/cjs/core/ComboBox/helpers.js +24 -78
- package/cjs/core/DatePicker/DatePicker.js +599 -379
- package/cjs/core/Dialog/Dialog.js +89 -91
- package/cjs/core/Dialog/DialogBackdrop.js +57 -63
- package/cjs/core/Dialog/DialogButtonBar.js +12 -17
- package/cjs/core/Dialog/DialogContent.js +12 -16
- package/cjs/core/Dialog/DialogContext.js +22 -33
- package/cjs/core/Dialog/DialogDragContext.d.ts +1 -1
- package/cjs/core/Dialog/DialogDragContext.js +25 -36
- package/cjs/core/Dialog/DialogMain.js +192 -161
- package/cjs/core/Dialog/DialogTitleBar.js +73 -68
- package/cjs/core/Dialog/DialogTitleBarTitle.js +12 -14
- package/cjs/core/Divider/Divider.js +23 -41
- package/cjs/core/DropdownMenu/DropdownMenu.d.ts +1 -1
- package/cjs/core/DropdownMenu/DropdownMenu.js +74 -113
- package/cjs/core/ExpandableBlock/ExpandableBlock.d.ts +3 -3
- package/cjs/core/ExpandableBlock/ExpandableBlock.js +207 -177
- package/cjs/core/Fieldset/Fieldset.js +36 -55
- package/cjs/core/FileUpload/FileEmptyCard.js +47 -71
- package/cjs/core/FileUpload/FileUpload.js +97 -76
- package/cjs/core/FileUpload/FileUploadCard.d.ts +2 -2
- package/cjs/core/FileUpload/FileUploadCard.js +197 -163
- package/cjs/core/FileUpload/FileUploadTemplate.js +64 -54
- package/cjs/core/Flex/Flex.js +81 -146
- package/cjs/core/Footer/Footer.js +129 -113
- package/cjs/core/Footer/FooterItem.js +12 -12
- package/cjs/core/Footer/FooterList.js +12 -12
- package/cjs/core/Footer/FooterSeparator.js +13 -13
- package/cjs/core/Header/Header.js +87 -79
- package/cjs/core/Header/HeaderBasicButton.js +33 -43
- package/cjs/core/Header/HeaderBreadcrumbs.js +61 -54
- package/cjs/core/Header/HeaderButton.js +92 -59
- package/cjs/core/Header/HeaderDropdownButton.js +59 -50
- package/cjs/core/Header/HeaderLogo.js +54 -48
- package/cjs/core/Header/HeaderSplitButton.js +81 -51
- package/cjs/core/Icon/Icon.js +41 -62
- package/cjs/core/InformationPanel/InformationPanel.js +108 -98
- package/cjs/core/InformationPanel/InformationPanelBody.js +12 -12
- package/cjs/core/InformationPanel/InformationPanelContent.js +31 -61
- package/cjs/core/InformationPanel/InformationPanelHeader.js +52 -60
- package/cjs/core/InformationPanel/InformationPanelWrapper.js +14 -18
- package/cjs/core/Input/Input.js +27 -46
- package/cjs/core/InputGrid/InputGrid.js +172 -206
- package/cjs/core/InputGroup/InputGroup.js +93 -75
- package/cjs/core/InputWithDecorations/InputWithDecorations.d.ts +2 -2
- package/cjs/core/InputWithDecorations/InputWithDecorations.js +67 -82
- package/cjs/core/Label/Label.js +41 -48
- package/cjs/core/LabeledInput/LabeledInput.js +90 -58
- package/cjs/core/LabeledSelect/LabeledSelect.d.ts +3 -389
- package/cjs/core/LabeledSelect/LabeledSelect.js +74 -73
- package/cjs/core/LabeledSelect/LabeledSelect.types-test.js +106 -0
- package/cjs/core/LabeledTextarea/LabeledTextarea.js +19 -58
- package/cjs/core/LinkAction/LinkAction.d.ts +1 -1
- package/cjs/core/LinkAction/LinkAction.js +35 -63
- package/cjs/core/List/List.js +15 -10
- package/cjs/core/List/ListItem.d.ts +3 -3
- package/cjs/core/List/ListItem.js +47 -99
- package/cjs/core/Menu/Menu.d.ts +80 -6
- package/cjs/core/Menu/Menu.js +223 -94
- package/cjs/core/Menu/MenuDivider.d.ts +1 -1
- package/cjs/core/Menu/MenuDivider.js +13 -25
- package/cjs/core/Menu/MenuExtraContent.js +13 -30
- package/cjs/core/Menu/MenuItem.d.ts +0 -8
- package/cjs/core/Menu/MenuItem.js +142 -173
- package/cjs/core/Menu/MenuItemSkeleton.js +68 -52
- package/cjs/core/Modal/Modal.js +56 -59
- package/cjs/core/Modal/ModalButtonBar.js +12 -12
- package/cjs/core/Modal/ModalContent.js +12 -12
- package/cjs/core/NonIdealState/ErrorPage.js +232 -164
- package/cjs/core/NonIdealState/NonIdealState.js +86 -49
- package/cjs/core/NotificationMarker/NotificationMarker.js +40 -50
- package/cjs/core/Overlay/Overlay.d.ts +3 -3
- package/cjs/core/Overlay/Overlay.js +55 -75
- package/cjs/core/Popover/Popover.d.ts +23 -30
- package/cjs/core/Popover/Popover.js +279 -192
- package/cjs/core/ProgressIndicators/ProgressLinear.js +72 -69
- package/cjs/core/ProgressIndicators/ProgressRadial.js +71 -71
- package/cjs/core/Radio/Radio.js +66 -52
- package/cjs/core/RadioTiles/RadioTile.js +89 -49
- package/cjs/core/RadioTiles/RadioTileGroup.js +30 -44
- package/cjs/core/SearchBox/SearchBox.js +220 -167
- package/cjs/core/Select/Select.d.ts +1 -1
- package/cjs/core/Select/Select.js +473 -303
- package/cjs/core/Select/Select.types-test.js +119 -0
- package/cjs/core/Select/SelectTag.js +33 -43
- package/cjs/core/Select/SelectTagContainer.js +39 -46
- package/cjs/core/SideNavigation/SideNavigation.js +139 -72
- package/cjs/core/SideNavigation/SidenavButton.js +56 -46
- package/cjs/core/SideNavigation/SidenavSubmenu.d.ts +1 -1
- package/cjs/core/SideNavigation/SidenavSubmenu.js +34 -47
- package/cjs/core/SideNavigation/SidenavSubmenuHeader.js +42 -54
- package/cjs/core/SkipToContentLink/SkipToContentLink.js +29 -46
- package/cjs/core/Slider/Slider.js +380 -236
- package/cjs/core/Slider/Thumb.js +120 -92
- package/cjs/core/Slider/Track.js +99 -89
- package/cjs/core/StatusMessage/StatusMessage.js +47 -50
- package/cjs/core/Stepper/Stepper.js +93 -51
- package/cjs/core/Stepper/StepperStep.js +123 -66
- package/cjs/core/Stepper/WorkflowDiagram.js +42 -45
- package/cjs/core/Stepper/WorkflowDiagramStep.js +49 -41
- package/cjs/core/Surface/Surface.js +110 -109
- package/cjs/core/Table/SubRowExpander.js +45 -42
- package/cjs/core/Table/Table.js +826 -500
- package/cjs/core/Table/TableCell.js +110 -79
- package/cjs/core/Table/TablePaginator.js +330 -173
- package/cjs/core/Table/TableRowMemoized.d.ts +9 -29
- package/cjs/core/Table/TableRowMemoized.js +160 -102
- package/cjs/core/Table/actionHandlers/expandHandler.d.ts +1 -1
- package/cjs/core/Table/actionHandlers/expandHandler.js +20 -14
- package/cjs/core/Table/actionHandlers/filterHandler.d.ts +1 -1
- package/cjs/core/Table/actionHandlers/filterHandler.js +33 -19
- package/cjs/core/Table/actionHandlers/index.js +38 -18
- package/cjs/core/Table/actionHandlers/resizeHandler.d.ts +18 -18
- package/cjs/core/Table/actionHandlers/resizeHandler.js +33 -16
- package/cjs/core/Table/actionHandlers/selectHandler.d.ts +12 -12
- package/cjs/core/Table/actionHandlers/selectHandler.js +136 -116
- package/cjs/core/Table/cells/DefaultCell.js +92 -62
- package/cjs/core/Table/cells/EditableCell.js +91 -87
- package/cjs/core/Table/cells/index.js +21 -11
- package/cjs/core/Table/columns/actionColumn.d.ts +2 -2
- package/cjs/core/Table/columns/actionColumn.js +108 -113
- package/cjs/core/Table/columns/expanderColumn.d.ts +2 -2
- package/cjs/core/Table/columns/expanderColumn.js +63 -83
- package/cjs/core/Table/columns/index.js +31 -15
- package/cjs/core/Table/columns/selectionColumn.d.ts +2 -2
- package/cjs/core/Table/columns/selectionColumn.js +86 -77
- package/cjs/core/Table/filters/BaseFilter.js +28 -57
- package/cjs/core/Table/filters/DateRangeFilter/DatePickerInput.js +134 -79
- package/cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.js +130 -87
- package/cjs/core/Table/filters/FilterButtonBar.js +55 -51
- package/cjs/core/Table/filters/FilterToggle.js +74 -59
- package/cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +68 -63
- package/cjs/core/Table/filters/TextFilter/TextFilter.js +47 -55
- package/cjs/core/Table/filters/customFilterFunctions.js +25 -26
- package/cjs/core/Table/filters/defaultFilterFunctions.d.ts +7 -7
- package/cjs/core/Table/filters/defaultFilterFunctions.js +94 -83
- package/cjs/core/Table/filters/index.js +29 -15
- package/cjs/core/Table/filters/tableFilters.d.ts +2 -2
- package/cjs/core/Table/filters/tableFilters.js +30 -59
- package/cjs/core/Table/filters/types.js +4 -2
- package/cjs/core/Table/hooks/index.js +45 -23
- package/cjs/core/Table/hooks/useColumnDragAndDrop.js +108 -90
- package/cjs/core/Table/hooks/useExpanderCell.d.ts +1 -1
- package/cjs/core/Table/hooks/useExpanderCell.js +40 -52
- package/cjs/core/Table/hooks/useResizeColumns.js +362 -299
- package/cjs/core/Table/hooks/useScrollToRow.js +50 -65
- package/cjs/core/Table/hooks/useSelectionCell.d.ts +1 -1
- package/cjs/core/Table/hooks/useSelectionCell.js +25 -12
- package/cjs/core/Table/hooks/useStickyColumns.js +71 -70
- package/cjs/core/Table/hooks/useSubRowFiltering.js +99 -115
- package/cjs/core/Table/hooks/useSubRowSelection.js +39 -58
- package/cjs/core/Table/index.js +48 -22
- package/cjs/core/Table/utils.d.ts +1 -1
- package/cjs/core/Table/utils.js +79 -86
- package/cjs/core/Tabs/Tabs.d.ts +3 -3
- package/cjs/core/Tabs/Tabs.js +421 -358
- package/cjs/core/Tag/Tag.js +81 -56
- package/cjs/core/Tag/TagContainer.js +32 -47
- package/cjs/core/Textarea/Textarea.js +19 -39
- package/cjs/core/ThemeProvider/ThemeContext.d.ts +3 -3
- package/cjs/core/ThemeProvider/ThemeContext.js +12 -31
- package/cjs/core/ThemeProvider/ThemeProvider.js +233 -215
- package/cjs/core/Tile/Tile.d.ts +11 -80
- package/cjs/core/Tile/Tile.js +327 -336
- package/cjs/core/TimePicker/TimePicker.js +476 -269
- package/cjs/core/Toast/Toast.js +242 -149
- package/cjs/core/Toast/Toaster.js +150 -117
- package/cjs/core/ToggleSwitch/ToggleSwitch.js +77 -65
- package/cjs/core/Tooltip/Tooltip.d.ts +12 -11
- package/cjs/core/Tooltip/Tooltip.js +216 -175
- package/cjs/core/TransferList/TransferList.d.ts +4 -4
- package/cjs/core/TransferList/TransferList.js +191 -136
- package/cjs/core/Tree/Tree.js +214 -213
- package/cjs/core/Tree/TreeContext.js +26 -37
- package/cjs/core/Tree/TreeNode.d.ts +11 -4
- package/cjs/core/Tree/TreeNode.js +274 -154
- package/cjs/core/Tree/TreeNodeExpander.js +41 -45
- package/cjs/core/Typography/Anchor.js +42 -58
- package/cjs/core/Typography/Blockquote.js +27 -48
- package/cjs/core/Typography/Code.js +12 -14
- package/cjs/core/Typography/Kbd.js +49 -61
- package/cjs/core/Typography/Text.js +51 -59
- package/cjs/core/VisuallyHidden/VisuallyHidden.js +49 -56
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +481 -233
- package/cjs/react-table/react-table.js +4 -9
- package/cjs/react-table/react-table.types-test.js +653 -0
- package/cjs/styles.d.ts +2 -1
- package/cjs/styles.js +17 -1
- package/cjs/utils/color/ColorValue.js +465 -485
- package/cjs/utils/color/index.js +6 -21
- package/cjs/utils/components/AutoclearingHiddenLiveRegion.js +31 -48
- package/cjs/utils/components/Box.js +12 -14
- package/cjs/utils/components/ButtonBase.js +45 -51
- package/cjs/utils/components/FocusTrap.js +54 -69
- package/cjs/utils/components/InputContainer.js +68 -55
- package/cjs/utils/components/InputFlexContainer.d.ts +2 -2
- package/cjs/utils/components/InputFlexContainer.js +70 -36
- package/cjs/utils/components/InputWithIcon.js +13 -11
- package/cjs/utils/components/LineClamp.d.ts +1 -1
- package/cjs/utils/components/LineClamp.js +35 -40
- package/cjs/utils/components/MiddleTextTruncation.js +39 -65
- package/cjs/utils/components/Portal.d.ts +1 -1
- package/cjs/utils/components/Portal.js +43 -59
- package/cjs/utils/components/Resizer.js +239 -192
- package/cjs/utils/components/ShadowRoot.js +92 -108
- package/cjs/utils/components/VirtualScroll.js +314 -292
- package/cjs/utils/components/WithCSSTransition.d.ts +1 -1
- package/cjs/utils/components/WithCSSTransition.js +56 -62
- package/cjs/utils/components/index.js +19 -34
- package/cjs/utils/functions/colors.d.ts +1 -1
- package/cjs/utils/functions/colors.js +43 -35
- package/cjs/utils/functions/date.js +18 -19
- package/cjs/utils/functions/dev.js +37 -34
- package/cjs/utils/functions/dom.d.ts +1 -1
- package/cjs/utils/functions/dom.js +46 -44
- package/cjs/utils/functions/focusable.d.ts +23 -0
- package/cjs/utils/functions/focusable.js +91 -30
- package/cjs/utils/functions/import.js +29 -32
- package/cjs/utils/functions/index.js +15 -30
- package/cjs/utils/functions/numbers.js +31 -31
- package/cjs/utils/functions/polymorphic.d.ts +3 -180
- package/cjs/utils/functions/polymorphic.js +61 -95
- package/cjs/utils/functions/react.js +29 -56
- package/cjs/utils/functions/supports.js +13 -13
- package/cjs/utils/hooks/index.js +20 -35
- package/cjs/utils/hooks/useContainerWidth.js +34 -61
- package/cjs/utils/hooks/useControlledState.d.ts +1 -1
- package/cjs/utils/hooks/useControlledState.js +30 -50
- package/cjs/utils/hooks/useDragAndDrop.js +122 -122
- package/cjs/utils/hooks/useEventListener.js +25 -58
- package/cjs/utils/hooks/useGlobals.d.ts +3 -3
- package/cjs/utils/hooks/useGlobals.js +49 -65
- package/cjs/utils/hooks/useId.js +18 -42
- package/cjs/utils/hooks/useIntersection.js +41 -63
- package/cjs/utils/hooks/useIsClient.js +16 -36
- package/cjs/utils/hooks/useIsomorphicLayoutEffect.js +13 -39
- package/cjs/utils/hooks/useLatestRef.js +16 -43
- package/cjs/utils/hooks/useMediaQuery.js +30 -43
- package/cjs/utils/hooks/useMergedRefs.d.ts +2 -2
- package/cjs/utils/hooks/useMergedRefs.js +30 -50
- package/cjs/utils/hooks/useOverflow.d.ts +1 -1
- package/cjs/utils/hooks/useOverflow.js +70 -107
- package/cjs/utils/hooks/useResizeObserver.js +35 -67
- package/cjs/utils/hooks/useSafeContext.js +16 -40
- package/cjs/utils/hooks/useSyncExternalStore.js +42 -65
- package/cjs/utils/icons/StatusIconMap.d.ts +4 -5
- package/cjs/utils/icons/StatusIconMap.js +36 -39
- package/cjs/utils/icons/Svg.js +15 -12
- package/cjs/utils/icons/SvgCalendar.d.ts +1 -1
- package/cjs/utils/icons/SvgCalendar.js +19 -34
- package/cjs/utils/icons/SvgCaretDownSmall.d.ts +1 -1
- package/cjs/utils/icons/SvgCaretDownSmall.js +19 -34
- package/cjs/utils/icons/SvgCaretRightSmall.d.ts +1 -1
- package/cjs/utils/icons/SvgCaretRightSmall.js +19 -34
- package/cjs/utils/icons/SvgCaretUpSmall.d.ts +1 -1
- package/cjs/utils/icons/SvgCaretUpSmall.js +19 -34
- package/cjs/utils/icons/SvgCheckmark.d.ts +1 -1
- package/cjs/utils/icons/SvgCheckmark.js +19 -34
- package/cjs/utils/icons/SvgCheckmarkSmall.d.ts +1 -1
- package/cjs/utils/icons/SvgCheckmarkSmall.js +19 -34
- package/cjs/utils/icons/SvgChevronLeft.d.ts +1 -1
- package/cjs/utils/icons/SvgChevronLeft.js +19 -34
- package/cjs/utils/icons/SvgChevronLeftDouble.d.ts +1 -1
- package/cjs/utils/icons/SvgChevronLeftDouble.js +19 -34
- package/cjs/utils/icons/SvgChevronRight.d.ts +1 -1
- package/cjs/utils/icons/SvgChevronRight.js +19 -34
- package/cjs/utils/icons/SvgChevronRightDouble.d.ts +1 -1
- package/cjs/utils/icons/SvgChevronRightDouble.js +19 -34
- package/cjs/utils/icons/SvgChevronRightSmall.d.ts +1 -1
- package/cjs/utils/icons/SvgChevronRightSmall.js +19 -34
- package/cjs/utils/icons/SvgClose.d.ts +1 -1
- package/cjs/utils/icons/SvgClose.js +19 -34
- package/cjs/utils/icons/SvgCloseSmall.d.ts +1 -1
- package/cjs/utils/icons/SvgCloseSmall.js +19 -34
- package/cjs/utils/icons/SvgColumnManager.d.ts +1 -1
- package/cjs/utils/icons/SvgColumnManager.js +19 -34
- package/cjs/utils/icons/SvgDocument.d.ts +1 -1
- package/cjs/utils/icons/SvgDocument.js +19 -34
- package/cjs/utils/icons/SvgFilter.d.ts +1 -1
- package/cjs/utils/icons/SvgFilter.js +19 -34
- package/cjs/utils/icons/SvgFilterHollow.d.ts +1 -1
- package/cjs/utils/icons/SvgFilterHollow.js +19 -34
- package/cjs/utils/icons/SvgImportantSmall.d.ts +1 -1
- package/cjs/utils/icons/SvgImportantSmall.js +19 -34
- package/cjs/utils/icons/SvgInfoCircular.d.ts +1 -1
- package/cjs/utils/icons/SvgInfoCircular.js +19 -34
- package/cjs/utils/icons/SvgMore.d.ts +1 -1
- package/cjs/utils/icons/SvgMore.js +19 -34
- package/cjs/utils/icons/SvgMoreVertical.d.ts +1 -1
- package/cjs/utils/icons/SvgMoreVertical.js +19 -34
- package/cjs/utils/icons/SvgNew.d.ts +1 -1
- package/cjs/utils/icons/SvgNew.js +19 -34
- package/cjs/utils/icons/SvgSearch.d.ts +1 -1
- package/cjs/utils/icons/SvgSearch.js +19 -34
- package/cjs/utils/icons/SvgSmileyHappy.d.ts +1 -1
- package/cjs/utils/icons/SvgSmileyHappy.js +19 -34
- package/cjs/utils/icons/SvgSortDown.d.ts +1 -1
- package/cjs/utils/icons/SvgSortDown.js +19 -34
- package/cjs/utils/icons/SvgSortUp.d.ts +1 -1
- package/cjs/utils/icons/SvgSortUp.js +19 -34
- package/cjs/utils/icons/SvgStatusError.d.ts +1 -1
- package/cjs/utils/icons/SvgStatusError.js +19 -34
- package/cjs/utils/icons/SvgStatusSuccess.d.ts +1 -1
- package/cjs/utils/icons/SvgStatusSuccess.js +19 -34
- package/cjs/utils/icons/SvgStatusWarning.d.ts +1 -1
- package/cjs/utils/icons/SvgStatusWarning.js +19 -34
- package/cjs/utils/icons/SvgSwap.d.ts +1 -1
- package/cjs/utils/icons/SvgSwap.js +19 -34
- package/cjs/utils/icons/SvgUpload.d.ts +1 -1
- package/cjs/utils/icons/SvgUpload.js +19 -34
- package/cjs/utils/icons/index.js +37 -52
- package/cjs/utils/index.js +13 -28
- package/cjs/utils/meta.d.ts +7 -0
- package/cjs/utils/meta.js +16 -0
- package/cjs/utils/props.js +4 -2
- package/cjs/utils/providers/HydrationProvider.js +55 -68
- package/cjs/utils/providers/ScopeProvider.js +60 -71
- package/cjs/utils/providers/index.js +7 -22
- package/cjs/utils/types.js +4 -2
- package/esm/core/Alert/Alert.d.ts +3 -7
- package/esm/core/Alert/Alert.js +108 -80
- package/esm/core/Avatar/Avatar.js +45 -36
- package/esm/core/AvatarGroup/AvatarGroup.js +58 -51
- package/esm/core/Backdrop/Backdrop.js +12 -6
- package/esm/core/Badge/Badge.js +32 -33
- package/esm/core/Breadcrumbs/Breadcrumbs.js +150 -93
- package/esm/core/ButtonGroup/ButtonGroup.js +129 -72
- package/esm/core/Buttons/Button.js +72 -22
- package/esm/core/Buttons/DropdownButton.js +41 -20
- package/esm/core/Buttons/IconButton.js +50 -17
- package/esm/core/Buttons/IdeasButton.js +15 -11
- package/esm/core/Buttons/SplitButton.js +93 -53
- package/esm/core/Carousel/Carousel.d.ts +13 -119
- package/esm/core/Carousel/Carousel.js +58 -64
- package/esm/core/Carousel/CarouselContext.js +0 -4
- package/esm/core/Carousel/CarouselDot.js +17 -14
- package/esm/core/Carousel/CarouselDotsList.js +147 -111
- package/esm/core/Carousel/CarouselNavigation.d.ts +6 -112
- package/esm/core/Carousel/CarouselNavigation.js +80 -44
- package/esm/core/Carousel/CarouselSlide.js +41 -29
- package/esm/core/Carousel/CarouselSlider.d.ts +1 -1
- package/esm/core/Carousel/CarouselSlider.js +64 -48
- package/esm/core/Checkbox/Checkbox.js +78 -41
- package/esm/core/ColorPicker/ColorBuilder.d.ts +1 -1
- package/esm/core/ColorPicker/ColorBuilder.js +287 -176
- package/esm/core/ColorPicker/ColorInputPanel.js +413 -250
- package/esm/core/ColorPicker/ColorPalette.js +40 -30
- package/esm/core/ColorPicker/ColorPicker.js +75 -63
- package/esm/core/ColorPicker/ColorPickerContext.d.ts +2 -2
- package/esm/core/ColorPicker/ColorPickerContext.js +7 -9
- package/esm/core/ColorPicker/ColorSwatch.js +31 -18
- package/esm/core/ComboBox/ComboBox.d.ts +13 -3
- package/esm/core/ComboBox/ComboBox.js +407 -286
- package/esm/core/ComboBox/ComboBox.types-test.js +88 -0
- package/esm/core/ComboBox/ComboBoxEndIcon.js +21 -9
- package/esm/core/ComboBox/ComboBoxInput.js +193 -142
- package/esm/core/ComboBox/ComboBoxInputContainer.js +33 -10
- package/esm/core/ComboBox/ComboBoxMenu.d.ts +1 -1
- package/esm/core/ComboBox/ComboBoxMenu.js +85 -43
- package/esm/core/ComboBox/ComboBoxMenuItem.js +74 -19
- package/esm/core/ComboBox/ComboBoxMultipleContainer.js +6 -6
- package/esm/core/ComboBox/helpers.d.ts +4 -27
- package/esm/core/ComboBox/helpers.js +0 -47
- package/esm/core/DatePicker/DatePicker.js +564 -345
- package/esm/core/Dialog/Dialog.js +66 -51
- package/esm/core/Dialog/DialogBackdrop.js +40 -29
- package/esm/core/Dialog/DialogButtonBar.js +0 -12
- package/esm/core/Dialog/DialogContent.js +0 -11
- package/esm/core/Dialog/DialogContext.js +1 -5
- package/esm/core/Dialog/DialogDragContext.d.ts +1 -1
- package/esm/core/Dialog/DialogDragContext.js +4 -8
- package/esm/core/Dialog/DialogMain.js +182 -126
- package/esm/core/Dialog/DialogTitleBar.js +46 -31
- package/esm/core/Dialog/DialogTitleBarTitle.js +0 -9
- package/esm/core/Divider/Divider.js +8 -9
- package/esm/core/DropdownMenu/DropdownMenu.d.ts +1 -1
- package/esm/core/DropdownMenu/DropdownMenu.js +60 -84
- package/esm/core/ExpandableBlock/ExpandableBlock.d.ts +3 -3
- package/esm/core/ExpandableBlock/ExpandableBlock.js +173 -133
- package/esm/core/Fieldset/Fieldset.js +21 -23
- package/esm/core/FileUpload/FileEmptyCard.js +23 -34
- package/esm/core/FileUpload/FileUpload.js +67 -44
- package/esm/core/FileUpload/FileUploadCard.d.ts +2 -2
- package/esm/core/FileUpload/FileUploadCard.js +162 -118
- package/esm/core/FileUpload/FileUploadTemplate.js +45 -21
- package/esm/core/Flex/Flex.js +63 -111
- package/esm/core/Footer/Footer.js +96 -73
- package/esm/core/Footer/FooterItem.js +0 -7
- package/esm/core/Footer/FooterList.js +0 -7
- package/esm/core/Footer/FooterSeparator.js +1 -8
- package/esm/core/Header/Header.js +70 -45
- package/esm/core/Header/HeaderBasicButton.js +15 -11
- package/esm/core/Header/HeaderBreadcrumbs.js +39 -22
- package/esm/core/Header/HeaderButton.js +70 -28
- package/esm/core/Header/HeaderDropdownButton.js +44 -17
- package/esm/core/Header/HeaderLogo.js +39 -16
- package/esm/core/Header/HeaderSplitButton.js +67 -18
- package/esm/core/Icon/Icon.js +26 -30
- package/esm/core/InformationPanel/InformationPanel.js +93 -66
- package/esm/core/InformationPanel/InformationPanelBody.js +0 -7
- package/esm/core/InformationPanel/InformationPanelContent.js +19 -30
- package/esm/core/InformationPanel/InformationPanelHeader.js +39 -28
- package/esm/core/InformationPanel/InformationPanelWrapper.js +3 -14
- package/esm/core/Input/Input.js +12 -14
- package/esm/core/InputGrid/InputGrid.js +145 -165
- package/esm/core/InputGroup/InputGroup.js +72 -40
- package/esm/core/InputWithDecorations/InputWithDecorations.d.ts +2 -2
- package/esm/core/InputWithDecorations/InputWithDecorations.js +58 -49
- package/esm/core/Label/Label.js +26 -16
- package/esm/core/LabeledInput/LabeledInput.js +67 -21
- package/esm/core/LabeledSelect/LabeledSelect.d.ts +3 -389
- package/esm/core/LabeledSelect/LabeledSelect.js +58 -43
- package/esm/core/LabeledSelect/LabeledSelect.types-test.js +102 -0
- package/esm/core/LabeledTextarea/LabeledTextarea.js +6 -32
- package/esm/core/LinkAction/LinkAction.d.ts +1 -1
- package/esm/core/LinkAction/LinkAction.js +7 -27
- package/esm/core/List/List.js +3 -5
- package/esm/core/List/ListItem.d.ts +3 -3
- package/esm/core/List/ListItem.js +24 -61
- package/esm/core/Menu/Menu.d.ts +80 -6
- package/esm/core/Menu/Menu.js +211 -61
- package/esm/core/Menu/MenuDivider.d.ts +1 -1
- package/esm/core/Menu/MenuDivider.js +1 -20
- package/esm/core/Menu/MenuExtraContent.js +1 -25
- package/esm/core/Menu/MenuItem.d.ts +0 -8
- package/esm/core/Menu/MenuItem.js +132 -145
- package/esm/core/Menu/MenuItemSkeleton.js +48 -19
- package/esm/core/Modal/Modal.js +43 -31
- package/esm/core/Modal/ModalButtonBar.js +0 -7
- package/esm/core/Modal/ModalContent.js +0 -7
- package/esm/core/NonIdealState/ErrorPage.js +181 -134
- package/esm/core/NonIdealState/NonIdealState.js +65 -17
- package/esm/core/NotificationMarker/NotificationMarker.js +25 -18
- package/esm/core/Overlay/Overlay.d.ts +3 -3
- package/esm/core/Overlay/Overlay.js +36 -63
- package/esm/core/Popover/Popover.d.ts +23 -30
- package/esm/core/Popover/Popover.js +276 -157
- package/esm/core/ProgressIndicators/ProgressLinear.js +52 -36
- package/esm/core/ProgressIndicators/ProgressRadial.js +54 -39
- package/esm/core/Radio/Radio.js +48 -20
- package/esm/core/RadioTiles/RadioTile.js +62 -17
- package/esm/core/RadioTiles/RadioTileGroup.js +16 -15
- package/esm/core/SearchBox/SearchBox.js +203 -128
- package/esm/core/Select/Select.d.ts +1 -1
- package/esm/core/Select/Select.js +442 -260
- package/esm/core/Select/Select.types-test.js +115 -0
- package/esm/core/Select/SelectTag.js +18 -11
- package/esm/core/Select/SelectTagContainer.js +20 -13
- package/esm/core/SideNavigation/SideNavigation.js +104 -39
- package/esm/core/SideNavigation/SidenavButton.js +38 -12
- package/esm/core/SideNavigation/SidenavSubmenu.d.ts +1 -1
- package/esm/core/SideNavigation/SidenavSubmenu.js +16 -15
- package/esm/core/SideNavigation/SidenavSubmenuHeader.js +24 -22
- package/esm/core/SkipToContentLink/SkipToContentLink.js +11 -14
- package/esm/core/Slider/Slider.js +339 -202
- package/esm/core/Slider/Thumb.js +105 -59
- package/esm/core/Slider/Track.js +82 -57
- package/esm/core/StatusMessage/StatusMessage.js +31 -17
- package/esm/core/Stepper/Stepper.js +74 -18
- package/esm/core/Stepper/StepperStep.js +101 -33
- package/esm/core/Stepper/WorkflowDiagram.js +27 -13
- package/esm/core/Stepper/WorkflowDiagramStep.js +28 -8
- package/esm/core/Surface/Surface.js +92 -74
- package/esm/core/Table/SubRowExpander.js +32 -13
- package/esm/core/Table/Table.js +828 -461
- package/esm/core/Table/TableCell.js +85 -43
- package/esm/core/Table/TablePaginator.js +320 -137
- package/esm/core/Table/TableRowMemoized.d.ts +9 -29
- package/esm/core/Table/TableRowMemoized.js +135 -70
- package/esm/core/Table/actionHandlers/expandHandler.d.ts +1 -1
- package/esm/core/Table/actionHandlers/expandHandler.js +10 -10
- package/esm/core/Table/actionHandlers/filterHandler.d.ts +1 -1
- package/esm/core/Table/actionHandlers/filterHandler.js +23 -15
- package/esm/core/Table/actionHandlers/index.js +5 -5
- package/esm/core/Table/actionHandlers/resizeHandler.d.ts +18 -18
- package/esm/core/Table/actionHandlers/resizeHandler.js +14 -11
- package/esm/core/Table/actionHandlers/selectHandler.d.ts +12 -12
- package/esm/core/Table/actionHandlers/selectHandler.js +114 -110
- package/esm/core/Table/cells/DefaultCell.js +77 -29
- package/esm/core/Table/cells/EditableCell.js +77 -55
- package/esm/core/Table/cells/index.js +0 -4
- package/esm/core/Table/columns/actionColumn.d.ts +2 -2
- package/esm/core/Table/columns/actionColumn.js +89 -78
- package/esm/core/Table/columns/expanderColumn.d.ts +2 -2
- package/esm/core/Table/columns/expanderColumn.js +39 -52
- package/esm/core/Table/columns/index.js +0 -4
- package/esm/core/Table/columns/selectionColumn.d.ts +2 -2
- package/esm/core/Table/columns/selectionColumn.js +63 -47
- package/esm/core/Table/filters/BaseFilter.js +14 -25
- package/esm/core/Table/filters/DateRangeFilter/DatePickerInput.js +116 -46
- package/esm/core/Table/filters/DateRangeFilter/DateRangeFilter.js +115 -56
- package/esm/core/Table/filters/FilterButtonBar.js +40 -18
- package/esm/core/Table/filters/FilterToggle.js +60 -26
- package/esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +53 -32
- package/esm/core/Table/filters/TextFilter/TextFilter.js +32 -24
- package/esm/core/Table/filters/customFilterFunctions.js +14 -22
- package/esm/core/Table/filters/defaultFilterFunctions.d.ts +7 -7
- package/esm/core/Table/filters/defaultFilterFunctions.js +83 -79
- package/esm/core/Table/filters/index.js +0 -4
- package/esm/core/Table/filters/tableFilters.d.ts +2 -2
- package/esm/core/Table/filters/tableFilters.js +15 -29
- package/esm/core/Table/hooks/index.js +0 -4
- package/esm/core/Table/hooks/useColumnDragAndDrop.js +89 -82
- package/esm/core/Table/hooks/useExpanderCell.d.ts +1 -1
- package/esm/core/Table/hooks/useExpanderCell.js +26 -24
- package/esm/core/Table/hooks/useResizeColumns.js +346 -292
- package/esm/core/Table/hooks/useScrollToRow.js +39 -38
- package/esm/core/Table/hooks/useSelectionCell.d.ts +1 -1
- package/esm/core/Table/hooks/useSelectionCell.js +14 -7
- package/esm/core/Table/hooks/useStickyColumns.js +58 -63
- package/esm/core/Table/hooks/useSubRowFiltering.js +87 -87
- package/esm/core/Table/hooks/useSubRowSelection.js +28 -31
- package/esm/core/Table/index.js +5 -5
- package/esm/core/Table/utils.d.ts +1 -1
- package/esm/core/Table/utils.js +55 -59
- package/esm/core/Tabs/Tabs.d.ts +3 -3
- package/esm/core/Tabs/Tabs.js +385 -315
- package/esm/core/Tag/Tag.js +54 -22
- package/esm/core/Tag/TagContainer.js +17 -15
- package/esm/core/Textarea/Textarea.js +6 -11
- package/esm/core/ThemeProvider/ThemeContext.d.ts +3 -3
- package/esm/core/ThemeProvider/ThemeContext.js +0 -4
- package/esm/core/ThemeProvider/ThemeProvider.js +210 -174
- package/esm/core/Tile/Tile.d.ts +11 -80
- package/esm/core/Tile/Tile.js +283 -283
- package/esm/core/TimePicker/TimePicker.js +461 -237
- package/esm/core/Toast/Toast.js +209 -114
- package/esm/core/Toast/Toaster.js +114 -79
- package/esm/core/ToggleSwitch/ToggleSwitch.js +59 -33
- package/esm/core/Tooltip/Tooltip.d.ts +12 -11
- package/esm/core/Tooltip/Tooltip.js +221 -144
- package/esm/core/TransferList/TransferList.d.ts +4 -4
- package/esm/core/TransferList/TransferList.js +152 -118
- package/esm/core/Tree/Tree.js +202 -178
- package/esm/core/Tree/TreeContext.js +5 -9
- package/esm/core/Tree/TreeNode.d.ts +11 -4
- package/esm/core/Tree/TreeNode.js +245 -121
- package/esm/core/Tree/TreeNodeExpander.js +23 -11
- package/esm/core/Typography/Anchor.js +21 -24
- package/esm/core/Typography/Blockquote.js +12 -16
- package/esm/core/Typography/Code.js +0 -9
- package/esm/core/Typography/Kbd.js +24 -28
- package/esm/core/Typography/Text.js +26 -26
- package/esm/core/VisuallyHidden/VisuallyHidden.js +34 -24
- package/esm/index.d.ts +1 -0
- package/esm/index.js +22 -7
- package/esm/react-table/react-table.js +0 -7
- package/esm/react-table/react-table.types-test.js +658 -0
- package/esm/styles.d.ts +2 -1
- package/esm/styles.js +8 -9
- package/esm/utils/color/ColorValue.js +436 -477
- package/esm/utils/color/index.js +0 -4
- package/esm/utils/components/AutoclearingHiddenLiveRegion.js +15 -19
- package/esm/utils/components/Box.js +0 -9
- package/esm/utils/components/ButtonBase.js +28 -17
- package/esm/utils/components/FocusTrap.js +41 -40
- package/esm/utils/components/InputContainer.js +51 -21
- package/esm/utils/components/InputFlexContainer.d.ts +2 -2
- package/esm/utils/components/InputFlexContainer.js +30 -23
- package/esm/utils/components/InputWithIcon.js +0 -5
- package/esm/utils/components/LineClamp.d.ts +1 -1
- package/esm/utils/components/LineClamp.js +21 -11
- package/esm/utils/components/MiddleTextTruncation.js +27 -37
- package/esm/utils/components/Portal.d.ts +1 -1
- package/esm/utils/components/Portal.js +13 -31
- package/esm/utils/components/Resizer.js +231 -165
- package/esm/utils/components/ShadowRoot.js +78 -78
- package/esm/utils/components/VirtualScroll.js +296 -263
- package/esm/utils/components/WithCSSTransition.d.ts +1 -1
- package/esm/utils/components/WithCSSTransition.js +44 -31
- package/esm/utils/components/index.js +0 -4
- package/esm/utils/functions/colors.d.ts +1 -1
- package/esm/utils/functions/colors.js +19 -28
- package/esm/utils/functions/date.js +8 -15
- package/esm/utils/functions/dev.js +15 -28
- package/esm/utils/functions/dom.d.ts +1 -1
- package/esm/utils/functions/dom.js +18 -36
- package/esm/utils/functions/focusable.d.ts +23 -0
- package/esm/utils/functions/focusable.js +68 -25
- package/esm/utils/functions/import.js +19 -28
- package/esm/utils/functions/index.js +0 -4
- package/esm/utils/functions/numbers.js +9 -25
- package/esm/utils/functions/polymorphic.d.ts +3 -180
- package/esm/utils/functions/polymorphic.js +42 -63
- package/esm/utils/functions/react.js +17 -28
- package/esm/utils/functions/supports.js +2 -8
- package/esm/utils/hooks/index.js +0 -4
- package/esm/utils/hooks/useContainerWidth.js +16 -32
- package/esm/utils/hooks/useControlledState.d.ts +1 -1
- package/esm/utils/hooks/useControlledState.js +19 -23
- package/esm/utils/hooks/useDragAndDrop.js +109 -93
- package/esm/utils/hooks/useEventListener.js +14 -31
- package/esm/utils/hooks/useGlobals.d.ts +3 -3
- package/esm/utils/hooks/useGlobals.js +27 -35
- package/esm/utils/hooks/useId.js +4 -13
- package/esm/utils/hooks/useIntersection.js +29 -35
- package/esm/utils/hooks/useIsClient.js +5 -9
- package/esm/utils/hooks/useIsomorphicLayoutEffect.js +2 -12
- package/esm/utils/hooks/useLatestRef.js +5 -16
- package/esm/utils/hooks/useMediaQuery.js +14 -15
- package/esm/utils/hooks/useMergedRefs.d.ts +2 -2
- package/esm/utils/hooks/useMergedRefs.js +10 -22
- package/esm/utils/hooks/useOverflow.d.ts +1 -1
- package/esm/utils/hooks/useOverflow.js +59 -78
- package/esm/utils/hooks/useResizeObserver.js +23 -39
- package/esm/utils/hooks/useSafeContext.js +5 -13
- package/esm/utils/hooks/useSyncExternalStore.js +31 -39
- package/esm/utils/icons/StatusIconMap.d.ts +4 -5
- package/esm/utils/icons/StatusIconMap.js +20 -8
- package/esm/utils/icons/Svg.js +3 -7
- package/esm/utils/icons/SvgCalendar.d.ts +1 -1
- package/esm/utils/icons/SvgCalendar.js +7 -6
- package/esm/utils/icons/SvgCaretDownSmall.d.ts +1 -1
- package/esm/utils/icons/SvgCaretDownSmall.js +7 -6
- package/esm/utils/icons/SvgCaretRightSmall.d.ts +1 -1
- package/esm/utils/icons/SvgCaretRightSmall.js +7 -6
- package/esm/utils/icons/SvgCaretUpSmall.d.ts +1 -1
- package/esm/utils/icons/SvgCaretUpSmall.js +7 -6
- package/esm/utils/icons/SvgCheckmark.d.ts +1 -1
- package/esm/utils/icons/SvgCheckmark.js +7 -6
- package/esm/utils/icons/SvgCheckmarkSmall.d.ts +1 -1
- package/esm/utils/icons/SvgCheckmarkSmall.js +7 -6
- package/esm/utils/icons/SvgChevronLeft.d.ts +1 -1
- package/esm/utils/icons/SvgChevronLeft.js +7 -6
- package/esm/utils/icons/SvgChevronLeftDouble.d.ts +1 -1
- package/esm/utils/icons/SvgChevronLeftDouble.js +7 -6
- package/esm/utils/icons/SvgChevronRight.d.ts +1 -1
- package/esm/utils/icons/SvgChevronRight.js +7 -6
- package/esm/utils/icons/SvgChevronRightDouble.d.ts +1 -1
- package/esm/utils/icons/SvgChevronRightDouble.js +7 -6
- package/esm/utils/icons/SvgChevronRightSmall.d.ts +1 -1
- package/esm/utils/icons/SvgChevronRightSmall.js +7 -6
- package/esm/utils/icons/SvgClose.d.ts +1 -1
- package/esm/utils/icons/SvgClose.js +7 -6
- package/esm/utils/icons/SvgCloseSmall.d.ts +1 -1
- package/esm/utils/icons/SvgCloseSmall.js +7 -6
- package/esm/utils/icons/SvgColumnManager.d.ts +1 -1
- package/esm/utils/icons/SvgColumnManager.js +7 -6
- package/esm/utils/icons/SvgDocument.d.ts +1 -1
- package/esm/utils/icons/SvgDocument.js +7 -6
- package/esm/utils/icons/SvgFilter.d.ts +1 -1
- package/esm/utils/icons/SvgFilter.js +7 -6
- package/esm/utils/icons/SvgFilterHollow.d.ts +1 -1
- package/esm/utils/icons/SvgFilterHollow.js +7 -6
- package/esm/utils/icons/SvgImportantSmall.d.ts +1 -1
- package/esm/utils/icons/SvgImportantSmall.js +7 -6
- package/esm/utils/icons/SvgInfoCircular.d.ts +1 -1
- package/esm/utils/icons/SvgInfoCircular.js +7 -6
- package/esm/utils/icons/SvgMore.d.ts +1 -1
- package/esm/utils/icons/SvgMore.js +7 -6
- package/esm/utils/icons/SvgMoreVertical.d.ts +1 -1
- package/esm/utils/icons/SvgMoreVertical.js +7 -6
- package/esm/utils/icons/SvgNew.d.ts +1 -1
- package/esm/utils/icons/SvgNew.js +7 -6
- package/esm/utils/icons/SvgSearch.d.ts +1 -1
- package/esm/utils/icons/SvgSearch.js +7 -6
- package/esm/utils/icons/SvgSmileyHappy.d.ts +1 -1
- package/esm/utils/icons/SvgSmileyHappy.js +7 -6
- package/esm/utils/icons/SvgSortDown.d.ts +1 -1
- package/esm/utils/icons/SvgSortDown.js +7 -6
- package/esm/utils/icons/SvgSortUp.d.ts +1 -1
- package/esm/utils/icons/SvgSortUp.js +7 -6
- package/esm/utils/icons/SvgStatusError.d.ts +1 -1
- package/esm/utils/icons/SvgStatusError.js +7 -6
- package/esm/utils/icons/SvgStatusSuccess.d.ts +1 -1
- package/esm/utils/icons/SvgStatusSuccess.js +7 -6
- package/esm/utils/icons/SvgStatusWarning.d.ts +1 -1
- package/esm/utils/icons/SvgStatusWarning.js +7 -6
- package/esm/utils/icons/SvgSwap.d.ts +1 -1
- package/esm/utils/icons/SvgSwap.js +7 -6
- package/esm/utils/icons/SvgUpload.d.ts +1 -1
- package/esm/utils/icons/SvgUpload.js +7 -6
- package/esm/utils/icons/index.js +0 -4
- package/esm/utils/index.js +0 -4
- package/esm/utils/meta.d.ts +7 -0
- package/esm/utils/meta.js +6 -0
- package/esm/utils/providers/HydrationProvider.js +33 -38
- package/esm/utils/providers/ScopeProvider.js +35 -40
- package/esm/utils/providers/index.js +0 -4
- package/package.json +22 -16
- package/styles.css +1 -1
- package/react-table.d.ts +0 -750
|
@@ -1,399 +1,619 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
1
|
+
'use strict';
|
|
2
|
+
Object.defineProperty(exports, '__esModule', {
|
|
3
|
+
value: true,
|
|
17
4
|
});
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
const
|
|
35
|
-
const
|
|
36
|
-
const
|
|
37
|
-
const
|
|
38
|
-
const
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
Object.defineProperty(target, name, {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: all[name],
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
_export(exports, {
|
|
13
|
+
DatePicker: function () {
|
|
14
|
+
return DatePicker;
|
|
15
|
+
},
|
|
16
|
+
generateLocalizedStrings: function () {
|
|
17
|
+
return generateLocalizedStrings;
|
|
18
|
+
},
|
|
19
|
+
});
|
|
20
|
+
const _interop_require_default = require('@swc/helpers/_/_interop_require_default');
|
|
21
|
+
const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
|
|
22
|
+
const _classnames = _interop_require_default._(require('classnames'));
|
|
23
|
+
const _react = _interop_require_wildcard._(require('react'));
|
|
24
|
+
const _index = require('../../utils/index.js');
|
|
25
|
+
const _IconButton = require('../Buttons/IconButton.js');
|
|
26
|
+
const _TimePicker = require('../TimePicker/TimePicker.js');
|
|
39
27
|
const isSameDay = (a, b) => {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
28
|
+
return (
|
|
29
|
+
a &&
|
|
30
|
+
b &&
|
|
31
|
+
a.getFullYear() === b.getFullYear() &&
|
|
32
|
+
a.getMonth() === b.getMonth() &&
|
|
33
|
+
a.getDate() === b.getDate()
|
|
34
|
+
);
|
|
45
35
|
};
|
|
46
36
|
const isInDateRange = (date, startDate, endDate) => {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
37
|
+
if (!date || !startDate || !endDate) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
const minDate = new Date(startDate);
|
|
41
|
+
const maxDate = new Date(endDate);
|
|
42
|
+
const testDate = new Date(date);
|
|
43
|
+
testDate && testDate.setHours(0, 0, 0, 0);
|
|
44
|
+
minDate && minDate.setHours(0, 0, 0, 0);
|
|
45
|
+
maxDate && maxDate.setHours(0, 0, 0, 0);
|
|
46
|
+
return testDate > minDate && testDate < maxDate;
|
|
57
47
|
};
|
|
58
|
-
// Type guard for multiple did not work
|
|
59
48
|
const isSingleOnChange = (onChange, enableRangeSelect) => {
|
|
60
|
-
|
|
49
|
+
return !enableRangeSelect;
|
|
61
50
|
};
|
|
62
51
|
const defaultMonths = [
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
52
|
+
'January',
|
|
53
|
+
'February',
|
|
54
|
+
'March',
|
|
55
|
+
'April',
|
|
56
|
+
'May',
|
|
57
|
+
'June',
|
|
58
|
+
'July',
|
|
59
|
+
'August',
|
|
60
|
+
'September',
|
|
61
|
+
'October',
|
|
62
|
+
'November',
|
|
63
|
+
'December',
|
|
75
64
|
];
|
|
76
65
|
const defaultShortDays = ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'];
|
|
77
66
|
const defaultLongDays = [
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
67
|
+
'Sunday',
|
|
68
|
+
'Monday',
|
|
69
|
+
'Tuesday',
|
|
70
|
+
'Wednesday',
|
|
71
|
+
'Thursday',
|
|
72
|
+
'Friday',
|
|
73
|
+
'Saturday',
|
|
85
74
|
];
|
|
86
|
-
/**
|
|
87
|
-
* Generate localized months and days strings using `Intl.DateTimeFormat` for passed locale to use in DatePicker component.
|
|
88
|
-
* If locale is not passed, browser locale will be used.
|
|
89
|
-
*/
|
|
90
75
|
const generateLocalizedStrings = (locale) => {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
76
|
+
const shortWeekDayFormatter = new Intl.DateTimeFormat(locale, {
|
|
77
|
+
weekday: 'short',
|
|
78
|
+
});
|
|
79
|
+
const longWeekDayFormatter = new Intl.DateTimeFormat(locale, {
|
|
80
|
+
weekday: 'long',
|
|
81
|
+
});
|
|
82
|
+
const monthFormatter = new Intl.DateTimeFormat(locale, {
|
|
83
|
+
month: 'long',
|
|
84
|
+
});
|
|
85
|
+
const months = [
|
|
86
|
+
monthFormatter.format(new Date(2020, 0, 1)),
|
|
87
|
+
monthFormatter.format(new Date(2020, 1, 1)),
|
|
88
|
+
monthFormatter.format(new Date(2020, 2, 1)),
|
|
89
|
+
monthFormatter.format(new Date(2020, 3, 1)),
|
|
90
|
+
monthFormatter.format(new Date(2020, 4, 1)),
|
|
91
|
+
monthFormatter.format(new Date(2020, 5, 1)),
|
|
92
|
+
monthFormatter.format(new Date(2020, 6, 1)),
|
|
93
|
+
monthFormatter.format(new Date(2020, 7, 1)),
|
|
94
|
+
monthFormatter.format(new Date(2020, 8, 1)),
|
|
95
|
+
monthFormatter.format(new Date(2020, 9, 1)),
|
|
96
|
+
monthFormatter.format(new Date(2020, 10, 1)),
|
|
97
|
+
monthFormatter.format(new Date(2020, 11, 1)),
|
|
98
|
+
];
|
|
99
|
+
const days = [
|
|
100
|
+
longWeekDayFormatter.format(new Date(2020, 10, 1)),
|
|
101
|
+
longWeekDayFormatter.format(new Date(2020, 10, 2)),
|
|
102
|
+
longWeekDayFormatter.format(new Date(2020, 10, 3)),
|
|
103
|
+
longWeekDayFormatter.format(new Date(2020, 10, 4)),
|
|
104
|
+
longWeekDayFormatter.format(new Date(2020, 10, 5)),
|
|
105
|
+
longWeekDayFormatter.format(new Date(2020, 10, 6)),
|
|
106
|
+
longWeekDayFormatter.format(new Date(2020, 10, 7)),
|
|
107
|
+
];
|
|
108
|
+
const shortDays = [
|
|
109
|
+
shortWeekDayFormatter.format(new Date(2020, 10, 1)).slice(0, 2),
|
|
110
|
+
shortWeekDayFormatter.format(new Date(2020, 10, 2)).slice(0, 2),
|
|
111
|
+
shortWeekDayFormatter.format(new Date(2020, 10, 3)).slice(0, 2),
|
|
112
|
+
shortWeekDayFormatter.format(new Date(2020, 10, 4)).slice(0, 2),
|
|
113
|
+
shortWeekDayFormatter.format(new Date(2020, 10, 5)).slice(0, 2),
|
|
114
|
+
shortWeekDayFormatter.format(new Date(2020, 10, 6)).slice(0, 2),
|
|
115
|
+
shortWeekDayFormatter.format(new Date(2020, 10, 7)).slice(0, 2),
|
|
116
|
+
];
|
|
117
|
+
return {
|
|
118
|
+
months,
|
|
119
|
+
shortDays,
|
|
120
|
+
days,
|
|
121
|
+
};
|
|
135
122
|
};
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
123
|
+
const DatePicker = _react.forwardRef((props, forwardedRef) => {
|
|
124
|
+
const {
|
|
125
|
+
date,
|
|
126
|
+
onChange,
|
|
127
|
+
localizedNames,
|
|
128
|
+
className,
|
|
129
|
+
setFocus = false,
|
|
130
|
+
showTime = false,
|
|
131
|
+
use12Hours = false,
|
|
132
|
+
precision,
|
|
133
|
+
hourStep,
|
|
134
|
+
minuteStep,
|
|
135
|
+
secondStep,
|
|
136
|
+
useCombinedRenderer,
|
|
137
|
+
combinedRenderer,
|
|
138
|
+
hourRenderer,
|
|
139
|
+
minuteRenderer,
|
|
140
|
+
secondRenderer,
|
|
141
|
+
meridiemRenderer,
|
|
142
|
+
showYearSelection = false,
|
|
143
|
+
enableRangeSelect = false,
|
|
144
|
+
startDate,
|
|
145
|
+
endDate,
|
|
146
|
+
monthYearProps,
|
|
147
|
+
calendarProps,
|
|
148
|
+
monthProps,
|
|
149
|
+
weekDayProps,
|
|
150
|
+
dayProps,
|
|
151
|
+
weekProps,
|
|
152
|
+
isDateDisabled,
|
|
153
|
+
applyBackground = true,
|
|
154
|
+
showDatesOutsideMonth = true,
|
|
155
|
+
...rest
|
|
156
|
+
} = props;
|
|
157
|
+
const monthNames = localizedNames?.months ?? defaultMonths;
|
|
158
|
+
const shortDays = localizedNames?.shortDays ?? defaultShortDays;
|
|
159
|
+
const longDays = localizedNames?.days ?? defaultLongDays;
|
|
160
|
+
const [selectedDay, setSelectedDay] = _react.useState(date);
|
|
161
|
+
const [selectedStartDay, setSelectedStartDay] = _react.useState(startDate);
|
|
162
|
+
const [selectedEndDay, setSelectedEndDay] = _react.useState(endDate);
|
|
163
|
+
const [focusedDay, setFocusedDay] = _react.useState(
|
|
164
|
+
selectedStartDay ?? selectedDay ?? new Date(),
|
|
165
|
+
);
|
|
166
|
+
const [displayedMonthIndex, setDisplayedMonthIndex] = _react.useState(
|
|
167
|
+
selectedStartDay?.getMonth() ??
|
|
168
|
+
selectedDay?.getMonth() ??
|
|
169
|
+
new Date().getMonth(),
|
|
170
|
+
);
|
|
171
|
+
const [displayedYear, setDisplayedYear] = _react.useState(
|
|
172
|
+
selectedStartDay?.getFullYear() ??
|
|
173
|
+
selectedDay?.getFullYear() ??
|
|
174
|
+
new Date().getFullYear(),
|
|
175
|
+
);
|
|
176
|
+
const [isSelectingStartDate, setIsSelectingStartDate] = _react.useState(true);
|
|
177
|
+
const needFocus = _react.useRef(setFocus);
|
|
178
|
+
_react.useEffect(() => {
|
|
179
|
+
if (needFocus.current) {
|
|
180
|
+
needFocus.current = false;
|
|
181
|
+
}
|
|
182
|
+
});
|
|
183
|
+
const setMonthAndYear = _react.useCallback((newMonth, newYear) => {
|
|
184
|
+
setDisplayedMonthIndex(newMonth);
|
|
185
|
+
setDisplayedYear(newYear);
|
|
186
|
+
}, []);
|
|
187
|
+
_react.useEffect(() => {
|
|
188
|
+
const currentDate = new Date();
|
|
189
|
+
setSelectedDay(date);
|
|
190
|
+
setSelectedStartDay(startDate);
|
|
191
|
+
setSelectedEndDay(endDate);
|
|
192
|
+
if (!enableRangeSelect) {
|
|
193
|
+
setFocusedDay(date ?? currentDate);
|
|
194
|
+
}
|
|
195
|
+
setMonthAndYear(
|
|
196
|
+
startDate?.getMonth() ?? date?.getMonth() ?? currentDate.getMonth(),
|
|
197
|
+
startDate?.getFullYear() ??
|
|
198
|
+
date?.getFullYear() ??
|
|
199
|
+
currentDate.getFullYear(),
|
|
200
|
+
);
|
|
201
|
+
}, [date, setMonthAndYear, startDate, endDate, enableRangeSelect]);
|
|
202
|
+
const days = _react.useMemo(() => {
|
|
203
|
+
let offsetToFirst = new Date(
|
|
204
|
+
displayedYear,
|
|
205
|
+
displayedMonthIndex,
|
|
206
|
+
1,
|
|
207
|
+
).getDay();
|
|
208
|
+
if (0 === offsetToFirst && showDatesOutsideMonth) {
|
|
209
|
+
offsetToFirst = 7;
|
|
210
|
+
}
|
|
211
|
+
const daysInMonth = [];
|
|
212
|
+
for (let i = 1; i <= 42; i++) {
|
|
213
|
+
const adjustedDay = i - offsetToFirst;
|
|
214
|
+
daysInMonth.push(
|
|
215
|
+
new Date(displayedYear, displayedMonthIndex, adjustedDay),
|
|
216
|
+
);
|
|
217
|
+
}
|
|
218
|
+
return daysInMonth;
|
|
219
|
+
}, [displayedMonthIndex, displayedYear, showDatesOutsideMonth]);
|
|
220
|
+
const weeks = _react.useMemo(() => {
|
|
221
|
+
const weeksInMonth = [];
|
|
222
|
+
const weekCount = Math.ceil(days.length / 7);
|
|
223
|
+
for (let i = 0; i < weekCount; i++) {
|
|
224
|
+
weeksInMonth.push(days.slice(i * 7, (i + 1) * 7));
|
|
225
|
+
}
|
|
226
|
+
return weeksInMonth;
|
|
227
|
+
}, [days]);
|
|
228
|
+
const getNewFocusedDate = (newYear, newMonth) => {
|
|
229
|
+
const currentDate = selectedStartDay ?? selectedDay ?? new Date();
|
|
230
|
+
const newDate = new Date(
|
|
231
|
+
newYear,
|
|
232
|
+
newMonth,
|
|
233
|
+
currentDate.getDate(),
|
|
234
|
+
currentDate.getHours(),
|
|
235
|
+
currentDate.getMinutes(),
|
|
236
|
+
currentDate.getSeconds(),
|
|
237
|
+
);
|
|
238
|
+
return newDate;
|
|
239
|
+
};
|
|
240
|
+
const handleMoveToPreviousYear = () => {
|
|
241
|
+
const newYear = displayedYear - 1;
|
|
242
|
+
setMonthAndYear(displayedMonthIndex, newYear);
|
|
243
|
+
setFocusedDay(getNewFocusedDate(newYear, displayedMonthIndex));
|
|
244
|
+
};
|
|
245
|
+
const handleMoveToNextYear = () => {
|
|
246
|
+
const newYear = displayedYear + 1;
|
|
247
|
+
setMonthAndYear(displayedMonthIndex, newYear);
|
|
248
|
+
setFocusedDay(getNewFocusedDate(newYear, displayedMonthIndex));
|
|
249
|
+
};
|
|
250
|
+
const handleMoveToPreviousMonth = () => {
|
|
251
|
+
const newMonth = displayedMonthIndex !== 0 ? displayedMonthIndex - 1 : 11;
|
|
252
|
+
const newYear =
|
|
253
|
+
displayedMonthIndex !== 0 ? displayedYear : displayedYear - 1;
|
|
254
|
+
setMonthAndYear(newMonth, newYear);
|
|
255
|
+
setFocusedDay(getNewFocusedDate(newYear, newMonth));
|
|
256
|
+
};
|
|
257
|
+
const handleMoveToNextMonth = () => {
|
|
258
|
+
const newMonth = displayedMonthIndex !== 11 ? displayedMonthIndex + 1 : 0;
|
|
259
|
+
const newYear =
|
|
260
|
+
displayedMonthIndex !== 11 ? displayedYear : displayedYear + 1;
|
|
261
|
+
setMonthAndYear(newMonth, newYear);
|
|
262
|
+
setFocusedDay(getNewFocusedDate(newYear, newMonth));
|
|
263
|
+
};
|
|
264
|
+
const onDayClick = (day) => {
|
|
265
|
+
if (!enableRangeSelect) {
|
|
266
|
+
if (day.getMonth() !== selectedDay?.getMonth()) {
|
|
267
|
+
setMonthAndYear(day.getMonth(), day.getFullYear());
|
|
268
|
+
}
|
|
269
|
+
const currentDate = selectedDay ?? new Date();
|
|
270
|
+
const newDate = new Date(
|
|
271
|
+
day.getFullYear(),
|
|
272
|
+
day.getMonth(),
|
|
273
|
+
day.getDate(),
|
|
274
|
+
currentDate.getHours(),
|
|
275
|
+
currentDate.getMinutes(),
|
|
276
|
+
currentDate.getSeconds(),
|
|
277
|
+
);
|
|
278
|
+
setSelectedDay(newDate);
|
|
279
|
+
setFocusedDay(newDate);
|
|
280
|
+
isSingleOnChange(onChange, enableRangeSelect) && onChange?.(newDate);
|
|
281
|
+
} else if (isSelectingStartDate) {
|
|
282
|
+
if (day.getMonth() !== selectedStartDay?.getMonth()) {
|
|
283
|
+
setMonthAndYear(day.getMonth(), day.getFullYear());
|
|
284
|
+
}
|
|
285
|
+
const currentStartDate = selectedStartDay ?? new Date();
|
|
286
|
+
const newStartDate = new Date(
|
|
287
|
+
day.getFullYear(),
|
|
288
|
+
day.getMonth(),
|
|
289
|
+
day.getDate(),
|
|
290
|
+
currentStartDate.getHours(),
|
|
291
|
+
currentStartDate.getMinutes(),
|
|
292
|
+
currentStartDate.getSeconds(),
|
|
293
|
+
);
|
|
294
|
+
setSelectedStartDay(newStartDate);
|
|
295
|
+
setFocusedDay(newStartDate);
|
|
296
|
+
if (!(0, _index.isBefore)(newStartDate, selectedEndDay)) {
|
|
297
|
+
setSelectedEndDay(newStartDate);
|
|
298
|
+
onChange?.(newStartDate, newStartDate);
|
|
299
|
+
} else {
|
|
300
|
+
selectedEndDay && onChange?.(newStartDate, selectedEndDay);
|
|
301
|
+
}
|
|
302
|
+
setIsSelectingStartDate(false);
|
|
303
|
+
} else {
|
|
304
|
+
if (day.getMonth() !== selectedEndDay?.getMonth()) {
|
|
305
|
+
setMonthAndYear(day.getMonth(), day.getFullYear());
|
|
306
|
+
}
|
|
307
|
+
const currentEndDate = selectedEndDay ?? new Date();
|
|
308
|
+
const newEndDate = new Date(
|
|
309
|
+
day.getFullYear(),
|
|
310
|
+
day.getMonth(),
|
|
311
|
+
day.getDate(),
|
|
312
|
+
currentEndDate.getHours(),
|
|
313
|
+
currentEndDate.getMinutes(),
|
|
314
|
+
currentEndDate.getSeconds(),
|
|
315
|
+
);
|
|
316
|
+
setFocusedDay(newEndDate);
|
|
317
|
+
if (!(0, _index.isBefore)(newEndDate, selectedStartDay)) {
|
|
318
|
+
setSelectedEndDay(newEndDate);
|
|
319
|
+
selectedStartDay && onChange?.(selectedStartDay, newEndDate);
|
|
320
|
+
setIsSelectingStartDate(true);
|
|
321
|
+
} else {
|
|
322
|
+
setSelectedStartDay(newEndDate);
|
|
323
|
+
selectedEndDay && onChange?.(newEndDate, selectedEndDay);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
};
|
|
327
|
+
const handleCalendarKeyDown = (event) => {
|
|
328
|
+
if (event.altKey) {
|
|
329
|
+
return;
|
|
330
|
+
}
|
|
331
|
+
if (!focusedDay) {
|
|
332
|
+
return;
|
|
333
|
+
}
|
|
334
|
+
const adjustedFocusedDay = new Date(focusedDay);
|
|
335
|
+
switch (event.key) {
|
|
336
|
+
case 'ArrowDown':
|
|
337
|
+
adjustedFocusedDay.setDate(focusedDay.getDate() + 7);
|
|
338
|
+
if (adjustedFocusedDay.getMonth() !== displayedMonthIndex) {
|
|
339
|
+
handleMoveToNextMonth();
|
|
348
340
|
}
|
|
349
|
-
|
|
350
|
-
|
|
341
|
+
setFocusedDay(adjustedFocusedDay);
|
|
342
|
+
needFocus.current = true;
|
|
343
|
+
event.preventDefault();
|
|
344
|
+
break;
|
|
345
|
+
case 'ArrowUp':
|
|
346
|
+
adjustedFocusedDay.setDate(focusedDay.getDate() - 7);
|
|
347
|
+
if (adjustedFocusedDay.getMonth() !== displayedMonthIndex) {
|
|
348
|
+
handleMoveToPreviousMonth();
|
|
351
349
|
}
|
|
352
|
-
|
|
353
|
-
|
|
350
|
+
setFocusedDay(adjustedFocusedDay);
|
|
351
|
+
needFocus.current = true;
|
|
352
|
+
event.preventDefault();
|
|
353
|
+
break;
|
|
354
|
+
case 'ArrowLeft':
|
|
355
|
+
adjustedFocusedDay.setDate(focusedDay.getDate() - 1);
|
|
356
|
+
if (adjustedFocusedDay.getMonth() !== displayedMonthIndex) {
|
|
357
|
+
handleMoveToPreviousMonth();
|
|
354
358
|
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
359
|
+
setFocusedDay(adjustedFocusedDay);
|
|
360
|
+
needFocus.current = true;
|
|
361
|
+
event.preventDefault();
|
|
362
|
+
break;
|
|
363
|
+
case 'ArrowRight':
|
|
364
|
+
adjustedFocusedDay.setDate(focusedDay.getDate() + 1);
|
|
365
|
+
if (adjustedFocusedDay.getMonth() !== displayedMonthIndex) {
|
|
366
|
+
handleMoveToNextMonth();
|
|
360
367
|
}
|
|
361
|
-
|
|
362
|
-
|
|
368
|
+
setFocusedDay(adjustedFocusedDay);
|
|
369
|
+
needFocus.current = true;
|
|
370
|
+
event.preventDefault();
|
|
371
|
+
break;
|
|
372
|
+
case 'Enter':
|
|
373
|
+
case ' ':
|
|
374
|
+
case 'Spacebar':
|
|
375
|
+
if (!isDateDisabled?.(focusedDay)) {
|
|
376
|
+
onDayClick(focusedDay);
|
|
363
377
|
}
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
378
|
+
event.preventDefault();
|
|
379
|
+
break;
|
|
380
|
+
}
|
|
381
|
+
};
|
|
382
|
+
const getDayClass = (day) => {
|
|
383
|
+
if (day.getMonth() !== displayedMonthIndex) {
|
|
384
|
+
return 'iui-calendar-day-outside-month';
|
|
385
|
+
}
|
|
386
|
+
let dayClass = 'iui-calendar-day';
|
|
387
|
+
const isSelectedDay =
|
|
388
|
+
isSameDay(day, selectedDay) ||
|
|
389
|
+
(isSameDay(day, selectedStartDay) && isSameDay(day, selectedEndDay));
|
|
390
|
+
if (isSelectedDay) {
|
|
391
|
+
dayClass += '-selected';
|
|
392
|
+
} else if (isSameDay(day, selectedStartDay)) {
|
|
393
|
+
dayClass += '-range-start';
|
|
394
|
+
} else if (isSameDay(day, selectedEndDay)) {
|
|
395
|
+
dayClass += '-range-end';
|
|
396
|
+
}
|
|
397
|
+
if (
|
|
398
|
+
selectedStartDay &&
|
|
399
|
+
selectedEndDay &&
|
|
400
|
+
isInDateRange(day, selectedStartDay, selectedEndDay)
|
|
401
|
+
) {
|
|
402
|
+
dayClass += '-range';
|
|
403
|
+
}
|
|
404
|
+
if (isSameDay(day, new Date())) {
|
|
405
|
+
dayClass += '-today';
|
|
406
|
+
}
|
|
407
|
+
return dayClass;
|
|
408
|
+
};
|
|
409
|
+
const dateTableId = (0, _index.useId)();
|
|
410
|
+
return _react.createElement(
|
|
411
|
+
_index.Box,
|
|
412
|
+
{
|
|
413
|
+
className: (0, _classnames.default)(
|
|
414
|
+
'iui-date-picker',
|
|
415
|
+
{
|
|
416
|
+
'iui-popover-surface': applyBackground,
|
|
417
|
+
},
|
|
418
|
+
className,
|
|
419
|
+
),
|
|
420
|
+
ref: forwardedRef,
|
|
421
|
+
...rest,
|
|
422
|
+
},
|
|
423
|
+
_react.createElement(
|
|
424
|
+
'div',
|
|
425
|
+
null,
|
|
426
|
+
_react.createElement(
|
|
427
|
+
_index.Box,
|
|
428
|
+
{
|
|
429
|
+
as: 'div',
|
|
430
|
+
...monthYearProps,
|
|
431
|
+
className: (0, _classnames.default)(
|
|
432
|
+
'iui-calendar-month-year',
|
|
433
|
+
monthYearProps?.className,
|
|
434
|
+
),
|
|
435
|
+
},
|
|
436
|
+
showYearSelection &&
|
|
437
|
+
_react.createElement(
|
|
438
|
+
_IconButton.IconButton,
|
|
439
|
+
{
|
|
440
|
+
styleType: 'borderless',
|
|
441
|
+
onClick: handleMoveToPreviousYear,
|
|
442
|
+
'aria-label': 'Previous year',
|
|
443
|
+
size: 'small',
|
|
444
|
+
},
|
|
445
|
+
_react.createElement(_index.SvgChevronLeftDouble, null),
|
|
446
|
+
),
|
|
447
|
+
_react.createElement(
|
|
448
|
+
_IconButton.IconButton,
|
|
449
|
+
{
|
|
450
|
+
styleType: 'borderless',
|
|
451
|
+
onClick: handleMoveToPreviousMonth,
|
|
452
|
+
'aria-label': 'Previous month',
|
|
453
|
+
size: 'small',
|
|
454
|
+
},
|
|
455
|
+
_react.createElement(_index.SvgChevronLeft, null),
|
|
456
|
+
),
|
|
457
|
+
_react.createElement(
|
|
458
|
+
'span',
|
|
459
|
+
{
|
|
460
|
+
'aria-live': 'polite',
|
|
461
|
+
},
|
|
462
|
+
_react.createElement(
|
|
463
|
+
_index.Box,
|
|
464
|
+
{
|
|
465
|
+
as: 'span',
|
|
466
|
+
id: dateTableId,
|
|
467
|
+
title: monthNames[displayedMonthIndex],
|
|
468
|
+
...monthProps,
|
|
469
|
+
className: (0, _classnames.default)(
|
|
470
|
+
'iui-calendar-month',
|
|
471
|
+
monthProps?.className,
|
|
472
|
+
),
|
|
473
|
+
},
|
|
474
|
+
monthNames[displayedMonthIndex],
|
|
475
|
+
),
|
|
476
|
+
' ',
|
|
477
|
+
displayedYear,
|
|
478
|
+
),
|
|
479
|
+
_react.createElement(
|
|
480
|
+
_IconButton.IconButton,
|
|
481
|
+
{
|
|
482
|
+
styleType: 'borderless',
|
|
483
|
+
onClick: handleMoveToNextMonth,
|
|
484
|
+
'aria-label': 'Next month',
|
|
485
|
+
size: 'small',
|
|
486
|
+
},
|
|
487
|
+
_react.createElement(_index.SvgChevronRight, null),
|
|
488
|
+
),
|
|
489
|
+
showYearSelection &&
|
|
490
|
+
_react.createElement(
|
|
491
|
+
_IconButton.IconButton,
|
|
492
|
+
{
|
|
493
|
+
styleType: 'borderless',
|
|
494
|
+
onClick: handleMoveToNextYear,
|
|
495
|
+
'aria-label': 'Next year',
|
|
496
|
+
size: 'small',
|
|
497
|
+
},
|
|
498
|
+
_react.createElement(_index.SvgChevronRightDouble, null),
|
|
499
|
+
),
|
|
500
|
+
),
|
|
501
|
+
_react.createElement(
|
|
502
|
+
_index.Box,
|
|
503
|
+
{
|
|
504
|
+
as: 'div',
|
|
505
|
+
...weekDayProps,
|
|
506
|
+
className: (0, _classnames.default)(
|
|
507
|
+
'iui-calendar-weekdays',
|
|
508
|
+
weekDayProps?.className,
|
|
509
|
+
),
|
|
510
|
+
},
|
|
511
|
+
shortDays.map((day, index) =>
|
|
512
|
+
_react.createElement(
|
|
513
|
+
'div',
|
|
514
|
+
{
|
|
515
|
+
key: day,
|
|
516
|
+
title: longDays[index],
|
|
517
|
+
},
|
|
518
|
+
day,
|
|
519
|
+
),
|
|
520
|
+
),
|
|
521
|
+
),
|
|
522
|
+
_react.createElement(
|
|
523
|
+
'div',
|
|
524
|
+
{
|
|
525
|
+
onKeyDown: handleCalendarKeyDown,
|
|
526
|
+
role: 'listbox',
|
|
527
|
+
'aria-labelledby': dateTableId,
|
|
528
|
+
...calendarProps,
|
|
529
|
+
},
|
|
530
|
+
weeks.map((weekDays, weekIndex) => {
|
|
531
|
+
return _react.createElement(
|
|
532
|
+
_index.Box,
|
|
533
|
+
{
|
|
534
|
+
as: 'div',
|
|
535
|
+
key: `week-${displayedMonthIndex}-${weekIndex}`,
|
|
536
|
+
...weekProps,
|
|
537
|
+
className: (0, _classnames.default)(
|
|
538
|
+
'iui-calendar-week',
|
|
539
|
+
weekProps?.className,
|
|
540
|
+
),
|
|
541
|
+
},
|
|
542
|
+
weekDays.map((weekDay, dayIndex) => {
|
|
543
|
+
const dateValue = weekDay.getDate();
|
|
544
|
+
const isDisabled = isDateDisabled?.(weekDay);
|
|
545
|
+
const isOutsideMonth = weekDay.getMonth() !== displayedMonthIndex;
|
|
546
|
+
if (isOutsideMonth && !showDatesOutsideMonth) {
|
|
547
|
+
return _react.createElement(_index.Box, {
|
|
548
|
+
key: `day-${displayedMonthIndex}-${dayIndex}`,
|
|
549
|
+
className: (0, _classnames.default)(
|
|
550
|
+
getDayClass(weekDay),
|
|
551
|
+
dayProps?.className,
|
|
552
|
+
),
|
|
553
|
+
'aria-hidden': true,
|
|
554
|
+
});
|
|
555
|
+
}
|
|
556
|
+
return _react.createElement(
|
|
557
|
+
_index.Box,
|
|
558
|
+
{
|
|
559
|
+
as: 'div',
|
|
560
|
+
key: `day-${displayedMonthIndex}-${dayIndex}`,
|
|
561
|
+
onClick: () => !isDisabled && onDayClick(weekDay),
|
|
562
|
+
role: 'option',
|
|
563
|
+
tabIndex: isSameDay(weekDay, focusedDay) ? 0 : -1,
|
|
564
|
+
'aria-disabled': isDisabled ? 'true' : undefined,
|
|
565
|
+
ref: (element) =>
|
|
566
|
+
isSameDay(weekDay, focusedDay) &&
|
|
567
|
+
needFocus.current &&
|
|
568
|
+
element?.focus(),
|
|
569
|
+
...dayProps,
|
|
570
|
+
className: (0, _classnames.default)(
|
|
571
|
+
getDayClass(weekDay),
|
|
572
|
+
dayProps?.className,
|
|
573
|
+
),
|
|
574
|
+
},
|
|
575
|
+
dateValue,
|
|
576
|
+
);
|
|
577
|
+
}),
|
|
578
|
+
);
|
|
579
|
+
}),
|
|
580
|
+
),
|
|
581
|
+
),
|
|
582
|
+
showTime &&
|
|
583
|
+
_react.createElement(_TimePicker.TimePicker, {
|
|
584
|
+
date: selectedStartDay ?? selectedDay,
|
|
585
|
+
use12Hours: use12Hours,
|
|
586
|
+
precision: precision,
|
|
587
|
+
hourStep: hourStep,
|
|
588
|
+
minuteStep: minuteStep,
|
|
589
|
+
secondStep: secondStep,
|
|
590
|
+
useCombinedRenderer: useCombinedRenderer,
|
|
591
|
+
combinedRenderer: combinedRenderer,
|
|
592
|
+
hourRenderer: hourRenderer,
|
|
593
|
+
minuteRenderer: minuteRenderer,
|
|
594
|
+
secondRenderer: secondRenderer,
|
|
595
|
+
meridiemRenderer: meridiemRenderer,
|
|
596
|
+
onChange: (date) =>
|
|
597
|
+
isSingleOnChange(onChange, enableRangeSelect)
|
|
598
|
+
? onChange?.(date)
|
|
599
|
+
: onChange?.(
|
|
600
|
+
new Date(
|
|
601
|
+
selectedStartDay?.getFullYear() ?? date.getFullYear(),
|
|
602
|
+
selectedStartDay?.getMonth() ?? date.getMonth(),
|
|
603
|
+
selectedStartDay?.getDate() ?? date.getDate(),
|
|
604
|
+
date.getHours(),
|
|
605
|
+
date.getMinutes(),
|
|
606
|
+
date.getSeconds(),
|
|
607
|
+
),
|
|
608
|
+
new Date(
|
|
609
|
+
selectedEndDay?.getFullYear() ?? date.getFullYear(),
|
|
610
|
+
selectedEndDay?.getMonth() ?? date.getMonth(),
|
|
611
|
+
selectedEndDay?.getDate() ?? date.getDate(),
|
|
612
|
+
date.getHours(),
|
|
613
|
+
date.getMinutes(),
|
|
614
|
+
date.getSeconds(),
|
|
615
|
+
),
|
|
616
|
+
),
|
|
617
|
+
}),
|
|
618
|
+
);
|
|
399
619
|
});
|