@itwin/itwinui-react 3.0.3 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/cjs/core/Alert/Alert.js +46 -106
- package/cjs/core/Avatar/Avatar.js +21 -58
- package/cjs/core/AvatarGroup/AvatarGroup.js +26 -64
- package/cjs/core/Backdrop/Backdrop.js +8 -16
- package/cjs/core/Badge/Badge.js +22 -39
- package/cjs/core/Breadcrumbs/Breadcrumbs.js +61 -138
- package/cjs/core/ButtonGroup/ButtonGroup.js +32 -68
- package/cjs/core/Buttons/Button.js +11 -57
- package/cjs/core/Buttons/DropdownButton.js +15 -49
- package/cjs/core/Buttons/IconButton.js +13 -53
- package/cjs/core/Buttons/IdeasButton.js +8 -20
- package/cjs/core/Buttons/SplitButton.js +43 -103
- package/cjs/core/Carousel/Carousel.js +54 -78
- package/cjs/core/Carousel/CarouselContext.js +4 -4
- package/cjs/core/Carousel/CarouselDot.js +12 -23
- package/cjs/core/Carousel/CarouselDotsList.js +92 -153
- package/cjs/core/Carousel/CarouselNavigation.js +41 -84
- package/cjs/core/Carousel/CarouselSlide.js +26 -49
- package/cjs/core/Carousel/CarouselSlider.js +47 -66
- package/cjs/core/Checkbox/Checkbox.js +32 -88
- package/cjs/core/ColorPicker/ColorBuilder.js +174 -292
- package/cjs/core/ColorPicker/ColorInputPanel.js +246 -411
- package/cjs/core/ColorPicker/ColorPalette.js +23 -47
- package/cjs/core/ColorPicker/ColorPicker.js +53 -87
- package/cjs/core/ColorPicker/ColorPickerContext.js +9 -11
- package/cjs/core/ColorPicker/ColorSwatch.js +15 -40
- package/cjs/core/ComboBox/ComboBox.js +280 -402
- package/cjs/core/ComboBox/ComboBoxEndIcon.js +12 -28
- package/cjs/core/ComboBox/ComboBoxInput.js +131 -207
- package/cjs/core/ComboBox/ComboBoxInputContainer.js +12 -35
- package/cjs/core/ComboBox/ComboBoxMenu.js +43 -87
- package/cjs/core/ComboBox/ComboBoxMenuItem.js +21 -73
- package/cjs/core/ComboBox/ComboBoxMultipleContainer.js +7 -13
- package/cjs/core/ComboBox/helpers.js +43 -47
- package/cjs/core/DatePicker/DatePicker.js +333 -569
- package/cjs/core/Dialog/Dialog.js +36 -65
- package/cjs/core/Dialog/DialogBackdrop.js +27 -47
- package/cjs/core/Dialog/DialogButtonBar.js +3 -3
- package/cjs/core/Dialog/DialogContent.js +18 -26
- package/cjs/core/Dialog/DialogContext.js +5 -5
- package/cjs/core/Dialog/DialogDragContext.js +8 -8
- package/cjs/core/Dialog/DialogMain.js +116 -183
- package/cjs/core/Dialog/DialogTitleBar.js +20 -67
- package/cjs/core/Dialog/DialogTitleBarTitle.js +3 -3
- package/cjs/core/Divider/Divider.js +8 -14
- package/cjs/core/DropdownMenu/DropdownMenu.js +46 -80
- package/cjs/core/ExpandableBlock/ExpandableBlock.js +101 -206
- package/cjs/core/Fieldset/Fieldset.js +14 -25
- package/cjs/core/FileUpload/FileEmptyCard.js +17 -43
- package/cjs/core/FileUpload/FileUpload.js +42 -88
- package/cjs/core/FileUpload/FileUploadCard.js +84 -169
- package/cjs/core/FileUpload/FileUploadTemplate.js +16 -51
- package/cjs/core/Flex/Flex.js +77 -93
- package/cjs/core/Footer/Footer.js +64 -103
- package/cjs/core/Footer/FooterItem.js +3 -3
- package/cjs/core/Footer/FooterList.js +3 -3
- package/cjs/core/Footer/FooterSeparator.js +5 -8
- package/cjs/core/Header/Header.js +22 -67
- package/cjs/core/Header/HeaderBasicButton.js +13 -24
- package/cjs/core/Header/HeaderBreadcrumbs.js +14 -38
- package/cjs/core/Header/HeaderButton.js +22 -76
- package/cjs/core/Header/HeaderDropdownButton.js +20 -48
- package/cjs/core/Header/HeaderLogo.js +11 -42
- package/cjs/core/Header/HeaderSplitButton.js +21 -66
- package/cjs/core/Icon/Icon.js +18 -32
- package/cjs/core/InformationPanel/InformationPanel.js +42 -77
- package/cjs/core/InformationPanel/InformationPanelBody.js +4 -6
- package/cjs/core/InformationPanel/InformationPanelContent.js +8 -20
- package/cjs/core/InformationPanel/InformationPanelHeader.js +14 -34
- package/cjs/core/InformationPanel/InformationPanelWrapper.js +4 -6
- package/cjs/core/Input/Input.js +10 -18
- package/cjs/core/InputGrid/InputGrid.js +8 -17
- package/cjs/core/InputGroup/InputGroup.js +25 -72
- package/cjs/core/InputWithDecorations/InputWithDecorations.js +23 -51
- package/cjs/core/Label/Label.js +11 -32
- package/cjs/core/LabeledInput/LabeledInput.js +20 -70
- package/cjs/core/LabeledSelect/LabeledSelect.js +28 -77
- package/cjs/core/LabeledTextarea/LabeledTextarea.js +7 -13
- package/cjs/core/LinkAction/LinkAction.js +3 -3
- package/cjs/core/List/List.js +3 -3
- package/cjs/core/List/ListItem.js +35 -55
- package/cjs/core/Menu/Menu.js +53 -66
- package/cjs/core/Menu/MenuDivider.js +4 -4
- package/cjs/core/Menu/MenuExtraContent.js +4 -4
- package/cjs/core/Menu/MenuItem.js +92 -168
- package/cjs/core/Menu/MenuItemSkeleton.js +19 -54
- package/cjs/core/Modal/Modal.js +11 -38
- package/cjs/core/Modal/ModalButtonBar.js +4 -7
- package/cjs/core/Modal/ModalContent.js +3 -3
- package/cjs/core/NonIdealState/ErrorPage.js +131 -187
- package/cjs/core/NonIdealState/NonIdealState.js +12 -77
- package/cjs/core/NotificationMarker/NotificationMarker.js +8 -29
- package/cjs/core/Overlay/Overlay.d.ts +20 -24
- package/cjs/core/Overlay/Overlay.js +50 -64
- package/cjs/core/Popover/Popover.js +87 -157
- package/cjs/core/ProgressIndicators/ProgressLinear.js +11 -49
- package/cjs/core/ProgressIndicators/ProgressRadial.js +19 -51
- package/cjs/core/Radio/Radio.js +12 -54
- package/cjs/core/RadioTiles/RadioTile.js +14 -80
- package/cjs/core/RadioTiles/RadioTileGroup.js +9 -16
- package/cjs/core/SearchBox/SearchBox.js +104 -221
- package/cjs/core/Select/Select.js +141 -282
- package/cjs/core/Select/SelectTag.js +9 -21
- package/cjs/core/Select/SelectTagContainer.js +14 -30
- package/cjs/core/SideNavigation/SideNavigation.js +29 -138
- package/cjs/core/SideNavigation/SidenavButton.js +8 -30
- package/cjs/core/SideNavigation/SidenavSubmenu.js +9 -23
- package/cjs/core/SideNavigation/SidenavSubmenuHeader.js +10 -29
- package/cjs/core/SkipToContentLink/SkipToContentLink.js +8 -20
- package/cjs/core/Slider/Slider.js +195 -376
- package/cjs/core/Slider/Thumb.js +57 -108
- package/cjs/core/Slider/Track.js +55 -83
- package/cjs/core/StatusMessage/StatusMessage.js +12 -34
- package/cjs/core/Stepper/Stepper.js +21 -80
- package/cjs/core/Stepper/StepperStep.js +36 -109
- package/cjs/core/Stepper/WorkflowDiagram.js +15 -38
- package/cjs/core/Stepper/WorkflowDiagramStep.js +11 -39
- package/cjs/core/Surface/Surface.js +54 -94
- package/cjs/core/Table/SubRowExpander.js +15 -37
- package/cjs/core/Table/Table.js +419 -763
- package/cjs/core/Table/TableCell.js +63 -113
- package/cjs/core/Table/TablePaginator.js +136 -312
- package/cjs/core/Table/TableRowMemoized.js +64 -137
- package/cjs/core/Table/actionHandlers/expandHandler.js +12 -12
- package/cjs/core/Table/actionHandlers/filterHandler.js +17 -25
- package/cjs/core/Table/actionHandlers/index.js +14 -56
- package/cjs/core/Table/actionHandlers/resizeHandler.js +13 -13
- package/cjs/core/Table/actionHandlers/selectHandler.js +98 -128
- package/cjs/core/Table/cells/DefaultCell.js +13 -48
- package/cjs/core/Table/cells/EditableCell.js +46 -75
- package/cjs/core/Table/cells/index.js +6 -16
- package/cjs/core/Table/columns/actionColumn.js +67 -97
- package/cjs/core/Table/columns/expanderColumn.js +32 -46
- package/cjs/core/Table/columns/index.js +11 -41
- package/cjs/core/Table/columns/selectionColumn.js +29 -57
- package/cjs/core/Table/filters/BaseFilter.js +13 -24
- package/cjs/core/Table/filters/DateRangeFilter/DatePickerInput.js +52 -120
- package/cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.js +60 -120
- package/cjs/core/Table/filters/FilterButtonBar.js +16 -39
- package/cjs/core/Table/filters/FilterToggle.js +26 -62
- package/cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +36 -58
- package/cjs/core/Table/filters/TextFilter/TextFilter.js +28 -40
- package/cjs/core/Table/filters/customFilterFunctions.js +14 -16
- package/cjs/core/Table/filters/defaultFilterFunctions.js +81 -86
- package/cjs/core/Table/filters/index.js +11 -35
- package/cjs/core/Table/filters/tableFilters.js +32 -44
- package/cjs/core/Table/filters/types.js +2 -2
- package/cjs/core/Table/hooks/index.js +19 -67
- package/cjs/core/Table/hooks/useColumnDragAndDrop.js +86 -101
- package/cjs/core/Table/hooks/useExpanderCell.js +25 -33
- package/cjs/core/Table/hooks/useResizeColumns.js +290 -362
- package/cjs/core/Table/hooks/useScrollToRow.js +38 -46
- package/cjs/core/Table/hooks/useSelectionCell.js +10 -17
- package/cjs/core/Table/hooks/useStickyColumns.js +62 -64
- package/cjs/core/Table/hooks/useSubRowFiltering.js +88 -95
- package/cjs/core/Table/hooks/useSubRowSelection.js +31 -32
- package/cjs/core/Table/index.js +18 -78
- package/cjs/core/Table/utils.js +40 -42
- package/cjs/core/Tabs/Tabs.d.ts +3 -5
- package/cjs/core/Tabs/Tabs.js +235 -422
- package/cjs/core/Tag/Tag.js +15 -42
- package/cjs/core/Tag/TagContainer.js +11 -23
- package/cjs/core/Textarea/Textarea.js +6 -11
- package/cjs/core/ThemeProvider/ThemeContext.js +4 -4
- package/cjs/core/ThemeProvider/ThemeProvider.js +52 -105
- package/cjs/core/Tile/Tile.js +230 -410
- package/cjs/core/TimePicker/TimePicker.js +234 -458
- package/cjs/core/Toast/Toast.js +107 -204
- package/cjs/core/Toast/Toaster.js +77 -103
- package/cjs/core/ToggleSwitch/ToggleSwitch.js +23 -66
- package/cjs/core/Tooltip/Tooltip.js +91 -137
- package/cjs/core/TransferList/TransferList.js +103 -177
- package/cjs/core/Tree/Tree.js +129 -204
- package/cjs/core/Tree/TreeContext.js +9 -9
- package/cjs/core/Tree/TreeNode.js +104 -207
- package/cjs/core/Tree/TreeNodeExpander.js +12 -26
- package/cjs/core/Typography/Anchor.js +3 -3
- package/cjs/core/Typography/Blockquote.js +10 -18
- package/cjs/core/Typography/Code.js +3 -3
- package/cjs/core/Typography/Kbd.js +21 -30
- package/cjs/core/Typography/Text.js +13 -26
- package/cjs/core/VisuallyHidden/VisuallyHidden.js +8 -14
- package/cjs/core/utils/color/ColorValue.js +453 -535
- package/cjs/core/utils/color/index.js +4 -4
- package/cjs/core/utils/components/AutoclearingHiddenLiveRegion.js +13 -20
- package/cjs/core/utils/components/Box.js +3 -3
- package/cjs/core/utils/components/ButtonBase.js +20 -38
- package/cjs/core/utils/components/FocusTrap.js +38 -47
- package/cjs/core/utils/components/InputContainer.js +19 -58
- package/cjs/core/utils/components/InputFlexContainer.js +8 -24
- package/cjs/core/utils/components/MiddleTextTruncation.js +22 -32
- package/cjs/core/utils/components/Portal.js +20 -22
- package/cjs/core/utils/components/Resizer.js +196 -253
- package/cjs/core/utils/components/VirtualScroll.js +223 -304
- package/cjs/core/utils/components/WithCSSTransition.js +32 -49
- package/cjs/core/utils/components/index.js +14 -14
- package/cjs/core/utils/functions/colors.js +22 -25
- package/cjs/core/utils/functions/date.js +10 -10
- package/cjs/core/utils/functions/dev.js +14 -13
- package/cjs/core/utils/functions/dom.js +17 -24
- package/cjs/core/utils/functions/focusable.js +17 -26
- package/cjs/core/utils/functions/import.js +23 -46
- package/cjs/core/utils/functions/index.js +13 -13
- package/cjs/core/utils/functions/numbers.js +9 -9
- package/cjs/core/utils/functions/polymorphic.js +30 -43
- package/cjs/core/utils/functions/react.js +24 -26
- package/cjs/core/utils/functions/supports.js +4 -5
- package/cjs/core/utils/hooks/index.js +17 -17
- package/cjs/core/utils/hooks/useContainerWidth.js +19 -26
- package/cjs/core/utils/hooks/useControlledState.js +12 -21
- package/cjs/core/utils/hooks/useDragAndDrop.js +87 -110
- package/cjs/core/utils/hooks/useEventListener.js +22 -22
- package/cjs/core/utils/hooks/useGlobals.js +27 -33
- package/cjs/core/utils/hooks/useId.js +8 -9
- package/cjs/core/utils/hooks/useIntersection.js +24 -30
- package/cjs/core/utils/hooks/useIsClient.js +9 -9
- package/cjs/core/utils/hooks/useIsomorphicLayoutEffect.js +5 -6
- package/cjs/core/utils/hooks/useLatestRef.js +9 -9
- package/cjs/core/utils/hooks/useMediaQuery.js +31 -31
- package/cjs/core/utils/hooks/useMergedRefs.js +16 -15
- package/cjs/core/utils/hooks/useOverflow.js +57 -70
- package/cjs/core/utils/hooks/useResizeObserver.js +17 -22
- package/cjs/core/utils/hooks/useSafeContext.js +9 -9
- package/cjs/core/utils/icons/StatusIconMap.js +12 -28
- package/cjs/core/utils/icons/Svg.js +3 -3
- package/cjs/core/utils/icons/SvgCalendar.js +7 -12
- package/cjs/core/utils/icons/SvgCaretDownSmall.js +7 -12
- package/cjs/core/utils/icons/SvgCaretRightSmall.js +7 -12
- package/cjs/core/utils/icons/SvgCaretUpSmall.js +7 -12
- package/cjs/core/utils/icons/SvgCheckmark.js +7 -10
- package/cjs/core/utils/icons/SvgCheckmarkSmall.js +7 -12
- package/cjs/core/utils/icons/SvgChevronLeft.js +7 -12
- package/cjs/core/utils/icons/SvgChevronLeftDouble.js +7 -12
- package/cjs/core/utils/icons/SvgChevronRight.js +7 -12
- package/cjs/core/utils/icons/SvgChevronRightDouble.js +7 -12
- package/cjs/core/utils/icons/SvgClose.js +7 -12
- package/cjs/core/utils/icons/SvgCloseSmall.js +7 -12
- package/cjs/core/utils/icons/SvgColumnManager.js +7 -12
- package/cjs/core/utils/icons/SvgDocument.js +7 -10
- package/cjs/core/utils/icons/SvgFilter.js +7 -10
- package/cjs/core/utils/icons/SvgFilterHollow.js +7 -12
- package/cjs/core/utils/icons/SvgImportantSmall.js +7 -12
- package/cjs/core/utils/icons/SvgInfoCircular.js +7 -12
- package/cjs/core/utils/icons/SvgMore.js +7 -12
- package/cjs/core/utils/icons/SvgMoreVertical.js +7 -12
- package/cjs/core/utils/icons/SvgNew.js +7 -12
- package/cjs/core/utils/icons/SvgSearch.js +7 -12
- package/cjs/core/utils/icons/SvgSmileyHappy.js +7 -12
- package/cjs/core/utils/icons/SvgSortDown.js +7 -12
- package/cjs/core/utils/icons/SvgSortUp.js +7 -12
- package/cjs/core/utils/icons/SvgStatusError.js +7 -12
- package/cjs/core/utils/icons/SvgStatusSuccess.js +7 -12
- package/cjs/core/utils/icons/SvgStatusWarning.js +7 -12
- package/cjs/core/utils/icons/SvgSwap.js +7 -12
- package/cjs/core/utils/icons/SvgUpload.js +7 -12
- package/cjs/core/utils/icons/index.js +34 -34
- package/cjs/core/utils/index.js +10 -10
- package/cjs/core/utils/props.js +2 -2
- package/cjs/core/utils/types.js +2 -2
- package/cjs/index.js +229 -949
- package/cjs/react-table/react-table.js +2 -2
- package/cjs/styles.js +412 -425
- package/esm/core/Alert/Alert.js +39 -106
- package/esm/core/Avatar/Avatar.js +14 -42
- package/esm/core/AvatarGroup/AvatarGroup.js +20 -58
- package/esm/core/Backdrop/Backdrop.js +2 -10
- package/esm/core/Badge/Badge.js +16 -31
- package/esm/core/Breadcrumbs/Breadcrumbs.js +55 -135
- package/esm/core/ButtonGroup/ButtonGroup.js +25 -61
- package/esm/core/Buttons/Button.js +5 -45
- package/esm/core/Buttons/DropdownButton.js +7 -37
- package/esm/core/Buttons/IconButton.js +5 -40
- package/esm/core/Buttons/IdeasButton.js +2 -12
- package/esm/core/Buttons/SplitButton.js +34 -101
- package/esm/core/Carousel/Carousel.js +43 -72
- package/esm/core/Carousel/CarouselDot.js +6 -17
- package/esm/core/Carousel/CarouselDotsList.js +85 -147
- package/esm/core/Carousel/CarouselNavigation.js +32 -68
- package/esm/core/Carousel/CarouselSlide.js +19 -41
- package/esm/core/Carousel/CarouselSlider.js +41 -65
- package/esm/core/Checkbox/Checkbox.js +25 -78
- package/esm/core/ColorPicker/ColorBuilder.js +167 -280
- package/esm/core/ColorPicker/ColorInputPanel.js +237 -395
- package/esm/core/ColorPicker/ColorPalette.js +14 -35
- package/esm/core/ColorPicker/ColorPicker.js +46 -79
- package/esm/core/ColorPicker/ColorPickerContext.js +5 -7
- package/esm/core/ColorPicker/ColorSwatch.js +7 -24
- package/esm/core/ComboBox/ComboBox.js +267 -396
- package/esm/core/ComboBox/ComboBoxEndIcon.js +5 -18
- package/esm/core/ComboBox/ComboBoxInput.js +125 -197
- package/esm/core/ComboBox/ComboBoxInputContainer.js +5 -20
- package/esm/core/ComboBox/ComboBoxMenu.js +37 -77
- package/esm/core/ComboBox/ComboBoxMenuItem.js +14 -61
- package/esm/core/ComboBox/ComboBoxMultipleContainer.js +2 -6
- package/esm/core/ComboBox/helpers.js +38 -38
- package/esm/core/DatePicker/DatePicker.js +326 -555
- package/esm/core/Dialog/Dialog.js +24 -53
- package/esm/core/Dialog/DialogBackdrop.js +19 -39
- package/esm/core/Dialog/DialogContent.js +12 -20
- package/esm/core/Dialog/DialogContext.js +1 -1
- package/esm/core/Dialog/DialogDragContext.js +4 -4
- package/esm/core/Dialog/DialogMain.js +107 -177
- package/esm/core/Dialog/DialogTitleBar.js +10 -45
- package/esm/core/Divider/Divider.js +2 -8
- package/esm/core/DropdownMenu/DropdownMenu.js +40 -75
- package/esm/core/ExpandableBlock/ExpandableBlock.js +92 -193
- package/esm/core/Fieldset/Fieldset.js +8 -19
- package/esm/core/FileUpload/FileEmptyCard.js +8 -19
- package/esm/core/FileUpload/FileUpload.js +36 -72
- package/esm/core/FileUpload/FileUploadCard.js +76 -153
- package/esm/core/FileUpload/FileUploadTemplate.js +9 -37
- package/esm/core/Flex/Flex.js +71 -87
- package/esm/core/Footer/Footer.js +55 -86
- package/esm/core/Footer/FooterSeparator.js +1 -1
- package/esm/core/Header/Header.js +14 -55
- package/esm/core/Header/HeaderBasicButton.js +7 -15
- package/esm/core/Header/HeaderBreadcrumbs.js +8 -32
- package/esm/core/Header/HeaderButton.js +14 -62
- package/esm/core/Header/HeaderDropdownButton.js +13 -42
- package/esm/core/Header/HeaderLogo.js +5 -36
- package/esm/core/Header/HeaderSplitButton.js +14 -61
- package/esm/core/Icon/Icon.js +12 -26
- package/esm/core/InformationPanel/InformationPanel.js +36 -71
- package/esm/core/InformationPanel/InformationPanelContent.js +3 -17
- package/esm/core/InformationPanel/InformationPanelHeader.js +8 -32
- package/esm/core/InformationPanel/InformationPanelWrapper.js +1 -3
- package/esm/core/Input/Input.js +4 -12
- package/esm/core/InputGrid/InputGrid.js +2 -11
- package/esm/core/InputGroup/InputGroup.js +16 -57
- package/esm/core/InputWithDecorations/InputWithDecorations.js +11 -42
- package/esm/core/Label/Label.js +5 -26
- package/esm/core/LabeledInput/LabeledInput.js +10 -63
- package/esm/core/LabeledSelect/LabeledSelect.js +18 -67
- package/esm/core/LabeledTextarea/LabeledTextarea.js +2 -8
- package/esm/core/List/ListItem.js +28 -46
- package/esm/core/Menu/Menu.js +48 -64
- package/esm/core/Menu/MenuDivider.js +1 -1
- package/esm/core/Menu/MenuExtraContent.js +1 -1
- package/esm/core/Menu/MenuItem.js +84 -164
- package/esm/core/Menu/MenuItemSkeleton.js +12 -43
- package/esm/core/Modal/Modal.js +6 -33
- package/esm/core/NonIdealState/ErrorPage.js +123 -173
- package/esm/core/NonIdealState/NonIdealState.js +6 -65
- package/esm/core/NotificationMarker/NotificationMarker.js +2 -20
- package/esm/core/Overlay/Overlay.d.ts +20 -24
- package/esm/core/Overlay/Overlay.js +45 -55
- package/esm/core/Popover/Popover.js +80 -172
- package/esm/core/ProgressIndicators/ProgressLinear.js +5 -40
- package/esm/core/ProgressIndicators/ProgressRadial.js +14 -40
- package/esm/core/Radio/Radio.js +6 -45
- package/esm/core/RadioTiles/RadioTile.js +8 -62
- package/esm/core/RadioTiles/RadioTileGroup.js +3 -10
- package/esm/core/SearchBox/SearchBox.js +97 -214
- package/esm/core/Select/Select.js +130 -271
- package/esm/core/Select/SelectTag.js +3 -15
- package/esm/core/Select/SelectTagContainer.js +7 -20
- package/esm/core/SideNavigation/SideNavigation.js +21 -118
- package/esm/core/SideNavigation/SidenavButton.js +2 -24
- package/esm/core/SideNavigation/SidenavSubmenu.js +3 -14
- package/esm/core/SideNavigation/SidenavSubmenuHeader.js +4 -20
- package/esm/core/SkipToContentLink/SkipToContentLink.js +2 -11
- package/esm/core/Slider/Slider.js +187 -340
- package/esm/core/Slider/Thumb.js +50 -97
- package/esm/core/Slider/Track.js +49 -74
- package/esm/core/StatusMessage/StatusMessage.js +5 -23
- package/esm/core/Stepper/Stepper.js +14 -70
- package/esm/core/Stepper/StepperStep.js +29 -92
- package/esm/core/Stepper/WorkflowDiagram.js +8 -21
- package/esm/core/Stepper/WorkflowDiagramStep.js +4 -22
- package/esm/core/Surface/Surface.js +48 -84
- package/esm/core/Table/SubRowExpander.js +9 -31
- package/esm/core/Table/Table.js +408 -763
- package/esm/core/Table/TableCell.js +53 -87
- package/esm/core/Table/TablePaginator.js +125 -306
- package/esm/core/Table/TableRowMemoized.js +58 -129
- package/esm/core/Table/actionHandlers/expandHandler.js +10 -10
- package/esm/core/Table/actionHandlers/filterHandler.js +15 -23
- package/esm/core/Table/actionHandlers/index.js +1 -5
- package/esm/core/Table/actionHandlers/resizeHandler.js +11 -11
- package/esm/core/Table/actionHandlers/selectHandler.js +95 -122
- package/esm/core/Table/cells/DefaultCell.js +7 -42
- package/esm/core/Table/cells/EditableCell.js +41 -70
- package/esm/core/Table/columns/actionColumn.js +55 -85
- package/esm/core/Table/columns/expanderColumn.js +25 -39
- package/esm/core/Table/columns/selectionColumn.js +23 -51
- package/esm/core/Table/filters/BaseFilter.js +7 -15
- package/esm/core/Table/filters/DateRangeFilter/DatePickerInput.js +42 -107
- package/esm/core/Table/filters/DateRangeFilter/DateRangeFilter.js +52 -110
- package/esm/core/Table/filters/FilterButtonBar.js +9 -28
- package/esm/core/Table/filters/FilterToggle.js +18 -51
- package/esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +28 -50
- package/esm/core/Table/filters/TextFilter/TextFilter.js +20 -32
- package/esm/core/Table/filters/customFilterFunctions.js +12 -14
- package/esm/core/Table/filters/defaultFilterFunctions.js +79 -84
- package/esm/core/Table/filters/tableFilters.js +25 -34
- package/esm/core/Table/hooks/useColumnDragAndDrop.js +81 -88
- package/esm/core/Table/hooks/useExpanderCell.js +20 -26
- package/esm/core/Table/hooks/useResizeColumns.js +287 -353
- package/esm/core/Table/hooks/useScrollToRow.js +34 -42
- package/esm/core/Table/hooks/useSelectionCell.js +6 -10
- package/esm/core/Table/hooks/useStickyColumns.js +59 -61
- package/esm/core/Table/hooks/useSubRowFiltering.js +83 -90
- package/esm/core/Table/hooks/useSubRowSelection.js +27 -28
- package/esm/core/Table/index.js +1 -5
- package/esm/core/Table/utils.js +38 -40
- package/esm/core/Tabs/Tabs.d.ts +3 -5
- package/esm/core/Tabs/Tabs.js +229 -406
- package/esm/core/Tag/Tag.js +8 -35
- package/esm/core/Tag/TagContainer.js +5 -17
- package/esm/core/Textarea/Textarea.js +1 -6
- package/esm/core/ThemeProvider/ThemeProvider.js +44 -101
- package/esm/core/Tile/Tile.js +218 -386
- package/esm/core/TimePicker/TimePicker.js +228 -448
- package/esm/core/Toast/Toast.js +99 -193
- package/esm/core/Toast/Toaster.js +69 -83
- package/esm/core/ToggleSwitch/ToggleSwitch.js +17 -60
- package/esm/core/Tooltip/Tooltip.js +86 -151
- package/esm/core/TransferList/TransferList.js +93 -157
- package/esm/core/Tree/Tree.js +122 -196
- package/esm/core/Tree/TreeContext.js +5 -5
- package/esm/core/Tree/TreeNode.js +96 -195
- package/esm/core/Tree/TreeNodeExpander.js +5 -16
- package/esm/core/Typography/Blockquote.js +4 -12
- package/esm/core/Typography/Kbd.js +15 -24
- package/esm/core/Typography/Text.js +7 -20
- package/esm/core/VisuallyHidden/VisuallyHidden.js +2 -8
- package/esm/core/utils/color/ColorValue.js +449 -524
- package/esm/core/utils/components/AutoclearingHiddenLiveRegion.js +7 -11
- package/esm/core/utils/components/ButtonBase.js +13 -31
- package/esm/core/utils/components/FocusTrap.js +32 -41
- package/esm/core/utils/components/InputContainer.js +11 -50
- package/esm/core/utils/components/InputFlexContainer.js +2 -15
- package/esm/core/utils/components/MiddleTextTruncation.js +17 -27
- package/esm/core/utils/components/Portal.js +12 -12
- package/esm/core/utils/components/Resizer.js +191 -249
- package/esm/core/utils/components/VirtualScroll.js +218 -297
- package/esm/core/utils/components/WithCSSTransition.js +26 -43
- package/esm/core/utils/functions/colors.js +19 -19
- package/esm/core/utils/functions/date.js +8 -8
- package/esm/core/utils/functions/dev.js +12 -11
- package/esm/core/utils/functions/dom.js +14 -17
- package/esm/core/utils/functions/focusable.js +15 -24
- package/esm/core/utils/functions/import.js +2 -4
- package/esm/core/utils/functions/numbers.js +7 -7
- package/esm/core/utils/functions/polymorphic.js +23 -32
- package/esm/core/utils/functions/react.js +19 -21
- package/esm/core/utils/functions/supports.js +1 -2
- package/esm/core/utils/hooks/useContainerWidth.js +13 -16
- package/esm/core/utils/hooks/useControlledState.js +8 -17
- package/esm/core/utils/hooks/useDragAndDrop.js +80 -99
- package/esm/core/utils/hooks/useEventListener.js +18 -18
- package/esm/core/utils/hooks/useGlobals.js +21 -27
- package/esm/core/utils/hooks/useId.js +3 -3
- package/esm/core/utils/hooks/useIntersection.js +19 -25
- package/esm/core/utils/hooks/useIsClient.js +5 -5
- package/esm/core/utils/hooks/useIsomorphicLayoutEffect.js +1 -2
- package/esm/core/utils/hooks/useLatestRef.js +5 -5
- package/esm/core/utils/hooks/useMediaQuery.js +25 -23
- package/esm/core/utils/hooks/useMergedRefs.js +12 -11
- package/esm/core/utils/hooks/useOverflow.js +51 -63
- package/esm/core/utils/hooks/useResizeObserver.js +12 -17
- package/esm/core/utils/hooks/useSafeContext.js +5 -5
- package/esm/core/utils/icons/StatusIconMap.js +4 -8
- package/esm/core/utils/icons/SvgCalendar.js +2 -7
- package/esm/core/utils/icons/SvgCaretDownSmall.js +2 -7
- package/esm/core/utils/icons/SvgCaretRightSmall.js +2 -7
- package/esm/core/utils/icons/SvgCaretUpSmall.js +2 -7
- package/esm/core/utils/icons/SvgCheckmark.js +2 -5
- package/esm/core/utils/icons/SvgCheckmarkSmall.js +2 -7
- package/esm/core/utils/icons/SvgChevronLeft.js +2 -7
- package/esm/core/utils/icons/SvgChevronLeftDouble.js +2 -7
- package/esm/core/utils/icons/SvgChevronRight.js +2 -7
- package/esm/core/utils/icons/SvgChevronRightDouble.js +2 -7
- package/esm/core/utils/icons/SvgClose.js +2 -7
- package/esm/core/utils/icons/SvgCloseSmall.js +2 -7
- package/esm/core/utils/icons/SvgColumnManager.js +2 -7
- package/esm/core/utils/icons/SvgDocument.js +2 -5
- package/esm/core/utils/icons/SvgFilter.js +2 -5
- package/esm/core/utils/icons/SvgFilterHollow.js +2 -7
- package/esm/core/utils/icons/SvgImportantSmall.js +2 -7
- package/esm/core/utils/icons/SvgInfoCircular.js +2 -7
- package/esm/core/utils/icons/SvgMore.js +2 -7
- package/esm/core/utils/icons/SvgMoreVertical.js +2 -7
- package/esm/core/utils/icons/SvgNew.js +2 -7
- package/esm/core/utils/icons/SvgSearch.js +2 -7
- package/esm/core/utils/icons/SvgSmileyHappy.js +2 -7
- package/esm/core/utils/icons/SvgSortDown.js +2 -7
- package/esm/core/utils/icons/SvgSortUp.js +2 -7
- package/esm/core/utils/icons/SvgStatusError.js +2 -7
- package/esm/core/utils/icons/SvgStatusSuccess.js +2 -7
- package/esm/core/utils/icons/SvgStatusWarning.js +2 -7
- package/esm/core/utils/icons/SvgSwap.js +2 -7
- package/esm/core/utils/icons/SvgUpload.js +2 -7
- package/esm/index.js +3 -21
- package/esm/styles.js +414 -425
- package/package.json +2 -2
- package/styles.css +6 -6
package/cjs/styles.js
CHANGED
|
@@ -1,430 +1,417 @@
|
|
|
1
|
-
|
|
2
|
-
const closeAnimation =
|
|
3
|
-
const pulse =
|
|
1
|
+
"use strict";
|
|
2
|
+
const closeAnimation = "_iui3-closeAnimation";
|
|
3
|
+
const pulse = "_iui3-pulse";
|
|
4
4
|
const styles = {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
'iui-non-ideal-state-actions': '_iui3-non-ideal-state-actions',
|
|
210
|
-
'iui-overlay': '_iui3-overlay',
|
|
211
|
-
'iui-progress-indicator-linear': '_iui3-progress-indicator-linear',
|
|
212
|
-
'iui-overlay-wrapper': '_iui3-overlay-wrapper',
|
|
213
|
-
'iui-overlay-exiting': '_iui3-overlay-exiting',
|
|
5
|
+
"iui-root": "_iui3-root",
|
|
6
|
+
"iui-root-background": "_iui3-root-background",
|
|
7
|
+
"iui-alert": "_iui3-alert",
|
|
8
|
+
"iui-alert-link": "_iui3-alert-link",
|
|
9
|
+
"iui-button": "_iui3-button",
|
|
10
|
+
"iui-alert-message": "_iui3-alert-message",
|
|
11
|
+
"iui-anchor": "_iui3-anchor",
|
|
12
|
+
"iui-anchor-external": "_iui3-anchor-external",
|
|
13
|
+
"iui-avatar": "_iui3-avatar",
|
|
14
|
+
"iui-avatar-count": "_iui3-avatar-count",
|
|
15
|
+
"iui-small": "_iui3-small",
|
|
16
|
+
"iui-large": "_iui3-large",
|
|
17
|
+
"iui-x-large": "_iui3-x-large",
|
|
18
|
+
"iui-avatar-list": "_iui3-avatar-list",
|
|
19
|
+
"iui-stacked": "_iui3-stacked",
|
|
20
|
+
"iui-animated": "_iui3-animated",
|
|
21
|
+
"iui-backdrop": "_iui3-backdrop",
|
|
22
|
+
"iui-backdrop-visible": "_iui3-backdrop-visible",
|
|
23
|
+
"iui-backdrop-fixed": "_iui3-backdrop-fixed",
|
|
24
|
+
"iui-badge": "_iui3-badge",
|
|
25
|
+
"iui-blockquote": "_iui3-blockquote",
|
|
26
|
+
"iui-breadcrumbs": "_iui3-breadcrumbs",
|
|
27
|
+
"iui-breadcrumbs-list": "_iui3-breadcrumbs-list",
|
|
28
|
+
"iui-breadcrumbs-item": "_iui3-breadcrumbs-item",
|
|
29
|
+
"iui-breadcrumbs-content": "_iui3-breadcrumbs-content",
|
|
30
|
+
"iui-breadcrumbs-separator": "_iui3-breadcrumbs-separator",
|
|
31
|
+
"iui-button-icon": "_iui3-button-icon",
|
|
32
|
+
"iui-button-dropdown": "_iui3-button-dropdown",
|
|
33
|
+
"iui-button-split": "_iui3-button-split",
|
|
34
|
+
"iui-button-group": "_iui3-button-group",
|
|
35
|
+
"iui-input-flex-container": "_iui3-input-flex-container",
|
|
36
|
+
"iui-input": "_iui3-input",
|
|
37
|
+
"iui-disabled": "_iui3-disabled",
|
|
38
|
+
"iui-button-group-overflow-x": "_iui3-button-group-overflow-x",
|
|
39
|
+
"iui-carousel": "_iui3-carousel",
|
|
40
|
+
"iui-carousel-slider": "_iui3-carousel-slider",
|
|
41
|
+
"iui-carousel-slider-item": "_iui3-carousel-slider-item",
|
|
42
|
+
"iui-carousel-navigation": "_iui3-carousel-navigation",
|
|
43
|
+
"iui-carousel-navigation-left": "_iui3-carousel-navigation-left",
|
|
44
|
+
"iui-carousel-navigation-right": "_iui3-carousel-navigation-right",
|
|
45
|
+
"iui-carousel-navigation-dots": "_iui3-carousel-navigation-dots",
|
|
46
|
+
"iui-carousel-navigation-dot": "_iui3-carousel-navigation-dot",
|
|
47
|
+
"iui-first": "_iui3-first",
|
|
48
|
+
"iui-second": "_iui3-second",
|
|
49
|
+
"iui-active": "_iui3-active",
|
|
50
|
+
"iui-checkbox-wrapper": "_iui3-checkbox-wrapper",
|
|
51
|
+
"iui-loading": "_iui3-loading",
|
|
52
|
+
"iui-checkbox-label": "_iui3-checkbox-label",
|
|
53
|
+
"iui-radio-label": "_iui3-radio-label",
|
|
54
|
+
"iui-positive": "_iui3-positive",
|
|
55
|
+
"iui-warning": "_iui3-warning",
|
|
56
|
+
"iui-negative": "_iui3-negative",
|
|
57
|
+
"iui-checkbox": "_iui3-checkbox",
|
|
58
|
+
"iui-checkbox-visibility": "_iui3-checkbox-visibility",
|
|
59
|
+
"iui-code": "_iui3-code",
|
|
60
|
+
"iui-codeblock": "_iui3-codeblock",
|
|
61
|
+
"iui-title-bar": "_iui3-title-bar",
|
|
62
|
+
"iui-title": "_iui3-title",
|
|
63
|
+
"iui-codeblock-content": "_iui3-codeblock-content",
|
|
64
|
+
"iui-color-picker": "_iui3-color-picker",
|
|
65
|
+
"iui-color-swatch": "_iui3-color-swatch",
|
|
66
|
+
"iui-color-palette": "_iui3-color-palette",
|
|
67
|
+
"iui-color-palette-wrapper": "_iui3-color-palette-wrapper",
|
|
68
|
+
"iui-color-input": "_iui3-color-input",
|
|
69
|
+
"iui-color-input-wrapper": "_iui3-color-input-wrapper",
|
|
70
|
+
"iui-color-input-fields": "_iui3-color-input-fields",
|
|
71
|
+
"iui-color-picker-section-label": "_iui3-color-picker-section-label",
|
|
72
|
+
"iui-color-selection-wrapper": "_iui3-color-selection-wrapper",
|
|
73
|
+
"iui-color-field": "_iui3-color-field",
|
|
74
|
+
"iui-hue-slider": "_iui3-hue-slider",
|
|
75
|
+
"iui-slider": "_iui3-slider",
|
|
76
|
+
"iui-opacity-slider": "_iui3-opacity-slider",
|
|
77
|
+
"iui-color-dot": "_iui3-color-dot",
|
|
78
|
+
"iui-date-picker": "_iui3-date-picker",
|
|
79
|
+
"iui-time-picker": "_iui3-time-picker",
|
|
80
|
+
"iui-calendar-month-year": "_iui3-calendar-month-year",
|
|
81
|
+
"iui-calendar-month": "_iui3-calendar-month",
|
|
82
|
+
"iui-calendar-weekdays": "_iui3-calendar-weekdays",
|
|
83
|
+
"iui-calendar-week": "_iui3-calendar-week",
|
|
84
|
+
"iui-calendar-day": "_iui3-calendar-day",
|
|
85
|
+
"iui-calendar-day-today": "_iui3-calendar-day-today",
|
|
86
|
+
"iui-calendar-day-selected": "_iui3-calendar-day-selected",
|
|
87
|
+
"iui-calendar-day-selected-today": "_iui3-calendar-day-selected-today",
|
|
88
|
+
"iui-calendar-day-outside-month": "_iui3-calendar-day-outside-month",
|
|
89
|
+
"iui-calendar-day-outside-month-today": "_iui3-calendar-day-outside-month-today",
|
|
90
|
+
"iui-calendar-day-range-start": "_iui3-calendar-day-range-start",
|
|
91
|
+
"iui-calendar-day-range-start-today": "_iui3-calendar-day-range-start-today",
|
|
92
|
+
"iui-calendar-day-range-end": "_iui3-calendar-day-range-end",
|
|
93
|
+
"iui-calendar-day-range-end-today": "_iui3-calendar-day-range-end-today",
|
|
94
|
+
"iui-calendar-day-range": "_iui3-calendar-day-range",
|
|
95
|
+
"iui-calendar-day-range-today": "_iui3-calendar-day-range-today",
|
|
96
|
+
"iui-dialog-wrapper": "_iui3-dialog-wrapper",
|
|
97
|
+
"iui-dialog": "_iui3-dialog",
|
|
98
|
+
"iui-dialog-content": "_iui3-dialog-content",
|
|
99
|
+
"iui-dialog-visible": "_iui3-dialog-visible",
|
|
100
|
+
"iui-dialog-default": "_iui3-dialog-default",
|
|
101
|
+
"iui-dialog-full-page": "_iui3-dialog-full-page",
|
|
102
|
+
"iui-dialog-draggable": "_iui3-dialog-draggable",
|
|
103
|
+
"iui-dialog-animation-enter": "_iui3-dialog-animation-enter",
|
|
104
|
+
"iui-dialog-animation-enter-active": "_iui3-dialog-animation-enter-active",
|
|
105
|
+
"iui-dialog-title": "_iui3-dialog-title",
|
|
106
|
+
"iui-dialog-title-bar": "_iui3-dialog-title-bar",
|
|
107
|
+
"iui-dialog-title-bar-filled": "_iui3-dialog-title-bar-filled",
|
|
108
|
+
"iui-dialog-button-bar": "_iui3-dialog-button-bar",
|
|
109
|
+
"iui-expandable-block": "_iui3-expandable-block",
|
|
110
|
+
"iui-expandable-header": "_iui3-expandable-header",
|
|
111
|
+
"iui-expandable-block-icon": "_iui3-expandable-block-icon",
|
|
112
|
+
"iui-expandable-block-label": "_iui3-expandable-block-label",
|
|
113
|
+
"iui-expandable-block-title": "_iui3-expandable-block-title",
|
|
114
|
+
"iui-expandable-block-caption": "_iui3-expandable-block-caption",
|
|
115
|
+
"iui-expandable-content": "_iui3-expandable-content",
|
|
116
|
+
"iui-fieldset": "_iui3-fieldset",
|
|
117
|
+
"iui-file-upload": "_iui3-file-upload",
|
|
118
|
+
"iui-content": "_iui3-content",
|
|
119
|
+
"iui-browse-input": "_iui3-browse-input",
|
|
120
|
+
"iui-template-icon": "_iui3-template-icon",
|
|
121
|
+
"iui-template-text": "_iui3-template-text",
|
|
122
|
+
"iui-drag": "_iui3-drag",
|
|
123
|
+
"iui-file-upload-template": "_iui3-file-upload-template",
|
|
124
|
+
"iui-file-card": "_iui3-file-card",
|
|
125
|
+
"iui-file-card-icon": "_iui3-file-card-icon",
|
|
126
|
+
"iui-file-card-text": "_iui3-file-card-text",
|
|
127
|
+
"iui-file-card-title": "_iui3-file-card-title",
|
|
128
|
+
"iui-file-card-description": "_iui3-file-card-description",
|
|
129
|
+
"iui-file-card-action": "_iui3-file-card-action",
|
|
130
|
+
"iui-file-card-empty": "_iui3-file-card-empty",
|
|
131
|
+
"iui-file-card-empty-icon": "_iui3-file-card-empty-icon",
|
|
132
|
+
"iui-file-card-empty-action": "_iui3-file-card-empty-action",
|
|
133
|
+
"iui-legal-footer": "_iui3-legal-footer",
|
|
134
|
+
"iui-legal-footer-list": "_iui3-legal-footer-list",
|
|
135
|
+
"iui-legal-footer-item": "_iui3-legal-footer-item",
|
|
136
|
+
"iui-legal-footer-separator": "_iui3-legal-footer-separator",
|
|
137
|
+
"iui-legal-footer-developer": "_iui3-legal-footer-developer",
|
|
138
|
+
"iui-page-header": "_iui3-page-header",
|
|
139
|
+
"iui-page-header-left": "_iui3-page-header-left",
|
|
140
|
+
"iui-page-header-center": "_iui3-page-header-center",
|
|
141
|
+
"iui-page-header-right": "_iui3-page-header-right",
|
|
142
|
+
"iui-page-header-divider": "_iui3-page-header-divider",
|
|
143
|
+
"iui-header-breadcrumbs": "_iui3-header-breadcrumbs",
|
|
144
|
+
"iui-header-brand": "_iui3-header-brand",
|
|
145
|
+
"iui-header-brand-icon": "_iui3-header-brand-icon",
|
|
146
|
+
"iui-header-brand-label": "_iui3-header-brand-label",
|
|
147
|
+
"iui-header-breadcrumbs-list": "_iui3-header-breadcrumbs-list",
|
|
148
|
+
"iui-header-breadcrumb-button": "_iui3-header-breadcrumb-button",
|
|
149
|
+
"iui-header-breadcrumb-button-split": "_iui3-header-breadcrumb-button-split",
|
|
150
|
+
"iui-header-breadcrumb-item": "_iui3-header-breadcrumb-item",
|
|
151
|
+
"iui-header-breadcrumb-button-wrapper": "_iui3-header-breadcrumb-button-wrapper",
|
|
152
|
+
"iui-header-breadcrumb-button-icon": "_iui3-header-breadcrumb-button-icon",
|
|
153
|
+
"iui-header-breadcrumb-button-dropdown-icon": "_iui3-header-breadcrumb-button-dropdown-icon",
|
|
154
|
+
"iui-header-breadcrumb-button-text": "_iui3-header-breadcrumb-button-text",
|
|
155
|
+
"iui-header-breadcrumb-button-text-label": "_iui3-header-breadcrumb-button-text-label",
|
|
156
|
+
"iui-header-breadcrumb-button-text-sublabel": "_iui3-header-breadcrumb-button-text-sublabel",
|
|
157
|
+
"iui-information-panel-wrapper": "_iui3-information-panel-wrapper",
|
|
158
|
+
"iui-information-panel": "_iui3-information-panel",
|
|
159
|
+
"iui-resizer": "_iui3-resizer",
|
|
160
|
+
"iui-resizer-bar": "_iui3-resizer-bar",
|
|
161
|
+
"iui-information-header": "_iui3-information-header",
|
|
162
|
+
"iui-information-body": "_iui3-information-body",
|
|
163
|
+
"iui-information-header-label": "_iui3-information-header-label",
|
|
164
|
+
"iui-information-header-actions": "_iui3-information-header-actions",
|
|
165
|
+
"iui-right": "_iui3-right",
|
|
166
|
+
"iui-bottom": "_iui3-bottom",
|
|
167
|
+
"iui-visible": "_iui3-visible",
|
|
168
|
+
"iui-information-body-content": "_iui3-information-body-content",
|
|
169
|
+
"iui-input-label": "_iui3-input-label",
|
|
170
|
+
"iui-inline": "_iui3-inline",
|
|
171
|
+
"iui-input-with-icon": "_iui3-input-with-icon",
|
|
172
|
+
"iui-select-tag-container": "_iui3-select-tag-container",
|
|
173
|
+
"iui-end-icon": "_iui3-end-icon",
|
|
174
|
+
"iui-open": "_iui3-open",
|
|
175
|
+
"iui-input-grid": "_iui3-input-grid",
|
|
176
|
+
"iui-required": "_iui3-required",
|
|
177
|
+
"iui-input-group": "_iui3-input-group",
|
|
178
|
+
"iui-status-message": "_iui3-status-message",
|
|
179
|
+
"iui-select-button": "_iui3-select-button",
|
|
180
|
+
"iui-input-group-wrapper": "_iui3-input-group-wrapper",
|
|
181
|
+
"iui-toggle-switch-wrapper": "_iui3-toggle-switch-wrapper",
|
|
182
|
+
"iui-radio-wrapper": "_iui3-radio-wrapper",
|
|
183
|
+
"iui-keyboard": "_iui3-keyboard",
|
|
184
|
+
"iui-list": "_iui3-list",
|
|
185
|
+
"iui-menu": "_iui3-menu",
|
|
186
|
+
"iui-header-menu-icon": "_iui3-header-menu-icon",
|
|
187
|
+
"iui-list-item": "_iui3-list-item",
|
|
188
|
+
"iui-menu-item-skeleton": "_iui3-menu-item-skeleton",
|
|
189
|
+
"iui-menu-item": "_iui3-menu-item",
|
|
190
|
+
"iui-link-action": "_iui3-link-action",
|
|
191
|
+
"iui-focused": "_iui3-focused",
|
|
192
|
+
"iui-icon": "_iui3-icon",
|
|
193
|
+
"iui-list-item-icon": "_iui3-list-item-icon",
|
|
194
|
+
"iui-menu-label": "_iui3-menu-label",
|
|
195
|
+
"iui-menu-description": "_iui3-menu-description",
|
|
196
|
+
"iui-menu-content": "_iui3-menu-content",
|
|
197
|
+
"iui-list-item-content": "_iui3-list-item-content",
|
|
198
|
+
"iui-list-item-description": "_iui3-list-item-description",
|
|
199
|
+
"iui-menu-divider": "_iui3-menu-divider",
|
|
200
|
+
"iui-non-ideal-state": "_iui3-non-ideal-state",
|
|
201
|
+
"iui-non-ideal-state-illustration": "_iui3-non-ideal-state-illustration",
|
|
202
|
+
"iui-non-ideal-state-title": "_iui3-non-ideal-state-title",
|
|
203
|
+
"iui-non-ideal-state-description": "_iui3-non-ideal-state-description",
|
|
204
|
+
"iui-non-ideal-state-actions": "_iui3-non-ideal-state-actions",
|
|
205
|
+
"iui-overlay": "_iui3-overlay",
|
|
206
|
+
"iui-progress-indicator-linear": "_iui3-progress-indicator-linear",
|
|
207
|
+
"iui-overlay-wrapper": "_iui3-overlay-wrapper",
|
|
208
|
+
"iui-overlay-exiting": "_iui3-overlay-exiting",
|
|
214
209
|
closeAnimation,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
'iui-tree-node-content-expander-icon-expanded':
|
|
412
|
-
'_iui3-tree-node-content-expander-icon-expanded',
|
|
413
|
-
'iui-tree-node-content-label': '_iui3-tree-node-content-label',
|
|
414
|
-
'iui-tree-node-content-title': '_iui3-tree-node-content-title',
|
|
415
|
-
'iui-tree-node-content-caption': '_iui3-tree-node-content-caption',
|
|
416
|
-
'iui-button-base': '_iui3-button-base',
|
|
417
|
-
'iui-svg-icon': '_iui3-svg-icon',
|
|
418
|
-
'iui-notification-marker': '_iui3-notification-marker',
|
|
210
|
+
"iui-progress-indicator-radial": "_iui3-progress-indicator-radial",
|
|
211
|
+
"iui-uioihru": "_iui3-uioihru",
|
|
212
|
+
"iui-progress-indicator-linear-label": "_iui3-progress-indicator-linear-label",
|
|
213
|
+
"iui-uioihsj": "_iui3-uioihsj",
|
|
214
|
+
"iui-radio": "_iui3-radio",
|
|
215
|
+
"iui-radio-tile": "_iui3-radio-tile",
|
|
216
|
+
"iui-radio-tile-icon": "_iui3-radio-tile-icon",
|
|
217
|
+
"iui-radio-tile-container": "_iui3-radio-tile-container",
|
|
218
|
+
"iui-radio-tile-input": "_iui3-radio-tile-input",
|
|
219
|
+
"iui-radio-tile-label": "_iui3-radio-tile-label",
|
|
220
|
+
"iui-radio-tile-sublabel": "_iui3-radio-tile-sublabel",
|
|
221
|
+
"iui-searchbox": "_iui3-searchbox",
|
|
222
|
+
"iui-expandable-searchbox": "_iui3-expandable-searchbox",
|
|
223
|
+
"iui-searchbox-open-button": "_iui3-searchbox-open-button",
|
|
224
|
+
"iui-search-icon": "_iui3-search-icon",
|
|
225
|
+
"iui-search-input": "_iui3-search-input",
|
|
226
|
+
"iui-placeholder": "_iui3-placeholder",
|
|
227
|
+
"iui-select-tag": "_iui3-select-tag",
|
|
228
|
+
"iui-select-tag-label": "_iui3-select-tag-label",
|
|
229
|
+
"iui-select-tag-button": "_iui3-select-tag-button",
|
|
230
|
+
"iui-select-tag-button-icon": "_iui3-select-tag-button-icon",
|
|
231
|
+
"iui-side-navigation": "_iui3-side-navigation",
|
|
232
|
+
"iui-sidenav-content": "_iui3-sidenav-content",
|
|
233
|
+
"iui-top": "_iui3-top",
|
|
234
|
+
"iui-sidenav-button": "_iui3-sidenav-button",
|
|
235
|
+
"iui-expand": "_iui3-expand",
|
|
236
|
+
"iui-collapsed": "_iui3-collapsed",
|
|
237
|
+
"iui-expanded": "_iui3-expanded",
|
|
238
|
+
"iui-submenu-open": "_iui3-submenu-open",
|
|
239
|
+
"iui-side-navigation-submenu": "_iui3-side-navigation-submenu",
|
|
240
|
+
"iui-enter": "_iui3-enter",
|
|
241
|
+
"iui-enter-active": "_iui3-enter-active",
|
|
242
|
+
"iui-exit": "_iui3-exit",
|
|
243
|
+
"iui-exit-active": "_iui3-exit-active",
|
|
244
|
+
"iui-side-navigation-submenu-content": "_iui3-side-navigation-submenu-content",
|
|
245
|
+
"iui-side-navigation-submenu-header": "_iui3-side-navigation-submenu-header",
|
|
246
|
+
"iui-side-navigation-submenu-header-label": "_iui3-side-navigation-submenu-header-label",
|
|
247
|
+
"iui-side-navigation-submenu-header-actions": "_iui3-side-navigation-submenu-header-actions",
|
|
248
|
+
"iui-side-navigation-wrapper": "_iui3-side-navigation-wrapper",
|
|
249
|
+
"iui-skip-to-content-link": "_iui3-skip-to-content-link",
|
|
250
|
+
"iui-slider-container": "_iui3-slider-container",
|
|
251
|
+
"iui-slider-min": "_iui3-slider-min",
|
|
252
|
+
"iui-slider-max": "_iui3-slider-max",
|
|
253
|
+
"iui-slider-ticks": "_iui3-slider-ticks",
|
|
254
|
+
"iui-slider-tick": "_iui3-slider-tick",
|
|
255
|
+
"iui-slider-track": "_iui3-slider-track",
|
|
256
|
+
"iui-slider-thumb": "_iui3-slider-thumb",
|
|
257
|
+
"iui-grabbing": "_iui3-grabbing",
|
|
258
|
+
"iui-stepper": "_iui3-stepper",
|
|
259
|
+
"iui-stepper-step": "_iui3-stepper-step",
|
|
260
|
+
"iui-current": "_iui3-current",
|
|
261
|
+
"iui-clickable": "_iui3-clickable",
|
|
262
|
+
"iui-stepper-circle": "_iui3-stepper-circle",
|
|
263
|
+
"iui-stepper-track-content": "_iui3-stepper-track-content",
|
|
264
|
+
"iui-stepper-step-name": "_iui3-stepper-step-name",
|
|
265
|
+
"iui-stepper-steps-label": "_iui3-stepper-steps-label",
|
|
266
|
+
"iui-stepper-steps-label-count": "_iui3-stepper-steps-label-count",
|
|
267
|
+
"iui-surface": "_iui3-surface",
|
|
268
|
+
"iui-surface-body": "_iui3-surface-body",
|
|
269
|
+
"iui-surface-header": "_iui3-surface-header",
|
|
270
|
+
"iui-popover-surface": "_iui3-popover-surface",
|
|
271
|
+
"iui-table": "_iui3-table",
|
|
272
|
+
"iui-table-cell-end-icon": "_iui3-table-cell-end-icon",
|
|
273
|
+
"iui-table-cell-start-icon": "_iui3-table-cell-start-icon",
|
|
274
|
+
"iui-table-header": "_iui3-table-header",
|
|
275
|
+
"iui-table-cell": "_iui3-table-cell",
|
|
276
|
+
"iui-table-paginator": "_iui3-table-paginator",
|
|
277
|
+
"iui-table-body": "_iui3-table-body",
|
|
278
|
+
"iui-table-header-wrapper": "_iui3-table-header-wrapper",
|
|
279
|
+
"iui-slot": "_iui3-slot",
|
|
280
|
+
"iui-actionable": "_iui3-actionable",
|
|
281
|
+
"iui-table-filter-button": "_iui3-table-filter-button",
|
|
282
|
+
"iui-table-resizer": "_iui3-table-resizer",
|
|
283
|
+
"iui-table-resizer-bar": "_iui3-table-resizer-bar",
|
|
284
|
+
"iui-table-sort": "_iui3-table-sort",
|
|
285
|
+
"iui-table-reorder-bar": "_iui3-table-reorder-bar",
|
|
286
|
+
"iui-table-reorder-column-right": "_iui3-table-reorder-column-right",
|
|
287
|
+
"iui-table-reorder-column-left": "_iui3-table-reorder-column-left",
|
|
288
|
+
"iui-sorted": "_iui3-sorted",
|
|
289
|
+
"iui-table-row": "_iui3-table-row",
|
|
290
|
+
"iui-table-more-options": "_iui3-table-more-options",
|
|
291
|
+
"iui-table-row-expander": "_iui3-table-row-expander",
|
|
292
|
+
"iui-table-row-expanded": "_iui3-table-row-expanded",
|
|
293
|
+
"iui-table-expanded-content": "_iui3-table-expanded-content",
|
|
294
|
+
"iui-new": "_iui3-new",
|
|
295
|
+
"iui-main-column": "_iui3-main-column",
|
|
296
|
+
"iui-table-header-actions-container": "_iui3-table-header-actions-container",
|
|
297
|
+
"iui-scroll-snapping": "_iui3-scroll-snapping",
|
|
298
|
+
"iui-zebra-striping": "_iui3-zebra-striping",
|
|
299
|
+
"iui-table-empty": "_iui3-table-empty",
|
|
300
|
+
"iui-table-cell-sticky": "_iui3-table-cell-sticky",
|
|
301
|
+
"iui-table-cell-shadow-left": "_iui3-table-cell-shadow-left",
|
|
302
|
+
"iui-table-cell-shadow-right": "_iui3-table-cell-shadow-right",
|
|
303
|
+
"iui-left": "_iui3-left",
|
|
304
|
+
"iui-center": "_iui3-center",
|
|
305
|
+
"iui-table-paginator-page-size-label": "_iui3-table-paginator-page-size-label",
|
|
306
|
+
"iui-table-paginator-ellipsis": "_iui3-table-paginator-ellipsis",
|
|
307
|
+
"iui-table-paginator-ellipsis-small": "_iui3-table-paginator-ellipsis-small",
|
|
308
|
+
"iui-table-paginator-pages-group": "_iui3-table-paginator-pages-group",
|
|
309
|
+
"iui-table-paginator-page-button": "_iui3-table-paginator-page-button",
|
|
310
|
+
"iui-table-paginator-page-button-small": "_iui3-table-paginator-page-button-small",
|
|
311
|
+
"iui-table-column-filter": "_iui3-table-column-filter",
|
|
312
|
+
"iui-button-bar": "_iui3-button-bar",
|
|
313
|
+
"iui-tabs-wrapper": "_iui3-tabs-wrapper",
|
|
314
|
+
"iui-horizontal": "_iui3-horizontal",
|
|
315
|
+
"iui-tabs": "_iui3-tabs",
|
|
316
|
+
"scroll-shadow-inset-horizontal": "_iui3-scroll-shadow-inset-horizontal",
|
|
317
|
+
"iui-borderless": "_iui3-borderless",
|
|
318
|
+
"iui-tab": "_iui3-tab",
|
|
319
|
+
"iui-vertical": "_iui3-vertical",
|
|
320
|
+
"scroll-shadow-inset-vertical": "_iui3-scroll-shadow-inset-vertical",
|
|
321
|
+
"iui-tabs-content": "_iui3-tabs-content",
|
|
322
|
+
"iui-tabs-actions-wrapper": "_iui3-tabs-actions-wrapper",
|
|
323
|
+
"iui-default": "_iui3-default",
|
|
324
|
+
"iui-tabs-actions": "_iui3-tabs-actions",
|
|
325
|
+
"iui-tab-icon": "_iui3-tab-icon",
|
|
326
|
+
"iui-tab-description": "_iui3-tab-description",
|
|
327
|
+
"iui-tab-label": "_iui3-tab-label",
|
|
328
|
+
"iui-green": "_iui3-green",
|
|
329
|
+
"iui-pill": "_iui3-pill",
|
|
330
|
+
"iui-not-animated": "_iui3-not-animated",
|
|
331
|
+
"iui-tag": "_iui3-tag",
|
|
332
|
+
"iui-tag-basic": "_iui3-tag-basic",
|
|
333
|
+
"iui-tag-label": "_iui3-tag-label",
|
|
334
|
+
"iui-tag-button": "_iui3-tag-button",
|
|
335
|
+
"iui-tag-container": "_iui3-tag-container",
|
|
336
|
+
"iui-truncate": "_iui3-truncate",
|
|
337
|
+
"iui-scroll": "_iui3-scroll",
|
|
338
|
+
"iui-text-headline": "_iui3-text-headline",
|
|
339
|
+
"iui-text-title": "_iui3-text-title",
|
|
340
|
+
"iui-text-subheading": "_iui3-text-subheading",
|
|
341
|
+
"iui-text-leading": "_iui3-text-leading",
|
|
342
|
+
"iui-text-block": "_iui3-text-block",
|
|
343
|
+
"iui-text-small": "_iui3-text-small",
|
|
344
|
+
"iui-text-muted": "_iui3-text-muted",
|
|
345
|
+
"iui-skeleton": "_iui3-skeleton",
|
|
346
|
+
"skeleton-shimmer": "_iui3-skeleton-shimmer",
|
|
347
|
+
"iui-text-spacing": "_iui3-text-spacing",
|
|
348
|
+
"iui-tile": "_iui3-tile",
|
|
349
|
+
"iui-folder": "_iui3-folder",
|
|
350
|
+
"iui-tile-thumbnail": "_iui3-tile-thumbnail",
|
|
351
|
+
"iui-tile-name": "_iui3-tile-name",
|
|
352
|
+
"iui-tile-more-options": "_iui3-tile-more-options",
|
|
353
|
+
"iui-tile-metadata": "_iui3-tile-metadata",
|
|
354
|
+
"iui-tile-description": "_iui3-tile-description",
|
|
355
|
+
"iui-thumbnail-icon": "_iui3-thumbnail-icon",
|
|
356
|
+
"iui-tile-thumbnail-picture": "_iui3-tile-thumbnail-picture",
|
|
357
|
+
"iui-selected": "_iui3-selected",
|
|
358
|
+
"iui-tile-content": "_iui3-tile-content",
|
|
359
|
+
"iui-tile-thumbnail-type-indicator": "_iui3-tile-thumbnail-type-indicator",
|
|
360
|
+
"iui-tile-thumbnail-quick-action": "_iui3-tile-thumbnail-quick-action",
|
|
361
|
+
"iui-tile-thumbnail-badge-container": "_iui3-tile-thumbnail-badge-container",
|
|
362
|
+
"iui-tile-buttons": "_iui3-tile-buttons",
|
|
363
|
+
"iui-tile-name-label": "_iui3-tile-name-label",
|
|
364
|
+
"iui-tile-metadata-icon": "_iui3-tile-metadata-icon",
|
|
365
|
+
"iui-tile-status-icon": "_iui3-tile-status-icon",
|
|
366
|
+
"iui-time": "_iui3-time",
|
|
367
|
+
"iui-period": "_iui3-period",
|
|
368
|
+
"iui-toast-wrapper": "_iui3-toast-wrapper",
|
|
369
|
+
"iui-toast-all": "_iui3-toast-all",
|
|
370
|
+
"iui-placement-top": "_iui3-placement-top",
|
|
371
|
+
"iui-placement-top-start": "_iui3-placement-top-start",
|
|
372
|
+
"iui-placement-top-end": "_iui3-placement-top-end",
|
|
373
|
+
"iui-placement-bottom": "_iui3-placement-bottom",
|
|
374
|
+
"iui-toast": "_iui3-toast",
|
|
375
|
+
"iui-placement-bottom-start": "_iui3-placement-bottom-start",
|
|
376
|
+
"iui-placement-bottom-end": "_iui3-placement-bottom-end",
|
|
377
|
+
"iui-status-area": "_iui3-status-area",
|
|
378
|
+
"iui-message": "_iui3-message",
|
|
379
|
+
"iui-toast-anchor": "_iui3-toast-anchor",
|
|
380
|
+
"iui-informational": "_iui3-informational",
|
|
381
|
+
"iui-label-on-left": "_iui3-label-on-left",
|
|
382
|
+
"iui-label-on-right": "_iui3-label-on-right",
|
|
383
|
+
"iui-toggle-switch-icon": "_iui3-toggle-switch-icon",
|
|
384
|
+
"iui-toggle-switch": "_iui3-toggle-switch",
|
|
385
|
+
"iui-toggle-switch-label": "_iui3-toggle-switch-label",
|
|
386
|
+
"iui-tooltip": "_iui3-tooltip",
|
|
387
|
+
"iui-transfer-list-wrapper": "_iui3-transfer-list-wrapper",
|
|
388
|
+
"iui-transfer-list-listbox-wrapper": "_iui3-transfer-list-listbox-wrapper",
|
|
389
|
+
"iui-transfer-list-listbox": "_iui3-transfer-list-listbox",
|
|
390
|
+
"iui-transfer-list-toolbar": "_iui3-transfer-list-toolbar",
|
|
391
|
+
"iui-tree": "_iui3-tree",
|
|
392
|
+
"iui-sub-tree": "_iui3-sub-tree",
|
|
393
|
+
"iui-tree-item": "_iui3-tree-item",
|
|
394
|
+
"iui-tree-node": "_iui3-tree-node",
|
|
395
|
+
"iui-tree-node-checkbox": "_iui3-tree-node-checkbox",
|
|
396
|
+
"iui-tree-node-content": "_iui3-tree-node-content",
|
|
397
|
+
"iui-tree-node-content-icon": "_iui3-tree-node-content-icon",
|
|
398
|
+
"iui-tree-node-content-expander-icon": "_iui3-tree-node-content-expander-icon",
|
|
399
|
+
"iui-tree-node-content-expander-icon-expanded": "_iui3-tree-node-content-expander-icon-expanded",
|
|
400
|
+
"iui-tree-node-content-label": "_iui3-tree-node-content-label",
|
|
401
|
+
"iui-tree-node-content-title": "_iui3-tree-node-content-title",
|
|
402
|
+
"iui-tree-node-content-caption": "_iui3-tree-node-content-caption",
|
|
403
|
+
"iui-button-base": "_iui3-button-base",
|
|
404
|
+
"iui-svg-icon": "_iui3-svg-icon",
|
|
405
|
+
"iui-notification-marker": "_iui3-notification-marker",
|
|
419
406
|
pulse,
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
407
|
+
"iui-divider": "_iui3-divider",
|
|
408
|
+
"iui-flex": "_iui3-flex",
|
|
409
|
+
"iui-flex-spacer": "_iui3-flex-spacer",
|
|
410
|
+
"iui-flex-item": "_iui3-flex-item",
|
|
411
|
+
"iui-visually-hidden": "_iui3-visually-hidden",
|
|
412
|
+
"iui-link-box": "_iui3-link-box",
|
|
413
|
+
"iui-workflow-diagram": "_iui3-workflow-diagram",
|
|
414
|
+
"iui-workflow-diagram-step": "_iui3-workflow-diagram-step",
|
|
415
|
+
"iui-workflow-diagram-content": "_iui3-workflow-diagram-content"
|
|
429
416
|
};
|
|
430
417
|
module.exports = styles;
|