@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
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Dialog title bar. Recommended to be used as a child of `Dialog`.
|
|
3
|
-
* @example
|
|
4
|
-
* <Dialog.TitleBar>
|
|
5
|
-
* <Dialog.TitleBar.Title>My dialog title</Dialog.TitleBar.Title>
|
|
6
|
-
* </Dialog.TitleBar>
|
|
7
|
-
*/
|
|
8
|
-
export declare const DialogTitleBarTitle: import("../../utils/props.js").PolymorphicForwardRefComponent<"div", {}>;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
Object.defineProperty(exports, '__esModule', {
|
|
3
|
-
value: true,
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, 'DialogTitleBarTitle', {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function () {
|
|
8
|
-
return DialogTitleBarTitle;
|
|
9
|
-
},
|
|
10
|
-
});
|
|
11
|
-
const _index = require('../../utils/index.js');
|
|
12
|
-
const DialogTitleBarTitle = _index.polymorphic.div('iui-dialog-title');
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { PolymorphicForwardRefComponent } from '../../utils/props.js';
|
|
2
|
-
type DividerProps = {
|
|
3
|
-
/**
|
|
4
|
-
* Sets the orientation of the divider
|
|
5
|
-
* @default 'horizontal'
|
|
6
|
-
*/
|
|
7
|
-
orientation?: 'horizontal' | 'vertical';
|
|
8
|
-
};
|
|
9
|
-
/**
|
|
10
|
-
* Shows a divider
|
|
11
|
-
*/
|
|
12
|
-
export declare const Divider: PolymorphicForwardRefComponent<"hr", DividerProps>;
|
|
13
|
-
export {};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
Object.defineProperty(exports, '__esModule', {
|
|
3
|
-
value: true,
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, 'Divider', {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function () {
|
|
8
|
-
return Divider;
|
|
9
|
-
},
|
|
10
|
-
});
|
|
11
|
-
const _interop_require_default = require('@swc/helpers/_/_interop_require_default');
|
|
12
|
-
const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
|
|
13
|
-
const _react = _interop_require_wildcard._(require('react'));
|
|
14
|
-
const _classnames = _interop_require_default._(require('classnames'));
|
|
15
|
-
const _Box = require('../../utils/components/Box.js');
|
|
16
|
-
const Divider = _react.forwardRef((props, ref) => {
|
|
17
|
-
let { className, orientation = 'horizontal', ...rest } = props;
|
|
18
|
-
return _react.createElement(_Box.Box, {
|
|
19
|
-
as: 'hr',
|
|
20
|
-
className: (0, _classnames.default)('iui-divider', className),
|
|
21
|
-
'aria-orientation': 'vertical' === orientation ? 'vertical' : void 0,
|
|
22
|
-
ref: ref,
|
|
23
|
-
...rest,
|
|
24
|
-
});
|
|
25
|
-
});
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import type { PolymorphicForwardRefComponent, PortalProps } from '../../utils/index.js';
|
|
3
|
-
import { usePopover } from '../Popover/Popover.js';
|
|
4
|
-
export type DropdownMenuProps = {
|
|
5
|
-
/**
|
|
6
|
-
* List of menu items. Recommended to use MenuItem component.
|
|
7
|
-
* You can pass function that takes argument `close` that closes the dropdown menu, or a list of MenuItems.
|
|
8
|
-
*/
|
|
9
|
-
menuItems: ((close: () => void) => JSX.Element[]) | JSX.Element[] | JSX.Element;
|
|
10
|
-
/**
|
|
11
|
-
* ARIA role. Role of menu. For menu use 'menu', for select use 'listbox'.
|
|
12
|
-
* @default 'menu'
|
|
13
|
-
*/
|
|
14
|
-
role?: string;
|
|
15
|
-
/**
|
|
16
|
-
* Child element to wrap dropdown with.
|
|
17
|
-
*/
|
|
18
|
-
children: React.ReactNode;
|
|
19
|
-
/**
|
|
20
|
-
* Middleware options.
|
|
21
|
-
*
|
|
22
|
-
* By default, `hide` is enabled. If the menu gets hidden even when it shouldn't (e.g. some custom styles interfering
|
|
23
|
-
* with the trigger's hide detection) consider disabling the `hide` middleware.
|
|
24
|
-
*
|
|
25
|
-
* @see https://floating-ui.com/docs/middleware
|
|
26
|
-
*/
|
|
27
|
-
middleware?: {
|
|
28
|
-
hide?: boolean;
|
|
29
|
-
};
|
|
30
|
-
} & Pick<Parameters<typeof usePopover>[0], 'visible' | 'onVisibleChange' | 'placement' | 'matchWidth'> & Pick<PortalProps, 'portal'>;
|
|
31
|
-
/**
|
|
32
|
-
* Dropdown menu component.
|
|
33
|
-
* Built on top of the {@link Popover} component.
|
|
34
|
-
* @example
|
|
35
|
-
* const menuItems = (close: () => void) => [
|
|
36
|
-
* <MenuItem key={1} onClick={onClick(1, close)}>
|
|
37
|
-
* Item #1
|
|
38
|
-
* </MenuItem>,
|
|
39
|
-
* <MenuItem key={2} onClick={onClick(2, close)}>
|
|
40
|
-
* Item #2
|
|
41
|
-
* </MenuItem>,
|
|
42
|
-
* <MenuItem key={3} onClick={onClick(3, close)}>
|
|
43
|
-
* Item #3
|
|
44
|
-
* </MenuItem>,
|
|
45
|
-
* ];
|
|
46
|
-
* <DropdownMenu menuItems={menuItems}>
|
|
47
|
-
* <Button>Menu</Button>
|
|
48
|
-
* </DropdownMenu>
|
|
49
|
-
*/
|
|
50
|
-
export declare const DropdownMenu: PolymorphicForwardRefComponent<"div", DropdownMenuProps>;
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
Object.defineProperty(exports, '__esModule', {
|
|
3
|
-
value: true,
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, 'DropdownMenu', {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function () {
|
|
8
|
-
return DropdownMenu;
|
|
9
|
-
},
|
|
10
|
-
});
|
|
11
|
-
const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
|
|
12
|
-
const _react = _interop_require_wildcard._(require('react'));
|
|
13
|
-
const _index = require('../../utils/index.js');
|
|
14
|
-
const _Menu = require('../Menu/Menu.js');
|
|
15
|
-
const _react1 = require('@floating-ui/react');
|
|
16
|
-
const DropdownMenu = _react.forwardRef((props, forwardedRef) =>
|
|
17
|
-
_react.createElement(
|
|
18
|
-
_react1.FloatingTree,
|
|
19
|
-
null,
|
|
20
|
-
_react.createElement(DropdownMenuContent, {
|
|
21
|
-
ref: forwardedRef,
|
|
22
|
-
...props,
|
|
23
|
-
}),
|
|
24
|
-
),
|
|
25
|
-
);
|
|
26
|
-
const DropdownMenuContent = _react.forwardRef((props, forwardedRef) => {
|
|
27
|
-
let {
|
|
28
|
-
menuItems,
|
|
29
|
-
children,
|
|
30
|
-
role = 'menu',
|
|
31
|
-
visible: visibleProp,
|
|
32
|
-
placement = 'bottom-start',
|
|
33
|
-
matchWidth = false,
|
|
34
|
-
onVisibleChange,
|
|
35
|
-
portal = true,
|
|
36
|
-
middleware,
|
|
37
|
-
...rest
|
|
38
|
-
} = props;
|
|
39
|
-
let [visible, setVisible] = (0, _index.useControlledState)(
|
|
40
|
-
false,
|
|
41
|
-
visibleProp,
|
|
42
|
-
onVisibleChange,
|
|
43
|
-
);
|
|
44
|
-
let menuContent = _react.useMemo(() => {
|
|
45
|
-
if ('function' == typeof menuItems)
|
|
46
|
-
return menuItems(() => setVisible(false));
|
|
47
|
-
return menuItems;
|
|
48
|
-
}, [menuItems, setVisible]);
|
|
49
|
-
return _react.createElement(
|
|
50
|
-
_Menu.Menu,
|
|
51
|
-
{
|
|
52
|
-
trigger: children,
|
|
53
|
-
onKeyDown: (0, _index.mergeEventHandlers)(props.onKeyDown, (e) => {
|
|
54
|
-
if (e.defaultPrevented) return;
|
|
55
|
-
if ('Tab' === e.key) setVisible(false);
|
|
56
|
-
}),
|
|
57
|
-
role: role,
|
|
58
|
-
ref: forwardedRef,
|
|
59
|
-
portal: portal,
|
|
60
|
-
popoverProps: _react.useMemo(
|
|
61
|
-
() => ({
|
|
62
|
-
placement,
|
|
63
|
-
matchWidth,
|
|
64
|
-
visible,
|
|
65
|
-
onVisibleChange: setVisible,
|
|
66
|
-
middleware,
|
|
67
|
-
}),
|
|
68
|
-
[matchWidth, middleware, placement, setVisible, visible],
|
|
69
|
-
),
|
|
70
|
-
...rest,
|
|
71
|
-
},
|
|
72
|
-
menuContent,
|
|
73
|
-
);
|
|
74
|
-
});
|
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
|
|
3
|
-
type ExpandableBlockOwnProps = {
|
|
4
|
-
/**
|
|
5
|
-
* Status of the block.
|
|
6
|
-
* When set, a colored status icon is shown at the end of the main text.
|
|
7
|
-
*/
|
|
8
|
-
status?: 'positive' | 'negative' | 'warning' | 'informational';
|
|
9
|
-
/**
|
|
10
|
-
* Whether or not to show the block's content.
|
|
11
|
-
* @default false
|
|
12
|
-
*/
|
|
13
|
-
isExpanded?: boolean;
|
|
14
|
-
/**
|
|
15
|
-
* Callback function for toggling an expansion state.
|
|
16
|
-
*/
|
|
17
|
-
onToggle?: (isExpanding: boolean) => void;
|
|
18
|
-
/**
|
|
19
|
-
* Content in the expandable block.
|
|
20
|
-
*/
|
|
21
|
-
children: React.ReactNode;
|
|
22
|
-
/**
|
|
23
|
-
* Modify size of the ExpandableBlock.
|
|
24
|
-
* @default 'default'
|
|
25
|
-
*/
|
|
26
|
-
size?: 'default' | 'small';
|
|
27
|
-
/**
|
|
28
|
-
* Style of the ExpandableBlock.
|
|
29
|
-
* Use 'borderless' to hide outline.
|
|
30
|
-
* @default 'default'
|
|
31
|
-
*/
|
|
32
|
-
styleType?: 'default' | 'borderless';
|
|
33
|
-
/**
|
|
34
|
-
* Disables ExpandableBlock.
|
|
35
|
-
* @default false
|
|
36
|
-
*/
|
|
37
|
-
disabled?: boolean;
|
|
38
|
-
};
|
|
39
|
-
type ExpandableBlockTriggerOwnProps = {
|
|
40
|
-
label?: React.ReactNode;
|
|
41
|
-
caption?: React.ReactNode;
|
|
42
|
-
expandIcon?: React.ReactNode;
|
|
43
|
-
endIcon?: React.ReactNode;
|
|
44
|
-
};
|
|
45
|
-
type ExpandableBlockContentOwnProps = {
|
|
46
|
-
innerProps?: React.ComponentPropsWithoutRef<'div'>;
|
|
47
|
-
};
|
|
48
|
-
/**
|
|
49
|
-
* Expandable block with customizable Title, Caption, Content and EndIcon subcomponents.
|
|
50
|
-
* @example
|
|
51
|
-
* <ExpandableBlock.Wrapper>
|
|
52
|
-
* <ExpandableBlock.Trigger>
|
|
53
|
-
* <ExpandableBlock.ExpandIcon/>
|
|
54
|
-
* <ExpandableBlock.LabelArea>
|
|
55
|
-
* <ExpandableBlock.Title/>
|
|
56
|
-
* <ExpandableBlock.Caption/>
|
|
57
|
-
* </ExpandableBlock.LabelArea>
|
|
58
|
-
* <ExpandableBlock.EndIcon/>
|
|
59
|
-
* </ExpandableBlock.Trigger>
|
|
60
|
-
* <ExpandableBlock.Content/>
|
|
61
|
-
* </ExpandableBlock.Wrapper>
|
|
62
|
-
*/
|
|
63
|
-
export declare const ExpandableBlock: PolymorphicForwardRefComponent<"div", ExpandableBlockOwnProps & {
|
|
64
|
-
title?: React.ReactNode;
|
|
65
|
-
} & Pick<ExpandableBlockTriggerOwnProps, "caption" | "endIcon">> & {
|
|
66
|
-
Wrapper: PolymorphicForwardRefComponent<"div", ExpandableBlockOwnProps>;
|
|
67
|
-
/**
|
|
68
|
-
* `Header` container that contains `ExpandIcon`, `LabelArea` and `EndIcon` subcomponents
|
|
69
|
-
* @example
|
|
70
|
-
* <ExpandableBlock.Trigger>
|
|
71
|
-
* <ExpandableBlock.ExpandIcon/>
|
|
72
|
-
* <ExpandableBlock.LabelArea/>
|
|
73
|
-
* <ExpandableBlock.EndIcon/>
|
|
74
|
-
* </ExpandableBlock.Trigger>
|
|
75
|
-
*/
|
|
76
|
-
Trigger: PolymorphicForwardRefComponent<"div", ExpandableBlockTriggerOwnProps>;
|
|
77
|
-
/**
|
|
78
|
-
* The expanding icon on the left of header
|
|
79
|
-
*/
|
|
80
|
-
ExpandIcon: PolymorphicForwardRefComponent<"span", {}>;
|
|
81
|
-
/**
|
|
82
|
-
* `LabelArea` subcomponent that contains `Title` and `Caption`
|
|
83
|
-
* @example
|
|
84
|
-
* <ExpandableBlock.LabelArea>
|
|
85
|
-
* <ExpandableBLock.Title> Title </ExpandableBlock.Title>
|
|
86
|
-
* <ExpandableBlock.Caption> Caption </ExpandableBlock.Caption>
|
|
87
|
-
* </ExpandableBlock.LabelArea>
|
|
88
|
-
*/
|
|
89
|
-
LabelArea: PolymorphicForwardRefComponent<"span", {}>;
|
|
90
|
-
/**
|
|
91
|
-
* The main text displayed on the block header, regardless of state.
|
|
92
|
-
*/
|
|
93
|
-
Title: PolymorphicForwardRefComponent<"button", {}>;
|
|
94
|
-
/**
|
|
95
|
-
* Small note displayed below title, regardless of state.
|
|
96
|
-
*/
|
|
97
|
-
Caption: PolymorphicForwardRefComponent<"div", {}>;
|
|
98
|
-
/**
|
|
99
|
-
* Svg icon displayed at the end of the main text.
|
|
100
|
-
* Will override status icon if specified. Used inside `Header` subcomponent.
|
|
101
|
-
* @example
|
|
102
|
-
* <ExpandableBlock.Trigger>
|
|
103
|
-
* <ExpandableBlock.EndIcon> <SvgIcon/> </ExpandableBlock.EndIcon>
|
|
104
|
-
* <ExpandableBlock.Trigger/>
|
|
105
|
-
*/
|
|
106
|
-
EndIcon: PolymorphicForwardRefComponent<"span", Omit<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
107
|
-
ref?: ((instance: HTMLSpanElement | null) => void) | React.RefObject<HTMLSpanElement> | null | undefined;
|
|
108
|
-
}, "fill" | "as" | "key" | "size" | keyof React.HTMLAttributes<HTMLSpanElement> | "padded"> & {
|
|
109
|
-
size?: "auto" | "small" | "medium" | "large" | import("../../utils/types.js").AnyString;
|
|
110
|
-
fill?: "default" | "positive" | "informational" | "negative" | "warning" | import("../../utils/types.js").AnyString;
|
|
111
|
-
padded?: boolean;
|
|
112
|
-
} & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
113
|
-
as?: "span" | undefined;
|
|
114
|
-
}, "ref">>;
|
|
115
|
-
/**
|
|
116
|
-
* Content shown in the block's body when fully expanded.
|
|
117
|
-
* @example
|
|
118
|
-
* <ExpandableBlock.Wrapper>
|
|
119
|
-
* <ExpandableBlock.Content> Content </ExpandableBlock.Content>
|
|
120
|
-
* </ExpandableBlock.Wrapper>
|
|
121
|
-
*/
|
|
122
|
-
Content: PolymorphicForwardRefComponent<"div", ExpandableBlockContentOwnProps>;
|
|
123
|
-
};
|
|
124
|
-
export {};
|
|
@@ -1,211 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
Object.defineProperty(exports, '__esModule', {
|
|
3
|
-
value: true,
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, 'ExpandableBlock', {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function () {
|
|
8
|
-
return ExpandableBlock;
|
|
9
|
-
},
|
|
10
|
-
});
|
|
11
|
-
const _interop_require_default = require('@swc/helpers/_/_interop_require_default');
|
|
12
|
-
const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
|
|
13
|
-
const _classnames = _interop_require_default._(require('classnames'));
|
|
14
|
-
const _react = _interop_require_wildcard._(require('react'));
|
|
15
|
-
const _index = require('../../utils/index.js');
|
|
16
|
-
const _Icon = require('../Icon/Icon.js');
|
|
17
|
-
const _LinkAction = require('../LinkAction/LinkAction.js');
|
|
18
|
-
const ExpandableBlockContext = _react.createContext(void 0);
|
|
19
|
-
const ExpandableBlockComponent = _react.forwardRef((props, forwardedRef) => {
|
|
20
|
-
let { children, title, caption, endIcon, ...rest } = props;
|
|
21
|
-
return _react.createElement(
|
|
22
|
-
ExpandableBlock.Wrapper,
|
|
23
|
-
{
|
|
24
|
-
...rest,
|
|
25
|
-
ref: forwardedRef,
|
|
26
|
-
},
|
|
27
|
-
_react.createElement(ExpandableBlock.Trigger, {
|
|
28
|
-
label: title,
|
|
29
|
-
caption: caption,
|
|
30
|
-
endIcon: endIcon,
|
|
31
|
-
}),
|
|
32
|
-
_react.createElement(ExpandableBlock.Content, null, children),
|
|
33
|
-
);
|
|
34
|
-
});
|
|
35
|
-
const ExpandableBlockWrapper = _react.forwardRef((props, forwardedRef) => {
|
|
36
|
-
let {
|
|
37
|
-
children,
|
|
38
|
-
className,
|
|
39
|
-
onToggle,
|
|
40
|
-
style,
|
|
41
|
-
isExpanded,
|
|
42
|
-
status,
|
|
43
|
-
size = 'default',
|
|
44
|
-
styleType = 'default',
|
|
45
|
-
disabled = false,
|
|
46
|
-
...rest
|
|
47
|
-
} = props;
|
|
48
|
-
let [expandedState, setExpanded] = _react.useState(isExpanded ?? false);
|
|
49
|
-
let expanded = isExpanded ?? expandedState;
|
|
50
|
-
let [descriptionId, setDescriptionId] = _react.useState(void 0);
|
|
51
|
-
return _react.createElement(
|
|
52
|
-
ExpandableBlockContext.Provider,
|
|
53
|
-
{
|
|
54
|
-
value: {
|
|
55
|
-
status,
|
|
56
|
-
isExpanded: expanded,
|
|
57
|
-
onToggle,
|
|
58
|
-
size,
|
|
59
|
-
styleType,
|
|
60
|
-
disabled,
|
|
61
|
-
setExpanded,
|
|
62
|
-
children,
|
|
63
|
-
descriptionId,
|
|
64
|
-
setDescriptionId,
|
|
65
|
-
},
|
|
66
|
-
},
|
|
67
|
-
_react.createElement(
|
|
68
|
-
_index.Box,
|
|
69
|
-
{
|
|
70
|
-
className: (0, _classnames.default)('iui-expandable-block', className),
|
|
71
|
-
'data-iui-expanded': expanded,
|
|
72
|
-
'data-iui-size': size,
|
|
73
|
-
'data-iui-variant': 'default' !== styleType ? styleType : void 0,
|
|
74
|
-
style: style,
|
|
75
|
-
ref: forwardedRef,
|
|
76
|
-
...rest,
|
|
77
|
-
},
|
|
78
|
-
children,
|
|
79
|
-
),
|
|
80
|
-
);
|
|
81
|
-
});
|
|
82
|
-
const ExpandableBlockTrigger = _react.forwardRef((props, forwardedRef) => {
|
|
83
|
-
let { className, children, label, caption, expandIcon, endIcon, ...rest } =
|
|
84
|
-
props;
|
|
85
|
-
let { disabled, status } = (0, _index.useSafeContext)(ExpandableBlockContext);
|
|
86
|
-
return _react.createElement(
|
|
87
|
-
_LinkAction.LinkBox,
|
|
88
|
-
{
|
|
89
|
-
className: (0, _classnames.default)('iui-expandable-header', className),
|
|
90
|
-
'data-iui-disabled': disabled ? 'true' : void 0,
|
|
91
|
-
ref: forwardedRef,
|
|
92
|
-
...rest,
|
|
93
|
-
},
|
|
94
|
-
children ??
|
|
95
|
-
_react.createElement(
|
|
96
|
-
_react.Fragment,
|
|
97
|
-
null,
|
|
98
|
-
expandIcon ?? _react.createElement(ExpandableBlock.ExpandIcon, null),
|
|
99
|
-
_react.createElement(
|
|
100
|
-
ExpandableBlock.LabelArea,
|
|
101
|
-
null,
|
|
102
|
-
_react.createElement(ExpandableBlock.Title, null, label),
|
|
103
|
-
caption &&
|
|
104
|
-
_react.createElement(ExpandableBlock.Caption, null, caption),
|
|
105
|
-
),
|
|
106
|
-
endIcon || status
|
|
107
|
-
? _react.createElement(ExpandableBlock.EndIcon, null, endIcon)
|
|
108
|
-
: null,
|
|
109
|
-
),
|
|
110
|
-
);
|
|
111
|
-
});
|
|
112
|
-
const ExpandableBlockExpandIcon = _react.forwardRef((props, forwardedRef) => {
|
|
113
|
-
let { className, children, ...rest } = props;
|
|
114
|
-
return _react.createElement(
|
|
115
|
-
_Icon.Icon,
|
|
116
|
-
{
|
|
117
|
-
className: (0, _classnames.default)(
|
|
118
|
-
'iui-expandable-block-icon',
|
|
119
|
-
className,
|
|
120
|
-
),
|
|
121
|
-
ref: forwardedRef,
|
|
122
|
-
...rest,
|
|
123
|
-
},
|
|
124
|
-
children ??
|
|
125
|
-
_react.createElement(_index.SvgChevronRight, {
|
|
126
|
-
'aria-hidden': true,
|
|
127
|
-
}),
|
|
128
|
-
);
|
|
129
|
-
});
|
|
130
|
-
const ExpandableBlockLabelArea = _index.polymorphic.span(
|
|
131
|
-
'iui-expandable-block-label',
|
|
132
|
-
);
|
|
133
|
-
const ExpandableBlockTitle = _react.forwardRef((props, forwardedRef) => {
|
|
134
|
-
let { className, children, onClick: onClickProp, ...rest } = props;
|
|
135
|
-
let { isExpanded, setExpanded, disabled, onToggle, descriptionId } = (0,
|
|
136
|
-
_index.useSafeContext)(ExpandableBlockContext);
|
|
137
|
-
return _react.createElement(
|
|
138
|
-
_index.ButtonBase,
|
|
139
|
-
{
|
|
140
|
-
className: (0, _classnames.default)(
|
|
141
|
-
'iui-expandable-block-title',
|
|
142
|
-
'iui-link-action',
|
|
143
|
-
className,
|
|
144
|
-
),
|
|
145
|
-
'aria-expanded': isExpanded,
|
|
146
|
-
'aria-disabled': disabled,
|
|
147
|
-
onClick: (0, _index.mergeEventHandlers)(onClickProp, () => {
|
|
148
|
-
if (disabled) return;
|
|
149
|
-
setExpanded(!isExpanded);
|
|
150
|
-
onToggle?.(!isExpanded);
|
|
151
|
-
}),
|
|
152
|
-
ref: forwardedRef,
|
|
153
|
-
'aria-describedby': descriptionId,
|
|
154
|
-
...rest,
|
|
155
|
-
},
|
|
156
|
-
children,
|
|
157
|
-
);
|
|
158
|
-
});
|
|
159
|
-
const ExpandableBlockCaption = _react.forwardRef((props, forwardedRef) => {
|
|
160
|
-
let fallbackId = (0, _index.useId)();
|
|
161
|
-
let { setDescriptionId } = (0, _index.useSafeContext)(ExpandableBlockContext);
|
|
162
|
-
_react.useEffect(() => {
|
|
163
|
-
setDescriptionId(props.id || fallbackId);
|
|
164
|
-
return () => setDescriptionId(void 0);
|
|
165
|
-
}, [props.id, fallbackId, setDescriptionId]);
|
|
166
|
-
return _react.createElement(_index.Box, {
|
|
167
|
-
ref: forwardedRef,
|
|
168
|
-
id: fallbackId,
|
|
169
|
-
...props,
|
|
170
|
-
className: (0, _classnames.default)(
|
|
171
|
-
'iui-expandable-block-caption',
|
|
172
|
-
props?.className,
|
|
173
|
-
),
|
|
174
|
-
});
|
|
175
|
-
});
|
|
176
|
-
const ExpandableBlockEndIcon = _react.forwardRef((props, forwardedRef) => {
|
|
177
|
-
let { children, ...rest } = props;
|
|
178
|
-
let { status } = (0, _index.useSafeContext)(ExpandableBlockContext);
|
|
179
|
-
let icon = children ?? (status && _index.StatusIconMap[status]());
|
|
180
|
-
return _react.createElement(
|
|
181
|
-
_Icon.Icon,
|
|
182
|
-
{
|
|
183
|
-
fill: status,
|
|
184
|
-
ref: forwardedRef,
|
|
185
|
-
...rest,
|
|
186
|
-
},
|
|
187
|
-
icon,
|
|
188
|
-
);
|
|
189
|
-
});
|
|
190
|
-
const ExpandableBlockContent = _react.forwardRef((props, forwardedRef) => {
|
|
191
|
-
let { className, children, innerProps, ...rest } = props;
|
|
192
|
-
return _react.createElement(
|
|
193
|
-
_index.Box,
|
|
194
|
-
{
|
|
195
|
-
className: (0, _classnames.default)('iui-expandable-content', className),
|
|
196
|
-
ref: forwardedRef,
|
|
197
|
-
...rest,
|
|
198
|
-
},
|
|
199
|
-
_react.createElement(_index.Box, innerProps, children),
|
|
200
|
-
);
|
|
201
|
-
});
|
|
202
|
-
const ExpandableBlock = Object.assign(ExpandableBlockComponent, {
|
|
203
|
-
Wrapper: ExpandableBlockWrapper,
|
|
204
|
-
Trigger: ExpandableBlockTrigger,
|
|
205
|
-
ExpandIcon: ExpandableBlockExpandIcon,
|
|
206
|
-
LabelArea: ExpandableBlockLabelArea,
|
|
207
|
-
Title: ExpandableBlockTitle,
|
|
208
|
-
Caption: ExpandableBlockCaption,
|
|
209
|
-
EndIcon: ExpandableBlockEndIcon,
|
|
210
|
-
Content: ExpandableBlockContent,
|
|
211
|
-
});
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
|
|
3
|
-
type FieldsetProps = {
|
|
4
|
-
/**
|
|
5
|
-
* The caption or title for the fieldset.
|
|
6
|
-
*/
|
|
7
|
-
legend?: React.ReactNode;
|
|
8
|
-
};
|
|
9
|
-
/**
|
|
10
|
-
* Fieldset component to group several inputs, controls and labels within a form.
|
|
11
|
-
* @example
|
|
12
|
-
* <Fieldset legend='Settings'>
|
|
13
|
-
* <Input />
|
|
14
|
-
* <InputGroup>
|
|
15
|
-
* <ToggleSwitch />
|
|
16
|
-
* <ToggleSwitch />
|
|
17
|
-
* </InputGroup>
|
|
18
|
-
* </Fieldset>
|
|
19
|
-
*/
|
|
20
|
-
export declare const Fieldset: PolymorphicForwardRefComponent<"fieldset", FieldsetProps>;
|
|
21
|
-
export {};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
Object.defineProperty(exports, '__esModule', {
|
|
3
|
-
value: true,
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, 'Fieldset', {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function () {
|
|
8
|
-
return Fieldset;
|
|
9
|
-
},
|
|
10
|
-
});
|
|
11
|
-
const _interop_require_default = require('@swc/helpers/_/_interop_require_default');
|
|
12
|
-
const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
|
|
13
|
-
const _react = _interop_require_wildcard._(require('react'));
|
|
14
|
-
const _index = require('../../utils/index.js');
|
|
15
|
-
const _classnames = _interop_require_default._(require('classnames'));
|
|
16
|
-
const Fieldset = _react.forwardRef((props, ref) => {
|
|
17
|
-
let { children, className, disabled, legend, ...rest } = props;
|
|
18
|
-
return _react.createElement(
|
|
19
|
-
_index.FieldsetBase,
|
|
20
|
-
{
|
|
21
|
-
className: (0, _classnames.default)('iui-fieldset', className),
|
|
22
|
-
disabled: disabled,
|
|
23
|
-
ref: ref,
|
|
24
|
-
...rest,
|
|
25
|
-
},
|
|
26
|
-
legend && _react.createElement('legend', null, legend),
|
|
27
|
-
disabled
|
|
28
|
-
? _react.Children.map(children, (child) =>
|
|
29
|
-
_react.isValidElement(child)
|
|
30
|
-
? _react.cloneElement(child, {
|
|
31
|
-
disabled: true,
|
|
32
|
-
})
|
|
33
|
-
: child,
|
|
34
|
-
)
|
|
35
|
-
: children,
|
|
36
|
-
);
|
|
37
|
-
});
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
|
|
2
|
-
/**
|
|
3
|
-
* Empty file card to be used with the `FileUploadCard` component when no file has been uploaded.
|
|
4
|
-
* @example
|
|
5
|
-
* <FileEmptyCard />
|
|
6
|
-
* <FileEmptyCard>
|
|
7
|
-
* <FileEmptyCard.Icon>
|
|
8
|
-
* <SvgSmileySadVery />
|
|
9
|
-
* </FileEmptyCard.Icon>
|
|
10
|
-
* <FileEmptyCard.Text>
|
|
11
|
-
* <FileUploadCard.InputLabel>
|
|
12
|
-
* Custom Label Text
|
|
13
|
-
* </FileUploadCard.InputLabel>
|
|
14
|
-
* <div>Custom Description Text</div>
|
|
15
|
-
* </FileEmptyCard.Text>
|
|
16
|
-
* </FileEmptyCard>
|
|
17
|
-
*/
|
|
18
|
-
export declare const FileEmptyCard: PolymorphicForwardRefComponent<"div", {}> & {
|
|
19
|
-
Icon: PolymorphicForwardRefComponent<"span", {}>;
|
|
20
|
-
Text: PolymorphicForwardRefComponent<"span", {}>;
|
|
21
|
-
};
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
Object.defineProperty(exports, '__esModule', {
|
|
3
|
-
value: true,
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, 'FileEmptyCard', {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function () {
|
|
8
|
-
return FileEmptyCard;
|
|
9
|
-
},
|
|
10
|
-
});
|
|
11
|
-
const _interop_require_default = require('@swc/helpers/_/_interop_require_default');
|
|
12
|
-
const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
|
|
13
|
-
const _react = _interop_require_wildcard._(require('react'));
|
|
14
|
-
const _index = require('../../utils/index.js');
|
|
15
|
-
const _classnames = _interop_require_default._(require('classnames'));
|
|
16
|
-
const _FileUploadCard = require('./FileUploadCard.js');
|
|
17
|
-
const FileEmptyCardIcon = _index.polymorphic.span('iui-file-card-empty-icon', {
|
|
18
|
-
children: _react.createElement(_index.SvgUpload, null),
|
|
19
|
-
});
|
|
20
|
-
const FileEmptyCardText = _index.polymorphic.span('iui-file-card-empty-action');
|
|
21
|
-
const FileEmptyCardComponent = _react.forwardRef((props, ref) => {
|
|
22
|
-
let { children, className, ...rest } = props;
|
|
23
|
-
return _react.createElement(
|
|
24
|
-
_index.Box,
|
|
25
|
-
{
|
|
26
|
-
className: (0, _classnames.default)('iui-file-card-empty', className),
|
|
27
|
-
ref: ref,
|
|
28
|
-
...rest,
|
|
29
|
-
},
|
|
30
|
-
children ??
|
|
31
|
-
_react.createElement(
|
|
32
|
-
_react.Fragment,
|
|
33
|
-
null,
|
|
34
|
-
_react.createElement(FileEmptyCard.Icon, null),
|
|
35
|
-
_react.createElement(
|
|
36
|
-
FileEmptyCard.Text,
|
|
37
|
-
null,
|
|
38
|
-
_react.createElement(
|
|
39
|
-
_FileUploadCard.FileUploadCard.InputLabel,
|
|
40
|
-
null,
|
|
41
|
-
'Choose a file',
|
|
42
|
-
),
|
|
43
|
-
_react.createElement('div', null, 'to upload.'),
|
|
44
|
-
),
|
|
45
|
-
),
|
|
46
|
-
);
|
|
47
|
-
});
|
|
48
|
-
const FileEmptyCard = Object.assign(FileEmptyCardComponent, {
|
|
49
|
-
Icon: FileEmptyCardIcon,
|
|
50
|
-
Text: FileEmptyCardText,
|
|
51
|
-
});
|