@itwin/itwinui-react 3.16.1 → 5.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -875
- package/LICENSE.md +1 -1
- package/README.md +16 -87
- package/dist/DEV/bricks/Anchor.js +27 -0
- package/dist/DEV/bricks/Button.js +24 -0
- package/dist/DEV/bricks/Checkbox.js +24 -0
- package/dist/DEV/bricks/Divider.js +21 -0
- package/dist/DEV/bricks/DropdownMenu.js +106 -0
- package/dist/DEV/bricks/Field.js +27 -0
- package/dist/DEV/bricks/Icon.js +62 -0
- package/dist/DEV/bricks/IconButton.js +33 -0
- package/dist/DEV/bricks/Kbd.js +21 -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 +146 -0
- package/dist/DEV/bricks/Select.js +55 -0
- package/dist/DEV/bricks/Switch.js +25 -0
- package/dist/DEV/bricks/Tabs.js +91 -0
- package/dist/DEV/bricks/Text.js +20 -0
- package/dist/DEV/bricks/TextBox.js +100 -0
- package/dist/DEV/bricks/Textarea.js +30 -0
- package/dist/DEV/bricks/Tooltip.js +76 -0
- package/dist/DEV/bricks/Tree.js +118 -0
- package/dist/DEV/bricks/VisuallyHidden.js +12 -0
- package/dist/DEV/bricks/index.js +41 -0
- package/dist/DEV/bricks/styles.css.js +8 -0
- package/dist/DEV/bricks/~hooks.js +43 -0
- package/dist/DEV/bricks/~utils.js +9 -0
- package/dist/DEV/foundations/styles.css.js +8 -0
- package/dist/bricks/Anchor.d.ts +17 -0
- package/dist/bricks/Anchor.js +26 -0
- package/dist/bricks/Button.d.ts +43 -0
- package/dist/bricks/Button.js +23 -0
- package/dist/bricks/Checkbox.d.ts +23 -0
- package/dist/bricks/Checkbox.js +23 -0
- package/dist/bricks/Divider.d.ts +18 -0
- package/dist/bricks/Divider.js +20 -0
- package/dist/bricks/DropdownMenu.d.ts +84 -0
- package/dist/bricks/DropdownMenu.js +102 -0
- package/dist/bricks/Field.d.ts +31 -0
- package/dist/bricks/Field.js +26 -0
- package/dist/bricks/Icon.d.ts +35 -0
- package/dist/bricks/Icon.js +60 -0
- package/dist/bricks/IconButton.d.ts +79 -0
- package/dist/bricks/IconButton.js +32 -0
- package/dist/bricks/Kbd.d.ts +15 -0
- package/dist/bricks/Kbd.js +20 -0
- package/dist/bricks/Label.d.ts +25 -0
- package/dist/bricks/Label.js +20 -0
- package/dist/bricks/ListItem.d.ts +10 -0
- package/dist/bricks/ListItem.js +31 -0
- package/dist/bricks/Radio.d.ts +23 -0
- package/dist/bricks/Radio.js +21 -0
- package/dist/bricks/Root.d.ts +35 -0
- package/dist/bricks/Root.js +145 -0
- package/dist/bricks/Select.d.ts +45 -0
- package/dist/bricks/Select.js +55 -0
- package/dist/bricks/Switch.d.ts +27 -0
- package/dist/bricks/Switch.js +24 -0
- package/dist/bricks/Tabs.d.ts +82 -0
- package/dist/bricks/Tabs.js +87 -0
- package/dist/bricks/Text.d.ts +22 -0
- package/dist/bricks/Text.js +19 -0
- package/dist/bricks/TextBox.d.ts +79 -0
- package/dist/bricks/TextBox.js +96 -0
- package/dist/bricks/Textarea.d.ts +24 -0
- package/dist/bricks/Textarea.js +29 -0
- package/dist/bricks/Tooltip.d.ts +46 -0
- package/dist/bricks/Tooltip.js +75 -0
- package/dist/bricks/Tree.d.ts +23 -0
- package/dist/bricks/Tree.js +113 -0
- package/dist/bricks/VisuallyHidden.d.ts +18 -0
- package/dist/bricks/VisuallyHidden.js +11 -0
- package/dist/bricks/index.d.ts +19 -0
- package/dist/bricks/index.js +41 -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 +30 -0
- package/dist/bricks/~utils.js +9 -0
- package/dist/foundations/styles.css.d.ts +2 -0
- package/dist/foundations/styles.css.js +8 -0
- package/package.json +59 -150
- 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 -98
- 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 -419
- 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 -603
- 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 -53
- 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/Panels/Panels.js +0 -322
- package/DEV-cjs/core/Panels/helpers.js +0 -62
- 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 -68
- package/DEV-cjs/core/RadioTiles/RadioTile.js +0 -92
- package/DEV-cjs/core/RadioTiles/RadioTileGroup.js +0 -40
- 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 -33
- 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 -99
- package/DEV-cjs/core/Stepper/StepperStep.js +0 -119
- 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 -762
- 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 -359
- 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 -139
- 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 -93
- 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 -246
- 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 -486
- 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 -65
- package/DEV-cjs/utils/components/OverflowContainer.js +0 -206
- 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/useInstance.js +0 -38
- 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/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 -80
- 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 -415
- 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 -572
- 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 -46
- 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/Panels/Panels.js +0 -304
- package/DEV-esm/core/Panels/helpers.js +0 -42
- 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 -50
- package/DEV-esm/core/RadioTiles/RadioTile.js +0 -68
- package/DEV-esm/core/RadioTiles/RadioTileGroup.js +0 -28
- 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 -21
- 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 -84
- package/DEV-esm/core/Stepper/StepperStep.js +0 -101
- 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 -766
- 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 -356
- 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 -117
- 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 -73
- 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 -240
- 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 -125
- 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 -54
- package/DEV-esm/utils/components/OverflowContainer.js +0 -189
- 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/useInstance.js +0 -18
- 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/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 -97
- 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 -132
- package/cjs/core/ComboBox/ComboBox.js +0 -418
- 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 -595
- 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 -93
- 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 -53
- 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/Panels/Panels.d.ts +0 -174
- package/cjs/core/Panels/Panels.js +0 -315
- package/cjs/core/Panels/helpers.d.ts +0 -23
- package/cjs/core/Panels/helpers.js +0 -61
- 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 -67
- 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 -16
- package/cjs/core/RadioTiles/RadioTileGroup.js +0 -39
- 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 -15
- package/cjs/core/Select/SelectTag.js +0 -33
- 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 -67
- package/cjs/core/Stepper/Stepper.js +0 -98
- package/cjs/core/Stepper/StepperStep.d.ts +0 -53
- package/cjs/core/Stepper/StepperStep.js +0 -119
- 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 -275
- package/cjs/core/Table/Table.js +0 -753
- 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 -359
- 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 -139
- 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 -93
- 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 -140
- package/cjs/core/Tree/Tree.js +0 -245
- 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 -114
- package/cjs/index.js +0 -486
- 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 -35
- package/cjs/utils/components/MiddleTextTruncation.js +0 -64
- package/cjs/utils/components/OverflowContainer.d.ts +0 -38
- package/cjs/utils/components/OverflowContainer.js +0 -205
- 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/useInstance.d.ts +0 -22
- package/cjs/utils/hooks/useInstance.js +0 -38
- 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/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 -79
- 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 -132
- package/esm/core/ComboBox/ComboBox.js +0 -414
- 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 -564
- 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 -93
- 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 -46
- 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/Panels/Panels.d.ts +0 -174
- package/esm/core/Panels/Panels.js +0 -297
- package/esm/core/Panels/helpers.d.ts +0 -23
- package/esm/core/Panels/helpers.js +0 -41
- 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 -49
- 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 -16
- package/esm/core/RadioTiles/RadioTileGroup.js +0 -27
- 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 -15
- package/esm/core/Select/SelectTag.js +0 -21
- 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 -67
- package/esm/core/Stepper/Stepper.js +0 -83
- package/esm/core/Stepper/StepperStep.d.ts +0 -53
- package/esm/core/Stepper/StepperStep.js +0 -101
- 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 -275
- package/esm/core/Table/Table.js +0 -757
- 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 -356
- 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 -117
- 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 -73
- 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 -140
- package/esm/core/Tree/Tree.js +0 -239
- 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 -114
- package/esm/index.js +0 -125
- 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 -35
- package/esm/utils/components/MiddleTextTruncation.js +0 -53
- package/esm/utils/components/OverflowContainer.d.ts +0 -38
- package/esm/utils/components/OverflowContainer.js +0 -188
- 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/useInstance.d.ts +0 -22
- package/esm/utils/hooks/useInstance.js +0 -18
- 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/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
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { type FocusableProps } from "./~utils.js";
|
|
2
|
+
interface TextareaProps extends FocusableProps<"textarea"> {
|
|
3
|
+
}
|
|
4
|
+
/**
|
|
5
|
+
* A styled textarea element that allows users to enter multiline text values.
|
|
6
|
+
*
|
|
7
|
+
* Example usage:
|
|
8
|
+
* ```tsx
|
|
9
|
+
* <TextBox.Textarea defaultValue="Hello" />
|
|
10
|
+
* ```
|
|
11
|
+
*
|
|
12
|
+
* Works well with the `Field` and `Label` components.
|
|
13
|
+
* ```tsx
|
|
14
|
+
* <Field>
|
|
15
|
+
* <Label>Leave a comment, be kind</Label>
|
|
16
|
+
* <TextBox.Textarea />
|
|
17
|
+
* </Field>
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* Underneath, it's an HTML textarea, i.e. `<textarea>`, so it supports the same props, including
|
|
21
|
+
* `value`, `defaultValue`, `onChange`, and `disabled`.
|
|
22
|
+
*/
|
|
23
|
+
export declare const Textarea: import("react").ForwardRefExoticComponent<TextareaProps & import("react").RefAttributes<HTMLElement | HTMLTextAreaElement>>;
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import * as Ariakit from "@ariakit/react";
|
|
3
|
+
import cx from "classnames";
|
|
4
|
+
import { useFieldId } from "./Field.js";
|
|
5
|
+
import { forwardRef } from "./~utils.js";
|
|
6
|
+
const Textarea = forwardRef(
|
|
7
|
+
(props, forwardedRef) => {
|
|
8
|
+
const fieldId = useFieldId();
|
|
9
|
+
return /* @__PURE__ */ jsx(
|
|
10
|
+
Ariakit.Role.textarea,
|
|
11
|
+
{
|
|
12
|
+
id: fieldId,
|
|
13
|
+
...props,
|
|
14
|
+
className: cx("\u{1F95D}-text-box", props.className),
|
|
15
|
+
render: /* @__PURE__ */ jsx(
|
|
16
|
+
Ariakit.Focusable,
|
|
17
|
+
{
|
|
18
|
+
accessibleWhenDisabled: true,
|
|
19
|
+
render: props.render || /* @__PURE__ */ jsx("textarea", {})
|
|
20
|
+
}
|
|
21
|
+
),
|
|
22
|
+
ref: forwardedRef
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
Textarea
|
|
29
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as Ariakit from "@ariakit/react";
|
|
3
|
+
import { type FocusableProps } from "./~utils.js";
|
|
4
|
+
interface TooltipProps extends Omit<FocusableProps<"div">, "content">, Pick<Ariakit.TooltipProps, "open" | "unmountOnHide">, Pick<Ariakit.TooltipProviderProps, "defaultOpen" | "setOpen"> {
|
|
5
|
+
/**
|
|
6
|
+
* The content to be displayed inside the tooltip when the trigger element is hovered or focused.
|
|
7
|
+
*/
|
|
8
|
+
content: React.ReactNode;
|
|
9
|
+
/**
|
|
10
|
+
* The element that will trigger the tooltip when hovered or focused.
|
|
11
|
+
* Common examples include buttons, links, or form controls.
|
|
12
|
+
*
|
|
13
|
+
* **Note**: The trigger must be a single interactive element. Do not add a
|
|
14
|
+
* tooltip to a non-interactive static element (such as a `<div>` or `<svg>`). Also,
|
|
15
|
+
* the trigger element must forward its ref and spread its props.
|
|
16
|
+
*/
|
|
17
|
+
children: React.ReactElement;
|
|
18
|
+
/**
|
|
19
|
+
* Determines how ARIA attributes are applied to the tooltip for accessibility:
|
|
20
|
+
*
|
|
21
|
+
* - `"description"`: The tooltip provides additional information via `aria-describedby`.
|
|
22
|
+
* - `"label"`: The tooltip acts as a label for the trigger element via `aria-labelledby`.
|
|
23
|
+
* - `"none"`: No ARIA attributes are applied; the tooltip is only for visual assistance.
|
|
24
|
+
*
|
|
25
|
+
* @default "description"
|
|
26
|
+
*/
|
|
27
|
+
type?: "description" | "label" | "none";
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* A tooltip component that provides additional information or context for an interactive trigger element.
|
|
31
|
+
*
|
|
32
|
+
* Example usage:
|
|
33
|
+
*
|
|
34
|
+
* ```tsx
|
|
35
|
+
* <Tooltip content="This is a tooltip">
|
|
36
|
+
* <button>Hover over me</button>
|
|
37
|
+
* </Tooltip>
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* **Note**: The trigger element must be a single interactive element, such as a button or link. Do not add a
|
|
41
|
+
* tooltip to a non-interactive static element (such as a `<div>` or `<svg>`).
|
|
42
|
+
*
|
|
43
|
+
* **Note**: If `type` is set to `"none"`, the tooltip will not use ARIA attributes.
|
|
44
|
+
*/
|
|
45
|
+
export declare const Tooltip: React.ForwardRefExoticComponent<TooltipProps & React.RefAttributes<HTMLElement | HTMLDivElement>>;
|
|
46
|
+
export {};
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import cx from "classnames";
|
|
4
|
+
import * as Ariakit from "@ariakit/react";
|
|
5
|
+
import { forwardRef, supportsPopover } from "./~utils.js";
|
|
6
|
+
const Tooltip = forwardRef(
|
|
7
|
+
(props, forwardedRef) => {
|
|
8
|
+
const {
|
|
9
|
+
content,
|
|
10
|
+
children,
|
|
11
|
+
className,
|
|
12
|
+
type = "description",
|
|
13
|
+
id = React.useId(),
|
|
14
|
+
defaultOpen: defaultOpenProp,
|
|
15
|
+
open: openProp,
|
|
16
|
+
setOpen: setOpenProp,
|
|
17
|
+
unmountOnHide = type === "none",
|
|
18
|
+
...rest
|
|
19
|
+
} = props;
|
|
20
|
+
const store = Ariakit.useTooltipStore();
|
|
21
|
+
const open = Ariakit.useStoreState(store, (state) => state.open);
|
|
22
|
+
const popover = Ariakit.useStoreState(
|
|
23
|
+
store,
|
|
24
|
+
(state) => state.popoverElement
|
|
25
|
+
);
|
|
26
|
+
React.useEffect(
|
|
27
|
+
function syncPopoverWithOpenState() {
|
|
28
|
+
if (popover?.isConnected) {
|
|
29
|
+
popover?.togglePopover?.(open);
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
[open, popover]
|
|
33
|
+
);
|
|
34
|
+
return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsxs(
|
|
35
|
+
Ariakit.TooltipProvider,
|
|
36
|
+
{
|
|
37
|
+
store,
|
|
38
|
+
defaultOpen: defaultOpenProp,
|
|
39
|
+
open: openProp,
|
|
40
|
+
setOpen: setOpenProp,
|
|
41
|
+
children: [
|
|
42
|
+
/* @__PURE__ */ jsx(
|
|
43
|
+
Ariakit.TooltipAnchor,
|
|
44
|
+
{
|
|
45
|
+
render: children,
|
|
46
|
+
...type === "description" && { "aria-describedby": id },
|
|
47
|
+
...type === "label" && { "aria-labelledby": id }
|
|
48
|
+
}
|
|
49
|
+
),
|
|
50
|
+
/* @__PURE__ */ jsx(
|
|
51
|
+
Ariakit.Tooltip,
|
|
52
|
+
{
|
|
53
|
+
"aria-hidden": "true",
|
|
54
|
+
...rest,
|
|
55
|
+
unmountOnHide,
|
|
56
|
+
className: cx("\u{1F95D}-tooltip", className),
|
|
57
|
+
ref: forwardedRef,
|
|
58
|
+
id,
|
|
59
|
+
style: {
|
|
60
|
+
zIndex: supportsPopover ? void 0 : 9999,
|
|
61
|
+
...props.style
|
|
62
|
+
},
|
|
63
|
+
wrapperProps: { popover: "manual" },
|
|
64
|
+
portal: !supportsPopover,
|
|
65
|
+
children: content
|
|
66
|
+
}
|
|
67
|
+
)
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
) });
|
|
71
|
+
}
|
|
72
|
+
);
|
|
73
|
+
export {
|
|
74
|
+
Tooltip
|
|
75
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { IconButton } from "./IconButton.js";
|
|
3
|
+
import { type BaseProps } from "./~utils.js";
|
|
4
|
+
interface TreeProps extends BaseProps {
|
|
5
|
+
}
|
|
6
|
+
declare const Tree: React.ForwardRefExoticComponent<TreeProps & React.RefAttributes<HTMLElement | HTMLDivElement>>;
|
|
7
|
+
interface TreeItemProps extends Omit<BaseProps, "content"> {
|
|
8
|
+
content?: React.ReactNode;
|
|
9
|
+
selected?: boolean;
|
|
10
|
+
/** Specifies if the tree item is expanded. Used to determine if a tree item is a parent node. Defaults to `undefined`. */
|
|
11
|
+
expanded?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const TreeItem: React.ForwardRefExoticComponent<TreeItemProps & React.RefAttributes<HTMLElement | HTMLDivElement>>;
|
|
14
|
+
interface TreeItemContentProps extends BaseProps<"span"> {
|
|
15
|
+
}
|
|
16
|
+
declare const TreeItemContent: React.ForwardRefExoticComponent<TreeItemContentProps & React.RefAttributes<HTMLElement | HTMLSpanElement>>;
|
|
17
|
+
type IconButtonProps = React.ComponentProps<typeof IconButton>;
|
|
18
|
+
interface TreeItemExpanderProps extends Omit<IconButtonProps, "variant" | "label" | "icon"> {
|
|
19
|
+
label?: IconButtonProps["label"];
|
|
20
|
+
icon?: IconButtonProps["icon"];
|
|
21
|
+
}
|
|
22
|
+
declare const TreeItemExpander: React.ForwardRefExoticComponent<Omit<TreeItemExpanderProps, "ref"> & React.RefAttributes<HTMLElement | HTMLButtonElement>>;
|
|
23
|
+
export { Tree as Root, TreeItem as Item, TreeItemExpander as Expander, TreeItemContent as Content, };
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import cx from "classnames";
|
|
4
|
+
import * as Ariakit from "@ariakit/react";
|
|
5
|
+
import * as ListItem from "./ListItem.js";
|
|
6
|
+
import { IconButton } from "./IconButton.js";
|
|
7
|
+
import { Icon } from "./Icon.js";
|
|
8
|
+
import { forwardRef } from "./~utils.js";
|
|
9
|
+
const Tree = forwardRef((props, forwardedRef) => {
|
|
10
|
+
return /* @__PURE__ */ jsx(Ariakit.Role.div, { ...props, role: "list", ref: forwardedRef, children: props.children });
|
|
11
|
+
});
|
|
12
|
+
const TreeItem = forwardRef((props, forwardedRef) => {
|
|
13
|
+
const { selected, content, children, className, expanded, style, ...rest } = props;
|
|
14
|
+
const parentContext = React.useContext(TreeItemContext);
|
|
15
|
+
const level = parentContext ? parentContext.level + 1 : 1;
|
|
16
|
+
const firstSelected = !!selected && !parentContext?.selected;
|
|
17
|
+
return /* @__PURE__ */ jsx(
|
|
18
|
+
TreeItemContext.Provider,
|
|
19
|
+
{
|
|
20
|
+
value: React.useMemo(
|
|
21
|
+
() => ({
|
|
22
|
+
level,
|
|
23
|
+
expanded,
|
|
24
|
+
selected
|
|
25
|
+
}),
|
|
26
|
+
[level, expanded, selected]
|
|
27
|
+
),
|
|
28
|
+
children: /* @__PURE__ */ jsxs("div", { role: "listitem", "aria-current": firstSelected ? true : void 0, children: [
|
|
29
|
+
/* @__PURE__ */ jsx(
|
|
30
|
+
ListItem.Root,
|
|
31
|
+
{
|
|
32
|
+
...rest,
|
|
33
|
+
"data-kiwi-expanded": expanded,
|
|
34
|
+
"data-kiwi-selected": selected,
|
|
35
|
+
"data-kiwi-parent-selected": parentContext?.selected,
|
|
36
|
+
className: cx("\u{1F95D}-tree-item", className),
|
|
37
|
+
style: {
|
|
38
|
+
...style,
|
|
39
|
+
"--\u{1F95D}tree-item-level": level
|
|
40
|
+
},
|
|
41
|
+
ref: forwardedRef,
|
|
42
|
+
role: void 0,
|
|
43
|
+
children: content
|
|
44
|
+
}
|
|
45
|
+
),
|
|
46
|
+
children && /* @__PURE__ */ jsx("div", { role: "list", children })
|
|
47
|
+
] })
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
});
|
|
51
|
+
const TreeItemContent = forwardRef(
|
|
52
|
+
(props, forwardedRef) => {
|
|
53
|
+
const { children, ...rest } = props;
|
|
54
|
+
return /* @__PURE__ */ jsx(
|
|
55
|
+
ListItem.Content,
|
|
56
|
+
{
|
|
57
|
+
...rest,
|
|
58
|
+
className: cx("\u{1F95D}-tree-item-content", props.className),
|
|
59
|
+
ref: forwardedRef,
|
|
60
|
+
children: /* @__PURE__ */ jsx("button", { type: "button", children })
|
|
61
|
+
}
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
);
|
|
65
|
+
const TreeItemExpander = forwardRef(
|
|
66
|
+
(props, forwardedRef) => {
|
|
67
|
+
const context = React.useContext(TreeItemContext);
|
|
68
|
+
const expanded = context?.expanded;
|
|
69
|
+
return /* @__PURE__ */ jsx(
|
|
70
|
+
IconButton,
|
|
71
|
+
{
|
|
72
|
+
icon: /* @__PURE__ */ jsx(TreeChevron, {}),
|
|
73
|
+
label: "Toggle",
|
|
74
|
+
"aria-expanded": expanded === void 0 ? void 0 : expanded,
|
|
75
|
+
...props,
|
|
76
|
+
className: cx("\u{1F95D}-tree-item-expander", props.className),
|
|
77
|
+
variant: "ghost",
|
|
78
|
+
labelVariant: "visually-hidden",
|
|
79
|
+
ref: forwardedRef
|
|
80
|
+
}
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
);
|
|
84
|
+
const TreeChevron = forwardRef(
|
|
85
|
+
(props, forwardedRef) => {
|
|
86
|
+
return /* @__PURE__ */ jsx(
|
|
87
|
+
Icon,
|
|
88
|
+
{
|
|
89
|
+
...props,
|
|
90
|
+
render: /* @__PURE__ */ jsx(
|
|
91
|
+
Ariakit.Role.svg,
|
|
92
|
+
{
|
|
93
|
+
width: "16",
|
|
94
|
+
height: "16",
|
|
95
|
+
fill: "currentColor",
|
|
96
|
+
viewBox: "0 0 16 16",
|
|
97
|
+
render: props.render,
|
|
98
|
+
children: /* @__PURE__ */ jsx("path", { d: "M4.146 6.146a.5.5 0 0 1 .708 0L8 9.293l3.146-3.147a.5.5 0 0 1 .708.708l-3.5 3.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 0 1 0-.708Z" })
|
|
99
|
+
}
|
|
100
|
+
),
|
|
101
|
+
className: cx("\u{1F95D}-tree-chevron", props.className),
|
|
102
|
+
ref: forwardedRef
|
|
103
|
+
}
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
);
|
|
107
|
+
const TreeItemContext = React.createContext(void 0);
|
|
108
|
+
export {
|
|
109
|
+
TreeItemContent as Content,
|
|
110
|
+
TreeItemExpander as Expander,
|
|
111
|
+
TreeItem as Item,
|
|
112
|
+
Tree as Root
|
|
113
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type BaseProps } from "./~utils.js";
|
|
2
|
+
interface VisuallyHiddenProps extends BaseProps<"span"> {
|
|
3
|
+
}
|
|
4
|
+
/**
|
|
5
|
+
* A visually hidden element that is still accessible to screen readers and other assistive technology.
|
|
6
|
+
*
|
|
7
|
+
* This is useful when you want to provide a text alternative to a visual element (e.g. an icon or symbol).
|
|
8
|
+
*
|
|
9
|
+
* Example:
|
|
10
|
+
* ```tsx
|
|
11
|
+
* <span aria-hidden="true">⭐</span>
|
|
12
|
+
* <VisuallyHidden>Favorite</VisuallyHidden>
|
|
13
|
+
* ```
|
|
14
|
+
*
|
|
15
|
+
* **Note**: The `IconButton` component utilizes `VisuallyHidden` internally when the `label` prop is set.
|
|
16
|
+
*/
|
|
17
|
+
export declare const VisuallyHidden: import("react").ForwardRefExoticComponent<VisuallyHiddenProps & import("react").RefAttributes<HTMLElement | HTMLSpanElement>>;
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import * as Ariakit from "@ariakit/react";
|
|
3
|
+
import { forwardRef } from "./~utils.js";
|
|
4
|
+
const VisuallyHidden = forwardRef(
|
|
5
|
+
(props, forwardedRef) => {
|
|
6
|
+
return /* @__PURE__ */ jsx(Ariakit.VisuallyHidden, { ...props, ref: forwardedRef });
|
|
7
|
+
}
|
|
8
|
+
);
|
|
9
|
+
export {
|
|
10
|
+
VisuallyHidden
|
|
11
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export { Root } from "./Root.js";
|
|
2
|
+
export { Anchor } from "./Anchor.js";
|
|
3
|
+
export { Button } from "./Button.js";
|
|
4
|
+
export { Checkbox } from "./Checkbox.js";
|
|
5
|
+
export * as DropdownMenu from "./DropdownMenu.js";
|
|
6
|
+
export { Divider } from "./Divider.js";
|
|
7
|
+
export { Icon } from "./Icon.js";
|
|
8
|
+
export { IconButton } from "./IconButton.js";
|
|
9
|
+
export { Field } from "./Field.js";
|
|
10
|
+
export { Kbd } from "./Kbd.js";
|
|
11
|
+
export { Label } from "./Label.js";
|
|
12
|
+
export { Radio } from "./Radio.js";
|
|
13
|
+
export * as Select from "./Select.js";
|
|
14
|
+
export { Switch } from "./Switch.js";
|
|
15
|
+
export * as Tabs from "./Tabs.js";
|
|
16
|
+
export { Text } from "./Text.js";
|
|
17
|
+
export * as TextBox from "./TextBox.js";
|
|
18
|
+
export { Tooltip } from "./Tooltip.js";
|
|
19
|
+
export { VisuallyHidden } from "./VisuallyHidden.js";
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { Root } from "./Root.js";
|
|
3
|
+
import { Anchor } from "./Anchor.js";
|
|
4
|
+
import { Button } from "./Button.js";
|
|
5
|
+
import { Checkbox } from "./Checkbox.js";
|
|
6
|
+
import * as DropdownMenu from "./DropdownMenu.js";
|
|
7
|
+
import { Divider } from "./Divider.js";
|
|
8
|
+
import { Icon } from "./Icon.js";
|
|
9
|
+
import { IconButton } from "./IconButton.js";
|
|
10
|
+
import { Field } from "./Field.js";
|
|
11
|
+
import { Kbd } from "./Kbd.js";
|
|
12
|
+
import { Label } from "./Label.js";
|
|
13
|
+
import { Radio } from "./Radio.js";
|
|
14
|
+
import * as Select from "./Select.js";
|
|
15
|
+
import { Switch } from "./Switch.js";
|
|
16
|
+
import * as Tabs from "./Tabs.js";
|
|
17
|
+
import { Text } from "./Text.js";
|
|
18
|
+
import * as TextBox from "./TextBox.js";
|
|
19
|
+
import { Tooltip } from "./Tooltip.js";
|
|
20
|
+
import { VisuallyHidden } from "./VisuallyHidden.js";
|
|
21
|
+
export {
|
|
22
|
+
Anchor,
|
|
23
|
+
Button,
|
|
24
|
+
Checkbox,
|
|
25
|
+
Divider,
|
|
26
|
+
DropdownMenu,
|
|
27
|
+
Field,
|
|
28
|
+
Icon,
|
|
29
|
+
IconButton,
|
|
30
|
+
Kbd,
|
|
31
|
+
Label,
|
|
32
|
+
Radio,
|
|
33
|
+
Root,
|
|
34
|
+
Select,
|
|
35
|
+
Switch,
|
|
36
|
+
Tabs,
|
|
37
|
+
Text,
|
|
38
|
+
TextBox,
|
|
39
|
+
Tooltip,
|
|
40
|
+
VisuallyHidden
|
|
41
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// inline-css:/home/runner/work/kiwi/kiwi/packages/kiwi-react/src/bricks/styles.css
|
|
2
|
+
var styles_default = String.raw`@layer kiwi.components.base,kiwi.components.modifiers,kiwi.components.states;@layer kiwi.components{@layer base{.🥝-icon{width:var(--🥝icon-size);height:var(--🥝icon-size);color:var(--🥝icon-color);flex-shrink:0;transition:color .15s ease-out}}@layer modifiers{.🥝-icon[data-kiwi-size=regular]{--🥝icon-size:1rem}.🥝-icon[data-kiwi-size=large]{--🥝icon-size:1.5rem}}@layer base{.🥝-disclosure-arrow{rotate:var(--🥝disclosure-arrow-rotate);margin-inline-end:-8px}@media (prefers-reduced-motion:no-preference){.🥝-disclosure-arrow{transition:rotate .15s ease-in-out}}}@layer base{.🥝-anchor{cursor:pointer;font-size:var(--kiwi-font-size-12);text-underline-offset:.25ex;-webkit-text-decoration-color:inherit;text-decoration-color:inherit;color:var(--🥝anchor-color);border-radius:4px;font-weight:500;transition:color .15s ease-out,text-decoration-color .15s ease-out}.🥝-anchor:where(button){background:0 0;border:none}}@layer modifiers{.🥝-anchor[data-kiwi-tone=neutral]{--🥝anchor-color:var(--kiwi-color-text-neutral-primary)}.🥝-anchor[data-kiwi-tone=accent]{--🥝anchor-color:var(--kiwi-color-text-accent-strong)}.🥝-anchor[data-kiwi-tone=critical]{--🥝anchor-color:var(--kiwi-color-text-critical-base)}.🥝-anchor[data-kiwi-tone=critical]:focus-visible{outline-color:var(--🥝anchor-color)}}@layer states{@media (any-hover:hover){.🥝-anchor:where(:hover){text-decoration-color:#0000}}.🥝-anchor:where(:active){text-decoration-color:#0000}.🥝-anchor:where([disabled],:disabled,[aria-disabled=true]){--🥝anchor-color-text:var(--kiwi-color-text-neutral-disabled);cursor:not-allowed;text-decoration-color:#0000}}@layer base{.🥝-button{white-space:nowrap;-webkit-user-select:none;user-select:none;cursor:pointer;line-height:1.2;font-size:var(--kiwi-font-size-12);block-size:1.5rem;padding-inline:var(--🥝button-padding-inline,12px);background-color:var(--🥝button-background-color);color:var(--🥝button-color,var(--kiwi-color-text-neutral-primary));-webkit-tap-highlight-color:color-mix(in oklch,var(--🥝button-bg--solid-default)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-pressed-\%));--🥝icon-color:var(--🌀button-state--default,var(--kiwi-color-icon-neutral-base))var(--🌀button-state--hover,var(--kiwi-color-icon-neutral-hover))var(--🌀button-state--pressed,var(--kiwi-color-icon-neutral-hover))var(--🌀button-state--active,var(--kiwi-color-icon-accent-strong))var(--🌀button-state--disabled,var(--kiwi-color-icon-neutral-disabled));border:none;border-radius:4px;flex-shrink:0;justify-content:center;align-items:center;gap:4px;font-weight:500;text-decoration:none;transition:background-color .15s ease-out;display:inline-flex}@media (forced-colors:active){.🥝-button{border:1px solid}}}@layer modifiers{.🥝-button[data-kiwi-variant=solid]{--🥝button-background-color:var(--🌀button-state--default,var(--🥝button-bg--solid-default))var(--🌀button-state--hover,color-mix(in oklch,var(--🥝button-bg--solid-default)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-hover-\%)))var(--🌀button-state--pressed,color-mix(in oklch,var(--🥝button-bg--solid-default)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-pressed-\%)))var(--🌀button-state--disabled,var(--kiwi-color-bg-glow-on-surface-disabled));box-shadow:var(--🌀button-state--default,var(--kiwi-shadow-button-base-inset),0px 0px 0px 1px var(--🥝button-border-color)inset,var(--kiwi-shadow-button-base-drop))var(--🌀button-state--hover,var(--kiwi-shadow-button-base-inset),0px 0px 0px 1px var(--🥝button-border-color)inset,var(--kiwi-shadow-button-base-drop))var(--🌀button-state--pressed,0px 0px 0px 1px var(--🥝button-border-color)inset)var(--🌀button-state--disabled,none)}.🥝-button[data-kiwi-variant=solid]:where([data-kiwi-tone=neutral]){--🥝button-bg--solid-default:var(--kiwi-color-bg-neutral-base);--🥝button-border-color:var(--🌀button-state--default,var(--kiwi-color-border-shadow-base))var(--🌀button-state--hover,color-mix(in oklch,var(--kiwi-color-border-shadow-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-hover-\%)))var(--🌀button-state--pressed,color-mix(in oklch,var(--kiwi-color-border-shadow-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-pressed-\%)))var(--🌀button-state--disabled,transparent)}.🥝-button[data-kiwi-variant=solid]:where([data-kiwi-tone=accent]){--🥝button-bg--solid-default:var(--kiwi-color-bg-accent-base);--🥝button-border-color:var(--🌀button-state--default,var(--kiwi-color-border-shadow-strong))var(--🌀button-state--hover,color-mix(in oklch,var(--kiwi-color-border-shadow-strong)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-strong-hover-\%)))var(--🌀button-state--pressed,color-mix(in oklch,var(--kiwi-color-border-shadow-strong)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-strong-pressed-\%)))var(--🌀button-state--disabled,transparent);--🥝button-color:var(--kiwi-color-text-neutral-emphasis);--🥝icon-color:var(--🌀button-state--default,var(--kiwi-color-icon-neutral-emphasis))var(--🌀button-state--hover,var(--kiwi-color-icon-strong-hover))var(--🌀button-state--pressed,var(--kiwi-color-icon-neutral-hover))var(--🌀button-state--disabled,var(--kiwi-color-icon-neutral-disabled))}.🥝-button[data-kiwi-variant=outline]{--🥝button-background-color:var(--🌀button-state--default,transparent)var(--🌀button-state--hover,color-mix(in oklch,transparent 100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-hover-\%)))var(--🌀button-state--pressed,color-mix(in oklch,transparent 100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-pressed-\%)))var(--🌀button-state--disabled,transparent);--🥝button-border-color:var(--🌀button-state--default,var(--kiwi-color-border-neutral-base))var(--🌀button-state--hover,color-mix(in oklch,var(--kiwi-color-border-neutral-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-hover-\%)))var(--🌀button-state--pressed,color-mix(in oklch,var(--kiwi-color-border-neutral-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-pressed-\%)))var(--🌀button-state--disabled,var(--kiwi-color-border-glow-on-surface-disabled));box-shadow:0px 0px 0px 1px var(--🥝button-border-color)inset}.🥝-button[data-kiwi-variant=ghost]{--🥝button-background-color:var(--🌀button-state--default,transparent)var(--🌀button-state--hover,color-mix(in oklch,transparent 100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-hover-\%)))var(--🌀button-state--pressed,color-mix(in oklch,transparent 100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-pressed-\%)))var(--🌀button-state--active,var(--kiwi-color-bg-glow-on-surface-accent-pressed))var(--🌀button-state--disabled,transparent)}}@layer states{@media (any-hover:hover){.🥝-button:where(:hover){--🌀button-state:var(--🌀button-state--hover)}}.🥝-button:where(:active){--🌀button-state:var(--🌀button-state--pressed)}.🥝-button:where([data-kiwi-variant=ghost][aria-pressed=true]){--🌀button-state:var(--🌀button-state--active)}.🥝-button:where([disabled],:disabled,[aria-disabled=true]){--🌀button-state:var(--🌀button-state--disabled);color:var(--kiwi-color-text-neutral-disabled);cursor:not-allowed}}@layer base.🌀{.🥝-button{--🌀button-state:var(--🌀button-state--default);--🌀button-state--default:var(--🌀button-state, );--🌀button-state--hover:var(--🌀button-state, );--🌀button-state--pressed:var(--🌀button-state, );--🌀button-state--active:var(--🌀button-state, );--🌀button-state--disabled:var(--🌀button-state, )}}@layer base{.🥝-checkbox{--🥝checkbox-color-svg:var(--kiwi-color-icon-neutral-emphasis);--🥝checkbox-border-radius:4px;--🥝checkbox-unchecked-svg:url("data:image/svg+xml;utf8,<svg viewBox=\"0 0 16 16\"></svg>");--🥝checkbox-checkmark-svg:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M11.2 5.6 6.8 10l-2-2\"/></svg>");--🥝checkbox-indeterminate-svg:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M5 8h6.5\"/></svg>");appearance:none;cursor:pointer;background-color:var(--🌀checkbox-visual-state--default,var(--kiwi-color-bg-neutral-base))var(--🌀checkbox-visual-state--hover,color-mix(in oklch,var(--kiwi-color-bg-neutral-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-hover-\%)))var(--🌀checkbox-visual-state--checked,var(--kiwi-color-bg-accent-base))var(--🌀checkbox-visual-state--checked-hover,color-mix(in oklch,var(--kiwi-color-bg-accent-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-pressed-\%)))var(--🌀checkbox-visual-state--disabled,var(--kiwi-color-bg-glow-on-surface-disabled));border-radius:var(--🥝checkbox-border-radius);block-size:1rem;inline-size:1rem;color:var(--🌀checkbox-aria-state--unchecked,transparent)var(--🌀checkbox-aria-state--checked,var(--🥝checkbox-color-svg))var(--🌀checkbox-aria-state--indeterminate,var(--🥝checkbox-color-svg));box-shadow:var(--kiwi-shadow-button-base-inset),0px 0px 0px 1px var(--🥝checkbox-border-color)inset,var(--kiwi-shadow-button-base-drop);--🥝checkbox-border-color:var(--🌀checkbox-visual-state--default,var(--kiwi-color-border-shadow-base))var(--🌀checkbox-visual-state--hover,color-mix(in oklch,var(--kiwi-color-border-shadow-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-hover-\%)))var(--🌀checkbox-visual-state--checked,var(--kiwi-color-border-shadow-strong))var(--🌀checkbox-visual-state--checked-hover,color-mix(in oklch,var(--kiwi-color-border-shadow-strong)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-pressed-\%)))var(--🌀checkbox-visual-state--disabled,transparent);--🥝checkbox-mask-image:var(--🌀checkbox-aria-state--unchecked,var(--🥝checkbox-unchecked-svg))var(--🌀checkbox-aria-state--checked,var(--🥝checkbox-checkmark-svg))var(--🌀checkbox-aria-state--indeterminate,var(--🥝checkbox-indeterminate-svg));transition:background-color .15s ease-out,border-color .15s ease-out,box-shadow .15s ease-out,--🥝checkbox-border-color .15s ease-out;position:relative}.🥝-checkbox:before,.🥝-checkbox:after{content:"";position:absolute;inset:0}.🥝-checkbox:before{inset:calc(.5rem - 12px)}.🥝-checkbox:after{-webkit-mask-image:var(--🥝checkbox-mask-image,initial);mask-image:var(--🥝checkbox-mask-image,initial);background-color:currentColor;-webkit-mask-position:50%;mask-position:50%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}@media (forced-colors:active){.🥝-checkbox:after{background-color:canvastext}}}@layer states{@media (forced-colors:active){.🥝-checkbox{border:1px solid canvastext}}@media (any-hover:hover){.🥝-checkbox:where(:hover){--🌀checkbox-visual-state:var(--🌀checkbox-visual-state--hover)}}.🥝-checkbox:where(:checked,[aria-checked=true]){--🌀checkbox-visual-state:var(--🌀checkbox-visual-state--checked);--🌀checkbox-aria-state:var(--🌀checkbox-aria-state--checked)}@media (any-hover:hover){.🥝-checkbox:where(:checked,[aria-checked=true]):where(:hover){--🌀checkbox-visual-state:var(--🌀checkbox-visual-state--checked-hover)}}.🥝-checkbox:where(:indeterminate,[aria-checked=mixed]){--🌀checkbox-aria-state:var(--🌀checkbox-aria-state--indeterminate)}.🥝-checkbox:where([disabled],:disabled,[aria-disabled=true]){--🌀checkbox-visual-state:var(--🌀checkbox-visual-state--disabled);--🥝checkbox-color-svg:var(--kiwi-color-icon-neutral-disabled);cursor:not-allowed;box-shadow:none}@media (forced-colors:active){.🥝-checkbox:where([disabled],:disabled,[aria-disabled=true]){border-color:graytext}.🥝-checkbox:where([disabled],:disabled,[aria-disabled=true]):after{background-color:graytext}}}@layer base.🌀{.🥝-checkbox{--🌀checkbox-visual-state:var(--🌀checkbox-visual-state--default);--🌀checkbox-visual-state--default:var(--🌀checkbox-visual-state, );--🌀checkbox-visual-state--hover:var(--🌀checkbox-visual-state, );--🌀checkbox-visual-state--checked:var(--🌀checkbox-visual-state, );--🌀checkbox-visual-state--checked-hover:var(--🌀checkbox-visual-state, );--🌀checkbox-visual-state--disabled:var(--🌀checkbox-visual-state, );--🌀checkbox-aria-state:var(--🌀checkbox-aria-state--unchecked);--🌀checkbox-aria-state--unchecked:var(--🌀checkbox-aria-state, );--🌀checkbox-aria-state--checked:var(--🌀checkbox-aria-state, );--🌀checkbox-aria-state--indeterminate:var(--🌀checkbox-aria-state, )}}.🥝-divider{background-color:var(--kiwi-color-border-neutral-muted);flex:none;align-self:stretch}@media (forced-colors:active){.🥝-divider{background-color:canvastext}}.🥝-divider:is(hr){border:none;margin:0}.🥝-divider:not([aria-orientation=vertical],[data-kiwi-orientation=vertical]){block-size:1px}.🥝-divider:is([aria-orientation=vertical],[data-kiwi-orientation=vertical]){min-block-size:100%;inline-size:1px}@layer base{.🥝-dropdown-menu{background-color:var(--kiwi-color-bg-surface-tertiary);box-shadow:var(--kiwi-shadow-surface-xl);border-radius:8px;flex-direction:column;gap:.25rem;padding-block:.5rem;display:flex}}@layer states{.🥝-dropdown-menu-button:where([aria-expanded=true]){--🥝disclosure-arrow-rotate:.5turn}}@layer base{.🥝-dropdown-menu-item-shortcuts{margin-inline-start:.5rem}}@layer base{.🥝-icon-button.🥝-button{aspect-ratio:1;--🥝button-padding-inline:4px}}@layer base{.🥝-kbd{color:var(--kiwi-color-text-neutral-secondary);min-block-size:16px;font-family:inherit;font-weight:500;font-size:var(--kiwi-font-size-12);letter-spacing:0;flex-shrink:0;justify-content:center;align-items:center;line-height:1.3333;display:inline-flex}}@layer modifiers{.🥝-kbd[data-kiwi-variant=solid],.🥝-kbd[data-kiwi-variant=muted]{background-color:var(--kiwi-color-bg-neutral-base);border-radius:4px;padding-inline:4px}.🥝-kbd[data-kiwi-variant=solid]{box-shadow:var(--kiwi-shadow-button-base-inset),0px 0px 0px 1px var(--kiwi-color-border-shadow-base)inset,var(--kiwi-shadow-button-base-drop)}.🥝-kbd[data-kiwi-variant=ghost]{color:var(--kiwi-color-text-neutral-tertiary)}}@layer base{.🥝-label{color:var(--kiwi-color-text-neutral-secondary);cursor:default;font-size:var(--kiwi-font-size-12)}.🥝-label:is(label){cursor:pointer}}@layer states{.🥝-label:has(+:where(:disabled,[disabled],[aria-disabled=true])){color:var(--kiwi-color-text-neutral-disabled)}.🥝-label:has(+:where(:disabled,[disabled],[aria-disabled=true])):is(label){cursor:not-allowed}}.🥝-radio{--🥝checkbox-border-radius:9999px;--🥝checkbox-checkmark-svg:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" ><circle cx=\"8\" cy=\"8\" r=\"4\" /></svg>");--🥝checkbox-indeterminate-svg:var(--🥝checkbox-unchecked-svg)}@layer base{.🥝-list-item{cursor:pointer;line-height:1.2;font-size:var(--kiwi-font-size-12);background-color:var(--🌀list-item-state--default,transparent)var(--🌀list-item-state--hover,color-mix(in oklch,transparent 100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-on-surface-neutral-hover-\%)))var(--🌀list-item-state--pressed,color-mix(in oklch,transparent 100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-on-surface-neutral-pressed-\%)))var(--🌀list-item-state--active,var(--kiwi-color-bg-glow-on-surface-accent-pressed))var(--🌀list-item-state--active-hover,var(--kiwi-color-bg-glow-on-surface-accent-pressed))var(--🌀list-item-state--active-child,color-mix(in oklch,var(--kiwi-color-bg-glow-on-surface-accent-pressed),transparent 50.0%))var(--🌀list-item-state--active-child-hover,color-mix(in oklch,color-mix(in oklch,var(--kiwi-color-bg-glow-on-surface-accent-pressed),transparent 50.0%)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-hover-\%)))var(--🌀list-item-state--disabled,transparent);min-block-size:1.5rem;color:var(--🌀list-item-state--default,var(--kiwi-color-text-neutral-primary))var(--🌀list-item-state--hover,var(--kiwi-color-text-neutral-primary))var(--🌀list-item-state--pressed,var(--kiwi-color-text-neutral-primary))var(--🌀list-item-state--active,var(--kiwi-color-text-accent-strong))var(--🌀list-item-state--active-hover,var(--kiwi-color-text-accent-strong))var(--🌀list-item-state--active-child,var(--kiwi-color-text-neutral-primary))var(--🌀list-item-state--active-child-hover,var(--kiwi-color-text-neutral-primary))var(--🌀list-item-state--disabled,var(--kiwi-color-text-neutral-disabled));--🥝icon-color:var(--🌀list-item-state--default,var(--kiwi-color-icon-neutral-base))var(--🌀list-item-state--hover,var(--kiwi-color-icon-neutral-hover))var(--🌀list-item-state--pressed,var(--kiwi-color-icon-neutral-hover))var(--🌀list-item-state--active,var(--kiwi-color-icon-accent-strong))var(--🌀list-item-state--active-hover,var(--kiwi-color-icon-accent-strong))var(--🌀list-item-state--active-child,var(--kiwi-color-icon-neutral-base))var(--🌀list-item-state--active-child-hover,var(--kiwi-color-icon-neutral-base))var(--🌀list-item-state--disabled,var(--kiwi-color-icon-neutral-disabled));align-items:center;gap:.25rem;padding-inline:.75rem;display:flex}}@layer states{@media (any-hover:hover){.🥝-list-item:where(:hover){--🌀list-item-state:var(--🌀list-item-state--hover)}}.🥝-list-item:where(:active){--🌀list-item-state:var(--🌀list-item-state--pressed)}.🥝-list-item:where([disabled],:disabled,[aria-disabled=true]){--🌀list-item-state:var(--🌀list-item-state--disabled);cursor:not-allowed}}@layer base.🌀{.🥝-list-item{--🌀list-item-state:var(--🌀list-item-state--default);--🌀list-item-state--default:var(--🌀list-item-state, );--🌀list-item-state--hover:var(--🌀list-item-state, );--🌀list-item-state--pressed:var(--🌀list-item-state, );--🌀list-item-state--active:var(--🌀list-item-state, );--🌀list-item-state--active-hover:var(--🌀list-item-state, );--🌀list-item-state--active-child:var(--🌀list-item-state, );--🌀list-item-state--active-child-hover:var(--🌀list-item-state, );--🌀list-item-state--disabled:var(--🌀list-item-state, )}}.🥝-list-item-content{flex-grow:1}@layer base{.🥝-select-root:where(:has(select.🥝-select),[data-kiwi-has-select=true]){--🥝button-padding-inline:12px calc(4px + 16px + 4px);align-items:center;display:inline-grid}.🥝-select-root:where(:has(select.🥝-select),[data-kiwi-has-select=true])>*{grid-area:1/1/-1/-1}}@layer base{.🥝-select.🥝-button:where(select:not([multiple])){appearance:none}}@layer base{.🥝-select-arrow.🥝-disclosure-arrow{pointer-events:none;--🥝icon-color:var(--🌀select-arrow-state--default,var(--kiwi-color-icon-neutral-base))var(--🌀select-arrow-state--hover,var(--kiwi-color-icon-neutral-hover))var(--🌀select-arrow-state--disabled,var(--kiwi-color-icon-neutral-disabled));justify-self:end;margin-inline-end:4px}}@layer states{@media (any-hover:hover){:where(.🥝-select:hover)+.🥝-select-arrow.🥝-disclosure-arrow{--🌀select-arrow-state:var(--🌀select-arrow-state--hover)}}:where(.🥝-select:disabled)+.🥝-select-arrow.🥝-disclosure-arrow{--🌀select-arrow-state:var(--🌀select-arrow-state--disabled)}}@layer base.🌀{.🥝-select-arrow.🥝-disclosure-arrow{--🌀select-arrow-state:var(--🌀select-arrow-state--default);--🌀select-arrow-state--default:var(--🌀select-arrow-state, );--🌀select-arrow-state--hover:var(--🌀select-arrow-state, );--🌀select-arrow-state--disabled:var(--🌀select-arrow-state, )}}@layer base{.🥝-switch{appearance:none;cursor:pointer;background-color:var(--🌀switch-state--default,var(--kiwi-color-bg-surface-primary))var(--🌀switch-state--hover,color-mix(in oklch,var(--kiwi-color-bg-surface-primary)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-hover-\%)))var(--🌀switch-state--pressed,color-mix(in oklch,var(--kiwi-color-bg-surface-primary)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-hover-\%)))var(--🌀switch-state--checked,var(--kiwi-color-bg-accent-base))var(--🌀switch-state--checked-hover,color-mix(in oklch,var(--kiwi-color-bg-accent-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-strong-hover-\%)))var(--🌀switch-state--disabled,var(--kiwi-color-bg-surface-primary));border:1px solid #0000;border-color:var(--🌀switch-state--default,var(--kiwi-color-border-neutral-base))var(--🌀switch-state--hover,color-mix(in oklch,var(--kiwi-color-border-neutral-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-hover-\%)))var(--🌀switch-state--pressed,color-mix(in oklch,var(--kiwi-color-border-neutral-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-pressed-\%)))var(--🌀switch-state--checked,color-mix(in oklch,var(--kiwi-color-bg-accent-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-strong-hover-\%)))var(--🌀switch-state--checked-hover,color-mix(in oklch,var(--kiwi-color-bg-accent-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-strong-hover-\%)))var(--🌀switch-state--disabled,var(--kiwi-color-border-glow-on-surface-disabled));border-radius:9999px;align-items:center;inline-size:2rem;transition:background-color .15s ease-out,border-color .15s ease-out;display:inline-grid;position:relative}.🥝-switch:before,.🥝-switch:after{content:"";grid-area:1/1/-1/-1;display:block}.🥝-switch:before{block-size:24px;inline-size:2rem;margin:-1px;position:absolute}.🥝-switch:after{aspect-ratio:var(--🥝switch-thumb-aspect-ratio);background-color:var(--🥝switch-thumb-color);block-size:1rem;box-shadow:var(--kiwi-shadow-button-base-inset),0px 0px 0px 1px var(--kiwi-color-border-shadow-base)inset,var(--kiwi-shadow-button-base-drop);justify-self:var(--🥝switch-thumb-placement);border-radius:9999px;margin:calc(.125rem - 1px)}@media (prefers-reduced-motion:no-preference){.🥝-switch:after{will-change:aspect-ratio;transition:aspect-ratio .15s ease-out}}@media (forced-colors:active){.🥝-switch:after{background-color:canvastext}}}@layer states{.🥝-switch{--🥝switch-thumb-color:var(--kiwi-color-bg-neutral-inverse);--🥝switch-thumb-placement:start;--🥝switch-thumb-aspect-ratio:1/1}@media (any-hover:hover){.🥝-switch:where(:hover){--🌀switch-state:var(--🌀switch-state--hover)}}.🥝-switch:where(:checked,[aria-checked=true]){--🌀switch-state:var(--🌀switch-state--checked);--🥝switch-thumb-placement:end}@media (any-hover:hover){.🥝-switch:where(:checked,[aria-checked=true]):where(:hover){--🌀switch-state:var(--🌀switch-state--checked-hover)}}.🥝-switch:where(:active){--🌀switch-state:var(--🌀switch-state--pressed);--🥝switch-thumb-aspect-ratio:1.75}.🥝-switch:where([disabled],:disabled,[aria-disabled=true]){--🌀switch-state:var(--🌀switch-state--disabled);--🥝switch-thumb-color:var(--kiwi-color-icon-neutral-disabled);cursor:not-allowed}.🥝-switch:where([disabled],:disabled,[aria-disabled=true]):after{box-shadow:none}}@layer base.🌀{.🥝-switch{--🌀switch-state:var(--🌀switch-state--default);--🌀switch-state--default:var(--🌀switch-state, );--🌀switch-state--hover:var(--🌀switch-state, );--🌀switch-state--pressed:var(--🌀switch-state, );--🌀switch-state--checked:var(--🌀switch-state, );--🌀switch-state--checked-hover:var(--🌀switch-state, );--🌀switch-state--disabled:var(--🌀switch-state, )}}@layer base{.🥝-tab-list{--🥝tab-active-stripe-gap:6px;gap:8px;display:flex}}@layer modifiers{.🥝-tab-list[aria-orientation=horizontal]{padding-block-end:var(--🥝tab-active-stripe-gap)}}@layer base{.🥝-tab{font-size:var(--kiwi-font-size-12);color:var(--🥝tab-color);background-color:var(--🥝tab-bg);-webkit-user-select:none;user-select:none;white-space:nowrap;cursor:pointer;border:none;border-radius:4px;block-size:1.25rem;padding-inline:4px;transition:background-color .15s ease-out,color .15s ease-out;position:relative}@media (forced-colors:active){.🥝-tab{color:buttontext}}.🥝-tab:before{content:"";inset-inline:0;inset-block:0 calc(var(--🥝tab-active-stripe-gap)*-1);position:absolute}}@layer modifiers{:where(.🥝-tab-list[data-kiwi-tone=neutral]) .🥝-tab{--🥝tab-active-stripe-color:var(--kiwi-color-border-neutral-inverse);--🥝tab-bg:var(--🌀tab-state--default,transparent)var(--🌀tab-state--hover,color-mix(in oklch,transparent 100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-on-surface-neutral-hover-\%)))var(--🌀tab-state--selected,transparent)var(--🌀tab-state--disabled,transparent);--🥝tab-color:var(--🌀tab-state--default,var(--kiwi-color-text-neutral-tertiary))var(--🌀tab-state--hover,var(--kiwi-color-text-neutral-primary))var(--🌀tab-state--selected,var(--kiwi-color-text-neutral-primary))var(--🌀tab-state--disabled,var(--kiwi-color-text-neutral-disabled));-webkit-tap-highlight-color:color-mix(in oklch,transparent 100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-on-surface-neutral-hover-\%))}:where(.🥝-tab-list[data-kiwi-tone=accent]) .🥝-tab{--🥝tab-active-stripe-color:var(--kiwi-color-border-accent-strong);--🥝tab-bg:var(--🌀tab-state--default,transparent)var(--🌀tab-state--hover,var(--kiwi-color-bg-glow-on-surface-accent-hover))var(--🌀tab-state--selected,transparent)var(--🌀tab-state--disabled,transparent);--🥝tab-color:var(--🌀tab-state--default,var(--kiwi-color-text-neutral-tertiary))var(--🌀tab-state--hover,var(--kiwi-color-text-accent-strong))var(--🌀tab-state--selected,var(--kiwi-color-text-accent-strong))var(--🌀tab-state--disabled,var(--kiwi-color-text-neutral-disabled));-webkit-tap-highlight-color:var(--kiwi-color-bg-glow-on-surface-accent-hover)}}@layer states{.🥝-tab:where([aria-selected=true]){--🌀tab-state:var(--🌀tab-state--selected)}.🥝-tab:where([aria-selected=true]):after{content:"";background-color:var(--🥝tab-active-stripe-color);block-size:2px;inset-inline:4px;inset-block:auto calc(var(--🥝tab-active-stripe-gap)*-1);position:absolute}@media (prefers-reduced-motion:no-preference){.🥝-tab:where([aria-selected=true]):after{view-transition-name:var(--🥝tab-active-stripe-view-transition-name)}}@media (forced-colors:active){.🥝-tab:where([aria-selected=true]):after{background-color:selecteditem}}@media (any-hover:hover){.🥝-tab:where(:hover){--🌀tab-state:var(--🌀tab-state--hover)}}.🥝-tab:where([disabled],:disabled,[aria-disabled=true]){--🌀tab-state:var(--🌀tab-state--disabled);--🥝tab-active-stripe-color:var(--kiwi-color-border-neutral-disabled);cursor:not-allowed}@media (forced-colors:active){.🥝-tab:where([disabled],:disabled,[aria-disabled=true]){color:graytext}.🥝-tab:where([disabled],:disabled,[aria-disabled=true]):after{background-color:graytext}}}@layer base.🌀{.🥝-tab{--🌀tab-state:var(--🌀tab-state--default);--🌀tab-state--default:var(--🌀tab-state, );--🌀tab-state--hover:var(--🌀tab-state, );--🌀tab-state--selected:var(--🌀tab-state, );--🌀tab-state--disabled:var(--🌀tab-state, )}}@layer base{.🥝-tab-panel{outline-offset:-2px}.🥝-tab-panel:not([data-open]){display:none!important}}@layer modifiers{.🥝-text:where([data-kiwi-text-variant=display-lg]){font-size:var(--kiwi-font-size-48);letter-spacing:0;line-height:1.1667}.🥝-text:where([data-kiwi-text-variant=display-md]){font-size:var(--kiwi-font-size-40);letter-spacing:0;line-height:1.2}.🥝-text:where([data-kiwi-text-variant=display-sm]){font-size:var(--kiwi-font-size-32);letter-spacing:0;line-height:1.25}.🥝-text:where([data-kiwi-text-variant=headline-lg]){font-size:var(--kiwi-font-size-28);letter-spacing:0;line-height:1.2857}.🥝-text:where([data-kiwi-text-variant=headline-md]){font-size:var(--kiwi-font-size-24);letter-spacing:0;line-height:1.3333}.🥝-text:where([data-kiwi-text-variant=headline-sm]){font-size:var(--kiwi-font-size-20);letter-spacing:0;line-height:1.4}.🥝-text:where([data-kiwi-text-variant=body-lg]){font-size:var(--kiwi-font-size-16);letter-spacing:0;line-height:1.5}.🥝-text:where([data-kiwi-text-variant=body-md]){font-size:var(--kiwi-font-size-14);letter-spacing:0;line-height:1.4286}.🥝-text:where([data-kiwi-text-variant=body-sm]){font-size:var(--kiwi-font-size-12);letter-spacing:0;line-height:1.3333}.🥝-text:where([data-kiwi-text-variant=caption-lg]){font-size:var(--kiwi-font-size-11);letter-spacing:0;line-height:1.4545}.🥝-text:where([data-kiwi-text-variant=caption-md]){font-size:var(--kiwi-font-size-10);letter-spacing:0;line-height:1.2}.🥝-text:where([data-kiwi-text-variant=caption-sm]){font-size:var(--kiwi-font-size-8);letter-spacing:0;line-height:1.5}.🥝-text:where([data-kiwi-text-variant=mono-sm]){font-family:var(--kiwi-font-family-mono);font-size:var(--kiwi-font-size-12);letter-spacing:0;line-height:1.3333}}@layer base{.🥝-text-box{cursor:var(--🥝text-box-cursor);font-size:var(--kiwi-font-size-12);background-color:var(--🥝text-box-background-color);min-block-size:1.5rem;min-inline-size:0;box-shadow:var(--kiwi-shadow-input-base);color:var(--kiwi-color-text-neutral-primary);--🥝text-box-cursor:text;--🥝text-box-background-color:var(--🌀text-box-state--default,var(--kiwi-color-bg-surface-primary))var(--🌀text-box-state--hover,color-mix(in oklch,var(--kiwi-color-bg-surface-primary)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-bg-glow-base-hover-\%)))var(--🌀text-box-state--disabled,var(--kiwi-color-bg-surface-base));--🥝text-box-border-color:var(--🌀text-box-state--default,var(--kiwi-color-border-neutral-base))var(--🌀text-box-state--hover,color-mix(in oklch,var(--kiwi-color-border-neutral-base)100.0%,var(--kiwi-color-glow-hue)var(--kiwi-color-border-glow-base-hover-\%)))var(--🌀text-box-state--disabled,var(--kiwi-color-border-glow-on-surface-disabled));border-radius:4px;padding-inline:8px;transition:background-color .15s ease-out,border-color .15s ease-out}.🥝-text-box:where(:not(input,textarea)){align-items:center;gap:4px;display:inline-flex;position:relative}.🥝-text-box:where(:not(input,textarea)):before{content:"";border-radius:inherit;pointer-events:none;border:1px solid var(--🥝text-box-border-color);transition:border-color .15s ease-out;position:absolute;inset:0}.🥝-text-box:where(input,textarea),.🥝-text-box :where(input,textarea){appearance:none;border:1px solid var(--🥝text-box-border-color);min-inline-size:0;cursor:var(--🥝text-box-cursor);padding-block:max(0px,.75rem - 1px - .5lh);line-height:1.3}:is(.🥝-text-box:where(input,textarea),.🥝-text-box :where(input,textarea))::placeholder{color:var(--kiwi-color-text-neutral-secondary);opacity:1}.🥝-text-box:where(textarea),.🥝-text-box :where(textarea){resize:vertical;resize:block}.🥝-text-box :where(input,textarea){background-color:var(--🥝text-box-background-color);outline:unset;border:none;flex:999;align-self:stretch;transition:background-color .15s ease-out}}@layer states{@media (any-hover:hover){.🥝-text-box:where(:hover){--🌀text-box-state:var(--🌀text-box-state--hover)}}.🥝-text-box:where(:has(:is(input,textarea):focus-visible),:is(input,textarea):focus-visible){outline:2px solid var(--kiwi-color-border-accent-base);outline-offset:1px;--🥝text-box-border-color:var(--kiwi-color-border-accent-strong);--🥝icon-color:var(--kiwi-color-icon-accent-strong)}@supports not selector(:has(+ *)){.🥝-text-box:where(:not(input,textarea):focus-within){outline:2px solid var(--kiwi-color-border-accent-base);outline-offset:1px;--🥝text-box-border-color:var(--kiwi-color-border-accent-strong);--🥝icon-color:var(--kiwi-color-icon-accent-strong)}}.🥝-text-box:where([disabled],:disabled,[aria-disabled=true],[data-kiwi-disabled=true],:has(:is(input,textarea):disabled)){--🌀text-box-state:var(--🌀text-box-state--disabled);box-shadow:none;color:var(--kiwi-color-text-neutral-disabled);--🥝text-box-cursor:not-allowed}}@layer base.🌀{.🥝-text-box{--🌀text-box-state:var(--🌀text-box-state--default);--🌀text-box-state--default:var(--🌀text-box-state, );--🌀text-box-state--hover:var(--🌀text-box-state, );--🌀text-box-state--disabled:var(--🌀text-box-state, )}}@layer base{.🥝-text-box-decoration{flex-shrink:0}}@layer base{.🥝-tooltip{background-color:var(--kiwi-color-bg-surface-emphasis);box-shadow:var(--kiwi-shadow-tooltip-base);color:var(--kiwi-color-text-neutral-emphasis);border:1px solid var(--kiwi-color-border-surface-primary);min-block-size:1rem;max-inline-size:12.25rem;font-size:var(--kiwi-font-size-12);letter-spacing:0;border-radius:.25rem;justify-content:center;gap:.25rem;padding-block:calc(.25rem - 1px);padding-inline:calc(.625rem - 1px);line-height:1.3333;display:flex}}@layer base{.🥝-tree-item.🥝-list-item{isolation:isolate;padding-inline-start:calc(8px + 6px*(var(--🥝tree-item-level) - 1));padding-inline-end:.25rem;position:relative}}@layer states{.🥝-tree-item.🥝-list-item:where([data-kiwi-selected=true]){--🌀list-item-state:var(--🌀list-item-state--active)}.🥝-tree-item.🥝-list-item:where([data-kiwi-parent-selected=true][data-kiwi-selected=true]){--🌀list-item-state:var(--🌀list-item-state--active-child)}.🥝-tree-item.🥝-list-item:where([data-kiwi-expanded=false]){--🥝tree-chevron-rotate:-.25turn}.🥝-tree-item.🥝-list-item:where(:not([data-kiwi-expanded])){--🥝tree-item-expander-visibility:hidden}@media (any-hover:hover){.🥝-tree-item.🥝-list-item:where(:hover[data-kiwi-parent-selected=true][data-kiwi-selected=true]){--🌀list-item-state:var(--🌀list-item-state--active-child-hover)}}}@layer base{.🥝-tree-item-content.🥝-list-item-content{min-inline-size:0;display:inline-flex}.🥝-tree-item-content.🥝-list-item-content :where(button){cursor:pointer;text-overflow:ellipsis;white-space:nowrap;border:unset;background-color:unset;overflow:hidden}.🥝-tree-item-content.🥝-list-item-content :where(button):before{content:"";position:absolute;inset:0}}@layer base{.🥝-tree-item-expander.🥝-icon-button{visibility:var(--🥝tree-item-expander-visibility);z-index:1}}@layer base{.🥝-tree-chevron{rotate:var(--🥝tree-chevron-rotate)}@media (prefers-reduced-motion:no-preference){.🥝-tree-chevron{transition:rotate .15s ease-in-out}}}@layer base{.🥝-field{grid-template-columns:auto auto;justify-content:start;align-items:center;gap:.5rem;display:grid}.🥝-field:has(.🥝-text-box){grid-template-columns:auto}}@layer modifiers{.🥝-field:where([data-kiwi-layout=inline]){grid-template-columns:auto auto}}}`;
|
|
3
|
+
|
|
4
|
+
// src/bricks/styles.css.ts
|
|
5
|
+
var styles_css_default = styles_default;
|
|
6
|
+
export {
|
|
7
|
+
styles_css_default as default
|
|
8
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
/**
|
|
3
|
+
* Wrapper over `useState` that always gives preference to the
|
|
4
|
+
* controlled state (which often comes from a prop).
|
|
5
|
+
*
|
|
6
|
+
* This is helpful when a component needs to support both uncontrolled
|
|
7
|
+
* and controlled states. If controlled value/setter is not passed,
|
|
8
|
+
* then it will work just like a regular `useState`.
|
|
9
|
+
*
|
|
10
|
+
* ```tsx
|
|
11
|
+
* const [state, setState] = useControlledState(
|
|
12
|
+
* props.defaultValue,
|
|
13
|
+
* props.value,
|
|
14
|
+
* props.onChange
|
|
15
|
+
* );
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* @private
|
|
19
|
+
*/
|
|
20
|
+
export declare function useControlledState<T>(initialValue: T, controlledState: T | undefined, setControlledState?: React.Dispatch<React.SetStateAction<T>>): readonly [T, React.Dispatch<React.SetStateAction<T>>];
|
|
21
|
+
/**
|
|
22
|
+
* Hook that keeps track of the latest value in a ref.
|
|
23
|
+
* This is useful for referencing unmemoized values inside Effects.
|
|
24
|
+
*
|
|
25
|
+
* ```tsx
|
|
26
|
+
* const valueRef = useLatestRef(props.value);
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* @private
|
|
30
|
+
*/
|
|
31
|
+
export declare function useLatestRef<T>(value: T): React.RefObject<T>;
|
|
32
|
+
/**
|
|
33
|
+
* Returns a memoized callback ref that merges the provided refs.
|
|
34
|
+
*
|
|
35
|
+
* ```tsx
|
|
36
|
+
* const mergedRef = useMergedRefs(ref1, ref2);
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* This is useful when you need to internally use a ref in a component
|
|
40
|
+
* and also need to forward its ref.
|
|
41
|
+
*
|
|
42
|
+
* ```tsx
|
|
43
|
+
* const internalRef = useRef(null);
|
|
44
|
+
* return <div ref={useMergedRefs(internalRef, forwardedRef)} />;
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @private
|
|
48
|
+
*/
|
|
49
|
+
export declare function useMergedRefs<T>(...refs: ReadonlyArray<React.Ref<T> | React.LegacyRef<T> | undefined | null>): (instance: T | null) => void;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function useControlledState(initialValue, controlledState, setControlledState) {
|
|
3
|
+
const [uncontrolledState, setUncontrolledState] = React.useState(initialValue);
|
|
4
|
+
const state = React.useMemo(
|
|
5
|
+
() => controlledState !== void 0 ? controlledState : uncontrolledState,
|
|
6
|
+
[controlledState, uncontrolledState]
|
|
7
|
+
);
|
|
8
|
+
const setControlledStateRef = useLatestRef(setControlledState);
|
|
9
|
+
const setState = React.useCallback(
|
|
10
|
+
(value) => {
|
|
11
|
+
setUncontrolledState(value);
|
|
12
|
+
setControlledStateRef.current?.(value);
|
|
13
|
+
},
|
|
14
|
+
[setControlledStateRef]
|
|
15
|
+
);
|
|
16
|
+
return [state, setState];
|
|
17
|
+
}
|
|
18
|
+
function useLatestRef(value) {
|
|
19
|
+
const valueRef = React.useRef(value);
|
|
20
|
+
React.useEffect(() => {
|
|
21
|
+
valueRef.current = value;
|
|
22
|
+
}, [value]);
|
|
23
|
+
return valueRef;
|
|
24
|
+
}
|
|
25
|
+
function useMergedRefs(...refs) {
|
|
26
|
+
return React.useCallback(
|
|
27
|
+
(instance) => {
|
|
28
|
+
for (const ref of refs) {
|
|
29
|
+
if (typeof ref === "function") {
|
|
30
|
+
ref(instance);
|
|
31
|
+
} else if (ref) {
|
|
32
|
+
ref.current = instance;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
[...refs]
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
export {
|
|
40
|
+
useControlledState,
|
|
41
|
+
useLatestRef,
|
|
42
|
+
useMergedRefs
|
|
43
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type * as Ariakit from "@ariakit/react";
|
|
3
|
+
export declare const isBrowser: boolean;
|
|
4
|
+
export declare const supportsPopover: boolean;
|
|
5
|
+
/**
|
|
6
|
+
* Wrapper over `React.forwardRef` which allows refs to be loosely typed as `HTMLElement`.
|
|
7
|
+
*
|
|
8
|
+
* Usage:
|
|
9
|
+
*
|
|
10
|
+
* ```tsx
|
|
11
|
+
* const Button = forwardRef<"button", ButtonProps>((props, forwardedRef) => {});
|
|
12
|
+
*
|
|
13
|
+
* const ref = React.useRef<HTMLElement>(null); // or React.useRef<HTMLButtonElement>(null)
|
|
14
|
+
* <Button ref={ref} />
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* **Note**: The first type parameter is the default element type, which is slightly different
|
|
18
|
+
* from what `React.forwardRef` expects. e.g. This utility expects `"div"` instead of `ComponentRef<"div">`.
|
|
19
|
+
*
|
|
20
|
+
* @private
|
|
21
|
+
*/
|
|
22
|
+
export declare const forwardRef: ForwardRefHelper;
|
|
23
|
+
type ForwardRefHelper = <DefaultElement extends React.ElementType, Props extends {}>(render: React.ForwardRefRenderFunction<React.ComponentRef<DefaultElement>, React.PropsWithoutRef<Props>>) => React.ForwardRefExoticComponent<React.PropsWithoutRef<Props> & React.RefAttributes<React.ComponentRef<DefaultElement> | HTMLElement>>;
|
|
24
|
+
/** Element type props merged with custom props. */
|
|
25
|
+
type MergeProps<ElementType extends React.ElementType, CustomProps extends Record<string, unknown>> = CustomProps & Omit<React.ComponentPropsWithoutRef<ElementType>, keyof CustomProps>;
|
|
26
|
+
/** Base component props with custom props. */
|
|
27
|
+
export type BaseProps<ElementType extends React.ElementType = "div"> = MergeProps<ElementType, Pick<Ariakit.RoleProps, "render">>;
|
|
28
|
+
/** Focusable component props with custom props. */
|
|
29
|
+
export type FocusableProps<ElementType extends React.ElementType = "div"> = BaseProps<ElementType> & Pick<Ariakit.FocusableProps, "disabled" | "accessibleWhenDisabled" | "autoFocus">;
|
|
30
|
+
export {};
|