@itwin/itwinui-react 3.15.5 → 5.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/README.md +16 -87
- package/dist/DEV/bricks/Anchor.js +29 -0
- package/dist/DEV/bricks/Button.js +22 -0
- package/dist/DEV/bricks/Checkbox.js +22 -0
- package/dist/DEV/bricks/Divider.js +23 -0
- package/dist/DEV/bricks/DropdownMenu.js +90 -0
- package/dist/DEV/bricks/Field.js +28 -0
- package/dist/DEV/bricks/Icon.js +61 -0
- package/dist/DEV/bricks/IconButton.js +31 -0
- package/dist/DEV/bricks/Kbd.js +23 -0
- package/dist/DEV/bricks/Label.js +21 -0
- package/dist/DEV/bricks/ListItem.js +33 -0
- package/dist/DEV/bricks/Radio.js +22 -0
- package/dist/DEV/bricks/Root.js +144 -0
- package/dist/DEV/bricks/Switch.js +23 -0
- package/dist/DEV/bricks/Tabs.js +92 -0
- package/dist/DEV/bricks/TextBox.js +93 -0
- package/dist/DEV/bricks/Textarea.js +28 -0
- package/dist/DEV/bricks/Tooltip.js +68 -0
- package/dist/DEV/bricks/Tree.js +112 -0
- package/dist/DEV/bricks/VisuallyHidden.js +10 -0
- package/dist/DEV/bricks/index.js +37 -0
- package/dist/DEV/bricks/styles.css.js +8 -0
- package/dist/DEV/bricks/~hooks.js +43 -0
- package/dist/DEV/bricks/~utils.js +6 -0
- package/dist/DEV/foundations/styles.css.js +8 -0
- package/dist/bricks/Anchor.d.ts +8 -0
- package/dist/bricks/Anchor.js +28 -0
- package/dist/bricks/Button.d.ts +20 -0
- package/dist/bricks/Button.js +21 -0
- package/dist/bricks/Checkbox.d.ts +9 -0
- package/dist/bricks/Checkbox.js +21 -0
- package/dist/bricks/Divider.d.ts +19 -0
- package/dist/bricks/Divider.js +22 -0
- package/dist/bricks/DropdownMenu.d.ts +34 -0
- package/dist/bricks/DropdownMenu.js +86 -0
- package/dist/bricks/Field.d.ts +11 -0
- package/dist/bricks/Field.js +27 -0
- package/dist/bricks/Icon.d.ts +35 -0
- package/dist/bricks/Icon.js +59 -0
- package/dist/bricks/IconButton.d.ts +79 -0
- package/dist/bricks/IconButton.js +30 -0
- package/dist/bricks/Kbd.d.ts +16 -0
- package/dist/bricks/Kbd.js +22 -0
- package/dist/bricks/Label.d.ts +6 -0
- package/dist/bricks/Label.js +20 -0
- package/dist/bricks/ListItem.d.ts +11 -0
- package/dist/bricks/ListItem.js +31 -0
- package/dist/bricks/Radio.d.ts +9 -0
- package/dist/bricks/Radio.js +21 -0
- package/dist/bricks/Root.d.ts +26 -0
- package/dist/bricks/Root.js +143 -0
- package/dist/bricks/Switch.d.ts +13 -0
- package/dist/bricks/Switch.js +22 -0
- package/dist/bricks/Tabs.d.ts +21 -0
- package/dist/bricks/Tabs.js +88 -0
- package/dist/bricks/TextBox.d.ts +49 -0
- package/dist/bricks/TextBox.js +89 -0
- package/dist/bricks/Textarea.d.ts +14 -0
- package/dist/bricks/Textarea.js +27 -0
- package/dist/bricks/Tooltip.d.ts +39 -0
- package/dist/bricks/Tooltip.js +67 -0
- package/dist/bricks/Tree.d.ts +23 -0
- package/dist/bricks/Tree.js +107 -0
- package/dist/bricks/VisuallyHidden.d.ts +6 -0
- package/dist/bricks/VisuallyHidden.js +9 -0
- package/dist/bricks/index.d.ts +17 -0
- package/dist/bricks/index.js +37 -0
- package/dist/bricks/styles.css.d.ts +2 -0
- package/dist/bricks/styles.css.js +8 -0
- package/dist/bricks/~hooks.d.ts +49 -0
- package/dist/bricks/~hooks.js +43 -0
- package/dist/bricks/~utils.d.ts +10 -0
- package/dist/bricks/~utils.js +6 -0
- package/dist/foundations/styles.css.d.ts +2 -0
- package/dist/foundations/styles.css.js +8 -0
- package/package.json +59 -150
- package/CHANGELOG.md +0 -848
- package/DEV-cjs/core/Alert/Alert.js +0 -143
- package/DEV-cjs/core/Avatar/Avatar.js +0 -81
- package/DEV-cjs/core/AvatarGroup/AvatarGroup.js +0 -75
- package/DEV-cjs/core/Backdrop/Backdrop.js +0 -30
- package/DEV-cjs/core/Badge/Badge.js +0 -55
- package/DEV-cjs/core/Breadcrumbs/Breadcrumbs.js +0 -195
- package/DEV-cjs/core/ButtonGroup/ButtonGroup.js +0 -158
- package/DEV-cjs/core/Buttons/Button.js +0 -100
- package/DEV-cjs/core/Buttons/DropdownButton.js +0 -61
- package/DEV-cjs/core/Buttons/IconButton.js +0 -82
- package/DEV-cjs/core/Buttons/IdeasButton.js +0 -34
- package/DEV-cjs/core/Buttons/SplitButton.js +0 -105
- package/DEV-cjs/core/Carousel/Carousel.js +0 -84
- package/DEV-cjs/core/Carousel/CarouselContext.js +0 -14
- package/DEV-cjs/core/Carousel/CarouselDot.js +0 -35
- package/DEV-cjs/core/Carousel/CarouselDotsList.js +0 -164
- package/DEV-cjs/core/Carousel/CarouselNavigation.js +0 -108
- package/DEV-cjs/core/Carousel/CarouselSlide.js +0 -55
- package/DEV-cjs/core/Carousel/CarouselSlider.js +0 -72
- package/DEV-cjs/core/Checkbox/Checkbox.js +0 -100
- package/DEV-cjs/core/ColorPicker/ColorBuilder.js +0 -344
- package/DEV-cjs/core/ColorPicker/ColorInputPanel.js +0 -444
- package/DEV-cjs/core/ColorPicker/ColorPalette.js +0 -81
- package/DEV-cjs/core/ColorPicker/ColorPicker.js +0 -98
- package/DEV-cjs/core/ColorPicker/ColorPickerContext.js +0 -30
- package/DEV-cjs/core/ColorPicker/ColorSwatch.js +0 -55
- package/DEV-cjs/core/ComboBox/ComboBox.js +0 -415
- package/DEV-cjs/core/ComboBox/ComboBox.types-test.js +0 -89
- package/DEV-cjs/core/ComboBox/ComboBoxEndIcon.js +0 -40
- package/DEV-cjs/core/ComboBox/ComboBoxInput.js +0 -195
- package/DEV-cjs/core/ComboBox/ComboBoxInputContainer.js +0 -44
- package/DEV-cjs/core/ComboBox/ComboBoxMenu.js +0 -139
- package/DEV-cjs/core/ComboBox/ComboBoxMenuItem.js +0 -89
- package/DEV-cjs/core/ComboBox/ComboBoxMultipleContainer.js +0 -22
- package/DEV-cjs/core/ComboBox/helpers.js +0 -25
- package/DEV-cjs/core/DatePicker/DatePicker.js +0 -595
- package/DEV-cjs/core/Dialog/Dialog.js +0 -93
- package/DEV-cjs/core/Dialog/DialogBackdrop.js +0 -56
- package/DEV-cjs/core/Dialog/DialogButtonBar.js +0 -13
- package/DEV-cjs/core/Dialog/DialogContent.js +0 -13
- package/DEV-cjs/core/Dialog/DialogContext.js +0 -23
- package/DEV-cjs/core/Dialog/DialogDragContext.js +0 -28
- package/DEV-cjs/core/Dialog/DialogMain.js +0 -183
- package/DEV-cjs/core/Dialog/DialogTitleBar.js +0 -76
- package/DEV-cjs/core/Dialog/DialogTitleBarTitle.js +0 -13
- package/DEV-cjs/core/Divider/Divider.js +0 -26
- package/DEV-cjs/core/DropdownMenu/DropdownMenu.js +0 -75
- package/DEV-cjs/core/ExpandableBlock/ExpandableBlock.js +0 -221
- package/DEV-cjs/core/Fieldset/Fieldset.js +0 -38
- package/DEV-cjs/core/FileUpload/FileEmptyCard.js +0 -54
- package/DEV-cjs/core/FileUpload/FileUpload.js +0 -98
- package/DEV-cjs/core/FileUpload/FileUploadCard.js +0 -210
- package/DEV-cjs/core/FileUpload/FileUploadTemplate.js +0 -67
- package/DEV-cjs/core/Flex/Flex.js +0 -89
- package/DEV-cjs/core/Footer/Footer.js +0 -137
- package/DEV-cjs/core/Footer/FooterItem.js +0 -13
- package/DEV-cjs/core/Footer/FooterList.js +0 -13
- package/DEV-cjs/core/Footer/FooterSeparator.js +0 -15
- package/DEV-cjs/core/Header/Header.js +0 -92
- package/DEV-cjs/core/Header/HeaderBasicButton.js +0 -33
- package/DEV-cjs/core/Header/HeaderBreadcrumbs.js +0 -64
- package/DEV-cjs/core/Header/HeaderButton.js +0 -95
- package/DEV-cjs/core/Header/HeaderDropdownButton.js +0 -59
- package/DEV-cjs/core/Header/HeaderLogo.js +0 -57
- package/DEV-cjs/core/Header/HeaderSplitButton.js +0 -81
- package/DEV-cjs/core/Icon/Icon.js +0 -46
- package/DEV-cjs/core/InformationPanel/InformationPanel.js +0 -103
- package/DEV-cjs/core/InformationPanel/InformationPanelBody.js +0 -13
- package/DEV-cjs/core/InformationPanel/InformationPanelContent.js +0 -34
- package/DEV-cjs/core/InformationPanel/InformationPanelHeader.js +0 -55
- package/DEV-cjs/core/InformationPanel/InformationPanelWrapper.js +0 -15
- package/DEV-cjs/core/Input/Input.js +0 -30
- package/DEV-cjs/core/InputGrid/InputGrid.js +0 -159
- package/DEV-cjs/core/InputGroup/InputGroup.js +0 -95
- package/DEV-cjs/core/InputWithDecorations/InputWithDecorations.js +0 -77
- package/DEV-cjs/core/Label/Label.js +0 -44
- package/DEV-cjs/core/LabeledInput/LabeledInput.js +0 -93
- package/DEV-cjs/core/LabeledSelect/LabeledSelect.js +0 -75
- package/DEV-cjs/core/LabeledSelect/LabeledSelect.types-test.js +0 -103
- package/DEV-cjs/core/LabeledTextarea/LabeledTextarea.js +0 -22
- package/DEV-cjs/core/LinkAction/LinkAction.js +0 -37
- package/DEV-cjs/core/List/List.js +0 -15
- package/DEV-cjs/core/List/ListItem.js +0 -53
- package/DEV-cjs/core/Menu/Menu.js +0 -226
- package/DEV-cjs/core/Menu/MenuDivider.js +0 -15
- package/DEV-cjs/core/Menu/MenuExtraContent.js +0 -15
- package/DEV-cjs/core/Menu/MenuItem.js +0 -145
- package/DEV-cjs/core/Menu/MenuItemSkeleton.js +0 -69
- package/DEV-cjs/core/Modal/Modal.js +0 -59
- package/DEV-cjs/core/Modal/ModalButtonBar.js +0 -13
- package/DEV-cjs/core/Modal/ModalContent.js +0 -13
- package/DEV-cjs/core/NonIdealState/ErrorPage.js +0 -214
- package/DEV-cjs/core/NonIdealState/NonIdealState.js +0 -89
- package/DEV-cjs/core/NotificationMarker/NotificationMarker.js +0 -43
- package/DEV-cjs/core/Overlay/Overlay.js +0 -48
- package/DEV-cjs/core/Popover/Popover.js +0 -343
- package/DEV-cjs/core/ProgressIndicators/ProgressLinear.js +0 -76
- package/DEV-cjs/core/ProgressIndicators/ProgressRadial.js +0 -72
- package/DEV-cjs/core/Radio/Radio.js +0 -70
- package/DEV-cjs/core/RadioTiles/RadioTile.js +0 -92
- package/DEV-cjs/core/RadioTiles/RadioTileGroup.js +0 -33
- package/DEV-cjs/core/SearchBox/SearchBox.js +0 -227
- package/DEV-cjs/core/Select/Select.js +0 -485
- package/DEV-cjs/core/Select/Select.types-test.js +0 -115
- package/DEV-cjs/core/Select/SelectTag.js +0 -35
- package/DEV-cjs/core/Select/SelectTagContainer.js +0 -55
- package/DEV-cjs/core/SideNavigation/SideNavigation.js +0 -142
- package/DEV-cjs/core/SideNavigation/SidenavButton.js +0 -59
- package/DEV-cjs/core/SideNavigation/SidenavSubmenu.js +0 -37
- package/DEV-cjs/core/SideNavigation/SidenavSubmenuHeader.js +0 -45
- package/DEV-cjs/core/SkipToContentLink/SkipToContentLink.js +0 -32
- package/DEV-cjs/core/Slider/Slider.js +0 -374
- package/DEV-cjs/core/Slider/Thumb.js +0 -115
- package/DEV-cjs/core/Slider/Track.js +0 -102
- package/DEV-cjs/core/StatusMessage/StatusMessage.js +0 -50
- package/DEV-cjs/core/Stepper/Stepper.js +0 -98
- package/DEV-cjs/core/Stepper/StepperStep.js +0 -118
- package/DEV-cjs/core/Stepper/WorkflowDiagram.js +0 -45
- package/DEV-cjs/core/Stepper/WorkflowDiagramStep.js +0 -52
- package/DEV-cjs/core/Surface/Surface.js +0 -116
- package/DEV-cjs/core/Table/ColumnHeader.js +0 -187
- package/DEV-cjs/core/Table/SubRowExpander.js +0 -48
- package/DEV-cjs/core/Table/Table.js +0 -763
- package/DEV-cjs/core/Table/TableCell.js +0 -112
- package/DEV-cjs/core/Table/TableExpandableContentMemoized.js +0 -47
- package/DEV-cjs/core/Table/TablePaginator.js +0 -347
- package/DEV-cjs/core/Table/TableRowMemoized.js +0 -176
- package/DEV-cjs/core/Table/actionHandlers/expandHandler.js +0 -21
- package/DEV-cjs/core/Table/actionHandlers/filterHandler.js +0 -34
- package/DEV-cjs/core/Table/actionHandlers/index.js +0 -38
- package/DEV-cjs/core/Table/actionHandlers/resizeHandler.js +0 -33
- package/DEV-cjs/core/Table/actionHandlers/selectHandler.js +0 -136
- package/DEV-cjs/core/Table/cells/DefaultCell.js +0 -97
- package/DEV-cjs/core/Table/cells/EditableCell.js +0 -89
- package/DEV-cjs/core/Table/cells/index.js +0 -21
- package/DEV-cjs/core/Table/columns/actionColumn.js +0 -103
- package/DEV-cjs/core/Table/columns/expanderColumn.js +0 -65
- package/DEV-cjs/core/Table/columns/index.js +0 -31
- package/DEV-cjs/core/Table/columns/selectionColumn.js +0 -88
- package/DEV-cjs/core/Table/filters/BaseFilter.js +0 -33
- package/DEV-cjs/core/Table/filters/DateRangeFilter/DatePickerInput.js +0 -127
- package/DEV-cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.js +0 -122
- package/DEV-cjs/core/Table/filters/FilterButtonBar.js +0 -61
- package/DEV-cjs/core/Table/filters/FilterToggle.js +0 -77
- package/DEV-cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +0 -61
- package/DEV-cjs/core/Table/filters/TextFilter/TextFilter.js +0 -41
- package/DEV-cjs/core/Table/filters/customFilterFunctions.js +0 -31
- package/DEV-cjs/core/Table/filters/defaultFilterFunctions.js +0 -125
- package/DEV-cjs/core/Table/filters/index.js +0 -29
- package/DEV-cjs/core/Table/filters/tableFilters.js +0 -32
- package/DEV-cjs/core/Table/filters/types.js +0 -4
- package/DEV-cjs/core/Table/hooks/index.js +0 -45
- package/DEV-cjs/core/Table/hooks/useColumnDragAndDrop.js +0 -124
- package/DEV-cjs/core/Table/hooks/useExpanderCell.js +0 -41
- package/DEV-cjs/core/Table/hooks/useResizeColumns.js +0 -367
- package/DEV-cjs/core/Table/hooks/useScrollToRow.js +0 -45
- package/DEV-cjs/core/Table/hooks/useSelectionCell.js +0 -28
- package/DEV-cjs/core/Table/hooks/useStickyColumns.js +0 -65
- package/DEV-cjs/core/Table/hooks/useSubRowFiltering.js +0 -95
- package/DEV-cjs/core/Table/hooks/useSubRowSelection.js +0 -43
- package/DEV-cjs/core/Table/index.js +0 -48
- package/DEV-cjs/core/Table/utils.js +0 -76
- package/DEV-cjs/core/Tabs/Tabs.js +0 -428
- package/DEV-cjs/core/Tag/Tag.js +0 -84
- package/DEV-cjs/core/Tag/TagContainer.js +0 -35
- package/DEV-cjs/core/Textarea/Textarea.js +0 -22
- package/DEV-cjs/core/ThemeProvider/ThemeContext.js +0 -13
- package/DEV-cjs/core/ThemeProvider/ThemeProvider.js +0 -311
- package/DEV-cjs/core/Tile/Tile.js +0 -348
- package/DEV-cjs/core/TimePicker/TimePicker.js +0 -471
- package/DEV-cjs/core/Toast/Toast.js +0 -241
- package/DEV-cjs/core/Toast/Toaster.js +0 -160
- package/DEV-cjs/core/ToggleSwitch/ToggleSwitch.js +0 -80
- package/DEV-cjs/core/Tooltip/Tooltip.js +0 -234
- package/DEV-cjs/core/TransferList/TransferList.js +0 -204
- package/DEV-cjs/core/Tree/Tree.js +0 -245
- package/DEV-cjs/core/Tree/TreeContext.js +0 -28
- package/DEV-cjs/core/Tree/TreeNode.js +0 -264
- package/DEV-cjs/core/Tree/TreeNodeExpander.js +0 -44
- package/DEV-cjs/core/Typography/Anchor.js +0 -45
- package/DEV-cjs/core/Typography/Blockquote.js +0 -30
- package/DEV-cjs/core/Typography/Code.js +0 -13
- package/DEV-cjs/core/Typography/Kbd.js +0 -53
- package/DEV-cjs/core/Typography/Text.js +0 -54
- package/DEV-cjs/core/VisuallyHidden/VisuallyHidden.js +0 -61
- package/DEV-cjs/index.js +0 -482
- package/DEV-cjs/package.json +0 -1
- package/DEV-cjs/react-table/react-table.js +0 -4
- package/DEV-cjs/react-table/react-table.types-test.js +0 -649
- package/DEV-cjs/styles.js +0 -17
- package/DEV-cjs/utils/color/ColorValue.js +0 -449
- package/DEV-cjs/utils/color/index.js +0 -6
- package/DEV-cjs/utils/components/AutoclearingHiddenLiveRegion.js +0 -34
- package/DEV-cjs/utils/components/Box.js +0 -12
- package/DEV-cjs/utils/components/ButtonBase.js +0 -45
- package/DEV-cjs/utils/components/FieldsetBase.js +0 -12
- package/DEV-cjs/utils/components/FocusTrap.js +0 -51
- package/DEV-cjs/utils/components/InputContainer.js +0 -70
- package/DEV-cjs/utils/components/InputFlexContainer.js +0 -72
- package/DEV-cjs/utils/components/InputWithIcon.js +0 -13
- package/DEV-cjs/utils/components/LineClamp.js +0 -44
- package/DEV-cjs/utils/components/MiddleTextTruncation.js +0 -47
- package/DEV-cjs/utils/components/OverflowContainer.js +0 -63
- package/DEV-cjs/utils/components/Portal.js +0 -44
- package/DEV-cjs/utils/components/Resizer.js +0 -262
- package/DEV-cjs/utils/components/ShadowRoot.js +0 -107
- package/DEV-cjs/utils/components/WithCSSTransition.js +0 -60
- package/DEV-cjs/utils/components/index.js +0 -20
- package/DEV-cjs/utils/functions/colors.js +0 -47
- package/DEV-cjs/utils/functions/date.js +0 -18
- package/DEV-cjs/utils/functions/dev.js +0 -19
- package/DEV-cjs/utils/functions/dom.js +0 -47
- package/DEV-cjs/utils/functions/focusable.js +0 -91
- package/DEV-cjs/utils/functions/import.js +0 -33
- package/DEV-cjs/utils/functions/index.js +0 -15
- package/DEV-cjs/utils/functions/numbers.js +0 -34
- package/DEV-cjs/utils/functions/polymorphic.js +0 -61
- package/DEV-cjs/utils/functions/react.js +0 -28
- package/DEV-cjs/utils/functions/supports.js +0 -13
- package/DEV-cjs/utils/hooks/index.js +0 -22
- package/DEV-cjs/utils/hooks/useContainerWidth.js +0 -34
- package/DEV-cjs/utils/hooks/useControlledState.js +0 -31
- package/DEV-cjs/utils/hooks/useDragAndDrop.js +0 -116
- package/DEV-cjs/utils/hooks/useEventListener.js +0 -26
- package/DEV-cjs/utils/hooks/useGlobals.js +0 -57
- package/DEV-cjs/utils/hooks/useId.js +0 -21
- package/DEV-cjs/utils/hooks/useIntersection.js +0 -41
- package/DEV-cjs/utils/hooks/useIsClient.js +0 -19
- package/DEV-cjs/utils/hooks/useIsomorphicLayoutEffect.js +0 -14
- package/DEV-cjs/utils/hooks/useLatestRef.js +0 -19
- package/DEV-cjs/utils/hooks/useMediaQuery.js +0 -35
- package/DEV-cjs/utils/hooks/useMergedRefs.js +0 -31
- package/DEV-cjs/utils/hooks/useOverflow.js +0 -76
- package/DEV-cjs/utils/hooks/useResizeObserver.js +0 -34
- package/DEV-cjs/utils/hooks/useSafeContext.js +0 -18
- package/DEV-cjs/utils/hooks/useSyncExternalStore.js +0 -43
- package/DEV-cjs/utils/hooks/useVirtualScroll.js +0 -61
- package/DEV-cjs/utils/hooks/useWarningLogger.js +0 -45
- package/DEV-cjs/utils/icons/StatusIconMap.js +0 -38
- package/DEV-cjs/utils/icons/Svg.js +0 -16
- package/DEV-cjs/utils/icons/SvgCalendar.js +0 -21
- package/DEV-cjs/utils/icons/SvgCaretDownSmall.js +0 -21
- package/DEV-cjs/utils/icons/SvgCaretRightSmall.js +0 -21
- package/DEV-cjs/utils/icons/SvgCaretUpSmall.js +0 -21
- package/DEV-cjs/utils/icons/SvgCheckmark.js +0 -21
- package/DEV-cjs/utils/icons/SvgCheckmarkSmall.js +0 -21
- package/DEV-cjs/utils/icons/SvgChevronLeft.js +0 -21
- package/DEV-cjs/utils/icons/SvgChevronLeftDouble.js +0 -21
- package/DEV-cjs/utils/icons/SvgChevronRight.js +0 -21
- package/DEV-cjs/utils/icons/SvgChevronRightDouble.js +0 -21
- package/DEV-cjs/utils/icons/SvgChevronRightSmall.js +0 -21
- package/DEV-cjs/utils/icons/SvgClose.js +0 -21
- package/DEV-cjs/utils/icons/SvgCloseSmall.js +0 -21
- package/DEV-cjs/utils/icons/SvgColumnManager.js +0 -21
- package/DEV-cjs/utils/icons/SvgDocument.js +0 -21
- package/DEV-cjs/utils/icons/SvgFilter.js +0 -21
- package/DEV-cjs/utils/icons/SvgFilterHollow.js +0 -21
- package/DEV-cjs/utils/icons/SvgImportantSmall.js +0 -21
- package/DEV-cjs/utils/icons/SvgInfoCircular.js +0 -21
- package/DEV-cjs/utils/icons/SvgMore.js +0 -21
- package/DEV-cjs/utils/icons/SvgMoreVertical.js +0 -21
- package/DEV-cjs/utils/icons/SvgNew.js +0 -21
- package/DEV-cjs/utils/icons/SvgSearch.js +0 -21
- package/DEV-cjs/utils/icons/SvgSmileyHappy.js +0 -21
- package/DEV-cjs/utils/icons/SvgSortDown.js +0 -21
- package/DEV-cjs/utils/icons/SvgSortUp.js +0 -21
- package/DEV-cjs/utils/icons/SvgStatusError.js +0 -21
- package/DEV-cjs/utils/icons/SvgStatusSuccess.js +0 -21
- package/DEV-cjs/utils/icons/SvgStatusWarning.js +0 -21
- package/DEV-cjs/utils/icons/SvgSwap.js +0 -21
- package/DEV-cjs/utils/icons/SvgUpload.js +0 -21
- package/DEV-cjs/utils/icons/index.js +0 -37
- package/DEV-cjs/utils/index.js +0 -13
- package/DEV-cjs/utils/meta.js +0 -16
- package/DEV-cjs/utils/props.js +0 -4
- package/DEV-cjs/utils/providers/HydrationProvider.js +0 -58
- package/DEV-cjs/utils/providers/ScopeProvider.js +0 -66
- package/DEV-cjs/utils/providers/index.js +0 -7
- package/DEV-cjs/utils/types.js +0 -4
- package/DEV-esm/core/Alert/Alert.js +0 -133
- package/DEV-esm/core/Avatar/Avatar.js +0 -54
- package/DEV-esm/core/AvatarGroup/AvatarGroup.js +0 -63
- package/DEV-esm/core/Backdrop/Backdrop.js +0 -18
- package/DEV-esm/core/Badge/Badge.js +0 -41
- package/DEV-esm/core/Breadcrumbs/Breadcrumbs.js +0 -182
- package/DEV-esm/core/ButtonGroup/ButtonGroup.js +0 -141
- package/DEV-esm/core/Buttons/Button.js +0 -79
- package/DEV-esm/core/Buttons/DropdownButton.js +0 -49
- package/DEV-esm/core/Buttons/IconButton.js +0 -63
- package/DEV-esm/core/Buttons/IdeasButton.js +0 -22
- package/DEV-esm/core/Buttons/SplitButton.js +0 -98
- package/DEV-esm/core/Carousel/Carousel.js +0 -72
- package/DEV-esm/core/Carousel/CarouselContext.js +0 -3
- package/DEV-esm/core/Carousel/CarouselDot.js +0 -23
- package/DEV-esm/core/Carousel/CarouselDotsList.js +0 -151
- package/DEV-esm/core/Carousel/CarouselNavigation.js +0 -96
- package/DEV-esm/core/Carousel/CarouselSlide.js +0 -45
- package/DEV-esm/core/Carousel/CarouselSlider.js +0 -63
- package/DEV-esm/core/Checkbox/Checkbox.js +0 -85
- package/DEV-esm/core/ColorPicker/ColorBuilder.js +0 -321
- package/DEV-esm/core/ColorPicker/ColorInputPanel.js +0 -433
- package/DEV-esm/core/ColorPicker/ColorPalette.js +0 -63
- package/DEV-esm/core/ColorPicker/ColorPicker.js +0 -77
- package/DEV-esm/core/ColorPicker/ColorPickerContext.js +0 -10
- package/DEV-esm/core/ColorPicker/ColorSwatch.js +0 -37
- package/DEV-esm/core/ComboBox/ComboBox.js +0 -411
- package/DEV-esm/core/ComboBox/ComboBox.types-test.js +0 -85
- package/DEV-esm/core/ComboBox/ComboBoxEndIcon.js +0 -28
- package/DEV-esm/core/ComboBox/ComboBoxInput.js +0 -178
- package/DEV-esm/core/ComboBox/ComboBoxInputContainer.js +0 -39
- package/DEV-esm/core/ComboBox/ComboBoxMenu.js +0 -130
- package/DEV-esm/core/ComboBox/ComboBoxMenuItem.js +0 -80
- package/DEV-esm/core/ComboBox/ComboBoxMultipleContainer.js +0 -11
- package/DEV-esm/core/ComboBox/helpers.js +0 -5
- package/DEV-esm/core/DatePicker/DatePicker.js +0 -562
- package/DEV-esm/core/Dialog/Dialog.js +0 -81
- package/DEV-esm/core/Dialog/DialogBackdrop.js +0 -44
- package/DEV-esm/core/Dialog/DialogButtonBar.js +0 -3
- package/DEV-esm/core/Dialog/DialogContent.js +0 -3
- package/DEV-esm/core/Dialog/DialogContext.js +0 -3
- package/DEV-esm/core/Dialog/DialogDragContext.js +0 -8
- package/DEV-esm/core/Dialog/DialogMain.js +0 -179
- package/DEV-esm/core/Dialog/DialogTitleBar.js +0 -57
- package/DEV-esm/core/Dialog/DialogTitleBarTitle.js +0 -3
- package/DEV-esm/core/Divider/Divider.js +0 -14
- package/DEV-esm/core/DropdownMenu/DropdownMenu.js +0 -64
- package/DEV-esm/core/ExpandableBlock/ExpandableBlock.js +0 -206
- package/DEV-esm/core/Fieldset/Fieldset.js +0 -26
- package/DEV-esm/core/FileUpload/FileEmptyCard.js +0 -38
- package/DEV-esm/core/FileUpload/FileUpload.js +0 -71
- package/DEV-esm/core/FileUpload/FileUploadCard.js +0 -191
- package/DEV-esm/core/FileUpload/FileUploadTemplate.js +0 -52
- package/DEV-esm/core/Flex/Flex.js +0 -77
- package/DEV-esm/core/Footer/Footer.js +0 -115
- package/DEV-esm/core/Footer/FooterItem.js +0 -3
- package/DEV-esm/core/Footer/FooterList.js +0 -3
- package/DEV-esm/core/Footer/FooterSeparator.js +0 -5
- package/DEV-esm/core/Header/Header.js +0 -80
- package/DEV-esm/core/Header/HeaderBasicButton.js +0 -18
- package/DEV-esm/core/Header/HeaderBreadcrumbs.js +0 -45
- package/DEV-esm/core/Header/HeaderButton.js +0 -78
- package/DEV-esm/core/Header/HeaderDropdownButton.js +0 -48
- package/DEV-esm/core/Header/HeaderLogo.js +0 -45
- package/DEV-esm/core/Header/HeaderSplitButton.js +0 -71
- package/DEV-esm/core/Icon/Icon.js +0 -34
- package/DEV-esm/core/InformationPanel/InformationPanel.js +0 -91
- package/DEV-esm/core/InformationPanel/InformationPanelBody.js +0 -3
- package/DEV-esm/core/InformationPanel/InformationPanelContent.js +0 -24
- package/DEV-esm/core/InformationPanel/InformationPanelHeader.js +0 -45
- package/DEV-esm/core/InformationPanel/InformationPanelWrapper.js +0 -5
- package/DEV-esm/core/Input/Input.js +0 -18
- package/DEV-esm/core/InputGrid/InputGrid.js +0 -143
- package/DEV-esm/core/InputGroup/InputGroup.js +0 -80
- package/DEV-esm/core/InputWithDecorations/InputWithDecorations.js +0 -75
- package/DEV-esm/core/Label/Label.js +0 -32
- package/DEV-esm/core/LabeledInput/LabeledInput.js +0 -78
- package/DEV-esm/core/LabeledSelect/LabeledSelect.js +0 -64
- package/DEV-esm/core/LabeledSelect/LabeledSelect.types-test.js +0 -99
- package/DEV-esm/core/LabeledTextarea/LabeledTextarea.js +0 -11
- package/DEV-esm/core/LinkAction/LinkAction.js +0 -16
- package/DEV-esm/core/List/List.js +0 -5
- package/DEV-esm/core/List/ListItem.js +0 -41
- package/DEV-esm/core/Menu/Menu.js +0 -216
- package/DEV-esm/core/Menu/MenuDivider.js +0 -5
- package/DEV-esm/core/Menu/MenuExtraContent.js +0 -5
- package/DEV-esm/core/Menu/MenuItem.js +0 -137
- package/DEV-esm/core/Menu/MenuItemSkeleton.js +0 -53
- package/DEV-esm/core/Modal/Modal.js +0 -48
- package/DEV-esm/core/Modal/ModalButtonBar.js +0 -3
- package/DEV-esm/core/Modal/ModalContent.js +0 -3
- package/DEV-esm/core/NonIdealState/ErrorPage.js +0 -167
- package/DEV-esm/core/NonIdealState/NonIdealState.js +0 -71
- package/DEV-esm/core/NotificationMarker/NotificationMarker.js +0 -31
- package/DEV-esm/core/Overlay/Overlay.js +0 -37
- package/DEV-esm/core/Popover/Popover.js +0 -343
- package/DEV-esm/core/ProgressIndicators/ProgressLinear.js +0 -60
- package/DEV-esm/core/ProgressIndicators/ProgressRadial.js +0 -58
- package/DEV-esm/core/Radio/Radio.js +0 -55
- package/DEV-esm/core/RadioTiles/RadioTile.js +0 -68
- package/DEV-esm/core/RadioTiles/RadioTileGroup.js +0 -22
- package/DEV-esm/core/SearchBox/SearchBox.js +0 -224
- package/DEV-esm/core/Select/Select.js +0 -468
- package/DEV-esm/core/Select/Select.types-test.js +0 -111
- package/DEV-esm/core/Select/SelectTag.js +0 -23
- package/DEV-esm/core/Select/SelectTagContainer.js +0 -37
- package/DEV-esm/core/SideNavigation/SideNavigation.js +0 -111
- package/DEV-esm/core/SideNavigation/SidenavButton.js +0 -46
- package/DEV-esm/core/SideNavigation/SidenavSubmenu.js +0 -22
- package/DEV-esm/core/SideNavigation/SidenavSubmenuHeader.js +0 -30
- package/DEV-esm/core/SkipToContentLink/SkipToContentLink.js +0 -17
- package/DEV-esm/core/Slider/Slider.js +0 -342
- package/DEV-esm/core/Slider/Thumb.js +0 -103
- package/DEV-esm/core/Slider/Track.js +0 -87
- package/DEV-esm/core/StatusMessage/StatusMessage.js +0 -38
- package/DEV-esm/core/Stepper/Stepper.js +0 -83
- package/DEV-esm/core/Stepper/StepperStep.js +0 -100
- package/DEV-esm/core/Stepper/WorkflowDiagram.js +0 -33
- package/DEV-esm/core/Stepper/WorkflowDiagramStep.js +0 -34
- package/DEV-esm/core/Surface/Surface.js +0 -104
- package/DEV-esm/core/Table/ColumnHeader.js +0 -187
- package/DEV-esm/core/Table/SubRowExpander.js +0 -37
- package/DEV-esm/core/Table/Table.js +0 -770
- package/DEV-esm/core/Table/TableCell.js +0 -93
- package/DEV-esm/core/Table/TableExpandableContentMemoized.js +0 -33
- package/DEV-esm/core/Table/TablePaginator.js +0 -343
- package/DEV-esm/core/Table/TableRowMemoized.js +0 -155
- package/DEV-esm/core/Table/actionHandlers/expandHandler.js +0 -11
- package/DEV-esm/core/Table/actionHandlers/filterHandler.js +0 -24
- package/DEV-esm/core/Table/actionHandlers/index.js +0 -8
- package/DEV-esm/core/Table/actionHandlers/resizeHandler.js +0 -14
- package/DEV-esm/core/Table/actionHandlers/selectHandler.js +0 -114
- package/DEV-esm/core/Table/cells/DefaultCell.js +0 -85
- package/DEV-esm/core/Table/cells/EditableCell.js +0 -75
- package/DEV-esm/core/Table/cells/index.js +0 -2
- package/DEV-esm/core/Table/columns/actionColumn.js +0 -92
- package/DEV-esm/core/Table/columns/expanderColumn.js +0 -45
- package/DEV-esm/core/Table/columns/index.js +0 -3
- package/DEV-esm/core/Table/columns/selectionColumn.js +0 -68
- package/DEV-esm/core/Table/filters/BaseFilter.js +0 -18
- package/DEV-esm/core/Table/filters/DateRangeFilter/DatePickerInput.js +0 -116
- package/DEV-esm/core/Table/filters/DateRangeFilter/DateRangeFilter.js +0 -111
- package/DEV-esm/core/Table/filters/FilterButtonBar.js +0 -49
- package/DEV-esm/core/Table/filters/FilterToggle.js +0 -66
- package/DEV-esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +0 -50
- package/DEV-esm/core/Table/filters/TextFilter/TextFilter.js +0 -30
- package/DEV-esm/core/Table/filters/customFilterFunctions.js +0 -21
- package/DEV-esm/core/Table/filters/defaultFilterFunctions.js +0 -115
- package/DEV-esm/core/Table/filters/index.js +0 -4
- package/DEV-esm/core/Table/filters/tableFilters.js +0 -21
- package/DEV-esm/core/Table/filters/types.js +0 -1
- package/DEV-esm/core/Table/hooks/index.js +0 -8
- package/DEV-esm/core/Table/hooks/useColumnDragAndDrop.js +0 -114
- package/DEV-esm/core/Table/hooks/useExpanderCell.js +0 -28
- package/DEV-esm/core/Table/hooks/useResizeColumns.js +0 -354
- package/DEV-esm/core/Table/hooks/useScrollToRow.js +0 -34
- package/DEV-esm/core/Table/hooks/useSelectionCell.js +0 -18
- package/DEV-esm/core/Table/hooks/useStickyColumns.js +0 -55
- package/DEV-esm/core/Table/hooks/useSubRowFiltering.js +0 -84
- package/DEV-esm/core/Table/hooks/useSubRowSelection.js +0 -32
- package/DEV-esm/core/Table/index.js +0 -9
- package/DEV-esm/core/Table/utils.js +0 -50
- package/DEV-esm/core/Tabs/Tabs.js +0 -410
- package/DEV-esm/core/Tag/Tag.js +0 -62
- package/DEV-esm/core/Tag/TagContainer.js +0 -23
- package/DEV-esm/core/Textarea/Textarea.js +0 -11
- package/DEV-esm/core/ThemeProvider/ThemeContext.js +0 -2
- package/DEV-esm/core/ThemeProvider/ThemeProvider.js +0 -298
- package/DEV-esm/core/Tile/Tile.js +0 -328
- package/DEV-esm/core/TimePicker/TimePicker.js +0 -459
- package/DEV-esm/core/Toast/Toast.js +0 -214
- package/DEV-esm/core/Toast/Toaster.js +0 -130
- package/DEV-esm/core/ToggleSwitch/ToggleSwitch.js +0 -65
- package/DEV-esm/core/Tooltip/Tooltip.js +0 -241
- package/DEV-esm/core/TransferList/TransferList.js +0 -179
- package/DEV-esm/core/Tree/Tree.js +0 -239
- package/DEV-esm/core/Tree/TreeContext.js +0 -8
- package/DEV-esm/core/Tree/TreeNode.js +0 -238
- package/DEV-esm/core/Tree/TreeNodeExpander.js +0 -31
- package/DEV-esm/core/Typography/Anchor.js +0 -29
- package/DEV-esm/core/Typography/Blockquote.js +0 -18
- package/DEV-esm/core/Typography/Code.js +0 -3
- package/DEV-esm/core/Typography/Kbd.js +0 -32
- package/DEV-esm/core/Typography/Text.js +0 -33
- package/DEV-esm/core/VisuallyHidden/VisuallyHidden.js +0 -49
- package/DEV-esm/index.js +0 -124
- package/DEV-esm/react-table/react-table.js +0 -1
- package/DEV-esm/react-table/react-table.types-test.js +0 -656
- package/DEV-esm/styles.js +0 -14
- package/DEV-esm/utils/color/ColorValue.js +0 -421
- package/DEV-esm/utils/color/index.js +0 -1
- package/DEV-esm/utils/components/AutoclearingHiddenLiveRegion.js +0 -20
- package/DEV-esm/utils/components/Box.js +0 -2
- package/DEV-esm/utils/components/ButtonBase.js +0 -33
- package/DEV-esm/utils/components/FieldsetBase.js +0 -2
- package/DEV-esm/utils/components/FocusTrap.js +0 -40
- package/DEV-esm/utils/components/InputContainer.js +0 -58
- package/DEV-esm/utils/components/InputFlexContainer.js +0 -39
- package/DEV-esm/utils/components/InputWithIcon.js +0 -3
- package/DEV-esm/utils/components/LineClamp.js +0 -33
- package/DEV-esm/utils/components/MiddleTextTruncation.js +0 -36
- package/DEV-esm/utils/components/OverflowContainer.js +0 -50
- package/DEV-esm/utils/components/Portal.js +0 -19
- package/DEV-esm/utils/components/Resizer.js +0 -255
- package/DEV-esm/utils/components/ShadowRoot.js +0 -96
- package/DEV-esm/utils/components/WithCSSTransition.js +0 -49
- package/DEV-esm/utils/components/index.js +0 -15
- package/DEV-esm/utils/functions/colors.js +0 -25
- package/DEV-esm/utils/functions/date.js +0 -8
- package/DEV-esm/utils/functions/dev.js +0 -10
- package/DEV-esm/utils/functions/dom.js +0 -20
- package/DEV-esm/utils/functions/focusable.js +0 -68
- package/DEV-esm/utils/functions/import.js +0 -23
- package/DEV-esm/utils/functions/index.js +0 -10
- package/DEV-esm/utils/functions/numbers.js +0 -13
- package/DEV-esm/utils/functions/polymorphic.js +0 -49
- package/DEV-esm/utils/functions/react.js +0 -17
- package/DEV-esm/utils/functions/supports.js +0 -3
- package/DEV-esm/utils/hooks/index.js +0 -17
- package/DEV-esm/utils/hooks/useContainerWidth.js +0 -18
- package/DEV-esm/utils/hooks/useControlledState.js +0 -20
- package/DEV-esm/utils/hooks/useDragAndDrop.js +0 -105
- package/DEV-esm/utils/hooks/useEventListener.js +0 -15
- package/DEV-esm/utils/hooks/useGlobals.js +0 -37
- package/DEV-esm/utils/hooks/useId.js +0 -9
- package/DEV-esm/utils/hooks/useIntersection.js +0 -30
- package/DEV-esm/utils/hooks/useIsClient.js +0 -8
- package/DEV-esm/utils/hooks/useIsomorphicLayoutEffect.js +0 -4
- package/DEV-esm/utils/hooks/useLatestRef.js +0 -8
- package/DEV-esm/utils/hooks/useMediaQuery.js +0 -20
- package/DEV-esm/utils/hooks/useMergedRefs.js +0 -11
- package/DEV-esm/utils/hooks/useOverflow.js +0 -63
- package/DEV-esm/utils/hooks/useResizeObserver.js +0 -23
- package/DEV-esm/utils/hooks/useSafeContext.js +0 -7
- package/DEV-esm/utils/hooks/useSyncExternalStore.js +0 -32
- package/DEV-esm/utils/hooks/useVirtualScroll.js +0 -50
- package/DEV-esm/utils/hooks/useWarningLogger.js +0 -32
- package/DEV-esm/utils/icons/StatusIconMap.js +0 -27
- package/DEV-esm/utils/icons/Svg.js +0 -6
- package/DEV-esm/utils/icons/SvgCalendar.js +0 -10
- package/DEV-esm/utils/icons/SvgCaretDownSmall.js +0 -10
- package/DEV-esm/utils/icons/SvgCaretRightSmall.js +0 -10
- package/DEV-esm/utils/icons/SvgCaretUpSmall.js +0 -10
- package/DEV-esm/utils/icons/SvgCheckmark.js +0 -10
- package/DEV-esm/utils/icons/SvgCheckmarkSmall.js +0 -10
- package/DEV-esm/utils/icons/SvgChevronLeft.js +0 -10
- package/DEV-esm/utils/icons/SvgChevronLeftDouble.js +0 -10
- package/DEV-esm/utils/icons/SvgChevronRight.js +0 -10
- package/DEV-esm/utils/icons/SvgChevronRightDouble.js +0 -10
- package/DEV-esm/utils/icons/SvgChevronRightSmall.js +0 -10
- package/DEV-esm/utils/icons/SvgClose.js +0 -10
- package/DEV-esm/utils/icons/SvgCloseSmall.js +0 -10
- package/DEV-esm/utils/icons/SvgColumnManager.js +0 -10
- package/DEV-esm/utils/icons/SvgDocument.js +0 -10
- package/DEV-esm/utils/icons/SvgFilter.js +0 -10
- package/DEV-esm/utils/icons/SvgFilterHollow.js +0 -10
- package/DEV-esm/utils/icons/SvgImportantSmall.js +0 -10
- package/DEV-esm/utils/icons/SvgInfoCircular.js +0 -10
- package/DEV-esm/utils/icons/SvgMore.js +0 -10
- package/DEV-esm/utils/icons/SvgMoreVertical.js +0 -10
- package/DEV-esm/utils/icons/SvgNew.js +0 -10
- package/DEV-esm/utils/icons/SvgSearch.js +0 -10
- package/DEV-esm/utils/icons/SvgSmileyHappy.js +0 -10
- package/DEV-esm/utils/icons/SvgSortDown.js +0 -10
- package/DEV-esm/utils/icons/SvgSortUp.js +0 -10
- package/DEV-esm/utils/icons/SvgStatusError.js +0 -10
- package/DEV-esm/utils/icons/SvgStatusSuccess.js +0 -10
- package/DEV-esm/utils/icons/SvgStatusWarning.js +0 -10
- package/DEV-esm/utils/icons/SvgSwap.js +0 -10
- package/DEV-esm/utils/icons/SvgUpload.js +0 -10
- package/DEV-esm/utils/icons/index.js +0 -32
- package/DEV-esm/utils/index.js +0 -8
- package/DEV-esm/utils/meta.js +0 -6
- package/DEV-esm/utils/props.js +0 -1
- package/DEV-esm/utils/providers/HydrationProvider.js +0 -38
- package/DEV-esm/utils/providers/ScopeProvider.js +0 -43
- package/DEV-esm/utils/providers/index.js +0 -2
- package/DEV-esm/utils/types.js +0 -1
- package/cjs/core/Alert/Alert.d.ts +0 -77
- package/cjs/core/Alert/Alert.js +0 -137
- package/cjs/core/Avatar/Avatar.d.ts +0 -55
- package/cjs/core/Avatar/Avatar.js +0 -80
- package/cjs/core/AvatarGroup/AvatarGroup.d.ts +0 -61
- package/cjs/core/AvatarGroup/AvatarGroup.js +0 -74
- package/cjs/core/Backdrop/Backdrop.d.ts +0 -9
- package/cjs/core/Backdrop/Backdrop.js +0 -29
- package/cjs/core/Badge/Badge.d.ts +0 -26
- package/cjs/core/Badge/Badge.js +0 -54
- package/cjs/core/Breadcrumbs/Breadcrumbs.d.ts +0 -92
- package/cjs/core/Breadcrumbs/Breadcrumbs.js +0 -189
- package/cjs/core/ButtonGroup/ButtonGroup.d.ts +0 -69
- package/cjs/core/ButtonGroup/ButtonGroup.js +0 -156
- package/cjs/core/Buttons/Button.d.ts +0 -55
- package/cjs/core/Buttons/Button.js +0 -99
- package/cjs/core/Buttons/DropdownButton.d.ts +0 -31
- package/cjs/core/Buttons/DropdownButton.js +0 -60
- package/cjs/core/Buttons/IconButton.d.ts +0 -36
- package/cjs/core/Buttons/IconButton.js +0 -79
- package/cjs/core/Buttons/IdeasButton.d.ts +0 -19
- package/cjs/core/Buttons/IdeasButton.js +0 -33
- package/cjs/core/Buttons/SplitButton.d.ts +0 -50
- package/cjs/core/Buttons/SplitButton.js +0 -104
- package/cjs/core/Carousel/Carousel.d.ts +0 -80
- package/cjs/core/Carousel/Carousel.js +0 -83
- package/cjs/core/Carousel/CarouselContext.d.ts +0 -35
- package/cjs/core/Carousel/CarouselContext.js +0 -13
- package/cjs/core/Carousel/CarouselDot.d.ts +0 -15
- package/cjs/core/Carousel/CarouselDot.js +0 -34
- package/cjs/core/Carousel/CarouselDotsList.d.ts +0 -33
- package/cjs/core/Carousel/CarouselDotsList.js +0 -163
- package/cjs/core/Carousel/CarouselNavigation.d.ts +0 -32
- package/cjs/core/Carousel/CarouselNavigation.js +0 -105
- package/cjs/core/Carousel/CarouselSlide.d.ts +0 -16
- package/cjs/core/Carousel/CarouselSlide.js +0 -54
- package/cjs/core/Carousel/CarouselSlider.d.ts +0 -5
- package/cjs/core/Carousel/CarouselSlider.js +0 -71
- package/cjs/core/Checkbox/Checkbox.d.ts +0 -49
- package/cjs/core/Checkbox/Checkbox.js +0 -99
- package/cjs/core/ColorPicker/ColorBuilder.d.ts +0 -28
- package/cjs/core/ColorPicker/ColorBuilder.js +0 -343
- package/cjs/core/ColorPicker/ColorInputPanel.d.ts +0 -44
- package/cjs/core/ColorPicker/ColorInputPanel.js +0 -443
- package/cjs/core/ColorPicker/ColorPalette.d.ts +0 -37
- package/cjs/core/ColorPicker/ColorPalette.js +0 -80
- package/cjs/core/ColorPicker/ColorPicker.d.ts +0 -57
- package/cjs/core/ColorPicker/ColorPicker.js +0 -97
- package/cjs/core/ColorPicker/ColorPickerContext.d.ts +0 -18
- package/cjs/core/ColorPicker/ColorPickerContext.js +0 -30
- package/cjs/core/ColorPicker/ColorSwatch.d.ts +0 -20
- package/cjs/core/ColorPicker/ColorSwatch.js +0 -54
- package/cjs/core/ComboBox/ComboBox.d.ts +0 -119
- package/cjs/core/ComboBox/ComboBox.js +0 -414
- package/cjs/core/ComboBox/ComboBox.types-test.js +0 -89
- package/cjs/core/ComboBox/ComboBoxEndIcon.d.ts +0 -7
- package/cjs/core/ComboBox/ComboBoxEndIcon.js +0 -39
- package/cjs/core/ComboBox/ComboBoxInput.d.ts +0 -8
- package/cjs/core/ComboBox/ComboBoxInput.js +0 -194
- package/cjs/core/ComboBox/ComboBoxInputContainer.d.ts +0 -4
- package/cjs/core/ComboBox/ComboBoxInputContainer.js +0 -43
- package/cjs/core/ComboBox/ComboBoxMenu.d.ts +0 -6
- package/cjs/core/ComboBox/ComboBoxMenu.js +0 -138
- package/cjs/core/ComboBox/ComboBoxMenuItem.d.ts +0 -8
- package/cjs/core/ComboBox/ComboBoxMenuItem.js +0 -88
- package/cjs/core/ComboBox/ComboBoxMultipleContainer.d.ts +0 -7
- package/cjs/core/ComboBox/ComboBoxMultipleContainer.js +0 -21
- package/cjs/core/ComboBox/helpers.d.ts +0 -26
- package/cjs/core/ComboBox/helpers.js +0 -23
- package/cjs/core/DatePicker/DatePicker.d.ts +0 -114
- package/cjs/core/DatePicker/DatePicker.js +0 -594
- package/cjs/core/Dialog/Dialog.d.ts +0 -44
- package/cjs/core/Dialog/Dialog.js +0 -92
- package/cjs/core/Dialog/DialogBackdrop.d.ts +0 -12
- package/cjs/core/Dialog/DialogBackdrop.js +0 -55
- package/cjs/core/Dialog/DialogButtonBar.d.ts +0 -9
- package/cjs/core/Dialog/DialogButtonBar.js +0 -12
- package/cjs/core/Dialog/DialogContent.d.ts +0 -8
- package/cjs/core/Dialog/DialogContent.js +0 -12
- package/cjs/core/Dialog/DialogContext.d.ts +0 -89
- package/cjs/core/Dialog/DialogContext.js +0 -23
- package/cjs/core/Dialog/DialogDragContext.d.ts +0 -8
- package/cjs/core/Dialog/DialogDragContext.js +0 -28
- package/cjs/core/Dialog/DialogMain.d.ts +0 -35
- package/cjs/core/Dialog/DialogMain.js +0 -182
- package/cjs/core/Dialog/DialogTitleBar.d.ts +0 -34
- package/cjs/core/Dialog/DialogTitleBar.js +0 -75
- package/cjs/core/Dialog/DialogTitleBarTitle.d.ts +0 -8
- package/cjs/core/Dialog/DialogTitleBarTitle.js +0 -12
- package/cjs/core/Divider/Divider.d.ts +0 -13
- package/cjs/core/Divider/Divider.js +0 -25
- package/cjs/core/DropdownMenu/DropdownMenu.d.ts +0 -50
- package/cjs/core/DropdownMenu/DropdownMenu.js +0 -74
- package/cjs/core/ExpandableBlock/ExpandableBlock.d.ts +0 -124
- package/cjs/core/ExpandableBlock/ExpandableBlock.js +0 -211
- package/cjs/core/Fieldset/Fieldset.d.ts +0 -21
- package/cjs/core/Fieldset/Fieldset.js +0 -37
- package/cjs/core/FileUpload/FileEmptyCard.d.ts +0 -21
- package/cjs/core/FileUpload/FileEmptyCard.js +0 -51
- package/cjs/core/FileUpload/FileUpload.d.ts +0 -33
- package/cjs/core/FileUpload/FileUpload.js +0 -97
- package/cjs/core/FileUpload/FileUploadCard.d.ts +0 -76
- package/cjs/core/FileUpload/FileUploadCard.js +0 -201
- package/cjs/core/FileUpload/FileUploadTemplate.d.ts +0 -43
- package/cjs/core/FileUpload/FileUploadTemplate.js +0 -66
- package/cjs/core/Flex/Flex.d.ts +0 -138
- package/cjs/core/Flex/Flex.js +0 -86
- package/cjs/core/Footer/Footer.d.ts +0 -60
- package/cjs/core/Footer/Footer.js +0 -136
- package/cjs/core/Footer/FooterItem.d.ts +0 -4
- package/cjs/core/Footer/FooterItem.js +0 -12
- package/cjs/core/Footer/FooterList.d.ts +0 -4
- package/cjs/core/Footer/FooterList.js +0 -12
- package/cjs/core/Footer/FooterSeparator.d.ts +0 -4
- package/cjs/core/Footer/FooterSeparator.js +0 -14
- package/cjs/core/Header/Header.d.ts +0 -95
- package/cjs/core/Header/Header.js +0 -91
- package/cjs/core/Header/HeaderBasicButton.d.ts +0 -3
- package/cjs/core/Header/HeaderBasicButton.js +0 -33
- package/cjs/core/Header/HeaderBreadcrumbs.d.ts +0 -26
- package/cjs/core/Header/HeaderBreadcrumbs.js +0 -63
- package/cjs/core/Header/HeaderButton.d.ts +0 -35
- package/cjs/core/Header/HeaderButton.js +0 -94
- package/cjs/core/Header/HeaderDropdownButton.d.ts +0 -3
- package/cjs/core/Header/HeaderDropdownButton.js +0 -59
- package/cjs/core/Header/HeaderLogo.d.ts +0 -22
- package/cjs/core/Header/HeaderLogo.js +0 -56
- package/cjs/core/Header/HeaderSplitButton.d.ts +0 -3
- package/cjs/core/Header/HeaderSplitButton.js +0 -81
- package/cjs/core/Icon/Icon.d.ts +0 -47
- package/cjs/core/Icon/Icon.js +0 -45
- package/cjs/core/InformationPanel/InformationPanel.d.ts +0 -46
- package/cjs/core/InformationPanel/InformationPanel.js +0 -102
- package/cjs/core/InformationPanel/InformationPanelBody.d.ts +0 -4
- package/cjs/core/InformationPanel/InformationPanelBody.js +0 -12
- package/cjs/core/InformationPanel/InformationPanelContent.d.ts +0 -41
- package/cjs/core/InformationPanel/InformationPanelContent.js +0 -33
- package/cjs/core/InformationPanel/InformationPanelHeader.d.ts +0 -43
- package/cjs/core/InformationPanel/InformationPanelHeader.js +0 -54
- package/cjs/core/InformationPanel/InformationPanelWrapper.d.ts +0 -10
- package/cjs/core/InformationPanel/InformationPanelWrapper.js +0 -14
- package/cjs/core/Input/Input.d.ts +0 -23
- package/cjs/core/Input/Input.js +0 -29
- package/cjs/core/InputGrid/InputGrid.d.ts +0 -27
- package/cjs/core/InputGrid/InputGrid.js +0 -158
- package/cjs/core/InputGroup/InputGroup.d.ts +0 -73
- package/cjs/core/InputGroup/InputGroup.js +0 -94
- package/cjs/core/InputWithDecorations/InputWithDecorations.d.ts +0 -49
- package/cjs/core/InputWithDecorations/InputWithDecorations.js +0 -72
- package/cjs/core/Label/Label.d.ts +0 -29
- package/cjs/core/Label/Label.js +0 -43
- package/cjs/core/LabeledInput/LabeledInput.d.ts +0 -60
- package/cjs/core/LabeledInput/LabeledInput.js +0 -92
- package/cjs/core/LabeledSelect/LabeledSelect.d.ts +0 -107
- package/cjs/core/LabeledSelect/LabeledSelect.js +0 -74
- package/cjs/core/LabeledSelect/LabeledSelect.types-test.js +0 -103
- package/cjs/core/LabeledTextarea/LabeledTextarea.d.ts +0 -58
- package/cjs/core/LabeledTextarea/LabeledTextarea.js +0 -21
- package/cjs/core/LinkAction/LinkAction.d.ts +0 -24
- package/cjs/core/LinkAction/LinkAction.js +0 -35
- package/cjs/core/List/List.d.ts +0 -1
- package/cjs/core/List/List.js +0 -14
- package/cjs/core/List/ListItem.d.ts +0 -80
- package/cjs/core/List/ListItem.js +0 -48
- package/cjs/core/Menu/Menu.d.ts +0 -95
- package/cjs/core/Menu/Menu.js +0 -226
- package/cjs/core/Menu/MenuDivider.d.ts +0 -16
- package/cjs/core/Menu/MenuDivider.js +0 -14
- package/cjs/core/Menu/MenuExtraContent.d.ts +0 -21
- package/cjs/core/Menu/MenuExtraContent.js +0 -14
- package/cjs/core/Menu/MenuItem.d.ts +0 -71
- package/cjs/core/Menu/MenuItem.js +0 -140
- package/cjs/core/Menu/MenuItemSkeleton.d.ts +0 -30
- package/cjs/core/Menu/MenuItemSkeleton.js +0 -68
- package/cjs/core/Modal/Modal.d.ts +0 -80
- package/cjs/core/Modal/Modal.js +0 -58
- package/cjs/core/Modal/ModalButtonBar.d.ts +0 -4
- package/cjs/core/Modal/ModalButtonBar.js +0 -12
- package/cjs/core/Modal/ModalContent.d.ts +0 -4
- package/cjs/core/Modal/ModalContent.js +0 -12
- package/cjs/core/NonIdealState/ErrorPage.d.ts +0 -61
- package/cjs/core/NonIdealState/ErrorPage.js +0 -213
- package/cjs/core/NonIdealState/NonIdealState.d.ts +0 -66
- package/cjs/core/NonIdealState/NonIdealState.js +0 -88
- package/cjs/core/NotificationMarker/NotificationMarker.d.ts +0 -52
- package/cjs/core/NotificationMarker/NotificationMarker.js +0 -42
- package/cjs/core/Overlay/Overlay.d.ts +0 -53
- package/cjs/core/Overlay/Overlay.js +0 -44
- package/cjs/core/Popover/Popover.d.ts +0 -188
- package/cjs/core/Popover/Popover.js +0 -342
- package/cjs/core/ProgressIndicators/ProgressLinear.d.ts +0 -56
- package/cjs/core/ProgressIndicators/ProgressLinear.js +0 -75
- package/cjs/core/ProgressIndicators/ProgressRadial.d.ts +0 -45
- package/cjs/core/ProgressIndicators/ProgressRadial.js +0 -71
- package/cjs/core/Radio/Radio.d.ts +0 -32
- package/cjs/core/Radio/Radio.js +0 -69
- package/cjs/core/RadioTiles/RadioTile.d.ts +0 -39
- package/cjs/core/RadioTiles/RadioTile.js +0 -91
- package/cjs/core/RadioTiles/RadioTileGroup.d.ts +0 -14
- package/cjs/core/RadioTiles/RadioTileGroup.js +0 -32
- package/cjs/core/SearchBox/SearchBox.d.ts +0 -92
- package/cjs/core/SearchBox/SearchBox.js +0 -219
- package/cjs/core/Select/Select.d.ts +0 -280
- package/cjs/core/Select/Select.js +0 -484
- package/cjs/core/Select/Select.types-test.js +0 -115
- package/cjs/core/Select/SelectTag.d.ts +0 -13
- package/cjs/core/Select/SelectTag.js +0 -35
- package/cjs/core/Select/SelectTagContainer.d.ts +0 -12
- package/cjs/core/Select/SelectTagContainer.js +0 -55
- package/cjs/core/SideNavigation/SideNavigation.d.ts +0 -84
- package/cjs/core/SideNavigation/SideNavigation.js +0 -141
- package/cjs/core/SideNavigation/SidenavButton.d.ts +0 -20
- package/cjs/core/SideNavigation/SidenavButton.js +0 -58
- package/cjs/core/SideNavigation/SidenavSubmenu.d.ts +0 -10
- package/cjs/core/SideNavigation/SidenavSubmenu.js +0 -36
- package/cjs/core/SideNavigation/SidenavSubmenuHeader.d.ts +0 -24
- package/cjs/core/SideNavigation/SidenavSubmenuHeader.js +0 -44
- package/cjs/core/SkipToContentLink/SkipToContentLink.d.ts +0 -23
- package/cjs/core/SkipToContentLink/SkipToContentLink.js +0 -31
- package/cjs/core/Slider/Slider.d.ts +0 -129
- package/cjs/core/Slider/Slider.js +0 -373
- package/cjs/core/Slider/Thumb.d.ts +0 -63
- package/cjs/core/Slider/Thumb.js +0 -115
- package/cjs/core/Slider/Track.d.ts +0 -14
- package/cjs/core/Slider/Track.js +0 -102
- package/cjs/core/StatusMessage/StatusMessage.d.ts +0 -36
- package/cjs/core/StatusMessage/StatusMessage.js +0 -49
- package/cjs/core/Stepper/Stepper.d.ts +0 -63
- package/cjs/core/Stepper/Stepper.js +0 -97
- package/cjs/core/Stepper/StepperStep.d.ts +0 -49
- package/cjs/core/Stepper/StepperStep.js +0 -118
- package/cjs/core/Stepper/WorkflowDiagram.d.ts +0 -15
- package/cjs/core/Stepper/WorkflowDiagram.js +0 -44
- package/cjs/core/Stepper/WorkflowDiagramStep.d.ts +0 -10
- package/cjs/core/Stepper/WorkflowDiagramStep.js +0 -52
- package/cjs/core/Surface/Surface.d.ts +0 -48
- package/cjs/core/Surface/Surface.js +0 -112
- package/cjs/core/Table/ColumnHeader.d.ts +0 -15
- package/cjs/core/Table/ColumnHeader.js +0 -187
- package/cjs/core/Table/SubRowExpander.d.ts +0 -11
- package/cjs/core/Table/SubRowExpander.js +0 -48
- package/cjs/core/Table/Table.d.ts +0 -274
- package/cjs/core/Table/Table.js +0 -754
- package/cjs/core/Table/TableCell.d.ts +0 -12
- package/cjs/core/Table/TableCell.js +0 -112
- package/cjs/core/Table/TableExpandableContentMemoized.d.ts +0 -10
- package/cjs/core/Table/TableExpandableContentMemoized.js +0 -47
- package/cjs/core/Table/TablePaginator.d.ts +0 -75
- package/cjs/core/Table/TablePaginator.js +0 -347
- package/cjs/core/Table/TableRowMemoized.d.ts +0 -33
- package/cjs/core/Table/TableRowMemoized.js +0 -176
- package/cjs/core/Table/actionHandlers/expandHandler.d.ts +0 -2
- package/cjs/core/Table/actionHandlers/expandHandler.js +0 -21
- package/cjs/core/Table/actionHandlers/filterHandler.d.ts +0 -3
- package/cjs/core/Table/actionHandlers/filterHandler.js +0 -34
- package/cjs/core/Table/actionHandlers/index.d.ts +0 -4
- package/cjs/core/Table/actionHandlers/index.js +0 -38
- package/cjs/core/Table/actionHandlers/resizeHandler.d.ts +0 -63
- package/cjs/core/Table/actionHandlers/resizeHandler.js +0 -33
- package/cjs/core/Table/actionHandlers/selectHandler.d.ts +0 -43
- package/cjs/core/Table/actionHandlers/selectHandler.js +0 -136
- package/cjs/core/Table/cells/DefaultCell.d.ts +0 -38
- package/cjs/core/Table/cells/DefaultCell.js +0 -96
- package/cjs/core/Table/cells/EditableCell.d.ts +0 -36
- package/cjs/core/Table/cells/EditableCell.js +0 -88
- package/cjs/core/Table/cells/index.d.ts +0 -4
- package/cjs/core/Table/cells/index.js +0 -21
- package/cjs/core/Table/columns/actionColumn.d.ts +0 -40
- package/cjs/core/Table/columns/actionColumn.js +0 -103
- package/cjs/core/Table/columns/expanderColumn.d.ts +0 -44
- package/cjs/core/Table/columns/expanderColumn.js +0 -65
- package/cjs/core/Table/columns/index.d.ts +0 -3
- package/cjs/core/Table/columns/index.js +0 -31
- package/cjs/core/Table/columns/selectionColumn.d.ts +0 -33
- package/cjs/core/Table/columns/selectionColumn.js +0 -88
- package/cjs/core/Table/filters/BaseFilter.d.ts +0 -16
- package/cjs/core/Table/filters/BaseFilter.js +0 -33
- package/cjs/core/Table/filters/DateRangeFilter/DatePickerInput.d.ts +0 -24
- package/cjs/core/Table/filters/DateRangeFilter/DatePickerInput.js +0 -127
- package/cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.d.ts +0 -17
- package/cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.js +0 -122
- package/cjs/core/Table/filters/FilterButtonBar.d.ts +0 -32
- package/cjs/core/Table/filters/FilterButtonBar.js +0 -61
- package/cjs/core/Table/filters/FilterToggle.d.ts +0 -10
- package/cjs/core/Table/filters/FilterToggle.js +0 -77
- package/cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.d.ts +0 -11
- package/cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +0 -61
- package/cjs/core/Table/filters/TextFilter/TextFilter.d.ts +0 -7
- package/cjs/core/Table/filters/TextFilter/TextFilter.js +0 -41
- package/cjs/core/Table/filters/customFilterFunctions.d.ts +0 -10
- package/cjs/core/Table/filters/customFilterFunctions.js +0 -31
- package/cjs/core/Table/filters/defaultFilterFunctions.d.ts +0 -61
- package/cjs/core/Table/filters/defaultFilterFunctions.js +0 -125
- package/cjs/core/Table/filters/index.d.ts +0 -7
- package/cjs/core/Table/filters/index.js +0 -29
- package/cjs/core/Table/filters/tableFilters.d.ts +0 -53
- package/cjs/core/Table/filters/tableFilters.js +0 -32
- package/cjs/core/Table/filters/types.d.ts +0 -20
- package/cjs/core/Table/filters/types.js +0 -4
- package/cjs/core/Table/hooks/index.d.ts +0 -8
- package/cjs/core/Table/hooks/index.js +0 -45
- package/cjs/core/Table/hooks/useColumnDragAndDrop.d.ts +0 -2
- package/cjs/core/Table/hooks/useColumnDragAndDrop.js +0 -124
- package/cjs/core/Table/hooks/useExpanderCell.d.ts +0 -3
- package/cjs/core/Table/hooks/useExpanderCell.js +0 -41
- package/cjs/core/Table/hooks/useResizeColumns.d.ts +0 -37
- package/cjs/core/Table/hooks/useResizeColumns.js +0 -367
- package/cjs/core/Table/hooks/useScrollToRow.d.ts +0 -11
- package/cjs/core/Table/hooks/useScrollToRow.js +0 -45
- package/cjs/core/Table/hooks/useSelectionCell.d.ts +0 -2
- package/cjs/core/Table/hooks/useSelectionCell.js +0 -28
- package/cjs/core/Table/hooks/useStickyColumns.d.ts +0 -2
- package/cjs/core/Table/hooks/useStickyColumns.js +0 -65
- package/cjs/core/Table/hooks/useSubRowFiltering.d.ts +0 -2
- package/cjs/core/Table/hooks/useSubRowFiltering.js +0 -95
- package/cjs/core/Table/hooks/useSubRowSelection.d.ts +0 -2
- package/cjs/core/Table/hooks/useSubRowSelection.js +0 -43
- package/cjs/core/Table/index.d.ts +0 -9
- package/cjs/core/Table/index.js +0 -48
- package/cjs/core/Table/utils.d.ts +0 -11
- package/cjs/core/Table/utils.js +0 -76
- package/cjs/core/Tabs/Tabs.d.ts +0 -297
- package/cjs/core/Tabs/Tabs.js +0 -417
- package/cjs/core/Tag/Tag.d.ts +0 -50
- package/cjs/core/Tag/Tag.js +0 -83
- package/cjs/core/Tag/TagContainer.d.ts +0 -27
- package/cjs/core/Tag/TagContainer.js +0 -34
- package/cjs/core/Textarea/Textarea.d.ts +0 -14
- package/cjs/core/Textarea/Textarea.js +0 -21
- package/cjs/core/ThemeProvider/ThemeContext.d.ts +0 -7
- package/cjs/core/ThemeProvider/ThemeContext.js +0 -13
- package/cjs/core/ThemeProvider/ThemeProvider.d.ts +0 -103
- package/cjs/core/ThemeProvider/ThemeProvider.js +0 -287
- package/cjs/core/Tile/Tile.d.ts +0 -329
- package/cjs/core/Tile/Tile.js +0 -330
- package/cjs/core/TimePicker/TimePicker.d.ts +0 -94
- package/cjs/core/TimePicker/TimePicker.js +0 -470
- package/cjs/core/Toast/Toast.d.ts +0 -78
- package/cjs/core/Toast/Toast.js +0 -241
- package/cjs/core/Toast/Toaster.d.ts +0 -47
- package/cjs/core/Toast/Toaster.js +0 -158
- package/cjs/core/ToggleSwitch/ToggleSwitch.d.ts +0 -52
- package/cjs/core/ToggleSwitch/ToggleSwitch.js +0 -79
- package/cjs/core/Tooltip/Tooltip.d.ts +0 -95
- package/cjs/core/Tooltip/Tooltip.js +0 -233
- package/cjs/core/TransferList/TransferList.d.ts +0 -69
- package/cjs/core/TransferList/TransferList.js +0 -197
- package/cjs/core/Tree/Tree.d.ts +0 -139
- package/cjs/core/Tree/Tree.js +0 -244
- package/cjs/core/Tree/TreeContext.d.ts +0 -33
- package/cjs/core/Tree/TreeContext.js +0 -28
- package/cjs/core/Tree/TreeNode.d.ts +0 -132
- package/cjs/core/Tree/TreeNode.js +0 -263
- package/cjs/core/Tree/TreeNodeExpander.d.ts +0 -9
- package/cjs/core/Tree/TreeNodeExpander.js +0 -43
- package/cjs/core/Typography/Anchor.d.ts +0 -35
- package/cjs/core/Typography/Anchor.js +0 -44
- package/cjs/core/Typography/Blockquote.d.ts +0 -18
- package/cjs/core/Typography/Blockquote.js +0 -29
- package/cjs/core/Typography/Code.d.ts +0 -6
- package/cjs/core/Typography/Code.js +0 -12
- package/cjs/core/Typography/Kbd.d.ts +0 -33
- package/cjs/core/Typography/Kbd.js +0 -52
- package/cjs/core/Typography/Text.d.ts +0 -42
- package/cjs/core/Typography/Text.js +0 -53
- package/cjs/core/VisuallyHidden/VisuallyHidden.d.ts +0 -22
- package/cjs/core/VisuallyHidden/VisuallyHidden.js +0 -60
- package/cjs/index.d.ts +0 -113
- package/cjs/index.js +0 -482
- package/cjs/package.json +0 -1
- package/cjs/react-table/react-table.d.ts +0 -753
- package/cjs/react-table/react-table.js +0 -4
- package/cjs/react-table/react-table.types-test.js +0 -649
- package/cjs/styles.d.ts +0 -6
- package/cjs/styles.js +0 -17
- package/cjs/utils/color/ColorValue.d.ts +0 -180
- package/cjs/utils/color/ColorValue.js +0 -449
- package/cjs/utils/color/index.d.ts +0 -1
- package/cjs/utils/color/index.js +0 -6
- package/cjs/utils/components/AutoclearingHiddenLiveRegion.d.ts +0 -12
- package/cjs/utils/components/AutoclearingHiddenLiveRegion.js +0 -34
- package/cjs/utils/components/Box.d.ts +0 -6
- package/cjs/utils/components/Box.js +0 -12
- package/cjs/utils/components/ButtonBase.d.ts +0 -14
- package/cjs/utils/components/ButtonBase.js +0 -44
- package/cjs/utils/components/FieldsetBase.d.ts +0 -6
- package/cjs/utils/components/FieldsetBase.js +0 -12
- package/cjs/utils/components/FocusTrap.d.ts +0 -12
- package/cjs/utils/components/FocusTrap.js +0 -51
- package/cjs/utils/components/InputContainer.d.ts +0 -19
- package/cjs/utils/components/InputContainer.js +0 -70
- package/cjs/utils/components/InputFlexContainer.d.ts +0 -36
- package/cjs/utils/components/InputFlexContainer.js +0 -72
- package/cjs/utils/components/InputWithIcon.d.ts +0 -2
- package/cjs/utils/components/InputWithIcon.js +0 -12
- package/cjs/utils/components/LineClamp.d.ts +0 -5
- package/cjs/utils/components/LineClamp.js +0 -44
- package/cjs/utils/components/MiddleTextTruncation.d.ts +0 -37
- package/cjs/utils/components/MiddleTextTruncation.js +0 -46
- package/cjs/utils/components/OverflowContainer.d.ts +0 -37
- package/cjs/utils/components/OverflowContainer.js +0 -62
- package/cjs/utils/components/Portal.d.ts +0 -35
- package/cjs/utils/components/Portal.js +0 -44
- package/cjs/utils/components/Resizer.d.ts +0 -37
- package/cjs/utils/components/Resizer.js +0 -262
- package/cjs/utils/components/ShadowRoot.d.ts +0 -13
- package/cjs/utils/components/ShadowRoot.js +0 -107
- package/cjs/utils/components/WithCSSTransition.d.ts +0 -6
- package/cjs/utils/components/WithCSSTransition.js +0 -60
- package/cjs/utils/components/index.d.ts +0 -15
- package/cjs/utils/components/index.js +0 -20
- package/cjs/utils/functions/colors.d.ts +0 -20
- package/cjs/utils/functions/colors.js +0 -47
- package/cjs/utils/functions/date.d.ts +0 -4
- package/cjs/utils/functions/date.js +0 -18
- package/cjs/utils/functions/dev.d.ts +0 -2
- package/cjs/utils/functions/dev.js +0 -19
- package/cjs/utils/functions/dom.d.ts +0 -22
- package/cjs/utils/functions/dom.js +0 -47
- package/cjs/utils/functions/focusable.d.ts +0 -31
- package/cjs/utils/functions/focusable.js +0 -91
- package/cjs/utils/functions/import.d.ts +0 -12
- package/cjs/utils/functions/import.js +0 -33
- package/cjs/utils/functions/index.d.ts +0 -10
- package/cjs/utils/functions/index.js +0 -15
- package/cjs/utils/functions/numbers.d.ts +0 -15
- package/cjs/utils/functions/numbers.js +0 -34
- package/cjs/utils/functions/polymorphic.d.ts +0 -21
- package/cjs/utils/functions/polymorphic.js +0 -60
- package/cjs/utils/functions/react.d.ts +0 -8
- package/cjs/utils/functions/react.js +0 -28
- package/cjs/utils/functions/supports.d.ts +0 -4
- package/cjs/utils/functions/supports.js +0 -13
- package/cjs/utils/hooks/index.d.ts +0 -17
- package/cjs/utils/hooks/index.js +0 -22
- package/cjs/utils/hooks/useContainerWidth.d.ts +0 -16
- package/cjs/utils/hooks/useContainerWidth.js +0 -34
- package/cjs/utils/hooks/useControlledState.d.ts +0 -13
- package/cjs/utils/hooks/useControlledState.js +0 -31
- package/cjs/utils/hooks/useDragAndDrop.d.ts +0 -13
- package/cjs/utils/hooks/useDragAndDrop.js +0 -116
- package/cjs/utils/hooks/useEventListener.d.ts +0 -10
- package/cjs/utils/hooks/useEventListener.js +0 -26
- package/cjs/utils/hooks/useGlobals.d.ts +0 -15
- package/cjs/utils/hooks/useGlobals.js +0 -39
- package/cjs/utils/hooks/useId.d.ts +0 -5
- package/cjs/utils/hooks/useId.js +0 -21
- package/cjs/utils/hooks/useIntersection.d.ts +0 -13
- package/cjs/utils/hooks/useIntersection.js +0 -41
- package/cjs/utils/hooks/useIsClient.d.ts +0 -1
- package/cjs/utils/hooks/useIsClient.js +0 -19
- package/cjs/utils/hooks/useIsomorphicLayoutEffect.d.ts +0 -10
- package/cjs/utils/hooks/useIsomorphicLayoutEffect.js +0 -14
- package/cjs/utils/hooks/useLatestRef.d.ts +0 -9
- package/cjs/utils/hooks/useLatestRef.js +0 -19
- package/cjs/utils/hooks/useMediaQuery.d.ts +0 -1
- package/cjs/utils/hooks/useMediaQuery.js +0 -35
- package/cjs/utils/hooks/useMergedRefs.d.ts +0 -9
- package/cjs/utils/hooks/useMergedRefs.js +0 -31
- package/cjs/utils/hooks/useOverflow.d.ts +0 -23
- package/cjs/utils/hooks/useOverflow.js +0 -76
- package/cjs/utils/hooks/useResizeObserver.d.ts +0 -13
- package/cjs/utils/hooks/useResizeObserver.js +0 -34
- package/cjs/utils/hooks/useSafeContext.d.ts +0 -6
- package/cjs/utils/hooks/useSafeContext.js +0 -18
- package/cjs/utils/hooks/useSyncExternalStore.d.ts +0 -5
- package/cjs/utils/hooks/useSyncExternalStore.js +0 -43
- package/cjs/utils/hooks/useVirtualScroll.d.ts +0 -34
- package/cjs/utils/hooks/useVirtualScroll.js +0 -61
- package/cjs/utils/hooks/useWarningLogger.d.ts +0 -15
- package/cjs/utils/hooks/useWarningLogger.js +0 -18
- package/cjs/utils/icons/StatusIconMap.d.ts +0 -7
- package/cjs/utils/icons/StatusIconMap.js +0 -38
- package/cjs/utils/icons/Svg.d.ts +0 -1
- package/cjs/utils/icons/Svg.js +0 -16
- package/cjs/utils/icons/SvgCalendar.d.ts +0 -2
- package/cjs/utils/icons/SvgCalendar.js +0 -21
- package/cjs/utils/icons/SvgCaretDownSmall.d.ts +0 -2
- package/cjs/utils/icons/SvgCaretDownSmall.js +0 -21
- package/cjs/utils/icons/SvgCaretRightSmall.d.ts +0 -2
- package/cjs/utils/icons/SvgCaretRightSmall.js +0 -21
- package/cjs/utils/icons/SvgCaretUpSmall.d.ts +0 -2
- package/cjs/utils/icons/SvgCaretUpSmall.js +0 -21
- package/cjs/utils/icons/SvgCheckmark.d.ts +0 -2
- package/cjs/utils/icons/SvgCheckmark.js +0 -21
- package/cjs/utils/icons/SvgCheckmarkSmall.d.ts +0 -2
- package/cjs/utils/icons/SvgCheckmarkSmall.js +0 -21
- package/cjs/utils/icons/SvgChevronLeft.d.ts +0 -2
- package/cjs/utils/icons/SvgChevronLeft.js +0 -21
- package/cjs/utils/icons/SvgChevronLeftDouble.d.ts +0 -2
- package/cjs/utils/icons/SvgChevronLeftDouble.js +0 -21
- package/cjs/utils/icons/SvgChevronRight.d.ts +0 -2
- package/cjs/utils/icons/SvgChevronRight.js +0 -21
- package/cjs/utils/icons/SvgChevronRightDouble.d.ts +0 -2
- package/cjs/utils/icons/SvgChevronRightDouble.js +0 -21
- package/cjs/utils/icons/SvgChevronRightSmall.d.ts +0 -2
- package/cjs/utils/icons/SvgChevronRightSmall.js +0 -21
- package/cjs/utils/icons/SvgClose.d.ts +0 -2
- package/cjs/utils/icons/SvgClose.js +0 -21
- package/cjs/utils/icons/SvgCloseSmall.d.ts +0 -2
- package/cjs/utils/icons/SvgCloseSmall.js +0 -21
- package/cjs/utils/icons/SvgColumnManager.d.ts +0 -2
- package/cjs/utils/icons/SvgColumnManager.js +0 -21
- package/cjs/utils/icons/SvgDocument.d.ts +0 -2
- package/cjs/utils/icons/SvgDocument.js +0 -21
- package/cjs/utils/icons/SvgFilter.d.ts +0 -2
- package/cjs/utils/icons/SvgFilter.js +0 -21
- package/cjs/utils/icons/SvgFilterHollow.d.ts +0 -2
- package/cjs/utils/icons/SvgFilterHollow.js +0 -21
- package/cjs/utils/icons/SvgImportantSmall.d.ts +0 -2
- package/cjs/utils/icons/SvgImportantSmall.js +0 -21
- package/cjs/utils/icons/SvgInfoCircular.d.ts +0 -2
- package/cjs/utils/icons/SvgInfoCircular.js +0 -21
- package/cjs/utils/icons/SvgMore.d.ts +0 -2
- package/cjs/utils/icons/SvgMore.js +0 -21
- package/cjs/utils/icons/SvgMoreVertical.d.ts +0 -2
- package/cjs/utils/icons/SvgMoreVertical.js +0 -21
- package/cjs/utils/icons/SvgNew.d.ts +0 -2
- package/cjs/utils/icons/SvgNew.js +0 -21
- package/cjs/utils/icons/SvgSearch.d.ts +0 -2
- package/cjs/utils/icons/SvgSearch.js +0 -21
- package/cjs/utils/icons/SvgSmileyHappy.d.ts +0 -2
- package/cjs/utils/icons/SvgSmileyHappy.js +0 -21
- package/cjs/utils/icons/SvgSortDown.d.ts +0 -2
- package/cjs/utils/icons/SvgSortDown.js +0 -21
- package/cjs/utils/icons/SvgSortUp.d.ts +0 -2
- package/cjs/utils/icons/SvgSortUp.js +0 -21
- package/cjs/utils/icons/SvgStatusError.d.ts +0 -2
- package/cjs/utils/icons/SvgStatusError.js +0 -21
- package/cjs/utils/icons/SvgStatusSuccess.d.ts +0 -2
- package/cjs/utils/icons/SvgStatusSuccess.js +0 -21
- package/cjs/utils/icons/SvgStatusWarning.d.ts +0 -2
- package/cjs/utils/icons/SvgStatusWarning.js +0 -21
- package/cjs/utils/icons/SvgSwap.d.ts +0 -2
- package/cjs/utils/icons/SvgSwap.js +0 -21
- package/cjs/utils/icons/SvgUpload.d.ts +0 -2
- package/cjs/utils/icons/SvgUpload.js +0 -21
- package/cjs/utils/icons/index.d.ts +0 -32
- package/cjs/utils/icons/index.js +0 -37
- package/cjs/utils/index.d.ts +0 -8
- package/cjs/utils/index.js +0 -13
- package/cjs/utils/meta.d.ts +0 -7
- package/cjs/utils/meta.js +0 -16
- package/cjs/utils/props.d.ts +0 -28
- package/cjs/utils/props.js +0 -4
- package/cjs/utils/providers/HydrationProvider.d.ts +0 -16
- package/cjs/utils/providers/HydrationProvider.js +0 -58
- package/cjs/utils/providers/ScopeProvider.d.ts +0 -26
- package/cjs/utils/providers/ScopeProvider.js +0 -66
- package/cjs/utils/providers/index.d.ts +0 -2
- package/cjs/utils/providers/index.js +0 -7
- package/cjs/utils/types.d.ts +0 -5
- package/cjs/utils/types.js +0 -4
- package/esm/core/Alert/Alert.d.ts +0 -77
- package/esm/core/Alert/Alert.js +0 -127
- package/esm/core/Avatar/Avatar.d.ts +0 -55
- package/esm/core/Avatar/Avatar.js +0 -53
- package/esm/core/AvatarGroup/AvatarGroup.d.ts +0 -61
- package/esm/core/AvatarGroup/AvatarGroup.js +0 -62
- package/esm/core/Backdrop/Backdrop.d.ts +0 -9
- package/esm/core/Backdrop/Backdrop.js +0 -17
- package/esm/core/Badge/Badge.d.ts +0 -26
- package/esm/core/Badge/Badge.js +0 -40
- package/esm/core/Breadcrumbs/Breadcrumbs.d.ts +0 -92
- package/esm/core/Breadcrumbs/Breadcrumbs.js +0 -176
- package/esm/core/ButtonGroup/ButtonGroup.d.ts +0 -69
- package/esm/core/ButtonGroup/ButtonGroup.js +0 -139
- package/esm/core/Buttons/Button.d.ts +0 -55
- package/esm/core/Buttons/Button.js +0 -78
- package/esm/core/Buttons/DropdownButton.d.ts +0 -31
- package/esm/core/Buttons/DropdownButton.js +0 -48
- package/esm/core/Buttons/IconButton.d.ts +0 -36
- package/esm/core/Buttons/IconButton.js +0 -60
- package/esm/core/Buttons/IdeasButton.d.ts +0 -19
- package/esm/core/Buttons/IdeasButton.js +0 -21
- package/esm/core/Buttons/SplitButton.d.ts +0 -50
- package/esm/core/Buttons/SplitButton.js +0 -97
- package/esm/core/Carousel/Carousel.d.ts +0 -80
- package/esm/core/Carousel/Carousel.js +0 -71
- package/esm/core/Carousel/CarouselContext.d.ts +0 -35
- package/esm/core/Carousel/CarouselContext.js +0 -2
- package/esm/core/Carousel/CarouselDot.d.ts +0 -15
- package/esm/core/Carousel/CarouselDot.js +0 -22
- package/esm/core/Carousel/CarouselDotsList.d.ts +0 -33
- package/esm/core/Carousel/CarouselDotsList.js +0 -150
- package/esm/core/Carousel/CarouselNavigation.d.ts +0 -32
- package/esm/core/Carousel/CarouselNavigation.js +0 -93
- package/esm/core/Carousel/CarouselSlide.d.ts +0 -16
- package/esm/core/Carousel/CarouselSlide.js +0 -44
- package/esm/core/Carousel/CarouselSlider.d.ts +0 -5
- package/esm/core/Carousel/CarouselSlider.js +0 -62
- package/esm/core/Checkbox/Checkbox.d.ts +0 -49
- package/esm/core/Checkbox/Checkbox.js +0 -84
- package/esm/core/ColorPicker/ColorBuilder.d.ts +0 -28
- package/esm/core/ColorPicker/ColorBuilder.js +0 -320
- package/esm/core/ColorPicker/ColorInputPanel.d.ts +0 -44
- package/esm/core/ColorPicker/ColorInputPanel.js +0 -432
- package/esm/core/ColorPicker/ColorPalette.d.ts +0 -37
- package/esm/core/ColorPicker/ColorPalette.js +0 -62
- package/esm/core/ColorPicker/ColorPicker.d.ts +0 -57
- package/esm/core/ColorPicker/ColorPicker.js +0 -76
- package/esm/core/ColorPicker/ColorPickerContext.d.ts +0 -18
- package/esm/core/ColorPicker/ColorPickerContext.js +0 -10
- package/esm/core/ColorPicker/ColorSwatch.d.ts +0 -20
- package/esm/core/ColorPicker/ColorSwatch.js +0 -36
- package/esm/core/ComboBox/ComboBox.d.ts +0 -119
- package/esm/core/ComboBox/ComboBox.js +0 -410
- package/esm/core/ComboBox/ComboBox.types-test.js +0 -85
- package/esm/core/ComboBox/ComboBoxEndIcon.d.ts +0 -7
- package/esm/core/ComboBox/ComboBoxEndIcon.js +0 -27
- package/esm/core/ComboBox/ComboBoxInput.d.ts +0 -8
- package/esm/core/ComboBox/ComboBoxInput.js +0 -177
- package/esm/core/ComboBox/ComboBoxInputContainer.d.ts +0 -4
- package/esm/core/ComboBox/ComboBoxInputContainer.js +0 -38
- package/esm/core/ComboBox/ComboBoxMenu.d.ts +0 -6
- package/esm/core/ComboBox/ComboBoxMenu.js +0 -129
- package/esm/core/ComboBox/ComboBoxMenuItem.d.ts +0 -8
- package/esm/core/ComboBox/ComboBoxMenuItem.js +0 -79
- package/esm/core/ComboBox/ComboBoxMultipleContainer.d.ts +0 -7
- package/esm/core/ComboBox/ComboBoxMultipleContainer.js +0 -10
- package/esm/core/ComboBox/helpers.d.ts +0 -26
- package/esm/core/ComboBox/helpers.js +0 -3
- package/esm/core/DatePicker/DatePicker.d.ts +0 -114
- package/esm/core/DatePicker/DatePicker.js +0 -561
- package/esm/core/Dialog/Dialog.d.ts +0 -44
- package/esm/core/Dialog/Dialog.js +0 -80
- package/esm/core/Dialog/DialogBackdrop.d.ts +0 -12
- package/esm/core/Dialog/DialogBackdrop.js +0 -43
- package/esm/core/Dialog/DialogButtonBar.d.ts +0 -9
- package/esm/core/Dialog/DialogButtonBar.js +0 -2
- package/esm/core/Dialog/DialogContent.d.ts +0 -8
- package/esm/core/Dialog/DialogContent.js +0 -2
- package/esm/core/Dialog/DialogContext.d.ts +0 -89
- package/esm/core/Dialog/DialogContext.js +0 -3
- package/esm/core/Dialog/DialogDragContext.d.ts +0 -8
- package/esm/core/Dialog/DialogDragContext.js +0 -8
- package/esm/core/Dialog/DialogMain.d.ts +0 -35
- package/esm/core/Dialog/DialogMain.js +0 -178
- package/esm/core/Dialog/DialogTitleBar.d.ts +0 -34
- package/esm/core/Dialog/DialogTitleBar.js +0 -56
- package/esm/core/Dialog/DialogTitleBarTitle.d.ts +0 -8
- package/esm/core/Dialog/DialogTitleBarTitle.js +0 -2
- package/esm/core/Divider/Divider.d.ts +0 -13
- package/esm/core/Divider/Divider.js +0 -13
- package/esm/core/DropdownMenu/DropdownMenu.d.ts +0 -50
- package/esm/core/DropdownMenu/DropdownMenu.js +0 -63
- package/esm/core/ExpandableBlock/ExpandableBlock.d.ts +0 -124
- package/esm/core/ExpandableBlock/ExpandableBlock.js +0 -196
- package/esm/core/Fieldset/Fieldset.d.ts +0 -21
- package/esm/core/Fieldset/Fieldset.js +0 -25
- package/esm/core/FileUpload/FileEmptyCard.d.ts +0 -21
- package/esm/core/FileUpload/FileEmptyCard.js +0 -35
- package/esm/core/FileUpload/FileUpload.d.ts +0 -33
- package/esm/core/FileUpload/FileUpload.js +0 -70
- package/esm/core/FileUpload/FileUploadCard.d.ts +0 -76
- package/esm/core/FileUpload/FileUploadCard.js +0 -182
- package/esm/core/FileUpload/FileUploadTemplate.d.ts +0 -43
- package/esm/core/FileUpload/FileUploadTemplate.js +0 -51
- package/esm/core/Flex/Flex.d.ts +0 -138
- package/esm/core/Flex/Flex.js +0 -74
- package/esm/core/Footer/Footer.d.ts +0 -60
- package/esm/core/Footer/Footer.js +0 -114
- package/esm/core/Footer/FooterItem.d.ts +0 -4
- package/esm/core/Footer/FooterItem.js +0 -2
- package/esm/core/Footer/FooterList.d.ts +0 -4
- package/esm/core/Footer/FooterList.js +0 -2
- package/esm/core/Footer/FooterSeparator.d.ts +0 -4
- package/esm/core/Footer/FooterSeparator.js +0 -4
- package/esm/core/Header/Header.d.ts +0 -95
- package/esm/core/Header/Header.js +0 -79
- package/esm/core/Header/HeaderBasicButton.d.ts +0 -3
- package/esm/core/Header/HeaderBasicButton.js +0 -18
- package/esm/core/Header/HeaderBreadcrumbs.d.ts +0 -26
- package/esm/core/Header/HeaderBreadcrumbs.js +0 -44
- package/esm/core/Header/HeaderButton.d.ts +0 -35
- package/esm/core/Header/HeaderButton.js +0 -77
- package/esm/core/Header/HeaderDropdownButton.d.ts +0 -3
- package/esm/core/Header/HeaderDropdownButton.js +0 -48
- package/esm/core/Header/HeaderLogo.d.ts +0 -22
- package/esm/core/Header/HeaderLogo.js +0 -44
- package/esm/core/Header/HeaderSplitButton.d.ts +0 -3
- package/esm/core/Header/HeaderSplitButton.js +0 -71
- package/esm/core/Icon/Icon.d.ts +0 -47
- package/esm/core/Icon/Icon.js +0 -33
- package/esm/core/InformationPanel/InformationPanel.d.ts +0 -46
- package/esm/core/InformationPanel/InformationPanel.js +0 -90
- package/esm/core/InformationPanel/InformationPanelBody.d.ts +0 -4
- package/esm/core/InformationPanel/InformationPanelBody.js +0 -2
- package/esm/core/InformationPanel/InformationPanelContent.d.ts +0 -41
- package/esm/core/InformationPanel/InformationPanelContent.js +0 -23
- package/esm/core/InformationPanel/InformationPanelHeader.d.ts +0 -43
- package/esm/core/InformationPanel/InformationPanelHeader.js +0 -44
- package/esm/core/InformationPanel/InformationPanelWrapper.d.ts +0 -10
- package/esm/core/InformationPanel/InformationPanelWrapper.js +0 -4
- package/esm/core/Input/Input.d.ts +0 -23
- package/esm/core/Input/Input.js +0 -17
- package/esm/core/InputGrid/InputGrid.d.ts +0 -27
- package/esm/core/InputGrid/InputGrid.js +0 -142
- package/esm/core/InputGroup/InputGroup.d.ts +0 -73
- package/esm/core/InputGroup/InputGroup.js +0 -79
- package/esm/core/InputWithDecorations/InputWithDecorations.d.ts +0 -49
- package/esm/core/InputWithDecorations/InputWithDecorations.js +0 -70
- package/esm/core/Label/Label.d.ts +0 -29
- package/esm/core/Label/Label.js +0 -31
- package/esm/core/LabeledInput/LabeledInput.d.ts +0 -60
- package/esm/core/LabeledInput/LabeledInput.js +0 -77
- package/esm/core/LabeledSelect/LabeledSelect.d.ts +0 -107
- package/esm/core/LabeledSelect/LabeledSelect.js +0 -63
- package/esm/core/LabeledSelect/LabeledSelect.types-test.js +0 -99
- package/esm/core/LabeledTextarea/LabeledTextarea.d.ts +0 -58
- package/esm/core/LabeledTextarea/LabeledTextarea.js +0 -10
- package/esm/core/LinkAction/LinkAction.d.ts +0 -24
- package/esm/core/LinkAction/LinkAction.js +0 -14
- package/esm/core/List/List.d.ts +0 -1
- package/esm/core/List/List.js +0 -4
- package/esm/core/List/ListItem.d.ts +0 -80
- package/esm/core/List/ListItem.js +0 -36
- package/esm/core/Menu/Menu.d.ts +0 -95
- package/esm/core/Menu/Menu.js +0 -216
- package/esm/core/Menu/MenuDivider.d.ts +0 -16
- package/esm/core/Menu/MenuDivider.js +0 -4
- package/esm/core/Menu/MenuExtraContent.d.ts +0 -21
- package/esm/core/Menu/MenuExtraContent.js +0 -4
- package/esm/core/Menu/MenuItem.d.ts +0 -71
- package/esm/core/Menu/MenuItem.js +0 -132
- package/esm/core/Menu/MenuItemSkeleton.d.ts +0 -30
- package/esm/core/Menu/MenuItemSkeleton.js +0 -52
- package/esm/core/Modal/Modal.d.ts +0 -80
- package/esm/core/Modal/Modal.js +0 -47
- package/esm/core/Modal/ModalButtonBar.d.ts +0 -4
- package/esm/core/Modal/ModalButtonBar.js +0 -2
- package/esm/core/Modal/ModalContent.d.ts +0 -4
- package/esm/core/Modal/ModalContent.js +0 -2
- package/esm/core/NonIdealState/ErrorPage.d.ts +0 -61
- package/esm/core/NonIdealState/ErrorPage.js +0 -166
- package/esm/core/NonIdealState/NonIdealState.d.ts +0 -66
- package/esm/core/NonIdealState/NonIdealState.js +0 -70
- package/esm/core/NotificationMarker/NotificationMarker.d.ts +0 -52
- package/esm/core/NotificationMarker/NotificationMarker.js +0 -30
- package/esm/core/Overlay/Overlay.d.ts +0 -53
- package/esm/core/Overlay/Overlay.js +0 -33
- package/esm/core/Popover/Popover.d.ts +0 -188
- package/esm/core/Popover/Popover.js +0 -342
- package/esm/core/ProgressIndicators/ProgressLinear.d.ts +0 -56
- package/esm/core/ProgressIndicators/ProgressLinear.js +0 -59
- package/esm/core/ProgressIndicators/ProgressRadial.d.ts +0 -45
- package/esm/core/ProgressIndicators/ProgressRadial.js +0 -57
- package/esm/core/Radio/Radio.d.ts +0 -32
- package/esm/core/Radio/Radio.js +0 -54
- package/esm/core/RadioTiles/RadioTile.d.ts +0 -39
- package/esm/core/RadioTiles/RadioTile.js +0 -67
- package/esm/core/RadioTiles/RadioTileGroup.d.ts +0 -14
- package/esm/core/RadioTiles/RadioTileGroup.js +0 -21
- package/esm/core/SearchBox/SearchBox.d.ts +0 -92
- package/esm/core/SearchBox/SearchBox.js +0 -216
- package/esm/core/Select/Select.d.ts +0 -280
- package/esm/core/Select/Select.js +0 -467
- package/esm/core/Select/Select.types-test.js +0 -111
- package/esm/core/Select/SelectTag.d.ts +0 -13
- package/esm/core/Select/SelectTag.js +0 -23
- package/esm/core/Select/SelectTagContainer.d.ts +0 -12
- package/esm/core/Select/SelectTagContainer.js +0 -37
- package/esm/core/SideNavigation/SideNavigation.d.ts +0 -84
- package/esm/core/SideNavigation/SideNavigation.js +0 -110
- package/esm/core/SideNavigation/SidenavButton.d.ts +0 -20
- package/esm/core/SideNavigation/SidenavButton.js +0 -45
- package/esm/core/SideNavigation/SidenavSubmenu.d.ts +0 -10
- package/esm/core/SideNavigation/SidenavSubmenu.js +0 -21
- package/esm/core/SideNavigation/SidenavSubmenuHeader.d.ts +0 -24
- package/esm/core/SideNavigation/SidenavSubmenuHeader.js +0 -29
- package/esm/core/SkipToContentLink/SkipToContentLink.d.ts +0 -23
- package/esm/core/SkipToContentLink/SkipToContentLink.js +0 -16
- package/esm/core/Slider/Slider.d.ts +0 -129
- package/esm/core/Slider/Slider.js +0 -341
- package/esm/core/Slider/Thumb.d.ts +0 -63
- package/esm/core/Slider/Thumb.js +0 -103
- package/esm/core/Slider/Track.d.ts +0 -14
- package/esm/core/Slider/Track.js +0 -87
- package/esm/core/StatusMessage/StatusMessage.d.ts +0 -36
- package/esm/core/StatusMessage/StatusMessage.js +0 -37
- package/esm/core/Stepper/Stepper.d.ts +0 -63
- package/esm/core/Stepper/Stepper.js +0 -82
- package/esm/core/Stepper/StepperStep.d.ts +0 -49
- package/esm/core/Stepper/StepperStep.js +0 -100
- package/esm/core/Stepper/WorkflowDiagram.d.ts +0 -15
- package/esm/core/Stepper/WorkflowDiagram.js +0 -32
- package/esm/core/Stepper/WorkflowDiagramStep.d.ts +0 -10
- package/esm/core/Stepper/WorkflowDiagramStep.js +0 -34
- package/esm/core/Surface/Surface.d.ts +0 -48
- package/esm/core/Surface/Surface.js +0 -100
- package/esm/core/Table/ColumnHeader.d.ts +0 -15
- package/esm/core/Table/ColumnHeader.js +0 -187
- package/esm/core/Table/SubRowExpander.d.ts +0 -11
- package/esm/core/Table/SubRowExpander.js +0 -37
- package/esm/core/Table/Table.d.ts +0 -274
- package/esm/core/Table/Table.js +0 -761
- package/esm/core/Table/TableCell.d.ts +0 -12
- package/esm/core/Table/TableCell.js +0 -93
- package/esm/core/Table/TableExpandableContentMemoized.d.ts +0 -10
- package/esm/core/Table/TableExpandableContentMemoized.js +0 -33
- package/esm/core/Table/TablePaginator.d.ts +0 -75
- package/esm/core/Table/TablePaginator.js +0 -343
- package/esm/core/Table/TableRowMemoized.d.ts +0 -33
- package/esm/core/Table/TableRowMemoized.js +0 -155
- package/esm/core/Table/actionHandlers/expandHandler.d.ts +0 -2
- package/esm/core/Table/actionHandlers/expandHandler.js +0 -11
- package/esm/core/Table/actionHandlers/filterHandler.d.ts +0 -3
- package/esm/core/Table/actionHandlers/filterHandler.js +0 -24
- package/esm/core/Table/actionHandlers/index.d.ts +0 -4
- package/esm/core/Table/actionHandlers/index.js +0 -8
- package/esm/core/Table/actionHandlers/resizeHandler.d.ts +0 -63
- package/esm/core/Table/actionHandlers/resizeHandler.js +0 -14
- package/esm/core/Table/actionHandlers/selectHandler.d.ts +0 -43
- package/esm/core/Table/actionHandlers/selectHandler.js +0 -114
- package/esm/core/Table/cells/DefaultCell.d.ts +0 -38
- package/esm/core/Table/cells/DefaultCell.js +0 -84
- package/esm/core/Table/cells/EditableCell.d.ts +0 -36
- package/esm/core/Table/cells/EditableCell.js +0 -74
- package/esm/core/Table/cells/index.d.ts +0 -4
- package/esm/core/Table/cells/index.js +0 -2
- package/esm/core/Table/columns/actionColumn.d.ts +0 -40
- package/esm/core/Table/columns/actionColumn.js +0 -92
- package/esm/core/Table/columns/expanderColumn.d.ts +0 -44
- package/esm/core/Table/columns/expanderColumn.js +0 -45
- package/esm/core/Table/columns/index.d.ts +0 -3
- package/esm/core/Table/columns/index.js +0 -3
- package/esm/core/Table/columns/selectionColumn.d.ts +0 -33
- package/esm/core/Table/columns/selectionColumn.js +0 -68
- package/esm/core/Table/filters/BaseFilter.d.ts +0 -16
- package/esm/core/Table/filters/BaseFilter.js +0 -18
- package/esm/core/Table/filters/DateRangeFilter/DatePickerInput.d.ts +0 -24
- package/esm/core/Table/filters/DateRangeFilter/DatePickerInput.js +0 -116
- package/esm/core/Table/filters/DateRangeFilter/DateRangeFilter.d.ts +0 -17
- package/esm/core/Table/filters/DateRangeFilter/DateRangeFilter.js +0 -111
- package/esm/core/Table/filters/FilterButtonBar.d.ts +0 -32
- package/esm/core/Table/filters/FilterButtonBar.js +0 -49
- package/esm/core/Table/filters/FilterToggle.d.ts +0 -10
- package/esm/core/Table/filters/FilterToggle.js +0 -66
- package/esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.d.ts +0 -11
- package/esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +0 -50
- package/esm/core/Table/filters/TextFilter/TextFilter.d.ts +0 -7
- package/esm/core/Table/filters/TextFilter/TextFilter.js +0 -30
- package/esm/core/Table/filters/customFilterFunctions.d.ts +0 -10
- package/esm/core/Table/filters/customFilterFunctions.js +0 -21
- package/esm/core/Table/filters/defaultFilterFunctions.d.ts +0 -61
- package/esm/core/Table/filters/defaultFilterFunctions.js +0 -115
- package/esm/core/Table/filters/index.d.ts +0 -7
- package/esm/core/Table/filters/index.js +0 -4
- package/esm/core/Table/filters/tableFilters.d.ts +0 -53
- package/esm/core/Table/filters/tableFilters.js +0 -21
- package/esm/core/Table/filters/types.d.ts +0 -20
- package/esm/core/Table/filters/types.js +0 -1
- package/esm/core/Table/hooks/index.d.ts +0 -8
- package/esm/core/Table/hooks/index.js +0 -8
- package/esm/core/Table/hooks/useColumnDragAndDrop.d.ts +0 -2
- package/esm/core/Table/hooks/useColumnDragAndDrop.js +0 -114
- package/esm/core/Table/hooks/useExpanderCell.d.ts +0 -3
- package/esm/core/Table/hooks/useExpanderCell.js +0 -28
- package/esm/core/Table/hooks/useResizeColumns.d.ts +0 -37
- package/esm/core/Table/hooks/useResizeColumns.js +0 -354
- package/esm/core/Table/hooks/useScrollToRow.d.ts +0 -11
- package/esm/core/Table/hooks/useScrollToRow.js +0 -34
- package/esm/core/Table/hooks/useSelectionCell.d.ts +0 -2
- package/esm/core/Table/hooks/useSelectionCell.js +0 -18
- package/esm/core/Table/hooks/useStickyColumns.d.ts +0 -2
- package/esm/core/Table/hooks/useStickyColumns.js +0 -55
- package/esm/core/Table/hooks/useSubRowFiltering.d.ts +0 -2
- package/esm/core/Table/hooks/useSubRowFiltering.js +0 -84
- package/esm/core/Table/hooks/useSubRowSelection.d.ts +0 -2
- package/esm/core/Table/hooks/useSubRowSelection.js +0 -32
- package/esm/core/Table/index.d.ts +0 -9
- package/esm/core/Table/index.js +0 -9
- package/esm/core/Table/utils.d.ts +0 -11
- package/esm/core/Table/utils.js +0 -50
- package/esm/core/Tabs/Tabs.d.ts +0 -297
- package/esm/core/Tabs/Tabs.js +0 -399
- package/esm/core/Tag/Tag.d.ts +0 -50
- package/esm/core/Tag/Tag.js +0 -61
- package/esm/core/Tag/TagContainer.d.ts +0 -27
- package/esm/core/Tag/TagContainer.js +0 -22
- package/esm/core/Textarea/Textarea.d.ts +0 -14
- package/esm/core/Textarea/Textarea.js +0 -10
- package/esm/core/ThemeProvider/ThemeContext.d.ts +0 -7
- package/esm/core/ThemeProvider/ThemeContext.js +0 -2
- package/esm/core/ThemeProvider/ThemeProvider.d.ts +0 -103
- package/esm/core/ThemeProvider/ThemeProvider.js +0 -274
- package/esm/core/Tile/Tile.d.ts +0 -329
- package/esm/core/Tile/Tile.js +0 -310
- package/esm/core/TimePicker/TimePicker.d.ts +0 -94
- package/esm/core/TimePicker/TimePicker.js +0 -458
- package/esm/core/Toast/Toast.d.ts +0 -78
- package/esm/core/Toast/Toast.js +0 -214
- package/esm/core/Toast/Toaster.d.ts +0 -47
- package/esm/core/Toast/Toaster.js +0 -128
- package/esm/core/ToggleSwitch/ToggleSwitch.d.ts +0 -52
- package/esm/core/ToggleSwitch/ToggleSwitch.js +0 -64
- package/esm/core/Tooltip/Tooltip.d.ts +0 -95
- package/esm/core/Tooltip/Tooltip.js +0 -240
- package/esm/core/TransferList/TransferList.d.ts +0 -69
- package/esm/core/TransferList/TransferList.js +0 -172
- package/esm/core/Tree/Tree.d.ts +0 -139
- package/esm/core/Tree/Tree.js +0 -238
- package/esm/core/Tree/TreeContext.d.ts +0 -33
- package/esm/core/Tree/TreeContext.js +0 -8
- package/esm/core/Tree/TreeNode.d.ts +0 -132
- package/esm/core/Tree/TreeNode.js +0 -237
- package/esm/core/Tree/TreeNodeExpander.d.ts +0 -9
- package/esm/core/Tree/TreeNodeExpander.js +0 -30
- package/esm/core/Typography/Anchor.d.ts +0 -35
- package/esm/core/Typography/Anchor.js +0 -28
- package/esm/core/Typography/Blockquote.d.ts +0 -18
- package/esm/core/Typography/Blockquote.js +0 -17
- package/esm/core/Typography/Code.d.ts +0 -6
- package/esm/core/Typography/Code.js +0 -2
- package/esm/core/Typography/Kbd.d.ts +0 -33
- package/esm/core/Typography/Kbd.js +0 -31
- package/esm/core/Typography/Text.d.ts +0 -42
- package/esm/core/Typography/Text.js +0 -32
- package/esm/core/VisuallyHidden/VisuallyHidden.d.ts +0 -22
- package/esm/core/VisuallyHidden/VisuallyHidden.js +0 -48
- package/esm/index.d.ts +0 -113
- package/esm/index.js +0 -124
- package/esm/react-table/react-table.d.ts +0 -753
- package/esm/react-table/react-table.js +0 -1
- package/esm/react-table/react-table.types-test.js +0 -656
- package/esm/styles.d.ts +0 -6
- package/esm/styles.js +0 -14
- package/esm/utils/color/ColorValue.d.ts +0 -180
- package/esm/utils/color/ColorValue.js +0 -421
- package/esm/utils/color/index.d.ts +0 -1
- package/esm/utils/color/index.js +0 -1
- package/esm/utils/components/AutoclearingHiddenLiveRegion.d.ts +0 -12
- package/esm/utils/components/AutoclearingHiddenLiveRegion.js +0 -20
- package/esm/utils/components/Box.d.ts +0 -6
- package/esm/utils/components/Box.js +0 -2
- package/esm/utils/components/ButtonBase.d.ts +0 -14
- package/esm/utils/components/ButtonBase.js +0 -32
- package/esm/utils/components/FieldsetBase.d.ts +0 -6
- package/esm/utils/components/FieldsetBase.js +0 -2
- package/esm/utils/components/FocusTrap.d.ts +0 -12
- package/esm/utils/components/FocusTrap.js +0 -40
- package/esm/utils/components/InputContainer.d.ts +0 -19
- package/esm/utils/components/InputContainer.js +0 -58
- package/esm/utils/components/InputFlexContainer.d.ts +0 -36
- package/esm/utils/components/InputFlexContainer.js +0 -39
- package/esm/utils/components/InputWithIcon.d.ts +0 -2
- package/esm/utils/components/InputWithIcon.js +0 -2
- package/esm/utils/components/LineClamp.d.ts +0 -5
- package/esm/utils/components/LineClamp.js +0 -33
- package/esm/utils/components/MiddleTextTruncation.d.ts +0 -37
- package/esm/utils/components/MiddleTextTruncation.js +0 -35
- package/esm/utils/components/OverflowContainer.d.ts +0 -37
- package/esm/utils/components/OverflowContainer.js +0 -49
- package/esm/utils/components/Portal.d.ts +0 -35
- package/esm/utils/components/Portal.js +0 -19
- package/esm/utils/components/Resizer.d.ts +0 -37
- package/esm/utils/components/Resizer.js +0 -255
- package/esm/utils/components/ShadowRoot.d.ts +0 -13
- package/esm/utils/components/ShadowRoot.js +0 -96
- package/esm/utils/components/WithCSSTransition.d.ts +0 -6
- package/esm/utils/components/WithCSSTransition.js +0 -49
- package/esm/utils/components/index.d.ts +0 -15
- package/esm/utils/components/index.js +0 -15
- package/esm/utils/functions/colors.d.ts +0 -20
- package/esm/utils/functions/colors.js +0 -25
- package/esm/utils/functions/date.d.ts +0 -4
- package/esm/utils/functions/date.js +0 -8
- package/esm/utils/functions/dev.d.ts +0 -2
- package/esm/utils/functions/dev.js +0 -10
- package/esm/utils/functions/dom.d.ts +0 -22
- package/esm/utils/functions/dom.js +0 -20
- package/esm/utils/functions/focusable.d.ts +0 -31
- package/esm/utils/functions/focusable.js +0 -68
- package/esm/utils/functions/import.d.ts +0 -12
- package/esm/utils/functions/import.js +0 -23
- package/esm/utils/functions/index.d.ts +0 -10
- package/esm/utils/functions/index.js +0 -10
- package/esm/utils/functions/numbers.d.ts +0 -15
- package/esm/utils/functions/numbers.js +0 -13
- package/esm/utils/functions/polymorphic.d.ts +0 -21
- package/esm/utils/functions/polymorphic.js +0 -48
- package/esm/utils/functions/react.d.ts +0 -8
- package/esm/utils/functions/react.js +0 -17
- package/esm/utils/functions/supports.d.ts +0 -4
- package/esm/utils/functions/supports.js +0 -3
- package/esm/utils/hooks/index.d.ts +0 -17
- package/esm/utils/hooks/index.js +0 -17
- package/esm/utils/hooks/useContainerWidth.d.ts +0 -16
- package/esm/utils/hooks/useContainerWidth.js +0 -18
- package/esm/utils/hooks/useControlledState.d.ts +0 -13
- package/esm/utils/hooks/useControlledState.js +0 -20
- package/esm/utils/hooks/useDragAndDrop.d.ts +0 -13
- package/esm/utils/hooks/useDragAndDrop.js +0 -105
- package/esm/utils/hooks/useEventListener.d.ts +0 -10
- package/esm/utils/hooks/useEventListener.js +0 -15
- package/esm/utils/hooks/useGlobals.d.ts +0 -15
- package/esm/utils/hooks/useGlobals.js +0 -19
- package/esm/utils/hooks/useId.d.ts +0 -5
- package/esm/utils/hooks/useId.js +0 -9
- package/esm/utils/hooks/useIntersection.d.ts +0 -13
- package/esm/utils/hooks/useIntersection.js +0 -30
- package/esm/utils/hooks/useIsClient.d.ts +0 -1
- package/esm/utils/hooks/useIsClient.js +0 -8
- package/esm/utils/hooks/useIsomorphicLayoutEffect.d.ts +0 -10
- package/esm/utils/hooks/useIsomorphicLayoutEffect.js +0 -4
- package/esm/utils/hooks/useLatestRef.d.ts +0 -9
- package/esm/utils/hooks/useLatestRef.js +0 -8
- package/esm/utils/hooks/useMediaQuery.d.ts +0 -1
- package/esm/utils/hooks/useMediaQuery.js +0 -20
- package/esm/utils/hooks/useMergedRefs.d.ts +0 -9
- package/esm/utils/hooks/useMergedRefs.js +0 -11
- package/esm/utils/hooks/useOverflow.d.ts +0 -23
- package/esm/utils/hooks/useOverflow.js +0 -63
- package/esm/utils/hooks/useResizeObserver.d.ts +0 -13
- package/esm/utils/hooks/useResizeObserver.js +0 -23
- package/esm/utils/hooks/useSafeContext.d.ts +0 -6
- package/esm/utils/hooks/useSafeContext.js +0 -7
- package/esm/utils/hooks/useSyncExternalStore.d.ts +0 -5
- package/esm/utils/hooks/useSyncExternalStore.js +0 -32
- package/esm/utils/hooks/useVirtualScroll.d.ts +0 -34
- package/esm/utils/hooks/useVirtualScroll.js +0 -50
- package/esm/utils/hooks/useWarningLogger.d.ts +0 -15
- package/esm/utils/hooks/useWarningLogger.js +0 -6
- package/esm/utils/icons/StatusIconMap.d.ts +0 -7
- package/esm/utils/icons/StatusIconMap.js +0 -27
- package/esm/utils/icons/Svg.d.ts +0 -1
- package/esm/utils/icons/Svg.js +0 -6
- package/esm/utils/icons/SvgCalendar.d.ts +0 -2
- package/esm/utils/icons/SvgCalendar.js +0 -10
- package/esm/utils/icons/SvgCaretDownSmall.d.ts +0 -2
- package/esm/utils/icons/SvgCaretDownSmall.js +0 -10
- package/esm/utils/icons/SvgCaretRightSmall.d.ts +0 -2
- package/esm/utils/icons/SvgCaretRightSmall.js +0 -10
- package/esm/utils/icons/SvgCaretUpSmall.d.ts +0 -2
- package/esm/utils/icons/SvgCaretUpSmall.js +0 -10
- package/esm/utils/icons/SvgCheckmark.d.ts +0 -2
- package/esm/utils/icons/SvgCheckmark.js +0 -10
- package/esm/utils/icons/SvgCheckmarkSmall.d.ts +0 -2
- package/esm/utils/icons/SvgCheckmarkSmall.js +0 -10
- package/esm/utils/icons/SvgChevronLeft.d.ts +0 -2
- package/esm/utils/icons/SvgChevronLeft.js +0 -10
- package/esm/utils/icons/SvgChevronLeftDouble.d.ts +0 -2
- package/esm/utils/icons/SvgChevronLeftDouble.js +0 -10
- package/esm/utils/icons/SvgChevronRight.d.ts +0 -2
- package/esm/utils/icons/SvgChevronRight.js +0 -10
- package/esm/utils/icons/SvgChevronRightDouble.d.ts +0 -2
- package/esm/utils/icons/SvgChevronRightDouble.js +0 -10
- package/esm/utils/icons/SvgChevronRightSmall.d.ts +0 -2
- package/esm/utils/icons/SvgChevronRightSmall.js +0 -10
- package/esm/utils/icons/SvgClose.d.ts +0 -2
- package/esm/utils/icons/SvgClose.js +0 -10
- package/esm/utils/icons/SvgCloseSmall.d.ts +0 -2
- package/esm/utils/icons/SvgCloseSmall.js +0 -10
- package/esm/utils/icons/SvgColumnManager.d.ts +0 -2
- package/esm/utils/icons/SvgColumnManager.js +0 -10
- package/esm/utils/icons/SvgDocument.d.ts +0 -2
- package/esm/utils/icons/SvgDocument.js +0 -10
- package/esm/utils/icons/SvgFilter.d.ts +0 -2
- package/esm/utils/icons/SvgFilter.js +0 -10
- package/esm/utils/icons/SvgFilterHollow.d.ts +0 -2
- package/esm/utils/icons/SvgFilterHollow.js +0 -10
- package/esm/utils/icons/SvgImportantSmall.d.ts +0 -2
- package/esm/utils/icons/SvgImportantSmall.js +0 -10
- package/esm/utils/icons/SvgInfoCircular.d.ts +0 -2
- package/esm/utils/icons/SvgInfoCircular.js +0 -10
- package/esm/utils/icons/SvgMore.d.ts +0 -2
- package/esm/utils/icons/SvgMore.js +0 -10
- package/esm/utils/icons/SvgMoreVertical.d.ts +0 -2
- package/esm/utils/icons/SvgMoreVertical.js +0 -10
- package/esm/utils/icons/SvgNew.d.ts +0 -2
- package/esm/utils/icons/SvgNew.js +0 -10
- package/esm/utils/icons/SvgSearch.d.ts +0 -2
- package/esm/utils/icons/SvgSearch.js +0 -10
- package/esm/utils/icons/SvgSmileyHappy.d.ts +0 -2
- package/esm/utils/icons/SvgSmileyHappy.js +0 -10
- package/esm/utils/icons/SvgSortDown.d.ts +0 -2
- package/esm/utils/icons/SvgSortDown.js +0 -10
- package/esm/utils/icons/SvgSortUp.d.ts +0 -2
- package/esm/utils/icons/SvgSortUp.js +0 -10
- package/esm/utils/icons/SvgStatusError.d.ts +0 -2
- package/esm/utils/icons/SvgStatusError.js +0 -10
- package/esm/utils/icons/SvgStatusSuccess.d.ts +0 -2
- package/esm/utils/icons/SvgStatusSuccess.js +0 -10
- package/esm/utils/icons/SvgStatusWarning.d.ts +0 -2
- package/esm/utils/icons/SvgStatusWarning.js +0 -10
- package/esm/utils/icons/SvgSwap.d.ts +0 -2
- package/esm/utils/icons/SvgSwap.js +0 -10
- package/esm/utils/icons/SvgUpload.d.ts +0 -2
- package/esm/utils/icons/SvgUpload.js +0 -10
- package/esm/utils/icons/index.d.ts +0 -32
- package/esm/utils/icons/index.js +0 -32
- package/esm/utils/index.d.ts +0 -8
- package/esm/utils/index.js +0 -8
- package/esm/utils/meta.d.ts +0 -7
- package/esm/utils/meta.js +0 -6
- package/esm/utils/props.d.ts +0 -28
- package/esm/utils/props.js +0 -1
- package/esm/utils/providers/HydrationProvider.d.ts +0 -16
- package/esm/utils/providers/HydrationProvider.js +0 -38
- package/esm/utils/providers/ScopeProvider.d.ts +0 -26
- package/esm/utils/providers/ScopeProvider.js +0 -43
- package/esm/utils/providers/index.d.ts +0 -2
- package/esm/utils/providers/index.js +0 -2
- package/esm/utils/types.d.ts +0 -5
- package/esm/utils/types.js +0 -1
- package/styles.css +0 -396
package/CHANGELOG.md
DELETED
|
@@ -1,848 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## 3.15.5
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [#2306](https://github.com/iTwin/iTwinUI/pull/2306): Fixed broken expandable content (`subComponent`) when `Table` is asynchronously re-rendered.
|
|
8
|
-
- [#2306](https://github.com/iTwin/iTwinUI/pull/2306): Fixed `Table`'s max depth reached error caused when passing the `getRowId` prop.
|
|
9
|
-
|
|
10
|
-
## 3.15.4
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- [#2297](https://github.com/iTwin/iTwinUI/pull/2297): More robust fix for an issue where nested `Popover`s were automatically closing due to faulty "outside click" detection.
|
|
15
|
-
- [#2295](https://github.com/iTwin/iTwinUI/pull/2295): `ComboBox` with `multiple={true}` properly clears its input's value whenever the filter is cleared. e.g. when an option is toggled or the combobox is unfocused.
|
|
16
|
-
- [#2288](https://github.com/iTwin/iTwinUI/pull/2288): `Table` now displays development-only console warnings when both `subRows` and `subComponent` are simultaneously passed to it.
|
|
17
|
-
- [#2301](https://github.com/iTwin/iTwinUI/pull/2301): Fixed arrow keys page navigation in `TablePaginator`.
|
|
18
|
-
- [#2303](https://github.com/iTwin/iTwinUI/pull/2303): `TablePaginator` shows ellipses only whenever needed.
|
|
19
|
-
|
|
20
|
-
## 3.15.3
|
|
21
|
-
|
|
22
|
-
### Patch Changes
|
|
23
|
-
|
|
24
|
-
- [#2285](https://github.com/iTwin/iTwinUI/pull/2285): Fixed an issue in `ProgressLinear` where passing a `style` prop would cause it to lose its `value`.
|
|
25
|
-
- [#2281](https://github.com/iTwin/iTwinUI/pull/2281): Inputs (e.g. `Input`, `ComboBox`, etc.) with "small" size now have the same height as other field elements with "small" size (e.g. `Button`).
|
|
26
|
-
- [#2274](https://github.com/iTwin/iTwinUI/pull/2274): `IconButton`s inside `TransferList.Toolbar` will now show tooltips on the right side by default to avoid obscuring adjacent buttons in the group. This placement can be changed using the `labelProps.placement` prop on the `IconButton`.
|
|
27
|
-
- [#2274](https://github.com/iTwin/iTwinUI/pull/2274): `TransferList.Toolbar` implements the previously missing [toolbar pattern](https://www.w3.org/WAI/ARIA/apg/patterns/toolbar/), including the arrow-key navigation functionality.
|
|
28
|
-
|
|
29
|
-
## 3.15.2
|
|
30
|
-
|
|
31
|
-
### Patch Changes
|
|
32
|
-
|
|
33
|
-
- [#2275](https://github.com/iTwin/iTwinUI/pull/2275): Made the `ActionType.type` type in `Table` more specific. This will help when using the `action` argument in the `stateReducer` function, for example.
|
|
34
|
-
- [#2273](https://github.com/iTwin/iTwinUI/pull/2273): Fixed an issue where the internal unit test detection logic was incorrectly treating Cypress like a unit test environment.
|
|
35
|
-
|
|
36
|
-
## 3.15.1
|
|
37
|
-
|
|
38
|
-
### Patch Changes
|
|
39
|
-
|
|
40
|
-
- [#2263](https://github.com/iTwin/iTwinUI/pull/2263): Default `Tooltip` delay is now correctly applied.
|
|
41
|
-
- [#2266](https://github.com/iTwin/iTwinUI/pull/2266): All instances of `user-select: all` have been removed.
|
|
42
|
-
- Affected components: `Code`, `InformationPanel`, `Slider`, `Stepper`, `Tile`.
|
|
43
|
-
|
|
44
|
-
## 3.15.0
|
|
45
|
-
|
|
46
|
-
### Minor Changes
|
|
47
|
-
|
|
48
|
-
- [#2233](https://github.com/iTwin/iTwinUI/pull/2233): `Popover` now enables the [`hide` middleware](https://floating-ui.com/docs/hide) to hide the floating content when the trigger is hidden.
|
|
49
|
-
|
|
50
|
-
- This also affects other popover-like components (e.g. `Select`, `ComboBox`, `DropdownMenu`, `SplitButton`).
|
|
51
|
-
- If the floating content gets hidden even when it shouldn't (e.g. due to some custom styles interfering with the trigger's hide detection), consider disabling the `hide` middleware.
|
|
52
|
-
|
|
53
|
-
- [#2233](https://github.com/iTwin/iTwinUI/pull/2233): Added a new `dropdownMenuProps` prop to `SplitButton` for additional control over the menu (e.g. to disable the [`hide` middleware](https://floating-ui.com/docs/hide)).
|
|
54
|
-
|
|
55
|
-
- [#2259](https://github.com/iTwin/iTwinUI/pull/2259): `ComboBox` and `Select` now allow customizing the portal behavior of the floating listbox.
|
|
56
|
-
|
|
57
|
-
- To customize `ComboBox` portaling behavior, use `dropdownMenuProps.portal`.
|
|
58
|
-
- To customize `Select` portaling behavior, use `popoverProps.portal`.
|
|
59
|
-
|
|
60
|
-
<details>
|
|
61
|
-
<summary>Example</summary>
|
|
62
|
-
|
|
63
|
-
To turn off the default portaling behavior, use `portal: false`.
|
|
64
|
-
|
|
65
|
-
```jsx
|
|
66
|
-
<ComboBox
|
|
67
|
-
options={[…]}
|
|
68
|
-
dropdownMenuProps={{ portal: false }}
|
|
69
|
-
/>
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
```jsx
|
|
73
|
-
<Select
|
|
74
|
-
options={[…]}
|
|
75
|
-
popoverProps={{ portal: false }}
|
|
76
|
-
/>
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
</details>
|
|
80
|
-
|
|
81
|
-
- [#2238](https://github.com/iTwin/iTwinUI/pull/2238): Passing `styleType="borderless"` to `SearchBox.ExpandButton` now works as expected. This is because collapsed `SearchBox` will now hide its border and background in favor of the ones from `SearchBox.ExpandButton`.
|
|
82
|
-
|
|
83
|
-
<details>
|
|
84
|
-
<summary>Example</summary>
|
|
85
|
-
|
|
86
|
-
```diff
|
|
87
|
-
<SearchBox expandable>
|
|
88
|
-
<SearchBox.CollapsedState>
|
|
89
|
-
- <SearchBox.ExpandButton/>
|
|
90
|
-
+ <SearchBox.ExpandButton styleType="borderless"/>
|
|
91
|
-
</SearchBox.CollapsedState>
|
|
92
|
-
<SearchBox.ExpandedState>…</SearchBox.ExpandedState>
|
|
93
|
-
</SearchBox>
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
</details>
|
|
97
|
-
|
|
98
|
-
- [#2211](https://github.com/iTwin/iTwinUI/pull/2211): Added the ability to have custom `props` for each sub-component of `ColorPicker`.
|
|
99
|
-
- New **ColorBuilder** props: `colorFieldProps`, `colorDotProps`, `opacitySliderProps`, and `hueSliderProps`.
|
|
100
|
-
- New **ColorInputPanel** props: `panelLabelProps`, `colorInputContainerProps`, `inputFieldsGroupProps` and `swapColorFormatButtonProps`.
|
|
101
|
-
- New **ColorPalette** props: `labelProps`, and `paletteContainerProps`.
|
|
102
|
-
|
|
103
|
-
### Patch Changes
|
|
104
|
-
|
|
105
|
-
- [#2208](https://github.com/iTwin/iTwinUI/pull/2208): Fixed an issue in `Table` where `subComponent` was broken when enabling virtualization.
|
|
106
|
-
- [#2239](https://github.com/iTwin/iTwinUI/pull/2239): Fixed `scrollToRow` in un-virtualized `Table`. In virtualized `Table`, `scrollToRow` now scrolls to the top for consistent behavior.
|
|
107
|
-
- [#2233](https://github.com/iTwin/iTwinUI/pull/2233): `Popover`'s `middleware.hide` prop is now respected.
|
|
108
|
-
- [#2208](https://github.com/iTwin/iTwinUI/pull/2208): `Table`'s animation to show and hide its `subComponent` is now removed.
|
|
109
|
-
- [#2252](https://github.com/iTwin/iTwinUI/pull/2252): Fixed an issue where some components (e.g. `VisuallyHidden` inside `ProgressRadial`) were losing their styles when reparented into a different window.
|
|
110
|
-
|
|
111
|
-
## 3.14.2
|
|
112
|
-
|
|
113
|
-
### Patch Changes
|
|
114
|
-
|
|
115
|
-
- [#2217](https://github.com/iTwin/iTwinUI/pull/2217): Fixed the `Footer`'s `translatedTitles` prop's type to allow passing partial translations.
|
|
116
|
-
- [#2218](https://github.com/iTwin/iTwinUI/pull/2218): Fixed a `Table` bug where custom `Cell` content was not taking up the entire available width in some cases.
|
|
117
|
-
- [#2216](https://github.com/iTwin/iTwinUI/pull/2216): Fixed the fallback CSS logic in `ThemeProvider` to load the correct stylesheet version.
|
|
118
|
-
|
|
119
|
-
## 3.14.1
|
|
120
|
-
|
|
121
|
-
### Patch Changes
|
|
122
|
-
|
|
123
|
-
- [#2209](https://github.com/iTwin/iTwinUI/pull/2209): Fixed an issue where nested `Popover`s were automatically closing due to faulty "outside click" detection.
|
|
124
|
-
- [#2213](https://github.com/iTwin/iTwinUI/pull/2213): Dev-only warnings have been improved so that they are correctly shown for every individual instance of a component. Additionally, these warnings are now logged using `console.error`, which results in a better stack trace.
|
|
125
|
-
|
|
126
|
-
## 3.14.0
|
|
127
|
-
|
|
128
|
-
### Minor Changes
|
|
129
|
-
|
|
130
|
-
- [#2040](https://github.com/iTwin/iTwinUI/pull/2040): The colors of disabled controls have been adjusted make them easier to distinguish from regular controls.
|
|
131
|
-
- Also added hover state to disabled button, select, input, textarea, and actionable list item to help with accessibility.
|
|
132
|
-
- [#2153](https://github.com/iTwin/iTwinUI/pull/2153): Nested `ThemeProvider`s will now reuse the same toaster instead of creating new ones.
|
|
133
|
-
- [#2201](https://github.com/iTwin/iTwinUI/pull/2201): `List` and `ListItem` will now be rendered as `<div>`s instead of `<ul>`/`<li>`. This change makes these components less restrictive and less error-prone to use.
|
|
134
|
-
- [#2187](https://github.com/iTwin/iTwinUI/pull/2187): Floating elements will now use `position: fixed` instead of `position: absolute`.
|
|
135
|
-
- This fixes some issues when a floating element is placed near the edge of the viewport.
|
|
136
|
-
- Some components affected: `Tooltip`, `Popover`, `Select`, `DropdownMenu`, `ComboBox`, etc.
|
|
137
|
-
- [#2190](https://github.com/iTwin/iTwinUI/pull/2190): `Popover` now enables the [`size` middleware](https://floating-ui.com/docs/size) to prevent it from overflowing the viewport.
|
|
138
|
-
- This also affects other popover-like components (e.g. `Select`, `ComboBox`, `DropdownMenu`).
|
|
139
|
-
- `Popover` now also sets a default max-height of `400px` to prevent it from becoming too large. This can be customized using the `middleware.size.maxHeight` prop.
|
|
140
|
-
- [#2205](https://github.com/iTwin/iTwinUI/pull/2205): `tableFilters.TextFilter` now prevents the user from applying the filter when the text input is empty.
|
|
141
|
-
- [#2205](https://github.com/iTwin/iTwinUI/pull/2205): `BaseFilter` now renders as a `<form>` and `FilterButtonBar` now renders a `<button type="submit">`. Together, this enables the use of browser's built-in validation before applying filters.
|
|
142
|
-
|
|
143
|
-
- The `setFilter` prop in `FilterButtonBar` has been deprecated, as `onSubmit` should be used instead.
|
|
144
|
-
<details>
|
|
145
|
-
<summary>Diff</summary>
|
|
146
|
-
|
|
147
|
-
```diff
|
|
148
|
-
<BaseFilter
|
|
149
|
-
+ onSubmit={() => setFilter(text)}
|
|
150
|
-
>
|
|
151
|
-
…
|
|
152
|
-
<FilterButtonBar
|
|
153
|
-
- setFilter={() => setFilter(text)}
|
|
154
|
-
/>
|
|
155
|
-
</BaseFilter>
|
|
156
|
-
```
|
|
157
|
-
|
|
158
|
-
</details>
|
|
159
|
-
|
|
160
|
-
### Patch Changes
|
|
161
|
-
|
|
162
|
-
- [#2194](https://github.com/iTwin/iTwinUI/pull/2194): Fixed an issue where CommonJS files in the development build output (`DEV-cjs/` directory) were being treated as ESM, inadvertently causing runtime errors during development.
|
|
163
|
-
- [#2185](https://github.com/iTwin/iTwinUI/pull/2185): Portal containers will now default to a `<div>` rendered at the end of `<body>` instead of a `<div>` rendered inside the `<ThemeProvider>`.
|
|
164
|
-
- [#2202](https://github.com/iTwin/iTwinUI/pull/2202): `IconButton` will now reroute the HTML `title` prop to its own `label` prop for better accessibility. The `title` prop has also been marked deprecated to encourage the use of `label`.
|
|
165
|
-
- [#2168](https://github.com/iTwin/iTwinUI/pull/2168): Adjusted focus management in `Popover` so that it allows interactive elements inside the popover to be more easily focused. This more closely matches the behavior of the HTML `<dialog>` element, which focuses the first interactive element inside it.
|
|
166
|
-
- [#2207](https://github.com/iTwin/iTwinUI/pull/2207): Fixed a bug where `pointer-events: none` was sometimes applied to the main `<body>` when a `MenuItem` was hovered in a popout window.
|
|
167
|
-
- [#2189](https://github.com/iTwin/iTwinUI/pull/2189): Floating elements will now have a few pixels of padding from the edge of the viewport.
|
|
168
|
-
- [#2202](https://github.com/iTwin/iTwinUI/pull/2202): `IconButton` will now display warnings during development when it's missing a label.
|
|
169
|
-
- [#2178](https://github.com/iTwin/iTwinUI/pull/2178): Reduced layout thrashing on `Table` component by memoizing an expensive `ref` function.
|
|
170
|
-
- [#2194](https://github.com/iTwin/iTwinUI/pull/2194): The development build output is now also formatted using `prettier` for easier debugging.
|
|
171
|
-
|
|
172
|
-
## 3.13.4
|
|
173
|
-
|
|
174
|
-
### Patch Changes
|
|
175
|
-
|
|
176
|
-
- [#2138](https://github.com/iTwin/iTwinUI/pull/2138): Fixed an issue in `Table` column resizing where passing in a `width` value that was less than the column's default `minWidth` would cause an undesirable shift when the column was resized.
|
|
177
|
-
- [#2170](https://github.com/iTwin/iTwinUI/pull/2170): Fixed an issue in virtualized `Tree` where the `style` prop passed to `TreeNode` was not respected.
|
|
178
|
-
- [#2170](https://github.com/iTwin/iTwinUI/pull/2170): Fixed an issue in virtualized `Tree` where horizontal scroll was impossible to achieve.
|
|
179
|
-
- [#2174](https://github.com/iTwin/iTwinUI/pull/2174): Fixed an issue in `Table` where the virtualizer was being initialized when the `enableVirtualization` prop wasn't set to `true`.
|
|
180
|
-
|
|
181
|
-
## 3.13.3
|
|
182
|
-
|
|
183
|
-
### Patch Changes
|
|
184
|
-
|
|
185
|
-
- [#2163](https://github.com/iTwin/iTwinUI/pull/2163): Fixed an issue in virtualized `Table` where horizontal scroll was broken.
|
|
186
|
-
|
|
187
|
-
## 3.13.2
|
|
188
|
-
|
|
189
|
-
### Patch Changes
|
|
190
|
-
|
|
191
|
-
- [#2143](https://github.com/iTwin/iTwinUI/pull/2143): Added `border-radius` to the `Table` component so that the border radius is correctly applied to the `Table`'s corners.
|
|
192
|
-
- [#2161](https://github.com/iTwin/iTwinUI/pull/2161): Fixed issue where `emptyTableContent` would not appear on virutalized `Table` components.
|
|
193
|
-
|
|
194
|
-
## 3.13.1
|
|
195
|
-
|
|
196
|
-
### Patch Changes
|
|
197
|
-
|
|
198
|
-
- [#2147](https://github.com/iTwin/iTwinUI/pull/2147): Fixed a CSS issue in `ExpandableBlock` where its content wouldn't stay constrained by the width of the parent.
|
|
199
|
-
- [#2148](https://github.com/iTwin/iTwinUI/pull/2148): Fixed regression where the value of the `toggleRowSelected` action for the `Table` would be undefined when `selectSubRows` was set to `false`.
|
|
200
|
-
|
|
201
|
-
## 3.13.0
|
|
202
|
-
|
|
203
|
-
### Minor Changes
|
|
204
|
-
|
|
205
|
-
- [#2106](https://github.com/iTwin/iTwinUI/pull/2106): All internal CSS class prefixes have been changed to prevent style conflicts across minor versions.
|
|
206
|
-
|
|
207
|
-
- While this is _not_ considered a breaking change according to our [support policy](https://github.com/iTwin/iTwinUI/wiki/Support-policy), this change might affect you if you ignore our pleas to not rely on these internal class names. The recommendation is to pass your own custom `className` through props.
|
|
208
|
-
|
|
209
|
-
- [#2131](https://github.com/iTwin/iTwinUI/pull/2131): Development-only warnings will now be properly excluded from the production build. This is done using a separate `"development"` entrypoint listed in `package.json#exports`.
|
|
210
|
-
|
|
211
|
-
- [#2135](https://github.com/iTwin/iTwinUI/pull/2135): Changed the column manager from a `DropdownMenu` to a `Popover` to fix invalid markup and accessibility issues.
|
|
212
|
-
|
|
213
|
-
- Added dependency on `@tanstack/react-virtual` to replace the custom virtual-scroll implementation. This affects the `enableVirtualization` prop in `ComboBox`, `Table`, and `Tree`.
|
|
214
|
-
|
|
215
|
-
- [#2061](https://github.com/iTwin/iTwinUI/pull/2061): Virtualized `ComboBox` now correctly supports dynamic sizing, e.g. when options both with and without `subLabel` are present.
|
|
216
|
-
- [#2092](https://github.com/iTwin/iTwinUI/pull/2092): Virtualized `Table` has been improved so that scrolling no longer jumps when rows are scrolled past.
|
|
217
|
-
- [#2139](https://github.com/iTwin/iTwinUI/pull/2139): Virtualized `Tree` no longer requires a wrapping scrollable element, since the tree itself is scrollable now.
|
|
218
|
-
<details>
|
|
219
|
-
<summary>Diff</summary>
|
|
220
|
-
|
|
221
|
-
```diff
|
|
222
|
-
- <div style={{overflow: 'auto', height: 'min(400px, 90vh)'}}>
|
|
223
|
-
<Tree
|
|
224
|
-
enableVirtualization
|
|
225
|
-
+ style={{height: 'min(400px, 90vh)'}}
|
|
226
|
-
/>
|
|
227
|
-
- </div>
|
|
228
|
-
```
|
|
229
|
-
|
|
230
|
-
</details>
|
|
231
|
-
|
|
232
|
-
### Patch Changes
|
|
233
|
-
|
|
234
|
-
- [#2139](https://github.com/iTwin/iTwinUI/pull/2139): Added `overflow: auto` to `Tree` component to provide more consistent styling across components.
|
|
235
|
-
- [#2137](https://github.com/iTwin/iTwinUI/pull/2137): Console warnings will now be displayed during development when multiple versions of iTwinUI are detected.
|
|
236
|
-
- [#2145](https://github.com/iTwin/iTwinUI/pull/2145): Fixed an issue where the `Overlay` component was causing bundler warnings about a non-analyzable expression used in a dependency.
|
|
237
|
-
- [#2135](https://github.com/iTwin/iTwinUI/pull/2135): The `Table` column manager button's open state no longer has the `Button`'s blue active color.
|
|
238
|
-
- [#2142](https://github.com/iTwin/iTwinUI/pull/2142): Added `displayName`s to all components that were previously missing them.
|
|
239
|
-
- [#2141](https://github.com/iTwin/iTwinUI/pull/2141): `displayName`s have been eliminated from the production build, so they only show up during development.
|
|
240
|
-
- [#2135](https://github.com/iTwin/iTwinUI/pull/2135): `ActionColumn`'s `dropdownMenuProps` no longer exposes the unnecessary `matchWidth` prop.
|
|
241
|
-
|
|
242
|
-
## 3.12.2
|
|
243
|
-
|
|
244
|
-
### Patch Changes
|
|
245
|
-
|
|
246
|
-
- [#2127](https://github.com/iTwin/iTwinUI/pull/2127): Fixed an issue in `Dialog` and `Modal`, where long titles were not wrapping properly.
|
|
247
|
-
|
|
248
|
-
## 3.12.1
|
|
249
|
-
|
|
250
|
-
### Patch Changes
|
|
251
|
-
|
|
252
|
-
- [#2124](https://github.com/iTwin/iTwinUI/pull/2124): Fixed a CommonJS-related error where an internal variable was accidentally trying to override the [`module`](https://nodejs.org/api/modules.html#the-module-object) object.
|
|
253
|
-
- [#2122](https://github.com/iTwin/iTwinUI/pull/2122): The new JSX transform added in [v3.12.0](https://github.com/iTwin/iTwinUI/releases/tag/%40itwin%2Fitwinui-react%403.12.0) has been reverted, because React 17 [doesn't properly support it](https://github.com/facebook/react/issues/20235).
|
|
254
|
-
|
|
255
|
-
## 3.12.0
|
|
256
|
-
|
|
257
|
-
### Minor Changes
|
|
258
|
-
|
|
259
|
-
- [#2048](https://github.com/iTwin/iTwinUI/pull/2048): Added a new `defaultValue` prop to `ComboBox`. This is useful when you don't want to maintain your own state but still want to control the initial `value`.
|
|
260
|
-
- [#2076](https://github.com/iTwin/iTwinUI/pull/2076): Added open popover styling to `Button` (and `IconButton`). When an associated `Popover` or `DropdownMenu` is open, the button will now get a subtle visual indication.
|
|
261
|
-
- [#2111](https://github.com/iTwin/iTwinUI/pull/2111): Added the ability to pass arbitrary DOM props to `TreeNode`.
|
|
262
|
-
- [#2107](https://github.com/iTwin/iTwinUI/pull/2107): A new `meta` object is exported, containing meta information about the package.
|
|
263
|
-
|
|
264
|
-
```ts
|
|
265
|
-
import { meta } from '@itwin/itwinui-react';
|
|
266
|
-
|
|
267
|
-
console.log(meta.version, meta.module); // 3.12.0, ESM
|
|
268
|
-
```
|
|
269
|
-
|
|
270
|
-
- [#2048](https://github.com/iTwin/iTwinUI/pull/2048): Fixed a bug in `ComboBox` where the controlled state (`value` prop) was not given priority over the uncontrolled state. As a result:
|
|
271
|
-
|
|
272
|
-
- Setting the default value using `value={myDefaultValue}` will no longer work. Instead, use the new `defaultValue` prop.
|
|
273
|
-
- Resetting the value using `value={null}` will now force the ComboBox to be in _controlled_ mode. If you want to reset the value but be in _uncontrolled_ mode, then use `value={undefined}` instead.
|
|
274
|
-
|
|
275
|
-
- [#2101](https://github.com/iTwin/iTwinUI/pull/2101): Passing an `IconButton` to `Tile.QuickAction` and `Tile.TypeIndicator` is now deprecated. Use `Tile.IconButton` instead.
|
|
276
|
-
- [#2021](https://github.com/iTwin/iTwinUI/pull/2021): In menu-like components (`DropdownMenu`, `SplitButton`, `Table`'s column manager), using the _mouse_ to operate the menu will no longer move focus like it does when using the _keyboard_.
|
|
277
|
-
- [#2021](https://github.com/iTwin/iTwinUI/pull/2021): `MenuItem`'s `tabIndex` now is `0` when it's selected and `-1` when it's not. Additionally, `MenuItem` passed inside most menu type components (e.g. `DropdownMenu`, `SplitButton`, `Table`'s column manager, etc.) have roving `tabIndex`.
|
|
278
|
-
- Dependency changes:
|
|
279
|
-
- [#2116](https://github.com/iTwin/iTwinUI/pull/2116): Bumped the minimum required version of `@floating-ui/react` to `0.26.18`.
|
|
280
|
-
- [#2100](https://github.com/iTwin/iTwinUI/pull/2100): Replaced dependency on `tslib` with `@swc/helpers`. This is used mainly by the CommonJS build for [interop reasons](https://www.typescriptlang.org/docs/handbook/modules/appendices/esm-cjs-interop.html).
|
|
281
|
-
|
|
282
|
-
### Patch Changes
|
|
283
|
-
|
|
284
|
-
- [#2117](https://github.com/iTwin/iTwinUI/pull/2117): Fixed an error in `Select` caused by updating `@floating-ui/react` to `0.26.18`.
|
|
285
|
-
- [#2101](https://github.com/iTwin/iTwinUI/pull/2101): Fixed a small visual bug in `Tile.IconButton` where the hover state wasn't working.
|
|
286
|
-
- [#2021](https://github.com/iTwin/iTwinUI/pull/2021): `MenuItem` now renders as a `<button>` instead of a `<div>`.
|
|
287
|
-
- [#2113](https://github.com/iTwin/iTwinUI/pull/2113): Fixed an issue where a portaled `Popover` was sometimes showing up in the wrong window during the first render.
|
|
288
|
-
- [#2048](https://github.com/iTwin/iTwinUI/pull/2048): Fixed a bug in `ComboBox` where the `isSelected` passed to `itemRenderer` was always `false` whenever `multiple` was `true`.
|
|
289
|
-
|
|
290
|
-
### Build Output Changes
|
|
291
|
-
|
|
292
|
-
- [#2102](https://github.com/iTwin/iTwinUI/pull/2102): The build output is now generated using SWC and uses the [new JSX transform](https://react.dev/link/new-jsx-transform) instead of `React.createElement`.
|
|
293
|
-
- [#2118](https://github.com/iTwin/iTwinUI/pull/2118): Type declarations are now generated using TypeScript 5.5 with `"module": "NodeNext"`.
|
|
294
|
-
- [#2118](https://github.com/iTwin/iTwinUI/pull/2118): The `"exports"` fallback for `/react-table` types is now handled using [`typesVersions`](https://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html#version-selection-with-typesversions).
|
|
295
|
-
- [#2100](https://github.com/iTwin/iTwinUI/pull/2100): The build output is now (again) formatted using `prettier` for easier debugging.
|
|
296
|
-
- [#2100](https://github.com/iTwin/iTwinUI/pull/2100): All code comments have been removed from the build output.
|
|
297
|
-
|
|
298
|
-
## 3.11.3
|
|
299
|
-
|
|
300
|
-
### Patch Changes
|
|
301
|
-
|
|
302
|
-
- [#2098](https://github.com/iTwin/iTwinUI/pull/2098): Fixed a regression in `Table` component where `selectSubRows` prop being set to `false` would cause parent rows to become uncheckable.
|
|
303
|
-
|
|
304
|
-
## 3.11.2
|
|
305
|
-
|
|
306
|
-
### Patch Changes
|
|
307
|
-
|
|
308
|
-
- [#2084](https://github.com/iTwin/iTwinUI/pull/2084): Fixed an issue where a portaled `ThemeProvider` would try to re-render infinitely.
|
|
309
|
-
- [#2083](https://github.com/iTwin/iTwinUI/pull/2083): Removed the accidentally added no-op `loading` prop in `IconButton`.
|
|
310
|
-
- [#2083](https://github.com/iTwin/iTwinUI/pull/2083): Fixed a visual bug where elements like `startIcon` and `endIcon` inside the `Button` (or its derivatives) were not hidden when the button was in a loading state. Now,`loading={true}` on `Button` hides _all_ its children except the `ProgressRadial`.
|
|
311
|
-
|
|
312
|
-
## 3.11.1
|
|
313
|
-
|
|
314
|
-
### Patch Changes
|
|
315
|
-
|
|
316
|
-
- [#2074](https://github.com/iTwin/iTwinUI/pull/2074): Fixed indentation of `Tree` nodes to be aligned regardless of the presence of expander button.
|
|
317
|
-
- [#2064](https://github.com/iTwin/iTwinUI/pull/2064): Adjusted `Dialog` and `ExpandableBlock` to round some CSS `transform` values. This helps avoid blurry text on Windows in some cases.
|
|
318
|
-
- [#2055](https://github.com/iTwin/iTwinUI/pull/2055): Fixed an issue in `Breadcrumbs.Item` where using a custom link component (e.g. `as={Link}` for client side routing) would break the CSS styling.
|
|
319
|
-
- [#2071](https://github.com/iTwin/iTwinUI/pull/2071): Fixed a minor issue in `ComboBox` where a `label` attribute was accidentally being added to options in the DOM.
|
|
320
|
-
- [#2068](https://github.com/iTwin/iTwinUI/pull/2068): Fixed `EditableCell` so that it correctly merges `className` and `style` props with the corresponding internal props.
|
|
321
|
-
- [#2073](https://github.com/iTwin/iTwinUI/pull/2073): Fixed CommonJS types exports for the `/react-table` entrypoint.
|
|
322
|
-
- [#2055](https://github.com/iTwin/iTwinUI/pull/2055): Fixed a regression from `v3.10.0` where non-button and non-link `Breadcrumbs.Item`s were getting a hover styling as if it were a button.
|
|
323
|
-
|
|
324
|
-
## 3.11.0
|
|
325
|
-
|
|
326
|
-
### Minor Changes
|
|
327
|
-
|
|
328
|
-
- [#2058](https://github.com/iTwin/iTwinUI/pull/2058): Added new `loading` prop to `Button`. This is useful when you want to display a brief loading state after the user clicks the button.
|
|
329
|
-
|
|
330
|
-
```jsx
|
|
331
|
-
<Button loading={isProcessing}>Click me</Button>
|
|
332
|
-
```
|
|
333
|
-
|
|
334
|
-
- [#2057](https://github.com/iTwin/iTwinUI/pull/2057): Updated warning and negative background colors to better match the rest of the color palette.
|
|
335
|
-
- [#2060](https://github.com/iTwin/iTwinUI/pull/2060): Updated `Tooltip` to automatically use the [`popover` API](https://developer.mozilla.org/en-US/docs/Web/API/Popover_API) in supported browsers. This ensures that tooltips appear in the top layer, avoiding stacking context issues.
|
|
336
|
-
- [#2022](https://github.com/iTwin/iTwinUI/pull/2022): Added optional props to `TreeNode` for customization: `nodeProps`, `contentProps`, `labelProps`, `titleProps`, `sublabelProps`, `checkboxProps`, `iconProps`, `expanderProps` and `subTreeProps`.
|
|
337
|
-
|
|
338
|
-
### Patch Changes
|
|
339
|
-
|
|
340
|
-
- [#2042](https://github.com/iTwin/iTwinUI/pull/2042): Fixed `Table` empty state horizontal alignment when table is very narrow.
|
|
341
|
-
- [#2054](https://github.com/iTwin/iTwinUI/pull/2054): Removed unnecessary gap below the inline `<InputGrid>` when no secondary line (`StatusMessage`) is present. Some other affected components: `LabeledInput`, `LabeledSelect`, `LabeledTextarea`.
|
|
342
|
-
- [#2049](https://github.com/iTwin/iTwinUI/pull/2049): Adjusted disabled controls' borders to slightly increase color contrast.
|
|
343
|
-
- [#2043](https://github.com/iTwin/iTwinUI/pull/2043): Adjusted the behavior of buttons so that double tapping them doesn't zoom the viewport on iOS.
|
|
344
|
-
- [#2044](https://github.com/iTwin/iTwinUI/pull/2044): Fixed a rare hydration error in `Surface` caused by using an empty string inside the `style` attribute.
|
|
345
|
-
|
|
346
|
-
## 3.10.1
|
|
347
|
-
|
|
348
|
-
### Patch Changes
|
|
349
|
-
|
|
350
|
-
- [#2031](https://github.com/iTwin/iTwinUI/pull/2031): Fixed an issue where popovers and dropdown menus used with `SidenavButton` were showing up inside a tooltip.
|
|
351
|
-
- [#2030](https://github.com/iTwin/iTwinUI/pull/2030): Fixed a visual bug where items in a `ButtonGroup` were displaying a double border when an associated `Popover` was opened.
|
|
352
|
-
- [#2026](https://github.com/iTwin/iTwinUI/pull/2026): Submenus within a `DropdownMenu` will now consistently require less precision when moving the mouse between the parent item and the submenu.
|
|
353
|
-
|
|
354
|
-
## 3.10.0
|
|
355
|
-
|
|
356
|
-
### Minor Changes
|
|
357
|
-
|
|
358
|
-
- [#1942](https://github.com/iTwin/iTwinUI/pull/1942): Clicking a `MenuItem` with `submenuItems` now toggles the submenu visibility.
|
|
359
|
-
- If both `submenuItems` and `onClick` props are passed, then clicking the `MenuItem` will toggle the submenu visibility but also _still_ call the `onClick`. However, this behavior can lead to a confusing UX and is not recommended, so a warning will be shown.
|
|
360
|
-
- [#1919](https://github.com/iTwin/iTwinUI/pull/1919): Aggregated a subset of CSS styles across some field components: `Button`, `Input`, `Textarea`, and `Select`, in order to reduce the CSS size and improve visual consistency. Some resulting changes:
|
|
361
|
-
- `Input`, `Textarea`, and `Select` have a similar hover state as `Button`.
|
|
362
|
-
- `Input`, `Textarea`, and `Select` now show their value as greyed out when disabled.
|
|
363
|
-
- [#1942](https://github.com/iTwin/iTwinUI/pull/1942): `DropdownMenu`'s keyboard navigation, hover triggers, and overall behavior has been improved.
|
|
364
|
-
- [#2010](https://github.com/iTwin/iTwinUI/pull/2010): Added new `labelProps` to `ToggleSwitch` to allow for customization of the label element.
|
|
365
|
-
- [#2011](https://github.com/iTwin/iTwinUI/pull/2011): Added dependency on `jotai`.
|
|
366
|
-
|
|
367
|
-
### Patch Changes
|
|
368
|
-
|
|
369
|
-
- [#1942](https://github.com/iTwin/iTwinUI/pull/1942): Disabled `MenuItem`s no longer show their submenu.
|
|
370
|
-
- [#1942](https://github.com/iTwin/iTwinUI/pull/1942): Fixed an issue in `DropdownMenu` where the submenus would not close in some circumstances, despite calling `close()` in `onClick`.
|
|
371
|
-
- [#2013](https://github.com/iTwin/iTwinUI/pull/2013): Fixed an issue with `Table` row selection not correctly deselecting all sub rows when the row has disabled sub rows or when some rows are filtered out.
|
|
372
|
-
- [#2009](https://github.com/iTwin/iTwinUI/pull/2009): Fixed an issue where `Popover` wasn't respecting the `ThemeProvider`'s `portalContainer`.
|
|
373
|
-
- [#2011](https://github.com/iTwin/iTwinUI/pull/2011): When `ThemeProvider` is portaled into popup windows, it will now automatically create a portal container in the correct document, avoiding the need to manually specify `portalContainer`.
|
|
374
|
-
- [#1919](https://github.com/iTwin/iTwinUI/pull/1919): The small sized `TablePaginator`'s buttons are now squares instead of rectangles. This makes it consistent with the shape of the regular sized `TablePaginator` buttons.
|
|
375
|
-
- [#1919](https://github.com/iTwin/iTwinUI/pull/1919): The hover styling of `Breadcrumbs.Item` has been made more consistent across buttons and anchors.
|
|
376
|
-
|
|
377
|
-
## 3.9.1
|
|
378
|
-
|
|
379
|
-
### Patch Changes
|
|
380
|
-
|
|
381
|
-
- [#2005](https://github.com/iTwin/iTwinUI/pull/2005): Improved `IconButton` so that its tooltip is removed from the DOM when not visible.
|
|
382
|
-
- [#2004](https://github.com/iTwin/iTwinUI/pull/2004): Fixed a performance issue in `Tooltip` where expensive calculations were being run even when the tooltip was not visible.
|
|
383
|
-
|
|
384
|
-
## 3.9.0
|
|
385
|
-
|
|
386
|
-
### Minor Changes
|
|
387
|
-
|
|
388
|
-
- [#1994](https://github.com/iTwin/iTwinUI/pull/1994): Added `role="toolbar"` support to `ButtonGroup`. Use this to enable the [toolbar pattern](https://www.w3.org/WAI/ARIA/apg/patterns/toolbar/), with arrow-key navigation functionality.
|
|
389
|
-
|
|
390
|
-
```jsx
|
|
391
|
-
<ButtonGroup role="toolbar">
|
|
392
|
-
```
|
|
393
|
-
|
|
394
|
-
- [#1986](https://github.com/iTwin/iTwinUI/pull/1986): `tableFilters.DateRangeFilter` now accepts `showYearSelection` to enable year-selection buttons.
|
|
395
|
-
|
|
396
|
-
```js
|
|
397
|
-
tableFilters.DateRangeFilter({ showYearSelection: true });
|
|
398
|
-
```
|
|
399
|
-
|
|
400
|
-
- [#1971](https://github.com/iTwin/iTwinUI/pull/1971): Added a new `stretched` prop to `Button` to allow it to span the full width of its container.
|
|
401
|
-
- [#1996](https://github.com/iTwin/iTwinUI/pull/1996): `Anchor` elements inside `Text` will now be underlined by default.
|
|
402
|
-
|
|
403
|
-
### Patch Changes
|
|
404
|
-
|
|
405
|
-
- [#1997](https://github.com/iTwin/iTwinUI/pull/1997): Fixed an issue where draggable `Dialog` was overriding its intrinsic size after mount.
|
|
406
|
-
- [#1981](https://github.com/iTwin/iTwinUI/pull/1981): Fixed `jest` detection logic to correctly exit from scenarios that should not be executed in unit test environments.
|
|
407
|
-
- [#1982](https://github.com/iTwin/iTwinUI/pull/1982): Fixed an issue where some components (such as `InputGroup`) were trying to render `undefined`, which is not supported in React 17.
|
|
408
|
-
- [#1986](https://github.com/iTwin/iTwinUI/pull/1986): Updated the date pickers in `tableFilters.DateRangeFilter` to _not_ display dates outside the current month.
|
|
409
|
-
|
|
410
|
-
## 3.8.1
|
|
411
|
-
|
|
412
|
-
### Patch Changes
|
|
413
|
-
|
|
414
|
-
- [#1964](https://github.com/iTwin/iTwinUI/pull/1964): Fixed a bug with `InformationPanel` where changing orientation after resizing the panel would cause the panel to maintain it's resized width/height.
|
|
415
|
-
|
|
416
|
-
## 3.8.0
|
|
417
|
-
|
|
418
|
-
### Minor Changes
|
|
419
|
-
|
|
420
|
-
- [#1957](https://github.com/iTwin/iTwinUI/pull/1957): Bumped the minimum required version of `@floating-ui/react` from `^0.26.3` to `^0.26.10`. (Make sure to also update transitive deps!)
|
|
421
|
-
|
|
422
|
-
### Patch Changes
|
|
423
|
-
|
|
424
|
-
- [#1962](https://github.com/iTwin/iTwinUI/pull/1962): Hydration checks have been added in some components to facilitate showing pure client-rendered content more eagerly.
|
|
425
|
-
- [#1968](https://github.com/iTwin/iTwinUI/pull/1968): Fixed a regression in `Table` where the layout of a custom `Cell` unexpectedly changed from horizontal to vertical.
|
|
426
|
-
|
|
427
|
-
## 3.7.4
|
|
428
|
-
|
|
429
|
-
### Patch Changes
|
|
430
|
-
|
|
431
|
-
- [#1944](https://github.com/iTwin/iTwinUI/pull/1944): Fixed an issue where `Tooltip` would stay open after clicking on the trigger element. The tooltip will now be correctly dismissed upon click.
|
|
432
|
-
|
|
433
|
-
Also affects other components that use tooltips internally: `IconButton`, `SideNavigation`, etc.
|
|
434
|
-
|
|
435
|
-
- [#1955](https://github.com/iTwin/iTwinUI/pull/1955): Fixed a regression in `Tabs` where the panel content was not occupying the full width of the container.
|
|
436
|
-
- [#1954](https://github.com/iTwin/iTwinUI/pull/1954): Fixed an issue in older Safari versions where visually-hidden styles inside `ProgressRadial` were not being applied.
|
|
437
|
-
|
|
438
|
-
## 3.7.3
|
|
439
|
-
|
|
440
|
-
### Patch Changes
|
|
441
|
-
|
|
442
|
-
- [#1946](https://github.com/iTwin/iTwinUI/pull/1946): Fixed a bug in `Table` where resizing the columns and then toggling the column visibility in the column manager would trigger an unnecessary auto-scroll in the vertical direction.
|
|
443
|
-
- [#1943](https://github.com/iTwin/iTwinUI/pull/1943): Fixed a z-index issue in `Table` where the table resizer appeared above the sticky header cells.
|
|
444
|
-
|
|
445
|
-
## 3.7.2
|
|
446
|
-
|
|
447
|
-
### Patch Changes
|
|
448
|
-
|
|
449
|
-
- [#1939](https://github.com/iTwin/iTwinUI/pull/1939): Fixed an issue in `ButtonGroup` where the overflow logic was running even when `overflowButton` prop was not passed.
|
|
450
|
-
|
|
451
|
-
## 3.7.1
|
|
452
|
-
|
|
453
|
-
### Patch Changes
|
|
454
|
-
|
|
455
|
-
- [#1934](https://github.com/iTwin/iTwinUI/pull/1934): Fixed the types for `Table` column `filter` to allow `"includesSome"`, which is an already-supported filter function. Also improved the types for the `filter` prop to improve TS autocompletion.
|
|
456
|
-
- [#1936](https://github.com/iTwin/iTwinUI/pull/1936): Fixed an issue in `ProgressRadial` where the visually hidden "Loading." text was sometimes incorrectly displayed for a short while in the beginning.
|
|
457
|
-
|
|
458
|
-
## 3.7.0
|
|
459
|
-
|
|
460
|
-
### Minor Changes
|
|
461
|
-
|
|
462
|
-
- [#1863](https://github.com/iTwin/iTwinUI/pull/1863): The filter button inside a `Table` will now always be visible, instead of only being shown on hover/focus.
|
|
463
|
-
- [#1891](https://github.com/iTwin/iTwinUI/pull/1891): The entire `Table` is now scrollable instead of just the `Table`'s body. This leads to a better scroll experience (e.g. the `Table`'s header now scrolls horizontally when hovering a dragged column near the header's left or right edges).
|
|
464
|
-
- [#1863](https://github.com/iTwin/iTwinUI/pull/1863): The responsive behavior of `Table` columns has been improved in a few different ways:
|
|
465
|
-
- All columns now have a non-zero default min-width. While we still recommend passing a custom min-width based on your data, this default will help prevent resizable columns from becoming too small.
|
|
466
|
-
- The filter and sort icons in a column header will now wrap to the next line, before the text starts wrapping.
|
|
467
|
-
- For cells that have a string value, the value will be automatically truncated after three lines.
|
|
468
|
-
|
|
469
|
-
## 3.6.3
|
|
470
|
-
|
|
471
|
-
### Patch Changes
|
|
472
|
-
|
|
473
|
-
- [#1916](https://github.com/iTwin/iTwinUI/pull/1916): Fixed the hover background for default tabs.
|
|
474
|
-
|
|
475
|
-
## 3.6.2
|
|
476
|
-
|
|
477
|
-
### Patch Changes
|
|
478
|
-
|
|
479
|
-
- [#1921](https://github.com/iTwin/iTwinUI/pull/1921): Fixed `Carousel.Dot`'s incorrect height.
|
|
480
|
-
|
|
481
|
-
## 3.6.1
|
|
482
|
-
|
|
483
|
-
### Patch Changes
|
|
484
|
-
|
|
485
|
-
- [#1909](https://github.com/iTwin/iTwinUI/pull/1909): Remove `margin-block` from `Badge`.
|
|
486
|
-
|
|
487
|
-
## 3.6.0
|
|
488
|
-
|
|
489
|
-
### Minor Changes
|
|
490
|
-
|
|
491
|
-
- [#1879](https://github.com/iTwin/iTwinUI/pull/1879): Added a new `native` prop to `Select` and `LabeledSelect`. When true, a native `<select>` element will be rendered.
|
|
492
|
-
- [#1886](https://github.com/iTwin/iTwinUI/pull/1886): Native `Select` (`<Select native>`) offers a new `styleType` prop that accepts the values: `default` (pre-existing) and `borderless` (new).
|
|
493
|
-
- [#1877](https://github.com/iTwin/iTwinUI/pull/1877): Fixed a bug in `InputGroup` where nested `<StatusMessage>`s were rendered when using `message={<StatusMessage>}`. As a result, non-string `message` values are no longer automatically wrapped in `<StatusMessage>`.
|
|
494
|
-
- If you were passing a custom `ReactNode`, you might need to wrap it with `<StatusMessage>` for proper styling of `message`.
|
|
495
|
-
- [#1881](https://github.com/iTwin/iTwinUI/pull/1881): Added a new subcomponent `InputWithDecorations.Icon` to replace direct usage of `Icon` inside `InputWithDecorations`.
|
|
496
|
-
- Visual changes:
|
|
497
|
-
- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): Inline padding of `Icon` no longer changes with the icon size. It is now a constant of `--iui-size-xs`.
|
|
498
|
-
- [#1881](https://github.com/iTwin/iTwinUI/pull/1881): `Input`'s and `Textarea`'s start/end inline padding when inside `InputWithDecorations` is now collapsed when it is preceded/followed by a `InputWithDecorations.Icon` or `InputWithDecorations.Button`. This prevents unnecessary empty space in `InputWithDecorations`.
|
|
499
|
-
- [#1888](https://github.com/iTwin/iTwinUI/pull/1888): The expandable `SearchBox` now shows a regular-sized button in the collapsed state. Previously, it used to incorrectly be a square button.
|
|
500
|
-
- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): `SearchBox.Icon` no longer has the same width as `SearchBox.Button`. Its width also no longer changes with the `SearchBox` size. This is because its padding behavior is now similar to `Icon`'s padding behavior, where it uses a constant padding.
|
|
501
|
-
- [#1897](https://github.com/iTwin/iTwinUI/pull/1897): All instances of `<SvgStatusError>` have been updated to reflect the new octagon shape from the latest version of iTwinUI-icons. Some components affected: `Icon`, `Alert`, `Toast`, `StatusMessage`.
|
|
502
|
-
- [#1888](https://github.com/iTwin/iTwinUI/pull/1888): The expandable `SearchBox`'s animation/transition between the expanded and the collapsed states is now removed.
|
|
503
|
-
|
|
504
|
-
### Patch Changes
|
|
505
|
-
|
|
506
|
-
- [#1865](https://github.com/iTwin/iTwinUI/pull/1865): `Dialog`/`Modal` will no longer keep its wrapper in the DOM when `isOpen=false`.
|
|
507
|
-
- [#1889](https://github.com/iTwin/iTwinUI/pull/1889): `Dialog`/`Modal`'s close button will now be visually aligned based on the icon inside it, excluding the padding.
|
|
508
|
-
- [#1906](https://github.com/iTwin/iTwinUI/pull/1906): `Dialog`/`Modal` title will now wrap to multiple lines instead of getting clipped.
|
|
509
|
-
- [#1873](https://github.com/iTwin/iTwinUI/pull/1873): Fixed `Tab` stripe size and position calculation that sometimes used to cause unnecessary overflow and thus cause a horizontal scrollbar in `TabList`.
|
|
510
|
-
- [#1884](https://github.com/iTwin/iTwinUI/pull/1884): Fixed a bug that caused the `Tabs.Wrapper` to change size dependent on which `Tabs.Tab` was active.
|
|
511
|
-
- [#1901](https://github.com/iTwin/iTwinUI/pull/1901): Fixed a bug in `Table` where `initialState.columnOrder` was not being respected.
|
|
512
|
-
- [#1894](https://github.com/iTwin/iTwinUI/pull/1894): All instances of `box-sizing: content-box` have been reinforced with `!important` to prevent accidental overrides from application styles.
|
|
513
|
-
- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): `InputWithDecorations` now has an inline padding of `1px` to account for the `1px` border's inline edges. This prevents content that touches the border's inline edges from being overlapped by the border by `1px`. Slightly modified expandable `SearchBox` styles to account for the new padding.
|
|
514
|
-
|
|
515
|
-
## 3.5.0
|
|
516
|
-
|
|
517
|
-
### Minor Changes
|
|
518
|
-
|
|
519
|
-
- [#1844](https://github.com/iTwin/iTwinUI/pull/1844): Interactive elements will now be correctly focused on Safari 17+.
|
|
520
|
-
- [#1860](https://github.com/iTwin/iTwinUI/pull/1860): `ThemeProvider` will now automatically specify an `accent-color` to match the current theme.
|
|
521
|
-
- [#1856](https://github.com/iTwin/iTwinUI/pull/1856): Added new `isExternal` prop to `Anchor`. When true, displays an icon at the end of link text.
|
|
522
|
-
- [#1858](https://github.com/iTwin/iTwinUI/pull/1858): `ToggleSwitch` will now show a checkmark icon by default in the checked state. `SvgCheckmark` no longer needs to be manually passed into the `icon` prop.
|
|
523
|
-
- [#1862](https://github.com/iTwin/iTwinUI/pull/1862): `Select` will now correctly reset its `value` if `null` is passed.
|
|
524
|
-
- [#1864](https://github.com/iTwin/iTwinUI/pull/1864): Added a new `underline` prop to `Anchor`. When true, anchors will be underlined by default instead of only on hover.
|
|
525
|
-
- [#1856](https://github.com/iTwin/iTwinUI/pull/1856): `Anchor` links that open in a new tab will now add a visually-hidden warning for screen-reader users. This can be combined with the `isExternal` prop, which adds a visual indication for sighted users.
|
|
526
|
-
- [#1859](https://github.com/iTwin/iTwinUI/pull/1859): `ProgressRadial` and `ProgressLinear` will now include a visually hidden "Loading" text alternative for non-sighted users.
|
|
527
|
-
|
|
528
|
-
### Patch Changes
|
|
529
|
-
|
|
530
|
-
- [#1845](https://github.com/iTwin/iTwinUI/pull/1845): Removed `:focus-visible` fallback styles for older browsers.
|
|
531
|
-
- [#1861](https://github.com/iTwin/iTwinUI/pull/1861): Added `width`/`height` attributes to inlined svgs, to make them more resilient in case CSS fails.
|
|
532
|
-
|
|
533
|
-
## 3.4.2
|
|
534
|
-
|
|
535
|
-
### Patch Changes
|
|
536
|
-
|
|
537
|
-
- [#1848](https://github.com/iTwin/iTwinUI/pull/1848): Removed `jsdom` from direct dependencies.
|
|
538
|
-
|
|
539
|
-
## 3.4.1
|
|
540
|
-
|
|
541
|
-
### Patch Changes
|
|
542
|
-
|
|
543
|
-
- [#1835](https://github.com/iTwin/iTwinUI/pull/1835): Fixed the bug where `Dialog`/`Modal` was invisible on the first render with `isOpen={true}`.
|
|
544
|
-
- [#1836](https://github.com/iTwin/iTwinUI/pull/1836): Updated Dialog resizer positioning to protrude outside the dialog.
|
|
545
|
-
|
|
546
|
-
## 3.4.0
|
|
547
|
-
|
|
548
|
-
### Minor Changes
|
|
549
|
-
|
|
550
|
-
- [#1824](https://github.com/iTwin/iTwinUI/pull/1824): `LinkAction` will now automatically render a `<button>` by default if no `href` is passed.
|
|
551
|
-
- [#1815](https://github.com/iTwin/iTwinUI/pull/1815): Removed unnecessary `Tag` styles, and added support for tags to be used as `<button>` elements.
|
|
552
|
-
- [#1813](https://github.com/iTwin/iTwinUI/pull/1813): Added warning status for `ProgressRadial`/`ProgressLinear`
|
|
553
|
-
- [#1815](https://github.com/iTwin/iTwinUI/pull/1815): Added `labelProps` and `removeButtonProps` to `Tag` to allow customizing internal parts.
|
|
554
|
-
- [#1821](https://github.com/iTwin/iTwinUI/pull/1821): Added new props to `Modal` to allow customizing inner DOM elements: `wrapperProps`, `backdropProps`, `titleBarProps`.
|
|
555
|
-
- [#1822](https://github.com/iTwin/iTwinUI/pull/1822): Added new `showDatesOutsideMonth` prop to `DatePicker`. Currently defaults to `true` but is recommended to be set to `false`.
|
|
556
|
-
|
|
557
|
-
## 3.3.4
|
|
558
|
-
|
|
559
|
-
### Patch Changes
|
|
560
|
-
|
|
561
|
-
- [#1816](https://github.com/iTwin/iTwinUI/pull/1816): Fixed an issue where `Table` was showing a dummy vertical scrollbar track inside the table header in Chromium 121 + Windows.
|
|
562
|
-
- [#1810](https://github.com/iTwin/iTwinUI/pull/1810): Fixed `Surface.Body` not being visually aligned with `Surface.Header` depending on scrollbar visibility.
|
|
563
|
-
- [#1776](https://github.com/iTwin/iTwinUI/pull/1776): Fixed broken animation in full-page `Modal` and `Dialog`.
|
|
564
|
-
- [#1809](https://github.com/iTwin/iTwinUI/pull/1809): Fixed `Table` bug where the table-body had an incorrect horizontal scrollbar/overflow when the `Table`'s width is reduced below the initial width.
|
|
565
|
-
|
|
566
|
-
## 3.3.3
|
|
567
|
-
|
|
568
|
-
### Patch Changes
|
|
569
|
-
|
|
570
|
-
- [#1800](https://github.com/iTwin/iTwinUI/pull/1800): Updated internal usage of `ResizeObserver` to prevent throwing a benign "ResizeObserver loop limit exceeded" error in React 17 apps. Some affected components: `ButtonGroup`, `Tabs`, `Table`, `Tree`, `Breadcrumbs`, etc.
|
|
571
|
-
- [#1807](https://github.com/iTwin/iTwinUI/pull/1807): iTwinUI will now also check for `vitest` and `mocha` (in addition to `jest`) before running any code that would cause problems in these test runners.
|
|
572
|
-
|
|
573
|
-
## 3.3.2
|
|
574
|
-
|
|
575
|
-
### Patch Changes
|
|
576
|
-
|
|
577
|
-
- [#1799](https://github.com/iTwin/iTwinUI/pull/1799): Fixed `Table` bug where columns were not resizable when their widths were specified as strings (E.g. `"20%"`, `"50ch"`).
|
|
578
|
-
|
|
579
|
-
## 3.3.1
|
|
580
|
-
|
|
581
|
-
### Patch Changes
|
|
582
|
-
|
|
583
|
-
- [#1796](https://github.com/iTwin/iTwinUI/pull/1796): Fixed a visual issue in `Table` where column headers were not aligned with rows when using expandable `subRows`.
|
|
584
|
-
- [#1795](https://github.com/iTwin/iTwinUI/pull/1795): Fixed blurring and resizing issues in Dialog/Modal by removing `overflow: hidden` and inline `transform` styles.
|
|
585
|
-
|
|
586
|
-
## 3.3.0
|
|
587
|
-
|
|
588
|
-
### Minor Changes
|
|
589
|
-
|
|
590
|
-
- [#1753](https://github.com/iTwin/iTwinUI/pull/1753): `LabeledInput` and `LabeledTextarea` have been slightly reworked to fix alignment and consistency issues when used with `svgIcon`.
|
|
591
|
-
- [#1777](https://github.com/iTwin/iTwinUI/pull/1777): `InputGrid` will now attempt to automatically associate labels, inputs and status messages with each other, in the event that they haven't been explicitly associated.
|
|
592
|
-
- [#1777](https://github.com/iTwin/iTwinUI/pull/1777): The `message` passed to `LabeledInput`, `LabeledTextarea`, `LabeledSelect` and `ComboBox` will now be associated with the input using `aria-describedby` for better accessibility.
|
|
593
|
-
- [#1794](https://github.com/iTwin/iTwinUI/pull/1794): `ExpandableBlock` now internally uses `LinkAction` for the trigger element. This slightly improves the accessibility, and opens up the possibility of including secondary actions.
|
|
594
|
-
- [#1786](https://github.com/iTwin/iTwinUI/pull/1786): The `portal.to` prop in floating elements now also accepts `null | undefined` which acts identically to the default prop behavior (i.e. as if `portal` was not passed). Components affected: `Dialog`, `DropdownMenu`, `Modal`, `Popover`, `SplitButton`, and `Tooltip`.
|
|
595
|
-
- [#1791](https://github.com/iTwin/iTwinUI/pull/1791): Added new `ListItem.Action` component for rendering links inside `ListItem`s while ensuring that clicking anywhere on the list item triggers the link. This component is a wrapper over the existing `LinkAction` component.
|
|
596
|
-
- [#1780](https://github.com/iTwin/iTwinUI/pull/1780): `ComboBox` now forwards its `ref`.
|
|
597
|
-
- [#1753](https://github.com/iTwin/iTwinUI/pull/1753): `StatusMessage` now renders no status icon if `startIcon === null`.
|
|
598
|
-
|
|
599
|
-
### Patch Changes
|
|
600
|
-
|
|
601
|
-
- [#1783](https://github.com/iTwin/iTwinUI/pull/1783): Fixed a Firefox-specific bug where focus outlines were not appearing correctly around menu items inside `ComboBox`.
|
|
602
|
-
- [#1792](https://github.com/iTwin/iTwinUI/pull/1792): Fixed an issue in `Table` where the "select all" checkbox was disabled if all top-level rows were disabled. The logic has been updated to also consider sub-rows.
|
|
603
|
-
- [#1788](https://github.com/iTwin/iTwinUI/pull/1788): `LinkAction` will no longer override styles from other components (such as `Anchor`).
|
|
604
|
-
- [#1753](https://github.com/iTwin/iTwinUI/pull/1753): Deprecated `svgIcon` in `LabeledSelect` in favor of passing `<StatusMessage startIcon={svgIcon} />` to the `message` prop.
|
|
605
|
-
- [#1787](https://github.com/iTwin/iTwinUI/pull/1787): Button, radial progress indicator, & select icons now use the correct icon variable color fill.
|
|
606
|
-
|
|
607
|
-
## 3.2.4
|
|
608
|
-
|
|
609
|
-
### Patch Changes
|
|
610
|
-
|
|
611
|
-
- [#1774](https://github.com/iTwin/iTwinUI/pull/1774): Fixed `Select` and `LabeledSelect` to correctly handle generic types.
|
|
612
|
-
|
|
613
|
-
## 3.2.3
|
|
614
|
-
|
|
615
|
-
### Patch Changes
|
|
616
|
-
|
|
617
|
-
- [#1772](https://github.com/iTwin/iTwinUI/pull/1772): Added `package.json` to exports map.
|
|
618
|
-
|
|
619
|
-
## 3.2.2
|
|
620
|
-
|
|
621
|
-
### Patch Changes
|
|
622
|
-
|
|
623
|
-
- [#1763](https://github.com/iTwin/iTwinUI/pull/1763): Reduced bundle size by optimizing how CSS modules are handled internally.
|
|
624
|
-
|
|
625
|
-
## 3.2.1
|
|
626
|
-
|
|
627
|
-
### Patch Changes
|
|
628
|
-
|
|
629
|
-
- [#1760](https://github.com/iTwin/iTwinUI/pull/1760): Fixed `ComboBox` to correctly merge `inputProps.style` with internal styles.
|
|
630
|
-
|
|
631
|
-
## 3.2.0
|
|
632
|
-
|
|
633
|
-
### Minor Changes
|
|
634
|
-
|
|
635
|
-
- [#1734](https://github.com/iTwin/iTwinUI/pull/1734): `ThemeProvider` will now attempt to automatically load `styles.css` if using `theme="inherit"` (or `includeCss` if using other themes).
|
|
636
|
-
|
|
637
|
-
While applications are still advised to manually import `styles.css`, this new behavior is intended to ease the migration for applications that may be using an older version of iTwinUI but want to consume dependencies that rely on iTwinUI v3.
|
|
638
|
-
|
|
639
|
-
- [#1744](https://github.com/iTwin/iTwinUI/pull/1744): `@itwin/itwinui-illustrations-react` has been made a direct dependency again, to avoid issues with bundlers attempting to bundle it even if `ErrorPage` is not used anywhere.
|
|
640
|
-
|
|
641
|
-
### Patch Changes
|
|
642
|
-
|
|
643
|
-
- [#1742](https://github.com/iTwin/iTwinUI/pull/1742): Fixed `ErrorPage` to correctly lazy import from `@itwin/itwinui-illustrations-react`.
|
|
644
|
-
|
|
645
|
-
## 3.1.2
|
|
646
|
-
|
|
647
|
-
### Patch Changes
|
|
648
|
-
|
|
649
|
-
- [#1740](https://github.com/iTwin/iTwinUI/pull/1740): Fixed `Select` and `Slider` to allow passing refs into `triggerProps` and `thumbProps` respectively.
|
|
650
|
-
|
|
651
|
-
## 3.1.1
|
|
652
|
-
|
|
653
|
-
### Patch Changes
|
|
654
|
-
|
|
655
|
-
- [#1738](https://github.com/iTwin/iTwinUI/pull/1738): Added missing `sideEffects` to prevent tree-shaking `styles.css` in webpack.
|
|
656
|
-
|
|
657
|
-
## 3.1.0
|
|
658
|
-
|
|
659
|
-
### Minor Changes
|
|
660
|
-
|
|
661
|
-
- [#1731](https://github.com/iTwin/iTwinUI/pull/1731): ThemeProvider will now correctly inherit theme changes from a v2 ancestor.
|
|
662
|
-
- [#1710](https://github.com/iTwin/iTwinUI/pull/1710): Added new `middleware` and `positionReference` props to `Popover` for more control over the positioning logic.
|
|
663
|
-
- [#1676](https://github.com/iTwin/iTwinUI/pull/1676): Added `size="small` prop to `Tree`, and decreased indentations on default size tree.
|
|
664
|
-
- [#1707](https://github.com/iTwin/iTwinUI/pull/1707): `FileUpload`'s `onFileDropped` prop will now expose the underlying drop event as the second argument. This can be useful for accessing information about the directory structure.
|
|
665
|
-
- [#1709](https://github.com/iTwin/iTwinUI/pull/1709): `IconButton`s inside a vertical `ButtonGroup` will now show tooltips on the right side by default, to avoid obscuring adjacent buttons in the group. The behavior of these tooltips can also be customized using the new `labelProps` prop, which can contain `labelProps.placement`, etc.
|
|
666
|
-
|
|
667
|
-
### Patch Changes
|
|
668
|
-
|
|
669
|
-
- [#1733](https://github.com/iTwin/iTwinUI/pull/1733): Fixed an overflow-related layout shift in vertical `Tabs`.
|
|
670
|
-
- [#1725](https://github.com/iTwin/iTwinUI/pull/1725): Table is now scrollable horizontally even when no rows are present.
|
|
671
|
-
|
|
672
|
-
## 3.0.11
|
|
673
|
-
|
|
674
|
-
### Patch Changes
|
|
675
|
-
|
|
676
|
-
- [#1716](https://github.com/iTwin/iTwinUI/pull/1716): Truncate the `select-tag` when only one tag is present in `select-tag-container`
|
|
677
|
-
|
|
678
|
-
## 3.0.10
|
|
679
|
-
|
|
680
|
-
### Patch Changes
|
|
681
|
-
|
|
682
|
-
- [#1711](https://github.com/iTwin/iTwinUI/pull/1711): Fixed an issue with `Tree` nodes not taking up the full width.
|
|
683
|
-
|
|
684
|
-
## 3.0.9
|
|
685
|
-
|
|
686
|
-
### Patch Changes
|
|
687
|
-
|
|
688
|
-
- [#1705](https://github.com/iTwin/iTwinUI/pull/1705): Fixed a hydration mismatch warning due to `id` in `ComboBox` and `Carousel`.
|
|
689
|
-
|
|
690
|
-
## 3.0.8
|
|
691
|
-
|
|
692
|
-
### Patch Changes
|
|
693
|
-
|
|
694
|
-
- [#1702](https://github.com/iTwin/iTwinUI/pull/1702): Fixed `Select` so that it works in uncontrolled mode (without `value`/`onChange` props).
|
|
695
|
-
|
|
696
|
-
## 3.0.7
|
|
697
|
-
|
|
698
|
-
### Patch Changes
|
|
699
|
-
|
|
700
|
-
- [#1700](https://github.com/iTwin/iTwinUI/pull/1700): Fixed an issue where Table was sometimes triggering sort after filtering.
|
|
701
|
-
|
|
702
|
-
## 3.0.6
|
|
703
|
-
|
|
704
|
-
### Patch Changes
|
|
705
|
-
|
|
706
|
-
- [#1693](https://github.com/iTwin/iTwinUI/pull/1693): Fixed an issue where Dialog content was appearing blurred on Windows.
|
|
707
|
-
|
|
708
|
-
## 3.0.5
|
|
709
|
-
|
|
710
|
-
### Patch Changes
|
|
711
|
-
|
|
712
|
-
- [#1683](https://github.com/iTwin/iTwinUI/pull/1683): Improved `ExpandableBlock` animation so that it doesn't push content outside its bounds.
|
|
713
|
-
- [#1687](https://github.com/iTwin/iTwinUI/pull/1687): Fixed `Overlay` component to correctly add polyfill for `inert`.
|
|
714
|
-
|
|
715
|
-
## 3.0.4
|
|
716
|
-
|
|
717
|
-
### Patch Changes
|
|
718
|
-
|
|
719
|
-
- [#1682](https://github.com/iTwin/iTwinUI/pull/1682): Memoize `useToaster`'s return value so that it can be more reliably used in dependency arrays.
|
|
720
|
-
- [#1681](https://github.com/iTwin/iTwinUI/pull/1681): Fixed an issue where `Select`'s menu was being positioned incorrectly after its first render.
|
|
721
|
-
|
|
722
|
-
## 3.0.3
|
|
723
|
-
|
|
724
|
-
### Patch Changes
|
|
725
|
-
|
|
726
|
-
- [#1660](https://github.com/iTwin/iTwinUI/pull/1660): Made Table's Ctrl+Shift click implementation more consistent with Windows Explorer's implementation.
|
|
727
|
-
- [#1660](https://github.com/iTwin/iTwinUI/pull/1660): Fixed occasional mismatch between the Table's visually selected rows and Table state's selected rows
|
|
728
|
-
|
|
729
|
-
## 3.0.2
|
|
730
|
-
|
|
731
|
-
### Patch Changes
|
|
732
|
-
|
|
733
|
-
- [#1663](https://github.com/iTwin/iTwinUI/pull/1663): Fixed `ThemeProvider` to correctly inherit `highContrast` option when using `theme="inherit"`.
|
|
734
|
-
|
|
735
|
-
## 3.0.1
|
|
736
|
-
|
|
737
|
-
### Patch Changes
|
|
738
|
-
|
|
739
|
-
- [#1661](https://github.com/iTwin/iTwinUI/pull/1661): Fixed Select re-rendering infinitely when used with React 17.
|
|
740
|
-
|
|
741
|
-
## 3.0.0
|
|
742
|
-
|
|
743
|
-
Welcome to the v3 release of `@itwin/itwinui-react`. 🎉
|
|
744
|
-
|
|
745
|
-
This release includes a few breaking changes which have been briefly listed below. For more details, see the [v3 migration guide](https://github.com/iTwin/iTwinUI/wiki/iTwinUI-react-v3-migration-guide).
|
|
746
|
-
|
|
747
|
-
### Major Changes
|
|
748
|
-
|
|
749
|
-
- [#1302](https://github.com/iTwin/iTwinUI/pull/1302): The dependencies on `@itwin/itwinui-css` and `@itwin/itwinui-variable` have been removed. This means `@itwin/itwinui-react` will expose its own stylesheet.
|
|
750
|
-
- [#1322](https://github.com/iTwin/iTwinUI/pull/1322): All css imports within components have been removed. `@itwin/itwinui-react/styles.css` must now be manually imported at the entrypoint.
|
|
751
|
-
- [#1302](https://github.com/iTwin/iTwinUI/pull/1302): All elements have had their class names changed to prevent conflict with older versions. It is strongly recommended to switch these internal classes with your own classes or data attributes.
|
|
752
|
-
- [#1389](https://github.com/iTwin/iTwinUI/pull/1389): iTwinUI now correctly supports both ESM and CJS environments.
|
|
753
|
-
- [#1583](https://github.com/iTwin/iTwinUI/pull/1583): Bumped minimum required react version to 17. If you're still on react 16, please update to react 17 (which has no breaking changes).
|
|
754
|
-
- [#1514](https://github.com/iTwin/iTwinUI/pull/1514): Table now has better type support. Types must now be imported from `@itwin/itwinui-react/react-table` instead of from `@types/react-table`.
|
|
755
|
-
- [#1346](https://github.com/iTwin/iTwinUI/pull/1346): The build now targets `es2020` instead of `es2018`.
|
|
756
|
-
- [#1311](https://github.com/iTwin/iTwinUI/pull/1311), [#1506](https://github.com/iTwin/iTwinUI/pull/1506): Replaced `tippy.js` with `floating-ui` in all popover-based components. While the basic usage is unchanged, all advanced props from tippy are no longer available. Components affected: Select, ComboBox, DropdownMenu, DropdownButton, SplitButton.
|
|
757
|
-
- [#1351](https://github.com/iTwin/iTwinUI/pull/1351): `toaster` import has been removed and replaced with `useToaster` which returns a toaster object with the same API.
|
|
758
|
-
- [#1265](https://github.com/iTwin/iTwinUI/pull/1265): Removed the deprecated `useTheme` hook. `<ThemeProvider>` is now always required to be wrapped around all iTwinUI components.
|
|
759
|
-
- [#1433](https://github.com/iTwin/iTwinUI/pull/1433): Updated `exports` to prevent importing internal utilities.
|
|
760
|
-
- [#1298](https://github.com/iTwin/iTwinUI/pull/1298): `Props` types will no longer be exported for any component. Use `React.ComponentProps` instead.
|
|
761
|
-
- [#1400](https://github.com/iTwin/iTwinUI/pull/1400): `ErrorPage` will now dynamically import illustrations. The peer dependency on `@itwin/itwinui-illustrations-react` will need to be manually installed if using `ErrorPage`.
|
|
762
|
-
- [#1478](https://github.com/iTwin/iTwinUI/pull/1478): ThemeProvider now defaults the `theme` value to `"inherit"` and falls back to `"light"` there is no parent theme found. Also the inherit behavior has been made more resilient for cases where react context fails.
|
|
763
|
-
- [#1269](https://github.com/iTwin/iTwinUI/pull/1269): All dialog variants have `flex` applied by default. This means the content should be wrapped with `Dialog.Content` or `ModalContent` for optimal layout.
|
|
764
|
-
- [#1300](https://github.com/iTwin/iTwinUI/pull/1300): `modalRootId` and `ownerDocument` props have been removed from `Modal`, in favor of the new `portal` prop (also available in `Dialog`).
|
|
765
|
-
- [#1461](https://github.com/iTwin/iTwinUI/pull/1461): Changed disabled button behavior to make them focusable and use `aria-disabled` instead of `disabled` attribute.
|
|
766
|
-
- [#1565](https://github.com/iTwin/iTwinUI/pull/1565): Removed `Menu` component. Use `DropdownMenu` instead.
|
|
767
|
-
- [#1406](https://github.com/iTwin/iTwinUI/pull/1406): Removed `setFocus` prop from Checkbox, ColorPicker, ComboBox, Input, LabeledInput, LabeledTextarea, Radio, RadioTile, Select, Slider, ToggleSwitch. Instead, `ref` can be used to focus the element.
|
|
768
|
-
- [#1548](https://github.com/iTwin/iTwinUI/pull/1548): Tabs are now always scrollable. Deprecated `overflowOptions` prop.
|
|
769
|
-
- [#1370](https://github.com/iTwin/iTwinUI/pull/1370): ProgressLinear has been refactored to be a single `<div>`.
|
|
770
|
-
- [#1356](https://github.com/iTwin/iTwinUI/pull/1356): ProgressRadial has been refactored to be a single `<div>` instead of using a nested svg. Also it is recommended to explicitly set `size` when using in other components.
|
|
771
|
-
- [#1544](https://github.com/iTwin/iTwinUI/pull/1544): Removed `iconDisplayStyle` prop from `LabeledInput` and `LabeledTextarea` components. `svgIcon` is now added inline. Users must use `StatusMessage` to add custom icon to the message.
|
|
772
|
-
- [#1626](https://github.com/iTwin/iTwinUI/pull/1626): Improved carousel accessibility and changed the markup so that the dots are present before the slides.
|
|
773
|
-
- [#1278](https://github.com/iTwin/iTwinUI/pull/1278): Adjusted calculations in ButtonGroup's `overflowButton` callback, so that it respects `overflowPlacement` and considers the presence of the overflowButton itself.
|
|
774
|
-
- [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Removed `inputStyle` and `inputClassName` props from `LabeledInput`; style and className props are being passed down to input.
|
|
775
|
-
- [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Removed `selectStyle` and `selectClassName` props from `LabeledSelect`; style and className props are being passed down to textarea.
|
|
776
|
-
- [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Removed `textareaStyle` and `textareaClassName` props from `LabeledTextarea`; style and className props are being passed down to textarea.
|
|
777
|
-
- [#1371](https://github.com/iTwin/iTwinUI/pull/1371): `Checkbox`'s top-level `className` and `style` props will now always be applied on the checkbox input element instead of conditionally being applied on the wrapper.
|
|
778
|
-
- [#1409](https://github.com/iTwin/iTwinUI/pull/1409): `RadioTile`'s top-level `className` and `style` props will now be applied on the `<input>` element instead of the wrapper.
|
|
779
|
-
- [#1458](https://github.com/iTwin/iTwinUI/pull/1458): `SideNavButton`'s top-level props (className, style, etc) are now passed to the button instead of to the wrapper.
|
|
780
|
-
- [#1435](https://github.com/iTwin/iTwinUI/pull/1435): `SplitButton`'s top-level props (className, style, etc) are now passed to the button instead of the component wrapper.
|
|
781
|
-
- [#1304](https://github.com/iTwin/iTwinUI/pull/1304): Instead of cloning passed icons to set classes on them, the classes will now be set on a wrapping element. Affected components: `Header`, `Select`, `MenuItem`, `RadioTile`, `Tabs`, `Tile`, `ToggleSwitch`, `TreeNode`, `InputContainer` (and all input variants).
|
|
782
|
-
- [#1469](https://github.com/iTwin/iTwinUI/pull/1469): Updated internal DOM structure in Slider.
|
|
783
|
-
- [#1388](https://github.com/iTwin/iTwinUI/pull/1388): Removed previously-deprecated `HorizontalTabs` and `VerticalTabs` (replaced by `orientation` prop in `Tabs`).
|
|
784
|
-
- [#1383](https://github.com/iTwin/iTwinUI/pull/1383): Removed previously-deprecated `UserIcon` and `UserIconGroup` components. Also removed `userIcon` prop from `Header`.
|
|
785
|
-
- [#1296](https://github.com/iTwin/iTwinUI/pull/1296): Removed previously-deprecated typography components (`Body`, `Headline`, `Leading`, `Small`, `Subheading`, `Title`) which have been replaced by `Text`.
|
|
786
|
-
- [#1384](https://github.com/iTwin/iTwinUI/pull/1384): Removed previously-deprecated `Wizard` component (replaced by `Stepper` and `WorkflowDiagram`).
|
|
787
|
-
- [#1295](https://github.com/iTwin/iTwinUI/pull/1295): Deprecated MenuItem's `icon` and `badge` props in favor of new `startIcon` and `endIcon` props. Also affects `Select` and `ComboBox` options.
|
|
788
|
-
- [#1330](https://github.com/iTwin/iTwinUI/pull/1330): Deprecated `FileUploadTemplate`. Removed all of its references.
|
|
789
|
-
|
|
790
|
-
### Minor Changes
|
|
791
|
-
|
|
792
|
-
- [#1298](https://github.com/iTwin/iTwinUI/pull/1298): Most components are now polymorphic and forward their rest props and ref.
|
|
793
|
-
- [#1506](https://github.com/iTwin/iTwinUI/pull/1506): Added new `Popover` component for public use.
|
|
794
|
-
- [#1323](https://github.com/iTwin/iTwinUI/pull/1323): Added `placement` prop to `Dialog` to allow placing it at one of the corners.
|
|
795
|
-
- [#1523](https://github.com/iTwin/iTwinUI/pull/1523): Added `ariaStrategy` prop to Tooltip. Can be used to change how the tooltip is associated with the trigger element.
|
|
796
|
-
- [#1477](https://github.com/iTwin/iTwinUI/pull/1477): Added a new `portalContainer` prop to `ThemeProvider`. When specified, all floating elements (tooltips, toasts, dialogs) under the ThemeProvider will read this prop from context and portal into it.
|
|
797
|
-
- [#1362](https://github.com/iTwin/iTwinUI/pull/1362): All elements under the root will now get a default focus styling matching `--iui-color-border-accent`.
|
|
798
|
-
- [#1373](https://github.com/iTwin/iTwinUI/pull/1373): Converted all physical CSS properties to their logical equivalents.
|
|
799
|
-
- [#1328](https://github.com/iTwin/iTwinUI/pull/1328): Added new `Overlay` component with customizable subcomponents: `Overlay.Wrapper`, `Overlay.HiddenContent`, `Overlay.Overlay`.
|
|
800
|
-
- [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Added `status` prop to `Input`, `Textarea` and `Select`.
|
|
801
|
-
- [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Added two new components for building complex input layouts.
|
|
802
|
-
|
|
803
|
-
- `InputGrid` for the "outer" layout (label, inputs and statusMessage)
|
|
804
|
-
- `InputWithDecorations` for the "inner" layout (start icon/button, end icon/button)
|
|
805
|
-
|
|
806
|
-
`LabeledInput`, `LabeledSelect`, `LabeledTextarea` and table `DatePickerInput` have been updated to make use of these new components internally.
|
|
807
|
-
|
|
808
|
-
- [#1531](https://github.com/iTwin/iTwinUI/pull/1531): Selected options in Select/ComboBox will now have a checkmark.
|
|
809
|
-
- [#1573](https://github.com/iTwin/iTwinUI/pull/1573): Added `applyBackground` prop to ColorPicker and DatePicker.
|
|
810
|
-
- [#1321](https://github.com/iTwin/iTwinUI/pull/1321): Added `disabled` prop to ExpandableBlock component. When activated, it triggers the "disabled" CSS styling for the ExpandableBlock and disables user interaction with it.
|
|
811
|
-
- [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Added new `padded` prop to `Icon`.
|
|
812
|
-
- [#1457](https://github.com/iTwin/iTwinUI/pull/1457): Added `htmlName` prop to the `HeaderButton` subcomponent which handles the native `name` attribute in `<button>`.
|
|
813
|
-
- [#1548](https://github.com/iTwin/iTwinUI/pull/1548): Added composition API to `Tabs`. Subcomponents: Wrapper, TabList, Tab, TabLabel, TabIcon, TabDescription, Actions, Panel.
|
|
814
|
-
- [#1255](https://github.com/iTwin/iTwinUI/pull/1255): Updated `Tile` component to allow composition of customizable subcomponents: `<Tile.Wrapper/>`, `<Tile.Name/>`, `<Tile.NameIcon/>`, `<Tile.NameLabel/>`, `<Tile.ThumbnailArea/>`, `<Tile.ThumbnailPicture/>`, `<Tile.BadgeContainer/>`, `<Tile.TypeIndicator/>`, `<Tile.QuickAction/>`, `<Tile.ContentArea/>`, `<Tile.Description/>`, `<Tile.MoreOptions/>`, `<Tile.Metadata/>`, `<Tile.Buttons/>`.
|
|
815
|
-
- [#1073](https://github.com/iTwin/iTwinUI/pull/1073): Added new `TransferList` component which is used to move one or more items between lists. Added the following subcomponents: `TransferList.ListWrapper`, `TransferList.ListboxWrapper`, `TransferList.ListboxLabel`, `TransferList.Listbox`, `TransferList.Item`, and `TransferList.Toolbar`
|
|
816
|
-
- [#1247](https://github.com/iTwin/iTwinUI/pull/1247): Alert can now be used through customizable subcomponents. The `onClose`, `clickableText`, and `clickableTextProps` props have been deprecated.
|
|
817
|
-
- [#1419](https://github.com/iTwin/iTwinUI/pull/1419): Added `htmlSize` prop to the `Input` component which handles the native `size` attribute in `<input>`.
|
|
818
|
-
- [#1369](https://github.com/iTwin/iTwinUI/pull/1369): Added new `Breadcrumbs.Item` subcomponent to use within `Breadcrumbs`. Directly passing `<a>`/`<Button>`/`<span>` as children is still supported but is deprecated.
|
|
819
|
-
- [#1403](https://github.com/iTwin/iTwinUI/pull/1403): Updated `DropdownMenu` to additionally accept list of JSX elements or a JSX fragment for `menuItems` prop.
|
|
820
|
-
- [#1610](https://github.com/iTwin/iTwinUI/pull/1610): Added `border` prop to `Surface`.
|
|
821
|
-
- [#1354](https://github.com/iTwin/iTwinUI/pull/1354): Updated `ExpandableBlock` to support customizable subcomponents: `<ExpandableBlock.Wrapper/>`, `<ExpandableBlock.Trigger/>`, `<ExpandableBlock.ExpandIcon/>`, `<ExpandableBlock.LabelArea/>`, `<ExpandableBlock.Title/>`, `<ExpandableBlock.Caption/>`, `<ExpandableBlock.EndIcon/>`, `<ExpandableBlock.Content/>`
|
|
822
|
-
- [#1435](https://github.com/iTwin/iTwinUI/pull/1435), [#1430](https://github.com/iTwin/iTwinUI/pull/1430), [#1510](https://github.com/iTwin/iTwinUI/pull/1510), [#1437](https://github.com/iTwin/iTwinUI/pull/1437), [#1466](https://github.com/iTwin/iTwinUI/pull/1466), [#1567](https://github.com/iTwin/iTwinUI/pull/1567), [#1440](https://github.com/iTwin/iTwinUI/pull/1440), [#1409](https://github.com/iTwin/iTwinUI/pull/1409), [#1355](https://github.com/iTwin/iTwinUI/pull/1355), [#1371](https://github.com/iTwin/iTwinUI/pull/1371), […]: Added new props to various components to allow passing custom class names for every DOM element.
|
|
823
|
-
|
|
824
|
-
### Patch Changes
|
|
825
|
-
|
|
826
|
-
- [#1605](https://github.com/iTwin/iTwinUI/pull/1605): Added `'use client'` directive for React Server Components support.
|
|
827
|
-
- [#1533](https://github.com/iTwin/iTwinUI/pull/1533): Fixed missing accessible name in SplitButton.
|
|
828
|
-
- [#1649](https://github.com/iTwin/iTwinUI/pull/1649): ThemeProvider will now inherit `portalContainer` if also inheriting theme.
|
|
829
|
-
- [#1446](https://github.com/iTwin/iTwinUI/pull/1446): Avatar has been refactored to be a single `<span>`. The colors have been updated to pass AAA contrast ratio.
|
|
830
|
-
- [#1354](https://github.com/iTwin/iTwinUI/pull/1354): Expandable block animation now uses pure css instead of javascript for transitioning.
|
|
831
|
-
- [#1609](https://github.com/iTwin/iTwinUI/pull/1609): Adjusted padding value for `Surface.Body`.
|
|
832
|
-
- [#1632](https://github.com/iTwin/iTwinUI/pull/1632): Adjusted gap between adjacent icons in searchbox.
|
|
833
|
-
- [#1492](https://github.com/iTwin/iTwinUI/pull/1492): Fixed `aria-owns` syntax for `TreeNode`
|
|
834
|
-
- [#1618](https://github.com/iTwin/iTwinUI/pull/1618): Improved accessibility of ColorPicker/ColorPalette/ColorSwatch.
|
|
835
|
-
- [#1389](https://github.com/iTwin/iTwinUI/pull/1389): The build output is now more readable, using a combination of `prettier` for formatting and `tslib` for import helpers.
|
|
836
|
-
- [#1360](https://github.com/iTwin/iTwinUI/pull/1360): The `color-scheme` property will now be correctly set for dark theme, resulting in better theming of built-in html elements.
|
|
837
|
-
- [#1495](https://github.com/iTwin/iTwinUI/pull/1495): Added accessible name to dropdown menu button in HeaderSplitButton.
|
|
838
|
-
- [#1486](https://github.com/iTwin/iTwinUI/pull/1486): DatePicker date tables now have accessible labels.
|
|
839
|
-
- [#1496](https://github.com/iTwin/iTwinUI/pull/1496): Added accessible button name to SideNavigation expand button.
|
|
840
|
-
- [#1499](https://github.com/iTwin/iTwinUI/pull/1499): Removed special handling of iPhone notch in Header and SideNavigation.
|
|
841
|
-
- [#1505](https://github.com/iTwin/iTwinUI/pull/1505): Gave accessible label to the sub-row toggle in <Table>.
|
|
842
|
-
- [#1397](https://github.com/iTwin/iTwinUI/pull/1397): Avatar will no longer incorrectly set aria-label on the status dot.
|
|
843
|
-
- [#1404](https://github.com/iTwin/iTwinUI/pull/1404): `aria-orientation` attribute removed from ButtonGroup to meet accessibility requirements.
|
|
844
|
-
- [#1420](https://github.com/iTwin/iTwinUI/pull/1420): RadioTile DOM has been simplified to remove a content wrapper `div`.
|
|
845
|
-
|
|
846
|
-
## 2.x
|
|
847
|
-
|
|
848
|
-
For any changes prior to 3.0.0, check out the [2.X changelog](https://github.com/iTwin/iTwinUI/blob/legacy/v2/packages/itwinui-react/CHANGELOG.md).
|