@workday/canvas-kit-react 8.0.0-alpha.253-next.22 → 8.0.0-alpha.428-next.2
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/action-bar/lib/ActionBar.tsx +44 -0
- package/action-bar/lib/ActionBarList.tsx +16 -13
- package/action-bar/lib/ActionBarOverflowButton.tsx +2 -2
- package/action-bar/lib/useActionBarModel.tsx +20 -3
- package/banner/lib/Banner.tsx +56 -0
- package/banner/lib/BannerIcon.tsx +0 -1
- package/banner/lib/hooks/index.ts +2 -0
- package/banner/lib/hooks/useThemedPalette.ts +3 -3
- package/breadcrumbs/lib/Breadcrumbs.tsx +77 -56
- package/breadcrumbs/lib/BreadcrumbsCurrentItem.tsx +7 -18
- package/breadcrumbs/lib/BreadcrumbsItem.tsx +3 -3
- package/breadcrumbs/lib/BreadcrumbsList.tsx +1 -2
- package/button/lib/BaseButton.tsx +7 -5
- package/button/lib/DeleteButton.tsx +5 -1
- package/button/lib/ExternalHyperlink.tsx +6 -7
- package/button/lib/Hyperlink.tsx +6 -2
- package/button/lib/PrimaryButton.tsx +9 -5
- package/button/lib/SecondaryButton.tsx +9 -0
- package/button/lib/TertiaryButton.tsx +11 -10
- package/button/lib/parts/ButtonLabelIcon.tsx +2 -9
- package/card/lib/Card.tsx +36 -0
- package/checkbox/lib/Checkbox.tsx +2 -8
- package/collection/index.ts +5 -1
- package/collection/lib/ListBox.tsx +31 -16
- package/collection/lib/keyUtils.ts +88 -0
- package/collection/lib/useBaseListModel.tsx +29 -15
- package/collection/lib/useCursorListModel.tsx +124 -94
- package/collection/lib/useGridModel.ts +4 -0
- package/collection/lib/useListActiveDescendant.ts +24 -0
- package/collection/lib/useListItemAllowChildStrings.ts +38 -0
- package/collection/lib/useListItemRegister.tsx +25 -7
- package/collection/lib/useListItemRovingFocus.tsx +60 -113
- package/collection/lib/useListItemSelect.tsx +16 -5
- package/collection/lib/useListKeyboardHandler.ts +28 -0
- package/collection/lib/useListLoader.ts +375 -0
- package/collection/lib/useListModel.tsx +20 -3
- package/collection/lib/useListRenderItem.tsx +14 -0
- package/collection/lib/useListResetCursorOnBlur.tsx +13 -2
- package/collection/lib/useOverflowListItemMeasure.tsx +13 -2
- package/collection/lib/useOverflowListMeasure.ts +15 -13
- package/collection/lib/useOverflowListTarget.tsx +32 -30
- package/collection/lib/useSelectionListModel.tsx +14 -1
- package/combobox/LICENSE +52 -0
- package/combobox/README.md +7 -0
- package/combobox/index.ts +8 -0
- package/combobox/lib/Combobox.tsx +32 -0
- package/combobox/lib/ComboboxCard.tsx +33 -0
- package/combobox/lib/ComboboxInput.tsx +104 -0
- package/combobox/lib/ComboboxMenu.tsx +67 -0
- package/combobox/lib/ComboboxMenuItem.tsx +74 -0
- package/combobox/lib/ComboboxMenuList.tsx +45 -0
- package/combobox/lib/useComboboxInputOpenWithArrowKeys.ts +21 -0
- package/combobox/lib/useComboboxLoader.ts +72 -0
- package/combobox/lib/useComboboxModel.tsx +85 -0
- package/combobox/package.json +6 -0
- package/common/lib/EllipsisText.tsx +11 -3
- package/common/lib/styles/focusRing.ts +0 -9
- package/common/lib/theming/README.md +97 -0
- package/common/lib/theming/createCanvasTheme.ts +39 -42
- package/common/lib/theming/getObjectProxy.ts +37 -0
- package/common/lib/theming/index.ts +2 -0
- package/common/lib/theming/useTheme.ts +79 -23
- package/common/lib/theming/useThemedRing.ts +114 -0
- package/common/lib/utils/changeFocus.ts +15 -3
- package/common/lib/utils/colorUtils.ts +20 -7
- package/common/lib/utils/components.ts +267 -194
- package/common/lib/utils/deepMerge.ts +21 -0
- package/common/lib/utils/dispatchInputEvent.ts +16 -0
- package/common/lib/utils/index.ts +2 -0
- package/common/lib/utils/memoize.ts +23 -0
- package/common/lib/utils/models.ts +11 -7
- package/common/lib/utils/slugify.ts +11 -0
- package/common/lib/utils/useModalityType.ts +18 -4
- package/dialog/lib/Dialog.tsx +66 -0
- package/dialog/lib/DialogPopper.tsx +3 -0
- package/disclosure/lib/useDisclosureModel.tsx +2 -2
- package/dist/commonjs/action-bar/lib/ActionBar.d.ts +805 -349
- package/dist/commonjs/action-bar/lib/ActionBar.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBar.js +52 -9
- package/dist/commonjs/action-bar/lib/ActionBarItem.d.ts +73 -26
- package/dist/commonjs/action-bar/lib/ActionBarItem.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarItem.js +7 -18
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts +40 -30
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarList.js +13 -37
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts +109 -27
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.js +13 -24
- package/dist/commonjs/action-bar/lib/useActionBarModel.d.ts +381 -161
- package/dist/commonjs/action-bar/lib/useActionBarModel.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/useActionBarModel.js +55 -41
- package/dist/commonjs/avatar/lib/Avatar.js +52 -74
- package/dist/commonjs/badge/lib/CountBadge.js +23 -43
- package/dist/commonjs/banner/lib/Banner.d.ts +60 -4
- package/dist/commonjs/banner/lib/Banner.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/Banner.js +88 -48
- package/dist/commonjs/banner/lib/BannerActionText.d.ts +1 -1
- package/dist/commonjs/banner/lib/BannerActionText.js +7 -30
- package/dist/commonjs/banner/lib/BannerIcon.d.ts +1 -2
- package/dist/commonjs/banner/lib/BannerIcon.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/BannerIcon.js +9 -31
- package/dist/commonjs/banner/lib/BannerLabel.d.ts +1 -1
- package/dist/commonjs/banner/lib/BannerLabel.js +6 -29
- package/dist/commonjs/banner/lib/hooks/index.d.ts +2 -0
- package/dist/commonjs/banner/lib/hooks/index.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/index.js +3 -0
- package/dist/commonjs/banner/lib/hooks/useBanner.d.ts +3 -5
- package/dist/commonjs/banner/lib/hooks/useBanner.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useBanner.js +5 -6
- package/dist/commonjs/banner/lib/hooks/useBannerActionText.d.ts +3 -5
- package/dist/commonjs/banner/lib/hooks/useBannerActionText.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerActionText.js +4 -5
- package/dist/commonjs/banner/lib/hooks/useBannerIcon.d.ts +3 -5
- package/dist/commonjs/banner/lib/hooks/useBannerIcon.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerIcon.js +6 -7
- package/dist/commonjs/banner/lib/hooks/useBannerLabel.d.ts +3 -5
- package/dist/commonjs/banner/lib/hooks/useBannerLabel.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerLabel.js +4 -5
- package/dist/commonjs/banner/lib/hooks/useBannerModel.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerModel.js +8 -16
- package/dist/commonjs/banner/lib/hooks/useThemedPalette.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useThemedPalette.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useThemedPalette.js +11 -11
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts +865 -466
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.js +89 -91
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +149 -27
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.js +14 -44
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts +77 -27
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.js +15 -40
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.d.ts +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.js +15 -36
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.d.ts +24 -16
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.js +10 -33
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts +414 -221
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.js +7 -19
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +109 -27
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.js +15 -38
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +369 -161
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.js +38 -37
- package/dist/commonjs/breadcrumbs/lib/hooks/utils/index.js +4 -4
- package/dist/commonjs/button/lib/BaseButton.d.ts +8 -7
- package/dist/commonjs/button/lib/BaseButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/BaseButton.js +128 -78
- package/dist/commonjs/button/lib/DeleteButton.d.ts +6 -2
- package/dist/commonjs/button/lib/DeleteButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/DeleteButton.js +32 -58
- package/dist/commonjs/button/lib/ExternalHyperlink.d.ts +5 -1
- package/dist/commonjs/button/lib/ExternalHyperlink.d.ts.map +1 -1
- package/dist/commonjs/button/lib/ExternalHyperlink.js +29 -39
- package/dist/commonjs/button/lib/Hyperlink.d.ts +5 -1
- package/dist/commonjs/button/lib/Hyperlink.d.ts.map +1 -1
- package/dist/commonjs/button/lib/Hyperlink.js +13 -34
- package/dist/commonjs/button/lib/PrimaryButton.d.ts +10 -6
- package/dist/commonjs/button/lib/PrimaryButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/PrimaryButton.js +18 -32
- package/dist/commonjs/button/lib/SecondaryButton.d.ts +10 -1
- package/dist/commonjs/button/lib/SecondaryButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/SecondaryButton.js +18 -32
- package/dist/commonjs/button/lib/TertiaryButton.d.ts +12 -9
- package/dist/commonjs/button/lib/TertiaryButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/TertiaryButton.js +33 -49
- package/dist/commonjs/button/lib/ToolbarDropdownButton.d.ts +1 -1
- package/dist/commonjs/button/lib/ToolbarDropdownButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/ToolbarDropdownButton.js +14 -40
- package/dist/commonjs/button/lib/ToolbarIconButton.d.ts +1 -1
- package/dist/commonjs/button/lib/ToolbarIconButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/ToolbarIconButton.js +16 -43
- package/dist/commonjs/button/lib/deprecated_Button.d.ts +1 -1
- package/dist/commonjs/button/lib/deprecated_Button.d.ts.map +1 -1
- package/dist/commonjs/button/lib/deprecated_Button.js +52 -55
- package/dist/commonjs/button/lib/parts/ButtonLabel.d.ts +1 -1
- package/dist/commonjs/button/lib/parts/ButtonLabel.d.ts.map +1 -1
- package/dist/commonjs/button/lib/parts/ButtonLabel.js +6 -29
- package/dist/commonjs/button/lib/parts/ButtonLabelIcon.d.ts +3 -9
- package/dist/commonjs/button/lib/parts/ButtonLabelIcon.d.ts.map +1 -1
- package/dist/commonjs/button/lib/parts/ButtonLabelIcon.js +7 -30
- package/dist/commonjs/card/lib/Card.d.ts +39 -3
- package/dist/commonjs/card/lib/Card.d.ts.map +1 -1
- package/dist/commonjs/card/lib/Card.js +44 -31
- package/dist/commonjs/card/lib/CardBody.d.ts +1 -1
- package/dist/commonjs/card/lib/CardBody.d.ts.map +1 -1
- package/dist/commonjs/card/lib/CardBody.js +6 -29
- package/dist/commonjs/card/lib/CardHeading.d.ts +1 -1
- package/dist/commonjs/card/lib/CardHeading.d.ts.map +1 -1
- package/dist/commonjs/card/lib/CardHeading.js +5 -28
- package/dist/commonjs/checkbox/lib/Checkbox.d.ts +2 -2
- package/dist/commonjs/checkbox/lib/Checkbox.d.ts.map +1 -1
- package/dist/commonjs/checkbox/lib/Checkbox.js +122 -131
- package/dist/commonjs/collection/index.d.ts +5 -1
- package/dist/commonjs/collection/index.d.ts.map +1 -1
- package/dist/commonjs/collection/index.js +4 -0
- package/dist/commonjs/collection/lib/ListBox.d.ts +353 -125
- package/dist/commonjs/collection/lib/ListBox.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/ListBox.js +34 -42
- package/dist/commonjs/collection/lib/keyUtils.d.ts +26 -0
- package/dist/commonjs/collection/lib/keyUtils.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/keyUtils.js +80 -0
- package/dist/commonjs/collection/lib/react-virtual.js +2 -2
- package/dist/commonjs/collection/lib/useBaseListModel.d.ts +30 -20
- package/dist/commonjs/collection/lib/useBaseListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useBaseListModel.js +77 -70
- package/dist/commonjs/collection/lib/useCursorListModel.d.ts +563 -93
- package/dist/commonjs/collection/lib/useCursorListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useCursorListModel.js +153 -155
- package/dist/commonjs/collection/lib/useGridModel.d.ts +273 -119
- package/dist/commonjs/collection/lib/useGridModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useGridModel.js +18 -32
- package/dist/commonjs/collection/lib/useListActiveDescendant.d.ts +68 -0
- package/dist/commonjs/collection/lib/useListActiveDescendant.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListActiveDescendant.js +25 -0
- package/dist/commonjs/collection/lib/useListItemAllowChildStrings.d.ts +88 -0
- package/dist/commonjs/collection/lib/useListItemAllowChildStrings.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListItemAllowChildStrings.js +37 -0
- package/dist/commonjs/collection/lib/useListItemRegister.d.ts +25 -13
- package/dist/commonjs/collection/lib/useListItemRegister.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRegister.js +33 -21
- package/dist/commonjs/collection/lib/useListItemRovingFocus.d.ts +23 -38
- package/dist/commonjs/collection/lib/useListItemRovingFocus.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRovingFocus.js +66 -118
- package/dist/commonjs/collection/lib/useListItemSelect.d.ts +25 -11
- package/dist/commonjs/collection/lib/useListItemSelect.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemSelect.js +21 -12
- package/dist/commonjs/collection/lib/useListKeyboardHandler.d.ts +66 -0
- package/dist/commonjs/collection/lib/useListKeyboardHandler.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListKeyboardHandler.js +27 -0
- package/dist/commonjs/collection/lib/useListLoader.d.ts +106 -0
- package/dist/commonjs/collection/lib/useListLoader.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListLoader.js +239 -0
- package/dist/commonjs/collection/lib/useListModel.d.ts +289 -122
- package/dist/commonjs/collection/lib/useListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListModel.js +22 -5
- package/dist/commonjs/collection/lib/useListRenderItem.d.ts +14 -0
- package/dist/commonjs/collection/lib/useListRenderItem.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListRenderItem.js +23 -9
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.d.ts +25 -12
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.js +22 -12
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.d.ts +24 -11
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.js +21 -11
- package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts +18 -12
- package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListMeasure.js +12 -8
- package/dist/commonjs/collection/lib/useOverflowListModel.d.ts +341 -143
- package/dist/commonjs/collection/lib/useOverflowListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListModel.js +61 -56
- package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts +22 -13
- package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListTarget.js +15 -11
- package/dist/commonjs/collection/lib/useSelectionListModel.d.ts +282 -120
- package/dist/commonjs/collection/lib/useSelectionListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useSelectionListModel.js +32 -37
- package/dist/commonjs/color-picker/lib/ColorInput.d.ts +1 -1
- package/dist/commonjs/color-picker/lib/ColorInput.d.ts.map +1 -1
- package/dist/commonjs/color-picker/lib/ColorInput.js +45 -75
- package/dist/commonjs/color-picker/lib/ColorPreview.d.ts +1 -1
- package/dist/commonjs/color-picker/lib/ColorPreview.d.ts.map +1 -1
- package/dist/commonjs/color-picker/lib/ColorPreview.js +7 -32
- package/dist/commonjs/color-picker/lib/parts/ColorSwatch.js +15 -43
- package/dist/commonjs/combobox/index.d.ts +9 -0
- package/dist/commonjs/combobox/index.d.ts.map +1 -0
- package/dist/commonjs/combobox/index.js +19 -0
- package/dist/commonjs/combobox/lib/Combobox.d.ts +2075 -0
- package/dist/commonjs/combobox/lib/Combobox.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/Combobox.js +29 -0
- package/dist/commonjs/combobox/lib/ComboboxCard.d.ts +166 -0
- package/dist/commonjs/combobox/lib/ComboboxCard.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxCard.js +25 -0
- package/dist/commonjs/combobox/lib/ComboboxInput.d.ts +186 -0
- package/dist/commonjs/combobox/lib/ComboboxInput.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxInput.js +84 -0
- package/dist/commonjs/combobox/lib/ComboboxMenu.d.ts +428 -0
- package/dist/commonjs/combobox/lib/ComboboxMenu.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxMenu.js +63 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuItem.d.ts +178 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuItem.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuItem.js +50 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuList.d.ts +164 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuList.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuList.js +31 -0
- package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts +84 -0
- package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.js +20 -0
- package/dist/commonjs/combobox/lib/useComboboxLoader.d.ts +28 -0
- package/dist/commonjs/combobox/lib/useComboboxLoader.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/useComboboxLoader.js +65 -0
- package/dist/commonjs/combobox/lib/useComboboxModel.d.ts +1998 -0
- package/dist/commonjs/combobox/lib/useComboboxModel.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/useComboboxModel.js +82 -0
- package/dist/commonjs/common/lib/CanvasProvider.js +15 -55
- package/dist/commonjs/common/lib/EllipsisText.d.ts +1 -2
- package/dist/commonjs/common/lib/EllipsisText.d.ts.map +1 -1
- package/dist/commonjs/common/lib/EllipsisText.js +10 -3
- package/dist/commonjs/common/lib/InputProvider.d.ts +1 -1
- package/dist/commonjs/common/lib/InputProvider.js +73 -91
- package/dist/commonjs/common/lib/parts/_brand-assets.js +6 -6
- package/dist/commonjs/common/lib/responsive/useResponsiveContainerStyles.js +22 -51
- package/dist/commonjs/common/lib/styles/errorRing.js +11 -10
- package/dist/commonjs/common/lib/styles/focusRing.d.ts +0 -3
- package/dist/commonjs/common/lib/styles/focusRing.d.ts.map +1 -1
- package/dist/commonjs/common/lib/styles/focusRing.js +20 -36
- package/dist/commonjs/common/lib/styles/hideMouseFocus.js +13 -9
- package/dist/commonjs/common/lib/theming/breakpoints.js +10 -10
- package/dist/commonjs/common/lib/theming/createCanvasTheme.d.ts +7 -6
- package/dist/commonjs/common/lib/theming/createCanvasTheme.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/createCanvasTheme.js +45 -70
- package/dist/commonjs/common/lib/theming/getObjectProxy.d.ts +15 -0
- package/dist/commonjs/common/lib/theming/getObjectProxy.d.ts.map +1 -0
- package/dist/commonjs/common/lib/theming/getObjectProxy.js +31 -0
- package/dist/commonjs/common/lib/theming/index.d.ts +2 -0
- package/dist/commonjs/common/lib/theming/index.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/index.js +2 -0
- package/dist/commonjs/common/lib/theming/styled.js +10 -14
- package/dist/commonjs/common/lib/theming/theme.js +3 -3
- package/dist/commonjs/common/lib/theming/useIsRTL.js +5 -5
- package/dist/commonjs/common/lib/theming/useTheme.d.ts +49 -5
- package/dist/commonjs/common/lib/theming/useTheme.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/useTheme.js +82 -40
- package/dist/commonjs/common/lib/theming/useThemedRing.d.ts +43 -0
- package/dist/commonjs/common/lib/theming/useThemedRing.d.ts.map +1 -0
- package/dist/commonjs/common/lib/theming/useThemedRing.js +100 -0
- package/dist/commonjs/common/lib/utils/changeFocus.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/changeFocus.js +11 -5
- package/dist/commonjs/common/lib/utils/colorUtils.d.ts +7 -0
- package/dist/commonjs/common/lib/utils/colorUtils.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/colorUtils.js +28 -15
- package/dist/commonjs/common/lib/utils/components.d.ts +140 -86
- package/dist/commonjs/common/lib/utils/components.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/components.js +156 -117
- package/dist/commonjs/common/lib/utils/deepMerge.d.ts +2 -0
- package/dist/commonjs/common/lib/utils/deepMerge.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/deepMerge.js +24 -0
- package/dist/commonjs/common/lib/utils/dispatchInputEvent.d.ts +2 -0
- package/dist/commonjs/common/lib/utils/dispatchInputEvent.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/dispatchInputEvent.js +18 -0
- package/dist/commonjs/common/lib/utils/elements.js +16 -16
- package/dist/commonjs/common/lib/utils/getTranslateFromOrigin.js +2 -2
- package/dist/commonjs/common/lib/utils/index.d.ts +2 -0
- package/dist/commonjs/common/lib/utils/index.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/index.js +2 -0
- package/dist/commonjs/common/lib/utils/isWithinBreakpoint.js +1 -1
- package/dist/commonjs/common/lib/utils/makeMq.js +4 -4
- package/dist/commonjs/common/lib/utils/memoize.d.ts +6 -0
- package/dist/commonjs/common/lib/utils/memoize.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/memoize.js +20 -0
- package/dist/commonjs/common/lib/utils/mergeCallback.js +1 -5
- package/dist/commonjs/common/lib/utils/mergeProps.js +5 -16
- package/dist/commonjs/common/lib/utils/models.d.ts +6 -2
- package/dist/commonjs/common/lib/utils/models.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/models.js +53 -73
- package/dist/commonjs/common/lib/utils/slugify.d.ts +5 -0
- package/dist/commonjs/common/lib/utils/slugify.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/slugify.js +15 -0
- package/dist/commonjs/common/lib/utils/useConstant.js +2 -2
- package/dist/commonjs/common/lib/utils/useIsFullscreen.js +7 -7
- package/dist/commonjs/common/lib/utils/useModalityType.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/useModalityType.js +26 -12
- package/dist/commonjs/common/lib/utils/useMount.js +3 -3
- package/dist/commonjs/common/lib/utils/useResizeObserver.js +9 -21
- package/dist/commonjs/common/lib/utils/useUniqueId.js +8 -8
- package/dist/commonjs/common/lib/utils/useWindowSize.js +10 -10
- package/dist/commonjs/dialog/lib/Dialog.d.ts +91 -26
- package/dist/commonjs/dialog/lib/Dialog.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/Dialog.js +72 -8
- package/dist/commonjs/dialog/lib/DialogCard.d.ts +4 -4
- package/dist/commonjs/dialog/lib/DialogCard.js +6 -17
- package/dist/commonjs/dialog/lib/DialogPopper.d.ts +4 -4
- package/dist/commonjs/dialog/lib/DialogPopper.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/DialogPopper.js +12 -32
- package/dist/commonjs/dialog/lib/hooks/useDialogCard.d.ts +8 -5
- package/dist/commonjs/dialog/lib/hooks/useDialogCard.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/hooks/useDialogCard.js +4 -5
- package/dist/commonjs/dialog/lib/hooks/useDialogModel.d.ts +10 -10
- package/dist/commonjs/dialog/lib/hooks/useDialogModel.js +4 -4
- package/dist/commonjs/dialog/lib/hooks/useDialogPopper.d.ts +4 -6
- package/dist/commonjs/dialog/lib/hooks/useDialogPopper.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/hooks/useDialogPopper.js +5 -6
- package/dist/commonjs/disclosure/lib/useDisclosureModel.d.ts +22 -22
- package/dist/commonjs/disclosure/lib/useDisclosureModel.js +14 -14
- package/dist/commonjs/form-field/lib/FormField.d.ts +1 -2
- package/dist/commonjs/form-field/lib/FormField.d.ts.map +1 -1
- package/dist/commonjs/form-field/lib/FormField.js +44 -82
- package/dist/commonjs/form-field/lib/Hint.js +13 -45
- package/dist/commonjs/form-field/lib/Label.d.ts +4 -3
- package/dist/commonjs/form-field/lib/Label.d.ts.map +1 -1
- package/dist/commonjs/form-field/lib/Label.js +44 -87
- package/dist/commonjs/icon/lib/AccentIcon.d.ts +4 -3
- package/dist/commonjs/icon/lib/AccentIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/AccentIcon.js +15 -41
- package/dist/commonjs/icon/lib/AppletIcon.d.ts +1 -1
- package/dist/commonjs/icon/lib/AppletIcon.js +16 -40
- package/dist/commonjs/icon/lib/Graphic.d.ts +1 -1
- package/dist/commonjs/icon/lib/Graphic.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Graphic.js +9 -33
- package/dist/commonjs/icon/lib/Icon.d.ts +1 -1
- package/dist/commonjs/icon/lib/Icon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Icon.js +12 -31
- package/dist/commonjs/icon/lib/Svg.d.ts +1 -1
- package/dist/commonjs/icon/lib/Svg.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Svg.js +11 -34
- package/dist/commonjs/icon/lib/SystemIcon.d.ts +11 -11
- package/dist/commonjs/icon/lib/SystemIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/SystemIcon.js +36 -62
- package/dist/commonjs/icon/lib/SystemIconCircle.d.ts +3 -2
- package/dist/commonjs/icon/lib/SystemIconCircle.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/SystemIconCircle.js +18 -47
- package/dist/commonjs/icon/lib/utils.js +1 -1
- package/dist/commonjs/index.d.ts +1 -0
- package/dist/commonjs/index.d.ts.map +1 -1
- package/dist/commonjs/index.js +1 -0
- package/dist/commonjs/layout/index.d.ts +2 -5
- package/dist/commonjs/layout/index.d.ts.map +1 -1
- package/dist/commonjs/layout/index.js +3 -6
- package/dist/commonjs/layout/lib/Box.d.ts +1 -1
- package/dist/commonjs/layout/lib/Box.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/Box.js +26 -51
- package/dist/commonjs/layout/lib/Flex.d.ts +2 -2
- package/dist/commonjs/layout/lib/Flex.js +8 -31
- package/dist/commonjs/layout/lib/Grid.d.ts +2 -2
- package/dist/commonjs/layout/lib/Grid.js +11 -35
- package/dist/commonjs/layout/lib/utils/background.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/color.d.ts +7 -7
- package/dist/commonjs/layout/lib/utils/border/color.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/index.js +20 -26
- package/dist/commonjs/layout/lib/utils/border/lineStyle.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/radius.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/shorthand.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/width.js +1 -1
- package/dist/commonjs/layout/lib/utils/buildStyleFns.js +40 -43
- package/dist/commonjs/layout/lib/utils/color.js +1 -1
- package/dist/commonjs/layout/lib/utils/depth.js +1 -1
- package/dist/commonjs/layout/lib/utils/flex.js +1 -1
- package/dist/commonjs/layout/lib/utils/flexItem.js +1 -1
- package/dist/commonjs/layout/lib/utils/getValidChildren.d.ts +1 -1
- package/dist/commonjs/layout/lib/utils/getValidChildren.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/getValidChildren.js +2 -4
- package/dist/commonjs/layout/lib/utils/grid.js +1 -1
- package/dist/commonjs/layout/lib/utils/gridItem.js +1 -1
- package/dist/commonjs/layout/lib/utils/layout.d.ts +1 -1
- package/dist/commonjs/layout/lib/utils/layout.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/layout.js +1 -1
- package/dist/commonjs/layout/lib/utils/other.js +1 -1
- package/dist/commonjs/layout/lib/utils/position.d.ts +4 -0
- package/dist/commonjs/layout/lib/utils/position.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/position.js +6 -1
- package/dist/commonjs/layout/lib/utils/space.js +1 -1
- package/dist/commonjs/layout/lib/utils/text.js +1 -1
- package/dist/commonjs/loading-dots/lib/LoadingDots.js +20 -42
- package/dist/commonjs/menu/index.d.ts +1 -1
- package/dist/commonjs/menu/index.d.ts.map +1 -1
- package/dist/commonjs/menu/index.js +2 -1
- package/dist/commonjs/menu/lib/Menu.d.ts +474 -439
- package/dist/commonjs/menu/lib/Menu.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/Menu.js +53 -24
- package/dist/commonjs/menu/lib/MenuCard.d.ts +25 -19
- package/dist/commonjs/menu/lib/MenuCard.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuCard.js +14 -26
- package/dist/commonjs/menu/lib/MenuContextTarget.d.ts +142 -18
- package/dist/commonjs/menu/lib/MenuContextTarget.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuContextTarget.js +9 -32
- package/dist/commonjs/menu/lib/MenuDivider.d.ts +1 -1
- package/dist/commonjs/menu/lib/MenuDivider.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuDivider.js +9 -20
- package/dist/commonjs/menu/lib/MenuItem.d.ts +78 -21
- package/dist/commonjs/menu/lib/MenuItem.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuItem.js +86 -95
- package/dist/commonjs/menu/lib/MenuList.d.ts +31 -25
- package/dist/commonjs/menu/lib/MenuList.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuList.js +10 -32
- package/dist/commonjs/menu/lib/MenuPopper.d.ts +17 -15
- package/dist/commonjs/menu/lib/MenuPopper.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuPopper.js +6 -29
- package/dist/commonjs/menu/lib/MenuTarget.d.ts +227 -22
- package/dist/commonjs/menu/lib/MenuTarget.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuTarget.js +14 -38
- package/dist/commonjs/menu/lib/useMenuModel.d.ts +393 -219
- package/dist/commonjs/menu/lib/useMenuModel.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/useMenuModel.js +23 -27
- package/dist/commonjs/modal/lib/Modal.d.ts +203 -47
- package/dist/commonjs/modal/lib/Modal.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/Modal.js +86 -14
- package/dist/commonjs/modal/lib/ModalBody.d.ts +24 -0
- package/dist/commonjs/modal/lib/ModalBody.d.ts.map +1 -0
- package/dist/commonjs/modal/lib/ModalBody.js +42 -0
- package/dist/commonjs/modal/lib/ModalCard.d.ts +2 -2
- package/dist/commonjs/modal/lib/ModalCard.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/ModalCard.js +15 -28
- package/dist/commonjs/modal/lib/ModalHeading.d.ts +2 -2
- package/dist/commonjs/modal/lib/ModalHeading.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/ModalHeading.js +13 -24
- package/dist/commonjs/modal/lib/ModalOverflowOverlay.d.ts +4 -4
- package/dist/commonjs/modal/lib/ModalOverflowOverlay.js +9 -20
- package/dist/commonjs/modal/lib/ModalOverlay.d.ts +6 -8
- package/dist/commonjs/modal/lib/ModalOverlay.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/ModalOverlay.js +39 -51
- package/dist/commonjs/modal/lib/hooks/useCloseOnOverlayClick.d.ts +3 -5
- package/dist/commonjs/modal/lib/hooks/useCloseOnOverlayClick.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/hooks/useCloseOnOverlayClick.js +17 -17
- package/dist/commonjs/modal/lib/hooks/useModalCard.d.ts +8 -5
- package/dist/commonjs/modal/lib/hooks/useModalCard.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/hooks/useModalCard.js +3 -3
- package/dist/commonjs/modal/lib/hooks/useModalHeading.d.ts +8 -5
- package/dist/commonjs/modal/lib/hooks/useModalHeading.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/hooks/useModalHeading.js +7 -7
- package/dist/commonjs/modal/lib/hooks/useModalModel.d.ts +10 -10
- package/dist/commonjs/modal/lib/hooks/useModalModel.js +5 -5
- package/dist/commonjs/pagination/lib/Pagination/AdditionalDetails.d.ts +1 -2
- package/dist/commonjs/pagination/lib/Pagination/AdditionalDetails.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/AdditionalDetails.js +19 -36
- package/dist/commonjs/pagination/lib/Pagination/Controls.d.ts +12 -11
- package/dist/commonjs/pagination/lib/Pagination/Controls.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/Controls.js +82 -93
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.d.ts +5 -5
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.js +15 -31
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Label.d.ts +2 -3
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Label.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Label.js +11 -29
- package/dist/commonjs/pagination/lib/Pagination/GoTo/TextInput.d.ts +4 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/TextInput.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/TextInput.js +11 -29
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.d.ts +10 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.js +14 -14
- package/dist/commonjs/pagination/lib/Pagination/Nav.d.ts +1 -1
- package/dist/commonjs/pagination/lib/Pagination/Nav.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/Nav.js +4 -27
- package/dist/commonjs/pagination/lib/Pagination/PageButton.d.ts +4 -5
- package/dist/commonjs/pagination/lib/Pagination/PageButton.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/PageButton.js +23 -42
- package/dist/commonjs/pagination/lib/Pagination/PageList.d.ts +7 -6
- package/dist/commonjs/pagination/lib/Pagination/PageList.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/PageList.js +18 -35
- package/dist/commonjs/pagination/lib/Pagination/Pagination.d.ts +230 -38
- package/dist/commonjs/pagination/lib/Pagination/Pagination.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/Pagination.js +233 -104
- package/dist/commonjs/pagination/lib/Pagination/buildPageRange.js +9 -17
- package/dist/commonjs/pagination/lib/Pagination/common/List.d.ts +2 -2
- package/dist/commonjs/pagination/lib/Pagination/common/List.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/List.js +8 -32
- package/dist/commonjs/pagination/lib/Pagination/common/useLiveRegion.js +8 -26
- package/dist/commonjs/pagination/lib/Pagination/common/utils/getValidChildren.d.ts +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/utils/getValidChildren.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/utils/getValidChildren.js +2 -4
- package/dist/commonjs/pagination/lib/Pagination/common/utils/helpers.d.ts +45 -15
- package/dist/commonjs/pagination/lib/Pagination/common/utils/helpers.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/utils/helpers.js +45 -15
- package/dist/commonjs/pagination/lib/Pagination/common/utils/useRTL.js +5 -5
- package/dist/commonjs/pagination/lib/Pagination/usePaginationModel.d.ts +3 -1
- package/dist/commonjs/pagination/lib/Pagination/usePaginationModel.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/usePaginationModel.js +33 -32
- package/dist/commonjs/popup/lib/Popper.d.ts +16 -1
- package/dist/commonjs/popup/lib/Popper.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/Popper.js +49 -58
- package/dist/commonjs/popup/lib/Popup.d.ts +103 -22
- package/dist/commonjs/popup/lib/Popup.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/Popup.js +96 -16
- package/dist/commonjs/popup/lib/PopupBody.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupBody.js +6 -17
- package/dist/commonjs/popup/lib/PopupCard.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupCard.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/PopupCard.js +60 -55
- package/dist/commonjs/popup/lib/PopupCloseButton.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupCloseButton.js +6 -29
- package/dist/commonjs/popup/lib/PopupCloseIcon.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupCloseIcon.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/PopupCloseIcon.js +8 -36
- package/dist/commonjs/popup/lib/PopupHeading.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupHeading.js +6 -29
- package/dist/commonjs/popup/lib/PopupPopper.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupPopper.js +6 -29
- package/dist/commonjs/popup/lib/PopupTarget.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupTarget.js +6 -17
- package/dist/commonjs/popup/lib/getTransformFromPlacement.js +6 -6
- package/dist/commonjs/popup/lib/hooks/focus-trap-js.js +23 -27
- package/dist/commonjs/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useAlwaysCloseOnOutsideClick.js +9 -9
- package/dist/commonjs/popup/lib/hooks/useAssistiveHideSiblings.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useAssistiveHideSiblings.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useAssistiveHideSiblings.js +14 -19
- package/dist/commonjs/popup/lib/hooks/useBringToTopOnClick.d.ts +7 -9
- package/dist/commonjs/popup/lib/hooks/useBringToTopOnClick.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useBringToTopOnClick.js +15 -15
- package/dist/commonjs/popup/lib/hooks/useCloseOnEscape.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/useCloseOnEscape.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useCloseOnEscape.js +11 -11
- package/dist/commonjs/popup/lib/hooks/useCloseOnFullscreenExit.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useCloseOnFullscreenExit.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useCloseOnFullscreenExit.js +9 -9
- package/dist/commonjs/popup/lib/hooks/useCloseOnOutsideClick.d.ts +9 -11
- package/dist/commonjs/popup/lib/hooks/useCloseOnOutsideClick.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useCloseOnOutsideClick.js +18 -18
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.js +12 -12
- package/dist/commonjs/popup/lib/hooks/useDisableBodyScroll.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useDisableBodyScroll.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useDisableBodyScroll.js +10 -10
- package/dist/commonjs/popup/lib/hooks/useFocusRedirect.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useFocusRedirect.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useFocusRedirect.js +10 -10
- package/dist/commonjs/popup/lib/hooks/useFocusTrap.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useFocusTrap.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useFocusTrap.js +9 -9
- package/dist/commonjs/popup/lib/hooks/useInitialFocus.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/useInitialFocus.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useInitialFocus.js +12 -12
- package/dist/commonjs/popup/lib/hooks/usePopupCard.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/usePopupCard.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupCard.js +4 -5
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.d.ts +7 -8
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.js +6 -6
- package/dist/commonjs/popup/lib/hooks/usePopupHeading.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/usePopupHeading.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupHeading.js +4 -5
- package/dist/commonjs/popup/lib/hooks/usePopupModel.d.ts +13 -13
- package/dist/commonjs/popup/lib/hooks/usePopupModel.js +29 -34
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.d.ts +7 -8
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.js +10 -10
- package/dist/commonjs/popup/lib/hooks/usePopupStack.d.ts +27 -19
- package/dist/commonjs/popup/lib/hooks/usePopupStack.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupStack.js +41 -33
- package/dist/commonjs/popup/lib/hooks/usePopupTarget.d.ts +6 -8
- package/dist/commonjs/popup/lib/hooks/usePopupTarget.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupTarget.js +6 -7
- package/dist/commonjs/popup/lib/hooks/usePopupTargetContext.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/usePopupTargetContext.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupTargetContext.js +5 -6
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.js +33 -22
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenEnter.js +10 -10
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenExit.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenExit.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenExit.js +10 -10
- package/dist/commonjs/radio/lib/Radio.d.ts +1 -1
- package/dist/commonjs/radio/lib/Radio.d.ts.map +1 -1
- package/dist/commonjs/radio/lib/Radio.js +114 -134
- package/dist/commonjs/radio/lib/RadioGroup.d.ts +1 -2
- package/dist/commonjs/radio/lib/RadioGroup.d.ts.map +1 -1
- package/dist/commonjs/radio/lib/RadioGroup.js +33 -76
- package/dist/commonjs/segmented-control/lib/SegmentedControl.d.ts +2 -2
- package/dist/commonjs/segmented-control/lib/SegmentedControl.js +7 -30
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.d.ts +1 -1
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.d.ts.map +1 -1
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.js +40 -61
- package/dist/commonjs/select/lib/Select.d.ts +1 -1
- package/dist/commonjs/select/lib/Select.d.ts.map +1 -1
- package/dist/commonjs/select/lib/Select.js +47 -64
- package/dist/commonjs/select/lib/SelectOption.js +6 -46
- package/dist/commonjs/side-panel/lib/SidePanel.d.ts.map +1 -1
- package/dist/commonjs/side-panel/lib/SidePanel.js +61 -122
- package/dist/commonjs/skeleton/lib/parts/skeletonHeader.d.ts +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonHeader.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonHeader.js +5 -30
- package/dist/commonjs/skeleton/lib/parts/skeletonShape.d.ts +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonShape.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonShape.js +12 -40
- package/dist/commonjs/skeleton/lib/parts/skeletonText.d.ts +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonText.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonText.js +12 -38
- package/dist/commonjs/skeleton/lib/skeleton.d.ts +30 -4
- package/dist/commonjs/skeleton/lib/skeleton.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/skeleton.js +42 -41
- package/dist/commonjs/status-indicator/lib/StatusIndicator.js +28 -59
- package/dist/commonjs/switch/lib/Switch.d.ts +1 -1
- package/dist/commonjs/switch/lib/Switch.js +55 -65
- package/dist/commonjs/table/lib/Table.js +10 -50
- package/dist/commonjs/table/lib/TableRow.d.ts +2 -1
- package/dist/commonjs/table/lib/TableRow.d.ts.map +1 -1
- package/dist/commonjs/table/lib/TableRow.js +40 -67
- package/dist/commonjs/tabs/lib/Tabs.d.ts +1263 -557
- package/dist/commonjs/tabs/lib/Tabs.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/Tabs.js +105 -14
- package/dist/commonjs/tabs/lib/TabsItem.d.ts +179 -30
- package/dist/commonjs/tabs/lib/TabsItem.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsItem.js +80 -87
- package/dist/commonjs/tabs/lib/TabsList.d.ts +157 -29
- package/dist/commonjs/tabs/lib/TabsList.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsList.js +54 -49
- package/dist/commonjs/tabs/lib/TabsMenuPopper.d.ts +17 -15
- package/dist/commonjs/tabs/lib/TabsMenuPopper.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsMenuPopper.js +6 -29
- package/dist/commonjs/tabs/lib/TabsOverflowButton.d.ts +119 -27
- package/dist/commonjs/tabs/lib/TabsOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsOverflowButton.js +12 -35
- package/dist/commonjs/tabs/lib/TabsPanel.d.ts +46 -32
- package/dist/commonjs/tabs/lib/TabsPanel.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsPanel.js +17 -42
- package/dist/commonjs/tabs/lib/TabsPanels.d.ts +24 -16
- package/dist/commonjs/tabs/lib/TabsPanels.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsPanels.js +5 -6
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts +1170 -618
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/useTabsModel.js +63 -44
- package/dist/commonjs/testing/lib/ComponentStatesTable.js +11 -20
- package/dist/commonjs/testing/lib/StaticStates.js +10 -34
- package/dist/commonjs/testing/lib/permutateProps.js +13 -26
- package/dist/commonjs/text/lib/LabelText.d.ts +19 -2
- package/dist/commonjs/text/lib/LabelText.d.ts.map +1 -1
- package/dist/commonjs/text/lib/LabelText.js +23 -25
- package/dist/commonjs/text/lib/Text.d.ts +43 -3
- package/dist/commonjs/text/lib/Text.d.ts.map +1 -1
- package/dist/commonjs/text/lib/Text.js +45 -40
- package/dist/commonjs/text/lib/TypeLevelComponents.d.ts +105 -6
- package/dist/commonjs/text/lib/TypeLevelComponents.d.ts.map +1 -1
- package/dist/commonjs/text/lib/TypeLevelComponents.js +111 -41
- package/dist/commonjs/text-area/lib/TextArea.d.ts +1 -1
- package/dist/commonjs/text-area/lib/TextArea.js +42 -55
- package/dist/commonjs/text-input/index.d.ts +1 -0
- package/dist/commonjs/text-input/index.d.ts.map +1 -1
- package/dist/commonjs/text-input/index.js +4 -0
- package/dist/commonjs/text-input/lib/InputGroup.d.ts +135 -0
- package/dist/commonjs/text-input/lib/InputGroup.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/InputGroup.js +200 -0
- package/dist/commonjs/text-input/lib/InputIconContainer.js +11 -17
- package/dist/commonjs/text-input/lib/TextInput.d.ts +1 -1
- package/dist/commonjs/text-input/lib/TextInput.js +38 -51
- package/dist/commonjs/toast/index.d.ts +1 -0
- package/dist/commonjs/toast/index.d.ts.map +1 -1
- package/dist/commonjs/toast/index.js +1 -0
- package/dist/commonjs/toast/lib/Toast.d.ts +56 -22
- package/dist/commonjs/toast/lib/Toast.d.ts.map +1 -1
- package/dist/commonjs/toast/lib/Toast.js +94 -78
- package/dist/commonjs/toast/lib/ToastBody.d.ts +6 -0
- package/dist/commonjs/toast/lib/ToastBody.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastBody.js +15 -0
- package/dist/commonjs/toast/lib/ToastCloseIcon.d.ts +6 -0
- package/dist/commonjs/toast/lib/ToastCloseIcon.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastCloseIcon.js +15 -0
- package/dist/commonjs/toast/lib/ToastIcon.d.ts +5 -0
- package/dist/commonjs/toast/lib/ToastIcon.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastIcon.js +15 -0
- package/dist/commonjs/toast/lib/ToastLink.d.ts +5 -0
- package/dist/commonjs/toast/lib/ToastLink.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastLink.js +15 -0
- package/dist/commonjs/toast/lib/ToastMessage.d.ts +12 -0
- package/dist/commonjs/toast/lib/ToastMessage.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastMessage.js +15 -0
- package/dist/commonjs/toast/lib/hooks/useToastModel.d.ts +75 -0
- package/dist/commonjs/toast/lib/hooks/useToastModel.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/hooks/useToastModel.js +29 -0
- package/dist/commonjs/tokens/index.d.ts +2 -2
- package/dist/commonjs/tokens/index.d.ts.map +1 -1
- package/dist/commonjs/tokens/index.js +6 -6
- package/dist/commonjs/tokens/lib/depth.d.ts +6 -7
- package/dist/commonjs/tokens/lib/depth.d.ts.map +1 -1
- package/dist/commonjs/tokens/lib/depth.js +6 -6
- package/dist/commonjs/tokens/lib/type/fontFamilies.d.ts.map +1 -1
- package/dist/commonjs/tokens/lib/type/fontFamilies.js +5 -6
- package/dist/commonjs/tokens/lib/type/index.d.ts +7 -7
- package/dist/commonjs/tokens/lib/type/index.js +9 -9
- package/dist/commonjs/tokens/lib/type/levels.js +4 -4
- package/dist/commonjs/tokens/lib/type/variants.js +1 -1
- package/dist/commonjs/tooltip/lib/OverflowTooltip.js +34 -54
- package/dist/commonjs/tooltip/lib/Tooltip.d.ts +1 -1
- package/dist/commonjs/tooltip/lib/Tooltip.d.ts.map +1 -1
- package/dist/commonjs/tooltip/lib/Tooltip.js +32 -51
- package/dist/commonjs/tooltip/lib/TooltipContainer.d.ts +1 -1
- package/dist/commonjs/tooltip/lib/TooltipContainer.js +37 -35
- package/dist/commonjs/tooltip/lib/useTooltip.d.ts.map +1 -1
- package/dist/commonjs/tooltip/lib/useTooltip.js +44 -41
- package/dist/es6/action-bar/lib/ActionBar.d.ts +805 -349
- package/dist/es6/action-bar/lib/ActionBar.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBar.js +47 -4
- package/dist/es6/action-bar/lib/ActionBarItem.d.ts +73 -26
- package/dist/es6/action-bar/lib/ActionBarItem.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarItem.js +4 -15
- package/dist/es6/action-bar/lib/ActionBarList.d.ts +40 -30
- package/dist/es6/action-bar/lib/ActionBarList.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarList.js +11 -35
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts +109 -27
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.js +7 -18
- package/dist/es6/action-bar/lib/useActionBarModel.d.ts +381 -161
- package/dist/es6/action-bar/lib/useActionBarModel.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/useActionBarModel.js +52 -38
- package/dist/es6/avatar/lib/Avatar.js +46 -68
- package/dist/es6/badge/lib/CountBadge.js +20 -40
- package/dist/es6/banner/lib/Banner.d.ts +60 -4
- package/dist/es6/banner/lib/Banner.d.ts.map +1 -1
- package/dist/es6/banner/lib/Banner.js +81 -41
- package/dist/es6/banner/lib/BannerActionText.d.ts +1 -1
- package/dist/es6/banner/lib/BannerActionText.js +4 -27
- package/dist/es6/banner/lib/BannerIcon.d.ts +1 -2
- package/dist/es6/banner/lib/BannerIcon.d.ts.map +1 -1
- package/dist/es6/banner/lib/BannerIcon.js +5 -27
- package/dist/es6/banner/lib/BannerLabel.d.ts +1 -1
- package/dist/es6/banner/lib/BannerLabel.js +3 -26
- package/dist/es6/banner/lib/hooks/index.d.ts +2 -0
- package/dist/es6/banner/lib/hooks/index.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/index.js +2 -0
- package/dist/es6/banner/lib/hooks/useBanner.d.ts +3 -5
- package/dist/es6/banner/lib/hooks/useBanner.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useBanner.js +3 -4
- package/dist/es6/banner/lib/hooks/useBannerActionText.d.ts +3 -5
- package/dist/es6/banner/lib/hooks/useBannerActionText.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useBannerActionText.js +2 -3
- package/dist/es6/banner/lib/hooks/useBannerIcon.d.ts +3 -5
- package/dist/es6/banner/lib/hooks/useBannerIcon.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useBannerIcon.js +2 -3
- package/dist/es6/banner/lib/hooks/useBannerLabel.d.ts +3 -5
- package/dist/es6/banner/lib/hooks/useBannerLabel.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useBannerLabel.js +2 -3
- package/dist/es6/banner/lib/hooks/useBannerModel.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useBannerModel.js +8 -16
- package/dist/es6/banner/lib/hooks/useThemedPalette.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useThemedPalette.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useThemedPalette.js +7 -7
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts +865 -466
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.js +80 -82
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +149 -27
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.js +10 -40
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts +77 -27
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.js +7 -32
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.d.ts +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.js +11 -32
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.d.ts +24 -16
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.js +5 -28
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts +414 -221
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.js +6 -18
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +109 -27
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.js +6 -29
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +369 -161
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.js +34 -33
- package/dist/es6/breadcrumbs/lib/hooks/utils/index.js +4 -4
- package/dist/es6/button/lib/BaseButton.d.ts +8 -7
- package/dist/es6/button/lib/BaseButton.d.ts.map +1 -1
- package/dist/es6/button/lib/BaseButton.js +123 -73
- package/dist/es6/button/lib/DeleteButton.d.ts +6 -2
- package/dist/es6/button/lib/DeleteButton.d.ts.map +1 -1
- package/dist/es6/button/lib/DeleteButton.js +30 -56
- package/dist/es6/button/lib/ExternalHyperlink.d.ts +5 -1
- package/dist/es6/button/lib/ExternalHyperlink.d.ts.map +1 -1
- package/dist/es6/button/lib/ExternalHyperlink.js +25 -35
- package/dist/es6/button/lib/Hyperlink.d.ts +5 -1
- package/dist/es6/button/lib/Hyperlink.d.ts.map +1 -1
- package/dist/es6/button/lib/Hyperlink.js +11 -32
- package/dist/es6/button/lib/PrimaryButton.d.ts +10 -6
- package/dist/es6/button/lib/PrimaryButton.d.ts.map +1 -1
- package/dist/es6/button/lib/PrimaryButton.js +15 -29
- package/dist/es6/button/lib/SecondaryButton.d.ts +10 -1
- package/dist/es6/button/lib/SecondaryButton.d.ts.map +1 -1
- package/dist/es6/button/lib/SecondaryButton.js +15 -29
- package/dist/es6/button/lib/TertiaryButton.d.ts +12 -9
- package/dist/es6/button/lib/TertiaryButton.d.ts.map +1 -1
- package/dist/es6/button/lib/TertiaryButton.js +30 -46
- package/dist/es6/button/lib/ToolbarDropdownButton.d.ts +1 -1
- package/dist/es6/button/lib/ToolbarDropdownButton.d.ts.map +1 -1
- package/dist/es6/button/lib/ToolbarDropdownButton.js +10 -36
- package/dist/es6/button/lib/ToolbarIconButton.d.ts +1 -1
- package/dist/es6/button/lib/ToolbarIconButton.d.ts.map +1 -1
- package/dist/es6/button/lib/ToolbarIconButton.js +13 -40
- package/dist/es6/button/lib/deprecated_Button.d.ts +1 -1
- package/dist/es6/button/lib/deprecated_Button.d.ts.map +1 -1
- package/dist/es6/button/lib/deprecated_Button.js +49 -52
- package/dist/es6/button/lib/parts/ButtonLabel.d.ts +1 -1
- package/dist/es6/button/lib/parts/ButtonLabel.d.ts.map +1 -1
- package/dist/es6/button/lib/parts/ButtonLabel.js +4 -27
- package/dist/es6/button/lib/parts/ButtonLabelIcon.d.ts +3 -9
- package/dist/es6/button/lib/parts/ButtonLabelIcon.d.ts.map +1 -1
- package/dist/es6/button/lib/parts/ButtonLabelIcon.js +5 -28
- package/dist/es6/card/lib/Card.d.ts +39 -3
- package/dist/es6/card/lib/Card.d.ts.map +1 -1
- package/dist/es6/card/lib/Card.js +39 -26
- package/dist/es6/card/lib/CardBody.d.ts +1 -1
- package/dist/es6/card/lib/CardBody.d.ts.map +1 -1
- package/dist/es6/card/lib/CardBody.js +3 -26
- package/dist/es6/card/lib/CardHeading.d.ts +1 -1
- package/dist/es6/card/lib/CardHeading.d.ts.map +1 -1
- package/dist/es6/card/lib/CardHeading.js +3 -26
- package/dist/es6/checkbox/lib/Checkbox.d.ts +2 -2
- package/dist/es6/checkbox/lib/Checkbox.d.ts.map +1 -1
- package/dist/es6/checkbox/lib/Checkbox.js +118 -127
- package/dist/es6/collection/index.d.ts +5 -1
- package/dist/es6/collection/index.d.ts.map +1 -1
- package/dist/es6/collection/index.js +4 -0
- package/dist/es6/collection/lib/ListBox.d.ts +353 -125
- package/dist/es6/collection/lib/ListBox.d.ts.map +1 -1
- package/dist/es6/collection/lib/ListBox.js +29 -37
- package/dist/es6/collection/lib/keyUtils.d.ts +26 -0
- package/dist/es6/collection/lib/keyUtils.d.ts.map +1 -0
- package/dist/es6/collection/lib/keyUtils.js +76 -0
- package/dist/es6/collection/lib/react-virtual.js +1 -1
- package/dist/es6/collection/lib/useBaseListModel.d.ts +30 -20
- package/dist/es6/collection/lib/useBaseListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useBaseListModel.js +76 -69
- package/dist/es6/collection/lib/useCursorListModel.d.ts +563 -93
- package/dist/es6/collection/lib/useCursorListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useCursorListModel.js +166 -168
- package/dist/es6/collection/lib/useGridModel.d.ts +273 -119
- package/dist/es6/collection/lib/useGridModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useGridModel.js +16 -30
- package/dist/es6/collection/lib/useListActiveDescendant.d.ts +68 -0
- package/dist/es6/collection/lib/useListActiveDescendant.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListActiveDescendant.js +22 -0
- package/dist/es6/collection/lib/useListItemAllowChildStrings.d.ts +88 -0
- package/dist/es6/collection/lib/useListItemAllowChildStrings.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListItemAllowChildStrings.js +34 -0
- package/dist/es6/collection/lib/useListItemRegister.d.ts +25 -13
- package/dist/es6/collection/lib/useListItemRegister.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRegister.js +31 -19
- package/dist/es6/collection/lib/useListItemRovingFocus.d.ts +23 -38
- package/dist/es6/collection/lib/useListItemRovingFocus.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRovingFocus.js +62 -114
- package/dist/es6/collection/lib/useListItemSelect.d.ts +25 -11
- package/dist/es6/collection/lib/useListItemSelect.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemSelect.js +19 -10
- package/dist/es6/collection/lib/useListKeyboardHandler.d.ts +66 -0
- package/dist/es6/collection/lib/useListKeyboardHandler.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListKeyboardHandler.js +24 -0
- package/dist/es6/collection/lib/useListLoader.d.ts +106 -0
- package/dist/es6/collection/lib/useListLoader.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListLoader.js +230 -0
- package/dist/es6/collection/lib/useListModel.d.ts +289 -122
- package/dist/es6/collection/lib/useListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListModel.js +21 -4
- package/dist/es6/collection/lib/useListRenderItem.d.ts +14 -0
- package/dist/es6/collection/lib/useListRenderItem.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListRenderItem.js +22 -8
- package/dist/es6/collection/lib/useListResetCursorOnBlur.d.ts +25 -12
- package/dist/es6/collection/lib/useListResetCursorOnBlur.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListResetCursorOnBlur.js +18 -8
- package/dist/es6/collection/lib/useOverflowListItemMeasure.d.ts +24 -11
- package/dist/es6/collection/lib/useOverflowListItemMeasure.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListItemMeasure.js +19 -9
- package/dist/es6/collection/lib/useOverflowListMeasure.d.ts +18 -12
- package/dist/es6/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListMeasure.js +9 -5
- package/dist/es6/collection/lib/useOverflowListModel.d.ts +341 -143
- package/dist/es6/collection/lib/useOverflowListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListModel.js +59 -54
- package/dist/es6/collection/lib/useOverflowListTarget.d.ts +22 -13
- package/dist/es6/collection/lib/useOverflowListTarget.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListTarget.js +12 -8
- package/dist/es6/collection/lib/useSelectionListModel.d.ts +282 -120
- package/dist/es6/collection/lib/useSelectionListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useSelectionListModel.js +32 -37
- package/dist/es6/color-picker/lib/ColorInput.d.ts +1 -1
- package/dist/es6/color-picker/lib/ColorInput.d.ts.map +1 -1
- package/dist/es6/color-picker/lib/ColorInput.js +41 -71
- package/dist/es6/color-picker/lib/ColorPreview.d.ts +1 -1
- package/dist/es6/color-picker/lib/ColorPreview.d.ts.map +1 -1
- package/dist/es6/color-picker/lib/ColorPreview.js +3 -28
- package/dist/es6/color-picker/lib/parts/ColorSwatch.js +8 -36
- package/dist/es6/combobox/index.d.ts +9 -0
- package/dist/es6/combobox/index.d.ts.map +1 -0
- package/dist/es6/combobox/index.js +8 -0
- package/dist/es6/combobox/lib/Combobox.d.ts +2075 -0
- package/dist/es6/combobox/lib/Combobox.d.ts.map +1 -0
- package/dist/es6/combobox/lib/Combobox.js +23 -0
- package/dist/es6/combobox/lib/ComboboxCard.d.ts +166 -0
- package/dist/es6/combobox/lib/ComboboxCard.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxCard.js +19 -0
- package/dist/es6/combobox/lib/ComboboxInput.d.ts +186 -0
- package/dist/es6/combobox/lib/ComboboxInput.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxInput.js +78 -0
- package/dist/es6/combobox/lib/ComboboxMenu.d.ts +428 -0
- package/dist/es6/combobox/lib/ComboboxMenu.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxMenu.js +57 -0
- package/dist/es6/combobox/lib/ComboboxMenuItem.d.ts +178 -0
- package/dist/es6/combobox/lib/ComboboxMenuItem.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxMenuItem.js +44 -0
- package/dist/es6/combobox/lib/ComboboxMenuList.d.ts +164 -0
- package/dist/es6/combobox/lib/ComboboxMenuList.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxMenuList.js +25 -0
- package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts +84 -0
- package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts.map +1 -0
- package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.js +17 -0
- package/dist/es6/combobox/lib/useComboboxLoader.d.ts +28 -0
- package/dist/es6/combobox/lib/useComboboxLoader.d.ts.map +1 -0
- package/dist/es6/combobox/lib/useComboboxLoader.js +58 -0
- package/dist/es6/combobox/lib/useComboboxModel.d.ts +1998 -0
- package/dist/es6/combobox/lib/useComboboxModel.d.ts.map +1 -0
- package/dist/es6/combobox/lib/useComboboxModel.js +76 -0
- package/dist/es6/common/lib/CanvasProvider.js +11 -52
- package/dist/es6/common/lib/EllipsisText.d.ts +1 -2
- package/dist/es6/common/lib/EllipsisText.d.ts.map +1 -1
- package/dist/es6/common/lib/EllipsisText.js +10 -3
- package/dist/es6/common/lib/InputProvider.d.ts +1 -1
- package/dist/es6/common/lib/InputProvider.js +72 -91
- package/dist/es6/common/lib/parts/_brand-assets.js +6 -6
- package/dist/es6/common/lib/responsive/useResponsiveContainerStyles.js +20 -49
- package/dist/es6/common/lib/styles/accessibleHide.js +1 -1
- package/dist/es6/common/lib/styles/errorRing.js +8 -7
- package/dist/es6/common/lib/styles/focusRing.d.ts +0 -3
- package/dist/es6/common/lib/styles/focusRing.d.ts.map +1 -1
- package/dist/es6/common/lib/styles/focusRing.js +16 -29
- package/dist/es6/common/lib/styles/hideMouseFocus.js +13 -9
- package/dist/es6/common/lib/theming/breakpoints.js +12 -12
- package/dist/es6/common/lib/theming/createCanvasTheme.d.ts +7 -6
- package/dist/es6/common/lib/theming/createCanvasTheme.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/createCanvasTheme.js +39 -63
- package/dist/es6/common/lib/theming/getObjectProxy.d.ts +15 -0
- package/dist/es6/common/lib/theming/getObjectProxy.d.ts.map +1 -0
- package/dist/es6/common/lib/theming/getObjectProxy.js +27 -0
- package/dist/es6/common/lib/theming/index.d.ts +2 -0
- package/dist/es6/common/lib/theming/index.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/index.js +2 -0
- package/dist/es6/common/lib/theming/styled.js +7 -11
- package/dist/es6/common/lib/theming/theme.js +5 -5
- package/dist/es6/common/lib/theming/useIsRTL.js +2 -2
- package/dist/es6/common/lib/theming/useTheme.d.ts +49 -5
- package/dist/es6/common/lib/theming/useTheme.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/useTheme.js +78 -34
- package/dist/es6/common/lib/theming/useThemedRing.d.ts +43 -0
- package/dist/es6/common/lib/theming/useThemedRing.d.ts.map +1 -0
- package/dist/es6/common/lib/theming/useThemedRing.js +92 -0
- package/dist/es6/common/lib/utils/changeFocus.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/changeFocus.js +11 -5
- package/dist/es6/common/lib/utils/colorUtils.d.ts +7 -0
- package/dist/es6/common/lib/utils/colorUtils.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/colorUtils.js +24 -12
- package/dist/es6/common/lib/utils/components.d.ts +140 -86
- package/dist/es6/common/lib/utils/components.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/components.js +150 -111
- package/dist/es6/common/lib/utils/deepMerge.d.ts +2 -0
- package/dist/es6/common/lib/utils/deepMerge.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/deepMerge.js +20 -0
- package/dist/es6/common/lib/utils/dispatchInputEvent.d.ts +2 -0
- package/dist/es6/common/lib/utils/dispatchInputEvent.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/dispatchInputEvent.js +14 -0
- package/dist/es6/common/lib/utils/elements.js +16 -16
- package/dist/es6/common/lib/utils/getTranslateFromOrigin.js +2 -2
- package/dist/es6/common/lib/utils/index.d.ts +2 -0
- package/dist/es6/common/lib/utils/index.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/index.js +2 -0
- package/dist/es6/common/lib/utils/isWithinBreakpoint.js +1 -1
- package/dist/es6/common/lib/utils/makeMq.js +4 -4
- package/dist/es6/common/lib/utils/memoize.d.ts +6 -0
- package/dist/es6/common/lib/utils/memoize.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/memoize.js +16 -0
- package/dist/es6/common/lib/utils/mergeCallback.js +1 -5
- package/dist/es6/common/lib/utils/mergeProps.js +4 -15
- package/dist/es6/common/lib/utils/models.d.ts +6 -2
- package/dist/es6/common/lib/utils/models.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/models.js +52 -72
- package/dist/es6/common/lib/utils/slugify.d.ts +5 -0
- package/dist/es6/common/lib/utils/slugify.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/slugify.js +11 -0
- package/dist/es6/common/lib/utils/useConstant.js +1 -1
- package/dist/es6/common/lib/utils/useIsFullscreen.js +5 -5
- package/dist/es6/common/lib/utils/useModalityType.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/useModalityType.js +25 -11
- package/dist/es6/common/lib/utils/useMount.js +2 -2
- package/dist/es6/common/lib/utils/useResizeObserver.js +6 -18
- package/dist/es6/common/lib/utils/useUniqueId.js +8 -8
- package/dist/es6/common/lib/utils/useWindowSize.js +8 -8
- package/dist/es6/dialog/lib/Dialog.d.ts +91 -26
- package/dist/es6/dialog/lib/Dialog.d.ts.map +1 -1
- package/dist/es6/dialog/lib/Dialog.js +67 -3
- package/dist/es6/dialog/lib/DialogCard.d.ts +4 -4
- package/dist/es6/dialog/lib/DialogCard.js +3 -14
- package/dist/es6/dialog/lib/DialogPopper.d.ts +4 -4
- package/dist/es6/dialog/lib/DialogPopper.d.ts.map +1 -1
- package/dist/es6/dialog/lib/DialogPopper.js +9 -29
- package/dist/es6/dialog/lib/hooks/useDialogCard.d.ts +8 -5
- package/dist/es6/dialog/lib/hooks/useDialogCard.d.ts.map +1 -1
- package/dist/es6/dialog/lib/hooks/useDialogCard.js +2 -3
- package/dist/es6/dialog/lib/hooks/useDialogModel.d.ts +10 -10
- package/dist/es6/dialog/lib/hooks/useDialogModel.js +3 -3
- package/dist/es6/dialog/lib/hooks/useDialogPopper.d.ts +4 -6
- package/dist/es6/dialog/lib/hooks/useDialogPopper.d.ts.map +1 -1
- package/dist/es6/dialog/lib/hooks/useDialogPopper.js +3 -4
- package/dist/es6/disclosure/lib/useDisclosureModel.d.ts +22 -22
- package/dist/es6/disclosure/lib/useDisclosureModel.js +13 -13
- package/dist/es6/form-field/lib/FormField.d.ts +1 -2
- package/dist/es6/form-field/lib/FormField.d.ts.map +1 -1
- package/dist/es6/form-field/lib/FormField.js +38 -77
- package/dist/es6/form-field/lib/Hint.js +9 -41
- package/dist/es6/form-field/lib/Label.d.ts +4 -3
- package/dist/es6/form-field/lib/Label.d.ts.map +1 -1
- package/dist/es6/form-field/lib/Label.js +40 -83
- package/dist/es6/icon/lib/AccentIcon.d.ts +4 -3
- package/dist/es6/icon/lib/AccentIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/AccentIcon.js +12 -38
- package/dist/es6/icon/lib/AppletIcon.d.ts +1 -1
- package/dist/es6/icon/lib/AppletIcon.js +12 -36
- package/dist/es6/icon/lib/Graphic.d.ts +1 -1
- package/dist/es6/icon/lib/Graphic.d.ts.map +1 -1
- package/dist/es6/icon/lib/Graphic.js +6 -30
- package/dist/es6/icon/lib/Icon.d.ts +1 -1
- package/dist/es6/icon/lib/Icon.d.ts.map +1 -1
- package/dist/es6/icon/lib/Icon.js +10 -29
- package/dist/es6/icon/lib/Svg.d.ts +1 -1
- package/dist/es6/icon/lib/Svg.d.ts.map +1 -1
- package/dist/es6/icon/lib/Svg.js +8 -31
- package/dist/es6/icon/lib/SystemIcon.d.ts +11 -11
- package/dist/es6/icon/lib/SystemIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/SystemIcon.js +33 -59
- package/dist/es6/icon/lib/SystemIconCircle.d.ts +3 -2
- package/dist/es6/icon/lib/SystemIconCircle.d.ts.map +1 -1
- package/dist/es6/icon/lib/SystemIconCircle.js +14 -43
- package/dist/es6/icon/lib/utils.js +1 -1
- package/dist/es6/index.d.ts +1 -0
- package/dist/es6/index.d.ts.map +1 -1
- package/dist/es6/index.js +1 -0
- package/dist/es6/layout/index.d.ts +2 -5
- package/dist/es6/layout/index.d.ts.map +1 -1
- package/dist/es6/layout/index.js +2 -4
- package/dist/es6/layout/lib/Box.d.ts +1 -1
- package/dist/es6/layout/lib/Box.d.ts.map +1 -1
- package/dist/es6/layout/lib/Box.js +12 -37
- package/dist/es6/layout/lib/Flex.d.ts +2 -2
- package/dist/es6/layout/lib/Flex.js +4 -27
- package/dist/es6/layout/lib/Grid.d.ts +2 -2
- package/dist/es6/layout/lib/Grid.js +7 -31
- package/dist/es6/layout/lib/utils/background.js +3 -3
- package/dist/es6/layout/lib/utils/border/color.d.ts +7 -7
- package/dist/es6/layout/lib/utils/border/color.js +2 -2
- package/dist/es6/layout/lib/utils/border/index.js +14 -20
- package/dist/es6/layout/lib/utils/border/lineStyle.js +2 -2
- package/dist/es6/layout/lib/utils/border/radius.js +2 -2
- package/dist/es6/layout/lib/utils/border/shorthand.js +2 -2
- package/dist/es6/layout/lib/utils/border/width.js +2 -2
- package/dist/es6/layout/lib/utils/buildStyleFns.js +39 -42
- package/dist/es6/layout/lib/utils/color.js +3 -3
- package/dist/es6/layout/lib/utils/depth.js +3 -3
- package/dist/es6/layout/lib/utils/flex.js +3 -3
- package/dist/es6/layout/lib/utils/flexItem.js +3 -3
- package/dist/es6/layout/lib/utils/getValidChildren.d.ts +1 -1
- package/dist/es6/layout/lib/utils/getValidChildren.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/getValidChildren.js +1 -3
- package/dist/es6/layout/lib/utils/grid.js +3 -3
- package/dist/es6/layout/lib/utils/gridItem.js +3 -3
- package/dist/es6/layout/lib/utils/layout.d.ts +1 -1
- package/dist/es6/layout/lib/utils/layout.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/layout.js +3 -3
- package/dist/es6/layout/lib/utils/other.js +3 -3
- package/dist/es6/layout/lib/utils/position.d.ts +4 -0
- package/dist/es6/layout/lib/utils/position.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/position.js +8 -3
- package/dist/es6/layout/lib/utils/space.js +3 -3
- package/dist/es6/layout/lib/utils/text.js +3 -3
- package/dist/es6/loading-dots/lib/LoadingDots.js +16 -38
- package/dist/es6/menu/index.d.ts +1 -1
- package/dist/es6/menu/index.d.ts.map +1 -1
- package/dist/es6/menu/index.js +1 -1
- package/dist/es6/menu/lib/Menu.d.ts +474 -439
- package/dist/es6/menu/lib/Menu.d.ts.map +1 -1
- package/dist/es6/menu/lib/Menu.js +45 -16
- package/dist/es6/menu/lib/MenuCard.d.ts +25 -19
- package/dist/es6/menu/lib/MenuCard.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuCard.js +9 -21
- package/dist/es6/menu/lib/MenuContextTarget.d.ts +142 -18
- package/dist/es6/menu/lib/MenuContextTarget.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuContextTarget.js +7 -30
- package/dist/es6/menu/lib/MenuDivider.d.ts +1 -1
- package/dist/es6/menu/lib/MenuDivider.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuDivider.js +6 -17
- package/dist/es6/menu/lib/MenuItem.d.ts +78 -21
- package/dist/es6/menu/lib/MenuItem.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuItem.js +78 -87
- package/dist/es6/menu/lib/MenuList.d.ts +31 -25
- package/dist/es6/menu/lib/MenuList.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuList.js +7 -29
- package/dist/es6/menu/lib/MenuPopper.d.ts +17 -15
- package/dist/es6/menu/lib/MenuPopper.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuPopper.js +4 -27
- package/dist/es6/menu/lib/MenuTarget.d.ts +227 -22
- package/dist/es6/menu/lib/MenuTarget.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuTarget.js +10 -34
- package/dist/es6/menu/lib/useMenuModel.d.ts +393 -219
- package/dist/es6/menu/lib/useMenuModel.d.ts.map +1 -1
- package/dist/es6/menu/lib/useMenuModel.js +22 -26
- package/dist/es6/modal/lib/Modal.d.ts +203 -47
- package/dist/es6/modal/lib/Modal.d.ts.map +1 -1
- package/dist/es6/modal/lib/Modal.js +79 -7
- package/dist/es6/modal/lib/ModalBody.d.ts +24 -0
- package/dist/es6/modal/lib/ModalBody.d.ts.map +1 -0
- package/dist/es6/modal/lib/ModalBody.js +20 -0
- package/dist/es6/modal/lib/ModalCard.d.ts +2 -2
- package/dist/es6/modal/lib/ModalCard.d.ts.map +1 -1
- package/dist/es6/modal/lib/ModalCard.js +12 -25
- package/dist/es6/modal/lib/ModalHeading.d.ts +2 -2
- package/dist/es6/modal/lib/ModalHeading.d.ts.map +1 -1
- package/dist/es6/modal/lib/ModalHeading.js +10 -21
- package/dist/es6/modal/lib/ModalOverflowOverlay.d.ts +4 -4
- package/dist/es6/modal/lib/ModalOverflowOverlay.js +5 -16
- package/dist/es6/modal/lib/ModalOverlay.d.ts +6 -8
- package/dist/es6/modal/lib/ModalOverlay.d.ts.map +1 -1
- package/dist/es6/modal/lib/ModalOverlay.js +33 -45
- package/dist/es6/modal/lib/hooks/useCloseOnOverlayClick.d.ts +3 -5
- package/dist/es6/modal/lib/hooks/useCloseOnOverlayClick.d.ts.map +1 -1
- package/dist/es6/modal/lib/hooks/useCloseOnOverlayClick.js +13 -13
- package/dist/es6/modal/lib/hooks/useModalCard.d.ts +8 -5
- package/dist/es6/modal/lib/hooks/useModalCard.d.ts.map +1 -1
- package/dist/es6/modal/lib/hooks/useModalCard.js +1 -1
- package/dist/es6/modal/lib/hooks/useModalHeading.d.ts +8 -5
- package/dist/es6/modal/lib/hooks/useModalHeading.d.ts.map +1 -1
- package/dist/es6/modal/lib/hooks/useModalHeading.js +5 -5
- package/dist/es6/modal/lib/hooks/useModalModel.d.ts +10 -10
- package/dist/es6/modal/lib/hooks/useModalModel.js +3 -3
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.d.ts +1 -2
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.js +15 -31
- package/dist/es6/pagination/lib/Pagination/Controls.d.ts +12 -11
- package/dist/es6/pagination/lib/Pagination/Controls.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/Controls.js +77 -83
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.d.ts +5 -5
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.js +14 -29
- package/dist/es6/pagination/lib/Pagination/GoTo/Label.d.ts +2 -3
- package/dist/es6/pagination/lib/Pagination/GoTo/Label.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/Label.js +9 -26
- package/dist/es6/pagination/lib/Pagination/GoTo/TextInput.d.ts +4 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/TextInput.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/TextInput.js +9 -26
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.d.ts +10 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.js +12 -12
- package/dist/es6/pagination/lib/Pagination/Nav.d.ts +1 -1
- package/dist/es6/pagination/lib/Pagination/Nav.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/Nav.js +2 -25
- package/dist/es6/pagination/lib/Pagination/PageButton.d.ts +4 -5
- package/dist/es6/pagination/lib/Pagination/PageButton.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/PageButton.js +20 -38
- package/dist/es6/pagination/lib/Pagination/PageList.d.ts +7 -6
- package/dist/es6/pagination/lib/Pagination/PageList.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/PageList.js +16 -31
- package/dist/es6/pagination/lib/Pagination/Pagination.d.ts +230 -38
- package/dist/es6/pagination/lib/Pagination/Pagination.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/Pagination.js +229 -99
- package/dist/es6/pagination/lib/Pagination/buildPageRange.js +9 -17
- package/dist/es6/pagination/lib/Pagination/common/List.d.ts +2 -2
- package/dist/es6/pagination/lib/Pagination/common/List.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/common/List.js +7 -31
- package/dist/es6/pagination/lib/Pagination/common/useLiveRegion.js +8 -26
- package/dist/es6/pagination/lib/Pagination/common/utils/getValidChildren.d.ts +1 -1
- package/dist/es6/pagination/lib/Pagination/common/utils/getValidChildren.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/common/utils/getValidChildren.js +1 -3
- package/dist/es6/pagination/lib/Pagination/common/utils/helpers.d.ts +45 -15
- package/dist/es6/pagination/lib/Pagination/common/utils/helpers.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/common/utils/helpers.js +45 -15
- package/dist/es6/pagination/lib/Pagination/common/utils/useRTL.js +4 -4
- package/dist/es6/pagination/lib/Pagination/usePaginationModel.d.ts +3 -1
- package/dist/es6/pagination/lib/Pagination/usePaginationModel.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/usePaginationModel.js +29 -28
- package/dist/es6/popup/lib/Popper.d.ts +16 -1
- package/dist/es6/popup/lib/Popper.d.ts.map +1 -1
- package/dist/es6/popup/lib/Popper.js +44 -53
- package/dist/es6/popup/lib/Popup.d.ts +103 -22
- package/dist/es6/popup/lib/Popup.d.ts.map +1 -1
- package/dist/es6/popup/lib/Popup.js +87 -7
- package/dist/es6/popup/lib/PopupBody.d.ts +2 -2
- package/dist/es6/popup/lib/PopupBody.js +3 -14
- package/dist/es6/popup/lib/PopupCard.d.ts +2 -2
- package/dist/es6/popup/lib/PopupCard.d.ts.map +1 -1
- package/dist/es6/popup/lib/PopupCard.js +53 -48
- package/dist/es6/popup/lib/PopupCloseButton.d.ts +2 -2
- package/dist/es6/popup/lib/PopupCloseButton.js +3 -26
- package/dist/es6/popup/lib/PopupCloseIcon.d.ts +2 -2
- package/dist/es6/popup/lib/PopupCloseIcon.d.ts.map +1 -1
- package/dist/es6/popup/lib/PopupCloseIcon.js +5 -33
- package/dist/es6/popup/lib/PopupHeading.d.ts +2 -2
- package/dist/es6/popup/lib/PopupHeading.js +3 -26
- package/dist/es6/popup/lib/PopupPopper.d.ts +2 -2
- package/dist/es6/popup/lib/PopupPopper.js +3 -26
- package/dist/es6/popup/lib/PopupTarget.d.ts +2 -2
- package/dist/es6/popup/lib/PopupTarget.js +3 -14
- package/dist/es6/popup/lib/getTransformFromPlacement.js +6 -6
- package/dist/es6/popup/lib/hooks/focus-trap-js.js +23 -27
- package/dist/es6/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useAlwaysCloseOnOutsideClick.js +5 -5
- package/dist/es6/popup/lib/hooks/useAssistiveHideSiblings.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useAssistiveHideSiblings.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useAssistiveHideSiblings.js +11 -16
- package/dist/es6/popup/lib/hooks/useBringToTopOnClick.d.ts +7 -9
- package/dist/es6/popup/lib/hooks/useBringToTopOnClick.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useBringToTopOnClick.js +11 -11
- package/dist/es6/popup/lib/hooks/useCloseOnEscape.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/useCloseOnEscape.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useCloseOnEscape.js +7 -7
- package/dist/es6/popup/lib/hooks/useCloseOnFullscreenExit.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useCloseOnFullscreenExit.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useCloseOnFullscreenExit.js +5 -5
- package/dist/es6/popup/lib/hooks/useCloseOnOutsideClick.d.ts +9 -11
- package/dist/es6/popup/lib/hooks/useCloseOnOutsideClick.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useCloseOnOutsideClick.js +14 -14
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.js +9 -9
- package/dist/es6/popup/lib/hooks/useDisableBodyScroll.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useDisableBodyScroll.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useDisableBodyScroll.js +7 -7
- package/dist/es6/popup/lib/hooks/useFocusRedirect.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useFocusRedirect.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useFocusRedirect.js +7 -7
- package/dist/es6/popup/lib/hooks/useFocusTrap.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useFocusTrap.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useFocusTrap.js +5 -5
- package/dist/es6/popup/lib/hooks/useInitialFocus.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/useInitialFocus.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useInitialFocus.js +9 -9
- package/dist/es6/popup/lib/hooks/usePopupCard.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/usePopupCard.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupCard.js +2 -3
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.d.ts +7 -8
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.js +4 -4
- package/dist/es6/popup/lib/hooks/usePopupHeading.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/usePopupHeading.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupHeading.js +2 -3
- package/dist/es6/popup/lib/hooks/usePopupModel.d.ts +13 -13
- package/dist/es6/popup/lib/hooks/usePopupModel.js +28 -33
- package/dist/es6/popup/lib/hooks/usePopupPopper.d.ts +7 -8
- package/dist/es6/popup/lib/hooks/usePopupPopper.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupPopper.js +7 -7
- package/dist/es6/popup/lib/hooks/usePopupStack.d.ts +27 -19
- package/dist/es6/popup/lib/hooks/usePopupStack.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupStack.js +38 -30
- package/dist/es6/popup/lib/hooks/usePopupTarget.d.ts +6 -8
- package/dist/es6/popup/lib/hooks/usePopupTarget.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupTarget.js +4 -5
- package/dist/es6/popup/lib/hooks/usePopupTargetContext.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/usePopupTargetContext.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupTargetContext.js +3 -4
- package/dist/es6/popup/lib/hooks/useReturnFocus.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/useReturnFocus.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useReturnFocus.js +29 -18
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenEnter.js +5 -5
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenExit.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenExit.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenExit.js +5 -5
- package/dist/es6/radio/lib/Radio.d.ts +1 -1
- package/dist/es6/radio/lib/Radio.d.ts.map +1 -1
- package/dist/es6/radio/lib/Radio.js +111 -131
- package/dist/es6/radio/lib/RadioGroup.d.ts +1 -2
- package/dist/es6/radio/lib/RadioGroup.d.ts.map +1 -1
- package/dist/es6/radio/lib/RadioGroup.js +29 -73
- package/dist/es6/segmented-control/lib/SegmentedControl.d.ts +2 -2
- package/dist/es6/segmented-control/lib/SegmentedControl.js +5 -28
- package/dist/es6/segmented-control/lib/SegmentedControlButton.d.ts +1 -1
- package/dist/es6/segmented-control/lib/SegmentedControlButton.d.ts.map +1 -1
- package/dist/es6/segmented-control/lib/SegmentedControlButton.js +37 -58
- package/dist/es6/select/lib/Select.d.ts +1 -1
- package/dist/es6/select/lib/Select.d.ts.map +1 -1
- package/dist/es6/select/lib/Select.js +44 -61
- package/dist/es6/select/lib/SelectOption.js +5 -46
- package/dist/es6/side-panel/lib/SidePanel.d.ts.map +1 -1
- package/dist/es6/side-panel/lib/SidePanel.js +55 -117
- package/dist/es6/skeleton/lib/parts/skeletonHeader.d.ts +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonHeader.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonHeader.js +2 -27
- package/dist/es6/skeleton/lib/parts/skeletonShape.d.ts +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonShape.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonShape.js +9 -37
- package/dist/es6/skeleton/lib/parts/skeletonText.d.ts +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonText.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonText.js +9 -35
- package/dist/es6/skeleton/lib/skeleton.d.ts +30 -4
- package/dist/es6/skeleton/lib/skeleton.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/skeleton.js +36 -35
- package/dist/es6/status-indicator/lib/StatusIndicator.js +25 -57
- package/dist/es6/switch/lib/Switch.d.ts +1 -1
- package/dist/es6/switch/lib/Switch.js +54 -64
- package/dist/es6/table/lib/Table.js +9 -50
- package/dist/es6/table/lib/TableRow.d.ts +2 -1
- package/dist/es6/table/lib/TableRow.d.ts.map +1 -1
- package/dist/es6/table/lib/TableRow.js +35 -62
- package/dist/es6/tabs/lib/Tabs.d.ts +1263 -557
- package/dist/es6/tabs/lib/Tabs.d.ts.map +1 -1
- package/dist/es6/tabs/lib/Tabs.js +96 -5
- package/dist/es6/tabs/lib/TabsItem.d.ts +179 -30
- package/dist/es6/tabs/lib/TabsItem.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsItem.js +73 -80
- package/dist/es6/tabs/lib/TabsList.d.ts +157 -29
- package/dist/es6/tabs/lib/TabsList.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsList.js +48 -44
- package/dist/es6/tabs/lib/TabsMenuPopper.d.ts +17 -15
- package/dist/es6/tabs/lib/TabsMenuPopper.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsMenuPopper.js +4 -27
- package/dist/es6/tabs/lib/TabsOverflowButton.d.ts +119 -27
- package/dist/es6/tabs/lib/TabsOverflowButton.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsOverflowButton.js +6 -29
- package/dist/es6/tabs/lib/TabsPanel.d.ts +46 -32
- package/dist/es6/tabs/lib/TabsPanel.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsPanel.js +14 -39
- package/dist/es6/tabs/lib/TabsPanels.d.ts +24 -16
- package/dist/es6/tabs/lib/TabsPanels.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsPanels.js +2 -3
- package/dist/es6/tabs/lib/useTabsModel.d.ts +1170 -618
- package/dist/es6/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/es6/tabs/lib/useTabsModel.js +60 -41
- package/dist/es6/testing/lib/ComponentStatesTable.js +9 -18
- package/dist/es6/testing/lib/StaticStates.js +8 -32
- package/dist/es6/testing/lib/permutateProps.js +13 -26
- package/dist/es6/text/lib/LabelText.d.ts +19 -2
- package/dist/es6/text/lib/LabelText.d.ts.map +1 -1
- package/dist/es6/text/lib/LabelText.js +22 -24
- package/dist/es6/text/lib/Text.d.ts +43 -3
- package/dist/es6/text/lib/Text.d.ts.map +1 -1
- package/dist/es6/text/lib/Text.js +42 -37
- package/dist/es6/text/lib/TypeLevelComponents.d.ts +105 -6
- package/dist/es6/text/lib/TypeLevelComponents.d.ts.map +1 -1
- package/dist/es6/text/lib/TypeLevelComponents.js +113 -43
- package/dist/es6/text-area/lib/TextArea.d.ts +1 -1
- package/dist/es6/text-area/lib/TextArea.js +41 -54
- package/dist/es6/text-input/index.d.ts +1 -0
- package/dist/es6/text-input/index.d.ts.map +1 -1
- package/dist/es6/text-input/index.js +1 -0
- package/dist/es6/text-input/lib/InputGroup.d.ts +135 -0
- package/dist/es6/text-input/lib/InputGroup.d.ts.map +1 -0
- package/dist/es6/text-input/lib/InputGroup.js +194 -0
- package/dist/es6/text-input/lib/InputIconContainer.js +8 -14
- package/dist/es6/text-input/lib/TextInput.d.ts +1 -1
- package/dist/es6/text-input/lib/TextInput.js +37 -50
- package/dist/es6/toast/index.d.ts +1 -0
- package/dist/es6/toast/index.d.ts.map +1 -1
- package/dist/es6/toast/index.js +1 -0
- package/dist/es6/toast/lib/Toast.d.ts +56 -22
- package/dist/es6/toast/lib/Toast.d.ts.map +1 -1
- package/dist/es6/toast/lib/Toast.js +90 -58
- package/dist/es6/toast/lib/ToastBody.d.ts +6 -0
- package/dist/es6/toast/lib/ToastBody.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastBody.js +9 -0
- package/dist/es6/toast/lib/ToastCloseIcon.d.ts +6 -0
- package/dist/es6/toast/lib/ToastCloseIcon.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastCloseIcon.js +9 -0
- package/dist/es6/toast/lib/ToastIcon.d.ts +5 -0
- package/dist/es6/toast/lib/ToastIcon.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastIcon.js +9 -0
- package/dist/es6/toast/lib/ToastLink.d.ts +5 -0
- package/dist/es6/toast/lib/ToastLink.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastLink.js +9 -0
- package/dist/es6/toast/lib/ToastMessage.d.ts +12 -0
- package/dist/es6/toast/lib/ToastMessage.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastMessage.js +9 -0
- package/dist/es6/toast/lib/hooks/useToastModel.d.ts +75 -0
- package/dist/es6/toast/lib/hooks/useToastModel.d.ts.map +1 -0
- package/dist/es6/toast/lib/hooks/useToastModel.js +26 -0
- package/dist/es6/tokens/index.d.ts +2 -2
- package/dist/es6/tokens/index.d.ts.map +1 -1
- package/dist/es6/tokens/index.js +16 -16
- package/dist/es6/tokens/lib/depth.d.ts +6 -7
- package/dist/es6/tokens/lib/depth.d.ts.map +1 -1
- package/dist/es6/tokens/lib/depth.js +7 -7
- package/dist/es6/tokens/lib/radius.js +1 -1
- package/dist/es6/tokens/lib/space.js +2 -2
- package/dist/es6/tokens/lib/type/fontFamilies.d.ts.map +1 -1
- package/dist/es6/tokens/lib/type/fontFamilies.js +8 -6
- package/dist/es6/tokens/lib/type/fontSizes.js +1 -1
- package/dist/es6/tokens/lib/type/fontWeights.js +1 -1
- package/dist/es6/tokens/lib/type/index.d.ts +7 -7
- package/dist/es6/tokens/lib/type/index.js +10 -10
- package/dist/es6/tokens/lib/type/levels.js +1 -1
- package/dist/es6/tokens/lib/type/variants.js +1 -1
- package/dist/es6/tooltip/lib/OverflowTooltip.js +29 -49
- package/dist/es6/tooltip/lib/Tooltip.d.ts +1 -1
- package/dist/es6/tooltip/lib/Tooltip.d.ts.map +1 -1
- package/dist/es6/tooltip/lib/Tooltip.js +27 -45
- package/dist/es6/tooltip/lib/TooltipContainer.d.ts +1 -1
- package/dist/es6/tooltip/lib/TooltipContainer.js +33 -31
- package/dist/es6/tooltip/lib/useTooltip.d.ts.map +1 -1
- package/dist/es6/tooltip/lib/useTooltip.js +41 -38
- package/form-field/lib/FormField.tsx +5 -3
- package/form-field/lib/Label.tsx +9 -8
- package/icon/lib/AccentIcon.tsx +5 -6
- package/icon/lib/SystemIcon.tsx +17 -17
- package/icon/lib/SystemIconCircle.tsx +4 -3
- package/index.ts +1 -0
- package/layout/README.md +2 -8
- package/layout/index.ts +2 -6
- package/layout/lib/utils/border/color.ts +7 -7
- package/layout/lib/utils/layout.ts +1 -1
- package/layout/lib/utils/position.ts +9 -0
- package/menu/index.ts +1 -1
- package/menu/lib/Menu.tsx +43 -13
- package/menu/lib/MenuContextTarget.tsx +1 -1
- package/menu/lib/MenuItem.tsx +18 -19
- package/menu/lib/MenuList.tsx +16 -11
- package/menu/lib/MenuTarget.tsx +2 -2
- package/menu/lib/useMenuModel.tsx +4 -7
- package/modal/lib/Modal.tsx +77 -5
- package/modal/lib/ModalBody.tsx +32 -0
- package/modal/lib/ModalCard.tsx +12 -8
- package/modal/lib/ModalHeading.tsx +10 -5
- package/modal/lib/ModalOverlay.tsx +17 -13
- package/modal/lib/hooks/useModalHeading.ts +2 -2
- package/package.json +4 -5
- package/pagination/lib/Pagination/AdditionalDetails.tsx +30 -20
- package/pagination/lib/Pagination/Controls.tsx +122 -99
- package/pagination/lib/Pagination/GoTo/Form.tsx +33 -22
- package/pagination/lib/Pagination/GoTo/Label.tsx +21 -10
- package/pagination/lib/Pagination/GoTo/TextInput.tsx +11 -7
- package/pagination/lib/Pagination/GoTo/useGoToForm.tsx +3 -1
- package/pagination/lib/Pagination/Nav.tsx +1 -2
- package/pagination/lib/Pagination/PageButton.tsx +34 -31
- package/pagination/lib/Pagination/PageList.tsx +36 -22
- package/pagination/lib/Pagination/Pagination.tsx +256 -139
- package/pagination/lib/Pagination/common/utils/helpers.ts +45 -15
- package/pagination/lib/Pagination/usePaginationModel.ts +4 -7
- package/popup/lib/Popper.tsx +16 -1
- package/popup/lib/Popup.tsx +85 -4
- package/popup/lib/PopupCard.tsx +31 -5
- package/popup/lib/PopupCloseIcon.tsx +14 -15
- package/popup/lib/hooks/useBringToTopOnClick.ts +4 -4
- package/popup/lib/hooks/useCloseOnEscape.ts +2 -2
- package/popup/lib/hooks/useCloseOnOutsideClick.ts +6 -6
- package/popup/lib/hooks/useInitialFocus.tsx +2 -2
- package/popup/lib/hooks/usePopupCard.ts +1 -1
- package/popup/lib/hooks/usePopupCloseButton.ts +3 -2
- package/popup/lib/hooks/usePopupHeading.ts +1 -1
- package/popup/lib/hooks/usePopupPopper.ts +2 -1
- package/popup/lib/hooks/usePopupStack.ts +26 -18
- package/popup/lib/hooks/usePopupTarget.ts +1 -1
- package/popup/lib/hooks/useReturnFocus.tsx +17 -4
- package/radio/lib/RadioGroup.tsx +1 -3
- package/select/lib/Select.tsx +2 -15
- package/side-panel/lib/SidePanel.tsx +1 -2
- package/skeleton/lib/skeleton.tsx +27 -1
- package/tabs/lib/Tabs.tsx +95 -3
- package/tabs/lib/TabsItem.tsx +16 -21
- package/tabs/lib/TabsList.tsx +51 -19
- package/tabs/lib/TabsOverflowButton.tsx +4 -4
- package/tabs/lib/TabsPanel.tsx +6 -9
- package/tabs/lib/useTabsModel.tsx +17 -0
- package/text/lib/LabelText.tsx +32 -12
- package/text/lib/Text.tsx +45 -5
- package/text/lib/TypeLevelComponents.tsx +101 -2
- package/text-input/index.ts +1 -0
- package/text-input/lib/InputGroup.tsx +250 -0
- package/toast/LICENSE +1 -0
- package/toast/README.md +3 -5
- package/toast/index.ts +1 -0
- package/toast/lib/Toast.tsx +104 -109
- package/toast/lib/ToastBody.tsx +28 -0
- package/toast/lib/ToastCloseIcon.tsx +14 -0
- package/toast/lib/ToastIcon.tsx +23 -0
- package/toast/lib/ToastLink.tsx +17 -0
- package/toast/lib/ToastMessage.tsx +24 -0
- package/toast/lib/hooks/useToastModel.tsx +29 -0
- package/tokens/index.ts +3 -3
- package/tokens/lib/depth.ts +12 -13
- package/tokens/lib/type/fontFamilies.ts +5 -4
- package/tokens/lib/type/index.ts +8 -8
- package/tooltip/lib/Tooltip.tsx +42 -39
- package/tooltip/lib/useTooltip.tsx +18 -11
- package/dist/commonjs/layout/lib/Column.d.ts +0 -33
- package/dist/commonjs/layout/lib/Column.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/Column.js +0 -109
- package/dist/commonjs/layout/lib/Layout.d.ts +0 -45
- package/dist/commonjs/layout/lib/Layout.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/Layout.js +0 -131
- package/dist/commonjs/layout/lib/Stack.d.ts +0 -27
- package/dist/commonjs/layout/lib/Stack.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/Stack.js +0 -99
- package/dist/commonjs/layout/lib/utils/stack.d.ts +0 -23
- package/dist/commonjs/layout/lib/utils/stack.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/utils/stack.js +0 -29
- package/dist/commonjs/pagination/lib/Pagination/GoTo/GoTo.d.ts +0 -17
- package/dist/commonjs/pagination/lib/Pagination/GoTo/GoTo.d.ts.map +0 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/GoTo.js +0 -58
- package/dist/commonjs/pagination/lib/Pagination/GoTo/index.d.ts +0 -4
- package/dist/commonjs/pagination/lib/Pagination/GoTo/index.d.ts.map +0 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/index.js +0 -16
- package/dist/es6/layout/lib/Column.d.ts +0 -33
- package/dist/es6/layout/lib/Column.d.ts.map +0 -1
- package/dist/es6/layout/lib/Column.js +0 -84
- package/dist/es6/layout/lib/Layout.d.ts +0 -45
- package/dist/es6/layout/lib/Layout.d.ts.map +0 -1
- package/dist/es6/layout/lib/Layout.js +0 -106
- package/dist/es6/layout/lib/Stack.d.ts +0 -27
- package/dist/es6/layout/lib/Stack.d.ts.map +0 -1
- package/dist/es6/layout/lib/Stack.js +0 -74
- package/dist/es6/layout/lib/utils/stack.d.ts +0 -23
- package/dist/es6/layout/lib/utils/stack.d.ts.map +0 -1
- package/dist/es6/layout/lib/utils/stack.js +0 -25
- package/dist/es6/pagination/lib/Pagination/GoTo/GoTo.d.ts +0 -17
- package/dist/es6/pagination/lib/Pagination/GoTo/GoTo.d.ts.map +0 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/GoTo.js +0 -35
- package/dist/es6/pagination/lib/Pagination/GoTo/index.d.ts +0 -4
- package/dist/es6/pagination/lib/Pagination/GoTo/index.d.ts.map +0 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/index.js +0 -3
- package/layout/lib/Column.tsx +0 -88
- package/layout/lib/Layout.tsx +0 -124
- package/layout/lib/Stack.tsx +0 -97
- package/layout/lib/utils/stack.ts +0 -52
- package/pagination/lib/Pagination/GoTo/GoTo.tsx +0 -36
- package/pagination/lib/Pagination/GoTo/index.ts +0 -4
|
@@ -12,14 +12,10 @@ export interface BreadcrumbsProps {
|
|
|
12
12
|
children: React.ReactNode;
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
15
|
+
* `Breadcrumbs` is a container component that is responsible for creating a
|
|
16
|
+
* {@link BreadcrumbsModel} and sharing it with its subcomponents using React context. It also
|
|
17
|
+
* renders `nav` element, and `aria-label` attribute must be provided for this element.
|
|
18
18
|
*
|
|
19
|
-
* A compound component that allows users to keep track and maintain awareness
|
|
20
|
-
* of their location as they navigate through pages, folders, files, etc.
|
|
21
|
-
*
|
|
22
|
-
* @example
|
|
23
19
|
* ```tsx
|
|
24
20
|
* <Breadcrumbs aria-label="Breadcrumbs">
|
|
25
21
|
* <Breadcrumbs.List>
|
|
@@ -35,12 +31,37 @@ export interface BreadcrumbsProps {
|
|
|
35
31
|
* <Breadcrumbs.List>
|
|
36
32
|
* </Breadcrumbs>
|
|
37
33
|
* ```
|
|
34
|
+
*
|
|
35
|
+
* You may pass {@link BreadcrumbsModelConfig} directly to the `Breadcrumbs` component.
|
|
36
|
+
*
|
|
37
|
+
* ```tsx
|
|
38
|
+
* <Breadcrumbs items={[]} aria-label="Breadcrumbs">
|
|
39
|
+
* {Child components}
|
|
40
|
+
* </Breadcrumbs>
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* Alternatively, you may pass in a model using the hoisted model pattern.
|
|
44
|
+
*
|
|
45
|
+
* ```tsx
|
|
46
|
+
* const model = useBreadcrumbsModel({
|
|
47
|
+
* items: [],
|
|
48
|
+
* });
|
|
49
|
+
*
|
|
50
|
+
* <Breadcrumbs model={model} aria-label="Breadcrumbs">
|
|
51
|
+
* {Child components}
|
|
52
|
+
* </Breadcrumbs>;
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* Note that if you pass in a `model` configured with {@link useBreadcrumbsModel}, configuration
|
|
56
|
+
* props passed to `Breadcrumbs` will be ignored. `aria-label` attribute must be provided for `nav`
|
|
57
|
+
* element.
|
|
38
58
|
*/
|
|
39
|
-
export declare const Breadcrumbs: import("
|
|
59
|
+
export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").ElementComponentM<"nav", BreadcrumbsProps & Partial<{
|
|
40
60
|
id: string;
|
|
41
61
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
42
62
|
menuConfig: Partial<{
|
|
43
63
|
mode: "multiple" | "single";
|
|
64
|
+
shouldVirtualize: boolean;
|
|
44
65
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
45
66
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
46
67
|
id: string;
|
|
@@ -51,22 +72,16 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
51
72
|
initialCursorId: string;
|
|
52
73
|
columnCount: number;
|
|
53
74
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
75
|
+
pageSize: number;
|
|
54
76
|
getId: (item: any) => string;
|
|
55
77
|
getTextValue: (item: any) => string;
|
|
56
78
|
nonInteractiveIds: string[];
|
|
57
79
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
58
80
|
defaultItemHeight: number;
|
|
59
|
-
shouldVirtualize: boolean;
|
|
60
81
|
items: any[];
|
|
61
82
|
}>;
|
|
62
83
|
initialHiddenIds: string[];
|
|
63
|
-
containerWidth: number;
|
|
64
|
-
* ### Breadcrumbs List
|
|
65
|
-
* ---
|
|
66
|
-
* [View Developer Docs](https://canvas.workdaydesign.com/components/navigation/breadcrumbs/#breadcrumbslist)
|
|
67
|
-
*
|
|
68
|
-
* The nav list containing `Breadcrumbs.Item` components and overflow button.
|
|
69
|
-
*/
|
|
84
|
+
containerWidth: number;
|
|
70
85
|
shouldCalculateOverflow: boolean;
|
|
71
86
|
initialSelectedIds: import("../../collection/lib/useSelectionListModel").SelectedIds;
|
|
72
87
|
initialUnselectedIds: string[];
|
|
@@ -74,6 +89,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
74
89
|
initialCursorId: string;
|
|
75
90
|
columnCount: number;
|
|
76
91
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
92
|
+
pageSize: number;
|
|
77
93
|
getId: (item: any) => string;
|
|
78
94
|
getTextValue: (item: any) => string;
|
|
79
95
|
nonInteractiveIds: string[];
|
|
@@ -90,10 +106,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
90
106
|
itemWidthCache: Record<string, number>;
|
|
91
107
|
containerWidth: number;
|
|
92
108
|
overflowTargetWidth: number;
|
|
93
|
-
selectedIds:
|
|
109
|
+
selectedIds: string[] | "all";
|
|
94
110
|
unselectedIds: string[];
|
|
95
111
|
cursorId: string;
|
|
96
112
|
columnCount: number;
|
|
113
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
114
|
+
cursorIndexRef: {
|
|
115
|
+
readonly current: number;
|
|
116
|
+
};
|
|
97
117
|
UNSTABLE_virtual: {
|
|
98
118
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
99
119
|
totalSize: number;
|
|
@@ -117,10 +137,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
117
137
|
itemWidthCache: Record<string, number>;
|
|
118
138
|
containerWidth: number;
|
|
119
139
|
overflowTargetWidth: number;
|
|
120
|
-
selectedIds:
|
|
140
|
+
selectedIds: string[] | "all";
|
|
121
141
|
unselectedIds: string[];
|
|
122
142
|
cursorId: string;
|
|
123
143
|
columnCount: number;
|
|
144
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
145
|
+
cursorIndexRef: {
|
|
146
|
+
readonly current: number;
|
|
147
|
+
};
|
|
124
148
|
UNSTABLE_virtual: {
|
|
125
149
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
126
150
|
totalSize: number;
|
|
@@ -144,10 +168,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
144
168
|
itemWidthCache: Record<string, number>;
|
|
145
169
|
containerWidth: number;
|
|
146
170
|
overflowTargetWidth: number;
|
|
147
|
-
selectedIds:
|
|
171
|
+
selectedIds: string[] | "all";
|
|
148
172
|
unselectedIds: string[];
|
|
149
173
|
cursorId: string;
|
|
150
174
|
columnCount: number;
|
|
175
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
176
|
+
cursorIndexRef: {
|
|
177
|
+
readonly current: number;
|
|
178
|
+
};
|
|
151
179
|
UNSTABLE_virtual: {
|
|
152
180
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
153
181
|
totalSize: number;
|
|
@@ -172,10 +200,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
172
200
|
itemWidthCache: Record<string, number>;
|
|
173
201
|
containerWidth: number;
|
|
174
202
|
overflowTargetWidth: number;
|
|
175
|
-
selectedIds:
|
|
203
|
+
selectedIds: string[] | "all";
|
|
176
204
|
unselectedIds: string[];
|
|
177
205
|
cursorId: string;
|
|
178
206
|
columnCount: number;
|
|
207
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
208
|
+
cursorIndexRef: {
|
|
209
|
+
readonly current: number;
|
|
210
|
+
};
|
|
179
211
|
UNSTABLE_virtual: {
|
|
180
212
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
181
213
|
totalSize: number;
|
|
@@ -199,10 +231,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
199
231
|
itemWidthCache: Record<string, number>;
|
|
200
232
|
containerWidth: number;
|
|
201
233
|
overflowTargetWidth: number;
|
|
202
|
-
selectedIds:
|
|
234
|
+
selectedIds: string[] | "all";
|
|
203
235
|
unselectedIds: string[];
|
|
204
236
|
cursorId: string;
|
|
205
237
|
columnCount: number;
|
|
238
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
239
|
+
cursorIndexRef: {
|
|
240
|
+
readonly current: number;
|
|
241
|
+
};
|
|
206
242
|
UNSTABLE_virtual: {
|
|
207
243
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
208
244
|
totalSize: number;
|
|
@@ -226,10 +262,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
226
262
|
itemWidthCache: Record<string, number>;
|
|
227
263
|
containerWidth: number;
|
|
228
264
|
overflowTargetWidth: number;
|
|
229
|
-
selectedIds:
|
|
265
|
+
selectedIds: string[] | "all";
|
|
230
266
|
unselectedIds: string[];
|
|
231
267
|
cursorId: string;
|
|
232
268
|
columnCount: number;
|
|
269
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
270
|
+
cursorIndexRef: {
|
|
271
|
+
readonly current: number;
|
|
272
|
+
};
|
|
233
273
|
UNSTABLE_virtual: {
|
|
234
274
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
235
275
|
totalSize: number;
|
|
@@ -253,10 +293,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
253
293
|
itemWidthCache: Record<string, number>;
|
|
254
294
|
containerWidth: number;
|
|
255
295
|
overflowTargetWidth: number;
|
|
256
|
-
selectedIds:
|
|
296
|
+
selectedIds: string[] | "all";
|
|
257
297
|
unselectedIds: string[];
|
|
258
298
|
cursorId: string;
|
|
259
299
|
columnCount: number;
|
|
300
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
301
|
+
cursorIndexRef: {
|
|
302
|
+
readonly current: number;
|
|
303
|
+
};
|
|
260
304
|
UNSTABLE_virtual: {
|
|
261
305
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
262
306
|
totalSize: number;
|
|
@@ -278,10 +322,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
278
322
|
itemWidthCache: Record<string, number>;
|
|
279
323
|
containerWidth: number;
|
|
280
324
|
overflowTargetWidth: number;
|
|
281
|
-
selectedIds:
|
|
325
|
+
selectedIds: string[] | "all";
|
|
282
326
|
unselectedIds: string[];
|
|
283
327
|
cursorId: string;
|
|
284
328
|
columnCount: number;
|
|
329
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
330
|
+
cursorIndexRef: {
|
|
331
|
+
readonly current: number;
|
|
332
|
+
};
|
|
285
333
|
UNSTABLE_virtual: {
|
|
286
334
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
287
335
|
totalSize: number;
|
|
@@ -303,10 +351,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
303
351
|
itemWidthCache: Record<string, number>;
|
|
304
352
|
containerWidth: number;
|
|
305
353
|
overflowTargetWidth: number;
|
|
306
|
-
selectedIds:
|
|
354
|
+
selectedIds: string[] | "all";
|
|
307
355
|
unselectedIds: string[];
|
|
308
356
|
cursorId: string;
|
|
309
357
|
columnCount: number;
|
|
358
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
359
|
+
cursorIndexRef: {
|
|
360
|
+
readonly current: number;
|
|
361
|
+
};
|
|
310
362
|
UNSTABLE_virtual: {
|
|
311
363
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
312
364
|
totalSize: number;
|
|
@@ -321,9 +373,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
321
373
|
isVirtualized: boolean;
|
|
322
374
|
items: import("../..").Item<any>[];
|
|
323
375
|
}) => void) | undefined;
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
textValue: string;
|
|
376
|
+
onGoTo?: ((data: {
|
|
377
|
+
id: string;
|
|
327
378
|
}, prevState: {
|
|
328
379
|
hiddenIds: string[];
|
|
329
380
|
nonInteractiveIds: string[];
|
|
@@ -331,10 +382,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
331
382
|
itemWidthCache: Record<string, number>;
|
|
332
383
|
containerWidth: number;
|
|
333
384
|
overflowTargetWidth: number;
|
|
334
|
-
selectedIds:
|
|
385
|
+
selectedIds: string[] | "all";
|
|
335
386
|
unselectedIds: string[];
|
|
336
387
|
cursorId: string;
|
|
337
388
|
columnCount: number;
|
|
389
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
390
|
+
cursorIndexRef: {
|
|
391
|
+
readonly current: number;
|
|
392
|
+
};
|
|
338
393
|
UNSTABLE_virtual: {
|
|
339
394
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
340
395
|
totalSize: number;
|
|
@@ -349,19 +404,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
349
404
|
isVirtualized: boolean;
|
|
350
405
|
items: import("../..").Item<any>[];
|
|
351
406
|
}) => void) | undefined;
|
|
352
|
-
|
|
353
|
-
id: string;
|
|
354
|
-
}, prevState: {
|
|
407
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
355
408
|
hiddenIds: string[];
|
|
356
409
|
nonInteractiveIds: string[];
|
|
357
410
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
358
411
|
itemWidthCache: Record<string, number>;
|
|
359
412
|
containerWidth: number;
|
|
360
413
|
overflowTargetWidth: number;
|
|
361
|
-
selectedIds:
|
|
414
|
+
selectedIds: string[] | "all";
|
|
362
415
|
unselectedIds: string[];
|
|
363
416
|
cursorId: string;
|
|
364
417
|
columnCount: number;
|
|
418
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
419
|
+
cursorIndexRef: {
|
|
420
|
+
readonly current: number;
|
|
421
|
+
};
|
|
365
422
|
UNSTABLE_virtual: {
|
|
366
423
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
367
424
|
totalSize: number;
|
|
@@ -376,17 +433,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
376
433
|
isVirtualized: boolean;
|
|
377
434
|
items: import("../..").Item<any>[];
|
|
378
435
|
}) => void) | undefined;
|
|
379
|
-
|
|
436
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
380
437
|
hiddenIds: string[];
|
|
381
438
|
nonInteractiveIds: string[];
|
|
382
439
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
383
440
|
itemWidthCache: Record<string, number>;
|
|
384
441
|
containerWidth: number;
|
|
385
442
|
overflowTargetWidth: number;
|
|
386
|
-
selectedIds:
|
|
443
|
+
selectedIds: string[] | "all";
|
|
387
444
|
unselectedIds: string[];
|
|
388
445
|
cursorId: string;
|
|
389
446
|
columnCount: number;
|
|
447
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
448
|
+
cursorIndexRef: {
|
|
449
|
+
readonly current: number;
|
|
450
|
+
};
|
|
390
451
|
UNSTABLE_virtual: {
|
|
391
452
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
392
453
|
totalSize: number;
|
|
@@ -401,17 +462,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
401
462
|
isVirtualized: boolean;
|
|
402
463
|
items: import("../..").Item<any>[];
|
|
403
464
|
}) => void) | undefined;
|
|
404
|
-
|
|
465
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
405
466
|
hiddenIds: string[];
|
|
406
467
|
nonInteractiveIds: string[];
|
|
407
468
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
408
469
|
itemWidthCache: Record<string, number>;
|
|
409
470
|
containerWidth: number;
|
|
410
471
|
overflowTargetWidth: number;
|
|
411
|
-
selectedIds:
|
|
472
|
+
selectedIds: string[] | "all";
|
|
412
473
|
unselectedIds: string[];
|
|
413
474
|
cursorId: string;
|
|
414
475
|
columnCount: number;
|
|
476
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
477
|
+
cursorIndexRef: {
|
|
478
|
+
readonly current: number;
|
|
479
|
+
};
|
|
415
480
|
UNSTABLE_virtual: {
|
|
416
481
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
417
482
|
totalSize: number;
|
|
@@ -426,17 +491,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
426
491
|
isVirtualized: boolean;
|
|
427
492
|
items: import("../..").Item<any>[];
|
|
428
493
|
}) => void) | undefined;
|
|
429
|
-
|
|
494
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
430
495
|
hiddenIds: string[];
|
|
431
496
|
nonInteractiveIds: string[];
|
|
432
497
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
433
498
|
itemWidthCache: Record<string, number>;
|
|
434
499
|
containerWidth: number;
|
|
435
500
|
overflowTargetWidth: number;
|
|
436
|
-
selectedIds:
|
|
501
|
+
selectedIds: string[] | "all";
|
|
437
502
|
unselectedIds: string[];
|
|
438
503
|
cursorId: string;
|
|
439
504
|
columnCount: number;
|
|
505
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
506
|
+
cursorIndexRef: {
|
|
507
|
+
readonly current: number;
|
|
508
|
+
};
|
|
440
509
|
UNSTABLE_virtual: {
|
|
441
510
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
442
511
|
totalSize: number;
|
|
@@ -451,17 +520,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
451
520
|
isVirtualized: boolean;
|
|
452
521
|
items: import("../..").Item<any>[];
|
|
453
522
|
}) => void) | undefined;
|
|
454
|
-
|
|
523
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
455
524
|
hiddenIds: string[];
|
|
456
525
|
nonInteractiveIds: string[];
|
|
457
526
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
458
527
|
itemWidthCache: Record<string, number>;
|
|
459
528
|
containerWidth: number;
|
|
460
529
|
overflowTargetWidth: number;
|
|
461
|
-
selectedIds:
|
|
530
|
+
selectedIds: string[] | "all";
|
|
462
531
|
unselectedIds: string[];
|
|
463
532
|
cursorId: string;
|
|
464
533
|
columnCount: number;
|
|
534
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
535
|
+
cursorIndexRef: {
|
|
536
|
+
readonly current: number;
|
|
537
|
+
};
|
|
465
538
|
UNSTABLE_virtual: {
|
|
466
539
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
467
540
|
totalSize: number;
|
|
@@ -476,17 +549,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
476
549
|
isVirtualized: boolean;
|
|
477
550
|
items: import("../..").Item<any>[];
|
|
478
551
|
}) => void) | undefined;
|
|
479
|
-
|
|
552
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
480
553
|
hiddenIds: string[];
|
|
481
554
|
nonInteractiveIds: string[];
|
|
482
555
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
483
556
|
itemWidthCache: Record<string, number>;
|
|
484
557
|
containerWidth: number;
|
|
485
558
|
overflowTargetWidth: number;
|
|
486
|
-
selectedIds:
|
|
559
|
+
selectedIds: string[] | "all";
|
|
487
560
|
unselectedIds: string[];
|
|
488
561
|
cursorId: string;
|
|
489
562
|
columnCount: number;
|
|
563
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
564
|
+
cursorIndexRef: {
|
|
565
|
+
readonly current: number;
|
|
566
|
+
};
|
|
490
567
|
UNSTABLE_virtual: {
|
|
491
568
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
492
569
|
totalSize: number;
|
|
@@ -501,17 +578,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
501
578
|
isVirtualized: boolean;
|
|
502
579
|
items: import("../..").Item<any>[];
|
|
503
580
|
}) => void) | undefined;
|
|
504
|
-
|
|
581
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
505
582
|
hiddenIds: string[];
|
|
506
583
|
nonInteractiveIds: string[];
|
|
507
584
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
508
585
|
itemWidthCache: Record<string, number>;
|
|
509
586
|
containerWidth: number;
|
|
510
587
|
overflowTargetWidth: number;
|
|
511
|
-
selectedIds:
|
|
588
|
+
selectedIds: string[] | "all";
|
|
512
589
|
unselectedIds: string[];
|
|
513
590
|
cursorId: string;
|
|
514
591
|
columnCount: number;
|
|
592
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
593
|
+
cursorIndexRef: {
|
|
594
|
+
readonly current: number;
|
|
595
|
+
};
|
|
515
596
|
UNSTABLE_virtual: {
|
|
516
597
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
517
598
|
totalSize: number;
|
|
@@ -526,17 +607,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
526
607
|
isVirtualized: boolean;
|
|
527
608
|
items: import("../..").Item<any>[];
|
|
528
609
|
}) => void) | undefined;
|
|
529
|
-
|
|
610
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
530
611
|
hiddenIds: string[];
|
|
531
612
|
nonInteractiveIds: string[];
|
|
532
613
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
533
614
|
itemWidthCache: Record<string, number>;
|
|
534
615
|
containerWidth: number;
|
|
535
616
|
overflowTargetWidth: number;
|
|
536
|
-
selectedIds:
|
|
617
|
+
selectedIds: string[] | "all";
|
|
537
618
|
unselectedIds: string[];
|
|
538
619
|
cursorId: string;
|
|
539
620
|
columnCount: number;
|
|
621
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
622
|
+
cursorIndexRef: {
|
|
623
|
+
readonly current: number;
|
|
624
|
+
};
|
|
540
625
|
UNSTABLE_virtual: {
|
|
541
626
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
542
627
|
totalSize: number;
|
|
@@ -551,17 +636,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
551
636
|
isVirtualized: boolean;
|
|
552
637
|
items: import("../..").Item<any>[];
|
|
553
638
|
}) => void) | undefined;
|
|
554
|
-
|
|
639
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
555
640
|
hiddenIds: string[];
|
|
556
641
|
nonInteractiveIds: string[];
|
|
557
642
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
558
643
|
itemWidthCache: Record<string, number>;
|
|
559
644
|
containerWidth: number;
|
|
560
645
|
overflowTargetWidth: number;
|
|
561
|
-
selectedIds:
|
|
646
|
+
selectedIds: string[] | "all";
|
|
562
647
|
unselectedIds: string[];
|
|
563
648
|
cursorId: string;
|
|
564
649
|
columnCount: number;
|
|
650
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
651
|
+
cursorIndexRef: {
|
|
652
|
+
readonly current: number;
|
|
653
|
+
};
|
|
565
654
|
UNSTABLE_virtual: {
|
|
566
655
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
567
656
|
totalSize: number;
|
|
@@ -576,17 +665,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
576
665
|
isVirtualized: boolean;
|
|
577
666
|
items: import("../..").Item<any>[];
|
|
578
667
|
}) => void) | undefined;
|
|
579
|
-
|
|
668
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
580
669
|
hiddenIds: string[];
|
|
581
670
|
nonInteractiveIds: string[];
|
|
582
671
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
583
672
|
itemWidthCache: Record<string, number>;
|
|
584
673
|
containerWidth: number;
|
|
585
674
|
overflowTargetWidth: number;
|
|
586
|
-
selectedIds:
|
|
675
|
+
selectedIds: string[] | "all";
|
|
587
676
|
unselectedIds: string[];
|
|
588
677
|
cursorId: string;
|
|
589
678
|
columnCount: number;
|
|
679
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
680
|
+
cursorIndexRef: {
|
|
681
|
+
readonly current: number;
|
|
682
|
+
};
|
|
590
683
|
UNSTABLE_virtual: {
|
|
591
684
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
592
685
|
totalSize: number;
|
|
@@ -601,17 +694,24 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
601
694
|
isVirtualized: boolean;
|
|
602
695
|
items: import("../..").Item<any>[];
|
|
603
696
|
}) => void) | undefined;
|
|
604
|
-
|
|
697
|
+
onRegisterItem?: ((data: {
|
|
698
|
+
item: any;
|
|
699
|
+
textValue: string;
|
|
700
|
+
}, prevState: {
|
|
605
701
|
hiddenIds: string[];
|
|
606
702
|
nonInteractiveIds: string[];
|
|
607
703
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
608
704
|
itemWidthCache: Record<string, number>;
|
|
609
705
|
containerWidth: number;
|
|
610
706
|
overflowTargetWidth: number;
|
|
611
|
-
selectedIds:
|
|
707
|
+
selectedIds: string[] | "all";
|
|
612
708
|
unselectedIds: string[];
|
|
613
709
|
cursorId: string;
|
|
614
710
|
columnCount: number;
|
|
711
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
712
|
+
cursorIndexRef: {
|
|
713
|
+
readonly current: number;
|
|
714
|
+
};
|
|
615
715
|
UNSTABLE_virtual: {
|
|
616
716
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
617
717
|
totalSize: number;
|
|
@@ -635,10 +735,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
635
735
|
itemWidthCache: Record<string, number>;
|
|
636
736
|
containerWidth: number;
|
|
637
737
|
overflowTargetWidth: number;
|
|
638
|
-
selectedIds:
|
|
738
|
+
selectedIds: string[] | "all";
|
|
639
739
|
unselectedIds: string[];
|
|
640
740
|
cursorId: string;
|
|
641
741
|
columnCount: number;
|
|
742
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
743
|
+
cursorIndexRef: {
|
|
744
|
+
readonly current: number;
|
|
745
|
+
};
|
|
642
746
|
UNSTABLE_virtual: {
|
|
643
747
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
644
748
|
totalSize: number;
|
|
@@ -662,10 +766,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
662
766
|
itemWidthCache: Record<string, number>;
|
|
663
767
|
containerWidth: number;
|
|
664
768
|
overflowTargetWidth: number;
|
|
665
|
-
selectedIds:
|
|
769
|
+
selectedIds: string[] | "all";
|
|
666
770
|
unselectedIds: string[];
|
|
667
771
|
cursorId: string;
|
|
668
772
|
columnCount: number;
|
|
773
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
774
|
+
cursorIndexRef: {
|
|
775
|
+
readonly current: number;
|
|
776
|
+
};
|
|
669
777
|
UNSTABLE_virtual: {
|
|
670
778
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
671
779
|
totalSize: number;
|
|
@@ -690,10 +798,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
690
798
|
itemWidthCache: Record<string, number>;
|
|
691
799
|
containerWidth: number;
|
|
692
800
|
overflowTargetWidth: number;
|
|
693
|
-
selectedIds:
|
|
801
|
+
selectedIds: string[] | "all";
|
|
694
802
|
unselectedIds: string[];
|
|
695
803
|
cursorId: string;
|
|
696
804
|
columnCount: number;
|
|
805
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
806
|
+
cursorIndexRef: {
|
|
807
|
+
readonly current: number;
|
|
808
|
+
};
|
|
697
809
|
UNSTABLE_virtual: {
|
|
698
810
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
699
811
|
totalSize: number;
|
|
@@ -717,10 +829,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
717
829
|
itemWidthCache: Record<string, number>;
|
|
718
830
|
containerWidth: number;
|
|
719
831
|
overflowTargetWidth: number;
|
|
720
|
-
selectedIds:
|
|
832
|
+
selectedIds: string[] | "all";
|
|
721
833
|
unselectedIds: string[];
|
|
722
834
|
cursorId: string;
|
|
723
835
|
columnCount: number;
|
|
836
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
837
|
+
cursorIndexRef: {
|
|
838
|
+
readonly current: number;
|
|
839
|
+
};
|
|
724
840
|
UNSTABLE_virtual: {
|
|
725
841
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
726
842
|
totalSize: number;
|
|
@@ -744,10 +860,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
744
860
|
itemWidthCache: Record<string, number>;
|
|
745
861
|
containerWidth: number;
|
|
746
862
|
overflowTargetWidth: number;
|
|
747
|
-
selectedIds:
|
|
863
|
+
selectedIds: string[] | "all";
|
|
748
864
|
unselectedIds: string[];
|
|
749
865
|
cursorId: string;
|
|
750
866
|
columnCount: number;
|
|
867
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
868
|
+
cursorIndexRef: {
|
|
869
|
+
readonly current: number;
|
|
870
|
+
};
|
|
751
871
|
UNSTABLE_virtual: {
|
|
752
872
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
753
873
|
totalSize: number;
|
|
@@ -772,10 +892,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
772
892
|
itemWidthCache: Record<string, number>;
|
|
773
893
|
containerWidth: number;
|
|
774
894
|
overflowTargetWidth: number;
|
|
775
|
-
selectedIds:
|
|
895
|
+
selectedIds: string[] | "all";
|
|
776
896
|
unselectedIds: string[];
|
|
777
897
|
cursorId: string;
|
|
778
898
|
columnCount: number;
|
|
899
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
900
|
+
cursorIndexRef: {
|
|
901
|
+
readonly current: number;
|
|
902
|
+
};
|
|
779
903
|
UNSTABLE_virtual: {
|
|
780
904
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
781
905
|
totalSize: number;
|
|
@@ -799,10 +923,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
799
923
|
itemWidthCache: Record<string, number>;
|
|
800
924
|
containerWidth: number;
|
|
801
925
|
overflowTargetWidth: number;
|
|
802
|
-
selectedIds:
|
|
926
|
+
selectedIds: string[] | "all";
|
|
803
927
|
unselectedIds: string[];
|
|
804
928
|
cursorId: string;
|
|
805
929
|
columnCount: number;
|
|
930
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
931
|
+
cursorIndexRef: {
|
|
932
|
+
readonly current: number;
|
|
933
|
+
};
|
|
806
934
|
UNSTABLE_virtual: {
|
|
807
935
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
808
936
|
totalSize: number;
|
|
@@ -826,10 +954,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
826
954
|
itemWidthCache: Record<string, number>;
|
|
827
955
|
containerWidth: number;
|
|
828
956
|
overflowTargetWidth: number;
|
|
829
|
-
selectedIds:
|
|
957
|
+
selectedIds: string[] | "all";
|
|
830
958
|
unselectedIds: string[];
|
|
831
959
|
cursorId: string;
|
|
832
960
|
columnCount: number;
|
|
961
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
962
|
+
cursorIndexRef: {
|
|
963
|
+
readonly current: number;
|
|
964
|
+
};
|
|
833
965
|
UNSTABLE_virtual: {
|
|
834
966
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
835
967
|
totalSize: number;
|
|
@@ -853,10 +985,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
853
985
|
itemWidthCache: Record<string, number>;
|
|
854
986
|
containerWidth: number;
|
|
855
987
|
overflowTargetWidth: number;
|
|
856
|
-
selectedIds:
|
|
988
|
+
selectedIds: string[] | "all";
|
|
857
989
|
unselectedIds: string[];
|
|
858
990
|
cursorId: string;
|
|
859
991
|
columnCount: number;
|
|
992
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
993
|
+
cursorIndexRef: {
|
|
994
|
+
readonly current: number;
|
|
995
|
+
};
|
|
860
996
|
UNSTABLE_virtual: {
|
|
861
997
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
862
998
|
totalSize: number;
|
|
@@ -878,10 +1014,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
878
1014
|
itemWidthCache: Record<string, number>;
|
|
879
1015
|
containerWidth: number;
|
|
880
1016
|
overflowTargetWidth: number;
|
|
881
|
-
selectedIds:
|
|
1017
|
+
selectedIds: string[] | "all";
|
|
882
1018
|
unselectedIds: string[];
|
|
883
1019
|
cursorId: string;
|
|
884
1020
|
columnCount: number;
|
|
1021
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1022
|
+
cursorIndexRef: {
|
|
1023
|
+
readonly current: number;
|
|
1024
|
+
};
|
|
885
1025
|
UNSTABLE_virtual: {
|
|
886
1026
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
887
1027
|
totalSize: number;
|
|
@@ -903,10 +1043,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
903
1043
|
itemWidthCache: Record<string, number>;
|
|
904
1044
|
containerWidth: number;
|
|
905
1045
|
overflowTargetWidth: number;
|
|
906
|
-
selectedIds:
|
|
1046
|
+
selectedIds: string[] | "all";
|
|
907
1047
|
unselectedIds: string[];
|
|
908
1048
|
cursorId: string;
|
|
909
1049
|
columnCount: number;
|
|
1050
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1051
|
+
cursorIndexRef: {
|
|
1052
|
+
readonly current: number;
|
|
1053
|
+
};
|
|
910
1054
|
UNSTABLE_virtual: {
|
|
911
1055
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
912
1056
|
totalSize: number;
|
|
@@ -921,9 +1065,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
921
1065
|
isVirtualized: boolean;
|
|
922
1066
|
items: import("../..").Item<any>[];
|
|
923
1067
|
}) => boolean) | undefined;
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
textValue: string;
|
|
1068
|
+
shouldGoTo?: ((data: {
|
|
1069
|
+
id: string;
|
|
927
1070
|
}, state: {
|
|
928
1071
|
hiddenIds: string[];
|
|
929
1072
|
nonInteractiveIds: string[];
|
|
@@ -931,10 +1074,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
931
1074
|
itemWidthCache: Record<string, number>;
|
|
932
1075
|
containerWidth: number;
|
|
933
1076
|
overflowTargetWidth: number;
|
|
934
|
-
selectedIds:
|
|
1077
|
+
selectedIds: string[] | "all";
|
|
935
1078
|
unselectedIds: string[];
|
|
936
1079
|
cursorId: string;
|
|
937
1080
|
columnCount: number;
|
|
1081
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1082
|
+
cursorIndexRef: {
|
|
1083
|
+
readonly current: number;
|
|
1084
|
+
};
|
|
938
1085
|
UNSTABLE_virtual: {
|
|
939
1086
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
940
1087
|
totalSize: number;
|
|
@@ -949,19 +1096,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
949
1096
|
isVirtualized: boolean;
|
|
950
1097
|
items: import("../..").Item<any>[];
|
|
951
1098
|
}) => boolean) | undefined;
|
|
952
|
-
|
|
953
|
-
id: string;
|
|
954
|
-
}, state: {
|
|
1099
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
955
1100
|
hiddenIds: string[];
|
|
956
1101
|
nonInteractiveIds: string[];
|
|
957
1102
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
958
1103
|
itemWidthCache: Record<string, number>;
|
|
959
1104
|
containerWidth: number;
|
|
960
1105
|
overflowTargetWidth: number;
|
|
961
|
-
selectedIds:
|
|
1106
|
+
selectedIds: string[] | "all";
|
|
962
1107
|
unselectedIds: string[];
|
|
963
1108
|
cursorId: string;
|
|
964
1109
|
columnCount: number;
|
|
1110
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1111
|
+
cursorIndexRef: {
|
|
1112
|
+
readonly current: number;
|
|
1113
|
+
};
|
|
965
1114
|
UNSTABLE_virtual: {
|
|
966
1115
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
967
1116
|
totalSize: number;
|
|
@@ -976,17 +1125,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
976
1125
|
isVirtualized: boolean;
|
|
977
1126
|
items: import("../..").Item<any>[];
|
|
978
1127
|
}) => boolean) | undefined;
|
|
979
|
-
|
|
1128
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
980
1129
|
hiddenIds: string[];
|
|
981
1130
|
nonInteractiveIds: string[];
|
|
982
1131
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
983
1132
|
itemWidthCache: Record<string, number>;
|
|
984
1133
|
containerWidth: number;
|
|
985
1134
|
overflowTargetWidth: number;
|
|
986
|
-
selectedIds:
|
|
1135
|
+
selectedIds: string[] | "all";
|
|
987
1136
|
unselectedIds: string[];
|
|
988
1137
|
cursorId: string;
|
|
989
1138
|
columnCount: number;
|
|
1139
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1140
|
+
cursorIndexRef: {
|
|
1141
|
+
readonly current: number;
|
|
1142
|
+
};
|
|
990
1143
|
UNSTABLE_virtual: {
|
|
991
1144
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
992
1145
|
totalSize: number;
|
|
@@ -1001,17 +1154,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1001
1154
|
isVirtualized: boolean;
|
|
1002
1155
|
items: import("../..").Item<any>[];
|
|
1003
1156
|
}) => boolean) | undefined;
|
|
1004
|
-
|
|
1157
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
1005
1158
|
hiddenIds: string[];
|
|
1006
1159
|
nonInteractiveIds: string[];
|
|
1007
1160
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1008
1161
|
itemWidthCache: Record<string, number>;
|
|
1009
1162
|
containerWidth: number;
|
|
1010
1163
|
overflowTargetWidth: number;
|
|
1011
|
-
selectedIds:
|
|
1164
|
+
selectedIds: string[] | "all";
|
|
1012
1165
|
unselectedIds: string[];
|
|
1013
1166
|
cursorId: string;
|
|
1014
1167
|
columnCount: number;
|
|
1168
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1169
|
+
cursorIndexRef: {
|
|
1170
|
+
readonly current: number;
|
|
1171
|
+
};
|
|
1015
1172
|
UNSTABLE_virtual: {
|
|
1016
1173
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1017
1174
|
totalSize: number;
|
|
@@ -1026,17 +1183,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1026
1183
|
isVirtualized: boolean;
|
|
1027
1184
|
items: import("../..").Item<any>[];
|
|
1028
1185
|
}) => boolean) | undefined;
|
|
1029
|
-
|
|
1186
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
1030
1187
|
hiddenIds: string[];
|
|
1031
1188
|
nonInteractiveIds: string[];
|
|
1032
1189
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1033
1190
|
itemWidthCache: Record<string, number>;
|
|
1034
1191
|
containerWidth: number;
|
|
1035
1192
|
overflowTargetWidth: number;
|
|
1036
|
-
selectedIds:
|
|
1193
|
+
selectedIds: string[] | "all";
|
|
1037
1194
|
unselectedIds: string[];
|
|
1038
1195
|
cursorId: string;
|
|
1039
1196
|
columnCount: number;
|
|
1197
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1198
|
+
cursorIndexRef: {
|
|
1199
|
+
readonly current: number;
|
|
1200
|
+
};
|
|
1040
1201
|
UNSTABLE_virtual: {
|
|
1041
1202
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1042
1203
|
totalSize: number;
|
|
@@ -1051,17 +1212,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1051
1212
|
isVirtualized: boolean;
|
|
1052
1213
|
items: import("../..").Item<any>[];
|
|
1053
1214
|
}) => boolean) | undefined;
|
|
1054
|
-
|
|
1215
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
1055
1216
|
hiddenIds: string[];
|
|
1056
1217
|
nonInteractiveIds: string[];
|
|
1057
1218
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1058
1219
|
itemWidthCache: Record<string, number>;
|
|
1059
1220
|
containerWidth: number;
|
|
1060
1221
|
overflowTargetWidth: number;
|
|
1061
|
-
selectedIds:
|
|
1222
|
+
selectedIds: string[] | "all";
|
|
1062
1223
|
unselectedIds: string[];
|
|
1063
1224
|
cursorId: string;
|
|
1064
1225
|
columnCount: number;
|
|
1226
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1227
|
+
cursorIndexRef: {
|
|
1228
|
+
readonly current: number;
|
|
1229
|
+
};
|
|
1065
1230
|
UNSTABLE_virtual: {
|
|
1066
1231
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1067
1232
|
totalSize: number;
|
|
@@ -1076,17 +1241,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1076
1241
|
isVirtualized: boolean;
|
|
1077
1242
|
items: import("../..").Item<any>[];
|
|
1078
1243
|
}) => boolean) | undefined;
|
|
1079
|
-
|
|
1244
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
1080
1245
|
hiddenIds: string[];
|
|
1081
1246
|
nonInteractiveIds: string[];
|
|
1082
1247
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1083
1248
|
itemWidthCache: Record<string, number>;
|
|
1084
1249
|
containerWidth: number;
|
|
1085
1250
|
overflowTargetWidth: number;
|
|
1086
|
-
selectedIds:
|
|
1251
|
+
selectedIds: string[] | "all";
|
|
1087
1252
|
unselectedIds: string[];
|
|
1088
1253
|
cursorId: string;
|
|
1089
1254
|
columnCount: number;
|
|
1255
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1256
|
+
cursorIndexRef: {
|
|
1257
|
+
readonly current: number;
|
|
1258
|
+
};
|
|
1090
1259
|
UNSTABLE_virtual: {
|
|
1091
1260
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1092
1261
|
totalSize: number;
|
|
@@ -1101,17 +1270,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1101
1270
|
isVirtualized: boolean;
|
|
1102
1271
|
items: import("../..").Item<any>[];
|
|
1103
1272
|
}) => boolean) | undefined;
|
|
1104
|
-
|
|
1273
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
1105
1274
|
hiddenIds: string[];
|
|
1106
1275
|
nonInteractiveIds: string[];
|
|
1107
1276
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1108
1277
|
itemWidthCache: Record<string, number>;
|
|
1109
1278
|
containerWidth: number;
|
|
1110
1279
|
overflowTargetWidth: number;
|
|
1111
|
-
selectedIds:
|
|
1280
|
+
selectedIds: string[] | "all";
|
|
1112
1281
|
unselectedIds: string[];
|
|
1113
1282
|
cursorId: string;
|
|
1114
1283
|
columnCount: number;
|
|
1284
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1285
|
+
cursorIndexRef: {
|
|
1286
|
+
readonly current: number;
|
|
1287
|
+
};
|
|
1115
1288
|
UNSTABLE_virtual: {
|
|
1116
1289
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1117
1290
|
totalSize: number;
|
|
@@ -1126,17 +1299,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1126
1299
|
isVirtualized: boolean;
|
|
1127
1300
|
items: import("../..").Item<any>[];
|
|
1128
1301
|
}) => boolean) | undefined;
|
|
1129
|
-
|
|
1302
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
1130
1303
|
hiddenIds: string[];
|
|
1131
1304
|
nonInteractiveIds: string[];
|
|
1132
1305
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1133
1306
|
itemWidthCache: Record<string, number>;
|
|
1134
1307
|
containerWidth: number;
|
|
1135
1308
|
overflowTargetWidth: number;
|
|
1136
|
-
selectedIds:
|
|
1309
|
+
selectedIds: string[] | "all";
|
|
1137
1310
|
unselectedIds: string[];
|
|
1138
1311
|
cursorId: string;
|
|
1139
1312
|
columnCount: number;
|
|
1313
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1314
|
+
cursorIndexRef: {
|
|
1315
|
+
readonly current: number;
|
|
1316
|
+
};
|
|
1140
1317
|
UNSTABLE_virtual: {
|
|
1141
1318
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1142
1319
|
totalSize: number;
|
|
@@ -1151,17 +1328,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1151
1328
|
isVirtualized: boolean;
|
|
1152
1329
|
items: import("../..").Item<any>[];
|
|
1153
1330
|
}) => boolean) | undefined;
|
|
1154
|
-
|
|
1331
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
1155
1332
|
hiddenIds: string[];
|
|
1156
1333
|
nonInteractiveIds: string[];
|
|
1157
1334
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1158
1335
|
itemWidthCache: Record<string, number>;
|
|
1159
1336
|
containerWidth: number;
|
|
1160
1337
|
overflowTargetWidth: number;
|
|
1161
|
-
selectedIds:
|
|
1338
|
+
selectedIds: string[] | "all";
|
|
1162
1339
|
unselectedIds: string[];
|
|
1163
1340
|
cursorId: string;
|
|
1164
1341
|
columnCount: number;
|
|
1342
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1343
|
+
cursorIndexRef: {
|
|
1344
|
+
readonly current: number;
|
|
1345
|
+
};
|
|
1165
1346
|
UNSTABLE_virtual: {
|
|
1166
1347
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1167
1348
|
totalSize: number;
|
|
@@ -1176,17 +1357,21 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1176
1357
|
isVirtualized: boolean;
|
|
1177
1358
|
items: import("../..").Item<any>[];
|
|
1178
1359
|
}) => boolean) | undefined;
|
|
1179
|
-
|
|
1360
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
1180
1361
|
hiddenIds: string[];
|
|
1181
1362
|
nonInteractiveIds: string[];
|
|
1182
1363
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1183
1364
|
itemWidthCache: Record<string, number>;
|
|
1184
1365
|
containerWidth: number;
|
|
1185
1366
|
overflowTargetWidth: number;
|
|
1186
|
-
selectedIds:
|
|
1367
|
+
selectedIds: string[] | "all";
|
|
1187
1368
|
unselectedIds: string[];
|
|
1188
1369
|
cursorId: string;
|
|
1189
1370
|
columnCount: number;
|
|
1371
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1372
|
+
cursorIndexRef: {
|
|
1373
|
+
readonly current: number;
|
|
1374
|
+
};
|
|
1190
1375
|
UNSTABLE_virtual: {
|
|
1191
1376
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1192
1377
|
totalSize: number;
|
|
@@ -1201,17 +1386,24 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1201
1386
|
isVirtualized: boolean;
|
|
1202
1387
|
items: import("../..").Item<any>[];
|
|
1203
1388
|
}) => boolean) | undefined;
|
|
1204
|
-
|
|
1389
|
+
shouldRegisterItem?: ((data: {
|
|
1390
|
+
item: any;
|
|
1391
|
+
textValue: string;
|
|
1392
|
+
}, state: {
|
|
1205
1393
|
hiddenIds: string[];
|
|
1206
1394
|
nonInteractiveIds: string[];
|
|
1207
1395
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1208
1396
|
itemWidthCache: Record<string, number>;
|
|
1209
1397
|
containerWidth: number;
|
|
1210
1398
|
overflowTargetWidth: number;
|
|
1211
|
-
selectedIds:
|
|
1399
|
+
selectedIds: string[] | "all";
|
|
1212
1400
|
unselectedIds: string[];
|
|
1213
1401
|
cursorId: string;
|
|
1214
1402
|
columnCount: number;
|
|
1403
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1404
|
+
cursorIndexRef: {
|
|
1405
|
+
readonly current: number;
|
|
1406
|
+
};
|
|
1215
1407
|
UNSTABLE_virtual: {
|
|
1216
1408
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1217
1409
|
totalSize: number;
|
|
@@ -1235,10 +1427,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1235
1427
|
itemWidthCache: Record<string, number>;
|
|
1236
1428
|
containerWidth: number;
|
|
1237
1429
|
overflowTargetWidth: number;
|
|
1238
|
-
selectedIds:
|
|
1430
|
+
selectedIds: string[] | "all";
|
|
1239
1431
|
unselectedIds: string[];
|
|
1240
1432
|
cursorId: string;
|
|
1241
1433
|
columnCount: number;
|
|
1434
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1435
|
+
cursorIndexRef: {
|
|
1436
|
+
readonly current: number;
|
|
1437
|
+
};
|
|
1242
1438
|
UNSTABLE_virtual: {
|
|
1243
1439
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1244
1440
|
totalSize: number;
|
|
@@ -1262,10 +1458,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1262
1458
|
itemWidthCache: Record<string, number>;
|
|
1263
1459
|
containerWidth: number;
|
|
1264
1460
|
overflowTargetWidth: number;
|
|
1265
|
-
selectedIds:
|
|
1461
|
+
selectedIds: string[] | "all";
|
|
1266
1462
|
unselectedIds: string[];
|
|
1267
1463
|
cursorId: string;
|
|
1268
1464
|
columnCount: number;
|
|
1465
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1466
|
+
cursorIndexRef: {
|
|
1467
|
+
readonly current: number;
|
|
1468
|
+
};
|
|
1269
1469
|
UNSTABLE_virtual: {
|
|
1270
1470
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1271
1471
|
totalSize: number;
|
|
@@ -1288,10 +1488,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1288
1488
|
itemWidthCache: Record<string, number>;
|
|
1289
1489
|
containerWidth: number;
|
|
1290
1490
|
overflowTargetWidth: number;
|
|
1291
|
-
selectedIds:
|
|
1491
|
+
selectedIds: string[] | "all";
|
|
1292
1492
|
unselectedIds: string[];
|
|
1293
1493
|
cursorId: string;
|
|
1294
1494
|
columnCount: number;
|
|
1495
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1496
|
+
cursorIndexRef: {
|
|
1497
|
+
readonly current: number;
|
|
1498
|
+
};
|
|
1295
1499
|
UNSTABLE_virtual: {
|
|
1296
1500
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1297
1501
|
totalSize: number;
|
|
@@ -1313,13 +1517,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1313
1517
|
setContainerWidth(data: {
|
|
1314
1518
|
width?: number | undefined;
|
|
1315
1519
|
}): void;
|
|
1316
|
-
/**
|
|
1317
|
-
* ### Breadcrumbs Link
|
|
1318
|
-
* ---
|
|
1319
|
-
* [View Developer Docs](https://canvas.workdaydesign.com/components/navigation/breadcrumbs/#breadcrumbslink)
|
|
1320
|
-
*
|
|
1321
|
-
* The hyperlink element in each `Breadcrumbs.Item`.
|
|
1322
|
-
*/
|
|
1323
1520
|
setOverflowTargetWidth(data: {
|
|
1324
1521
|
width: number;
|
|
1325
1522
|
}): void;
|
|
@@ -1338,10 +1535,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1338
1535
|
}): void;
|
|
1339
1536
|
selectAll(): void;
|
|
1340
1537
|
unselectAll(): void;
|
|
1341
|
-
registerItem(data: {
|
|
1342
|
-
item: any;
|
|
1343
|
-
textValue: string;
|
|
1344
|
-
}): void;
|
|
1345
1538
|
goTo(data: {
|
|
1346
1539
|
id: string;
|
|
1347
1540
|
}): void;
|
|
@@ -1355,6 +1548,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1355
1548
|
goToLastOfRow(): void;
|
|
1356
1549
|
goToNextPage(): void;
|
|
1357
1550
|
goToPreviousPage(): void;
|
|
1551
|
+
registerItem(data: {
|
|
1552
|
+
item: any;
|
|
1553
|
+
textValue: string;
|
|
1554
|
+
}): void;
|
|
1358
1555
|
unregisterItem(data: {
|
|
1359
1556
|
id: string;
|
|
1360
1557
|
}): void;
|
|
@@ -1370,11 +1567,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1370
1567
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1371
1568
|
placement: import("@popperjs/core").Placement;
|
|
1372
1569
|
id: string;
|
|
1373
|
-
visibility:
|
|
1374
|
-
selectedIds:
|
|
1570
|
+
visibility: "hidden" | "visible";
|
|
1571
|
+
selectedIds: string[] | "all";
|
|
1375
1572
|
unselectedIds: string[];
|
|
1376
1573
|
cursorId: string;
|
|
1377
1574
|
columnCount: number;
|
|
1575
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1576
|
+
cursorIndexRef: {
|
|
1577
|
+
readonly current: number;
|
|
1578
|
+
};
|
|
1378
1579
|
UNSTABLE_virtual: {
|
|
1379
1580
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1380
1581
|
totalSize: number;
|
|
@@ -1384,7 +1585,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1384
1585
|
};
|
|
1385
1586
|
UNSTABLE_defaultItemHeight: number;
|
|
1386
1587
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1387
|
-
orientation:
|
|
1588
|
+
orientation: "horizontal" | "vertical";
|
|
1388
1589
|
indexRef: React.MutableRefObject<number>;
|
|
1389
1590
|
nonInteractiveIds: string[];
|
|
1390
1591
|
isVirtualized: boolean;
|
|
@@ -1402,10 +1603,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1402
1603
|
}): void;
|
|
1403
1604
|
selectAll(): void;
|
|
1404
1605
|
unselectAll(): void;
|
|
1405
|
-
registerItem(data: {
|
|
1406
|
-
item: any;
|
|
1407
|
-
textValue: string;
|
|
1408
|
-
}): void;
|
|
1409
1606
|
goTo(data: {
|
|
1410
1607
|
id: string;
|
|
1411
1608
|
}): void;
|
|
@@ -1419,6 +1616,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1419
1616
|
goToLastOfRow(): void;
|
|
1420
1617
|
goToNextPage(): void;
|
|
1421
1618
|
goToPreviousPage(): void;
|
|
1619
|
+
registerItem(data: {
|
|
1620
|
+
item: any;
|
|
1621
|
+
textValue: string;
|
|
1622
|
+
}): void;
|
|
1422
1623
|
unregisterItem(data: {
|
|
1423
1624
|
id: string;
|
|
1424
1625
|
}): void;
|
|
@@ -1435,13 +1636,27 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1435
1636
|
getId: (item: any) => string;
|
|
1436
1637
|
}> & {
|
|
1437
1638
|
/**
|
|
1438
|
-
*
|
|
1439
|
-
*
|
|
1440
|
-
*
|
|
1639
|
+
* `Breadcrumbs.List` is a `Flex` component rendered as a `<ul>` element. It is a container for
|
|
1640
|
+
* `Breadcrumbs.Item` subcomponents. It also renders overflow button if `overflowButton` prop
|
|
1641
|
+
* has been passed;
|
|
1642
|
+
*
|
|
1643
|
+
* ```tsx
|
|
1644
|
+
* // without overflow
|
|
1645
|
+
* <Breadcrumbs.List>{Breadcrumbs.Items}</Breadcrumbs.List>
|
|
1646
|
+
* ```
|
|
1441
1647
|
*
|
|
1442
|
-
*
|
|
1648
|
+
* ```tsx
|
|
1649
|
+
* // with overflow
|
|
1650
|
+
* <Breadcrumbs.List overflowButton={<Breadcrumbs.OverflowButton aria-label="More links" />}>
|
|
1651
|
+
* {Breadcrumbs.Items}
|
|
1652
|
+
* </Breadcrumbs.List>
|
|
1653
|
+
* ```
|
|
1654
|
+
*
|
|
1655
|
+
* `Breadcrumbs.List` accepts a `overflowButton` prop allowing to pass specific overflow button.
|
|
1656
|
+
* Breadcrumbs.List with overflow behavior should contain `overflowButton` component with
|
|
1657
|
+
* `aria-label` to render overflow button.
|
|
1443
1658
|
*/
|
|
1444
|
-
List: import("
|
|
1659
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"ul", import("./BreadcrumbsList").BreadcrumbsListProps<any>, {
|
|
1445
1660
|
state: {
|
|
1446
1661
|
hiddenIds: string[];
|
|
1447
1662
|
nonInteractiveIds: string[];
|
|
@@ -1449,10 +1664,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1449
1664
|
itemWidthCache: Record<string, number>;
|
|
1450
1665
|
containerWidth: number;
|
|
1451
1666
|
overflowTargetWidth: number;
|
|
1452
|
-
selectedIds:
|
|
1667
|
+
selectedIds: string[] | "all";
|
|
1453
1668
|
unselectedIds: string[];
|
|
1454
1669
|
cursorId: string;
|
|
1455
1670
|
columnCount: number;
|
|
1671
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1672
|
+
cursorIndexRef: {
|
|
1673
|
+
readonly current: number;
|
|
1674
|
+
};
|
|
1456
1675
|
UNSTABLE_virtual: {
|
|
1457
1676
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1458
1677
|
totalSize: number;
|
|
@@ -1474,13 +1693,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1474
1693
|
setContainerWidth(data: {
|
|
1475
1694
|
width?: number | undefined;
|
|
1476
1695
|
}): void;
|
|
1477
|
-
/**
|
|
1478
|
-
* ### Breadcrumbs Link
|
|
1479
|
-
* ---
|
|
1480
|
-
* [View Developer Docs](https://canvas.workdaydesign.com/components/navigation/breadcrumbs/#breadcrumbslink)
|
|
1481
|
-
*
|
|
1482
|
-
* The hyperlink element in each `Breadcrumbs.Item`.
|
|
1483
|
-
*/
|
|
1484
1696
|
setOverflowTargetWidth(data: {
|
|
1485
1697
|
width: number;
|
|
1486
1698
|
}): void;
|
|
@@ -1499,10 +1711,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1499
1711
|
}): void;
|
|
1500
1712
|
selectAll(): void;
|
|
1501
1713
|
unselectAll(): void;
|
|
1502
|
-
registerItem(data: {
|
|
1503
|
-
item: any;
|
|
1504
|
-
textValue: string;
|
|
1505
|
-
}): void;
|
|
1506
1714
|
goTo(data: {
|
|
1507
1715
|
id: string;
|
|
1508
1716
|
}): void;
|
|
@@ -1516,6 +1724,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1516
1724
|
goToLastOfRow(): void;
|
|
1517
1725
|
goToNextPage(): void;
|
|
1518
1726
|
goToPreviousPage(): void;
|
|
1727
|
+
registerItem(data: {
|
|
1728
|
+
item: any;
|
|
1729
|
+
textValue: string;
|
|
1730
|
+
}): void;
|
|
1519
1731
|
unregisterItem(data: {
|
|
1520
1732
|
id: string;
|
|
1521
1733
|
}): void;
|
|
@@ -1531,11 +1743,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1531
1743
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1532
1744
|
placement: import("@popperjs/core").Placement;
|
|
1533
1745
|
id: string;
|
|
1534
|
-
visibility:
|
|
1535
|
-
selectedIds:
|
|
1746
|
+
visibility: "hidden" | "visible";
|
|
1747
|
+
selectedIds: string[] | "all";
|
|
1536
1748
|
unselectedIds: string[];
|
|
1537
1749
|
cursorId: string;
|
|
1538
1750
|
columnCount: number;
|
|
1751
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1752
|
+
cursorIndexRef: {
|
|
1753
|
+
readonly current: number;
|
|
1754
|
+
};
|
|
1539
1755
|
UNSTABLE_virtual: {
|
|
1540
1756
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1541
1757
|
totalSize: number;
|
|
@@ -1545,7 +1761,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1545
1761
|
};
|
|
1546
1762
|
UNSTABLE_defaultItemHeight: number;
|
|
1547
1763
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1548
|
-
orientation:
|
|
1764
|
+
orientation: "horizontal" | "vertical";
|
|
1549
1765
|
indexRef: React.MutableRefObject<number>;
|
|
1550
1766
|
nonInteractiveIds: string[];
|
|
1551
1767
|
isVirtualized: boolean;
|
|
@@ -1563,10 +1779,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1563
1779
|
}): void;
|
|
1564
1780
|
selectAll(): void;
|
|
1565
1781
|
unselectAll(): void;
|
|
1566
|
-
registerItem(data: {
|
|
1567
|
-
item: any;
|
|
1568
|
-
textValue: string;
|
|
1569
|
-
}): void;
|
|
1570
1782
|
goTo(data: {
|
|
1571
1783
|
id: string;
|
|
1572
1784
|
}): void;
|
|
@@ -1580,6 +1792,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1580
1792
|
goToLastOfRow(): void;
|
|
1581
1793
|
goToNextPage(): void;
|
|
1582
1794
|
goToPreviousPage(): void;
|
|
1795
|
+
registerItem(data: {
|
|
1796
|
+
item: any;
|
|
1797
|
+
textValue: string;
|
|
1798
|
+
}): void;
|
|
1583
1799
|
unregisterItem(data: {
|
|
1584
1800
|
id: string;
|
|
1585
1801
|
}): void;
|
|
@@ -1596,22 +1812,20 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1596
1812
|
getId: (item: any) => string;
|
|
1597
1813
|
}>;
|
|
1598
1814
|
/**
|
|
1599
|
-
*
|
|
1600
|
-
*
|
|
1601
|
-
*
|
|
1815
|
+
* `Breadcrumbs.Item` is a {@link Flex} component rendered as an `<li>` element. It is a
|
|
1816
|
+
* container for the `Breadcrumbs.Link` subcomponent which provides correct overflow behavior
|
|
1817
|
+
* across all items.
|
|
1602
1818
|
*
|
|
1603
|
-
* List items in
|
|
1604
|
-
*
|
|
1605
|
-
* but that can be customized with the `maxWidth` prop.
|
|
1819
|
+
* List items in {@link BreadcrumbsList Breadcrumbs.List}. By default, this item is truncated
|
|
1820
|
+
* with a tooltip at `350px`, but that can be customized with the `maxWidth` prop.
|
|
1606
1821
|
*
|
|
1607
|
-
* @example
|
|
1608
1822
|
* ```tsx
|
|
1609
1823
|
* <Breadcrumbs.Item maxWidth={200}>
|
|
1610
1824
|
* <Breadcrumbs.Link href="/docs">Docs</Breadcrumbs.Link>
|
|
1611
1825
|
* </Breadcrumbs.Item>
|
|
1612
1826
|
* ```
|
|
1613
1827
|
*/
|
|
1614
|
-
Item: import("
|
|
1828
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"li", import("./BreadcrumbsItem").BreadcrumbsItemProps, {
|
|
1615
1829
|
state: {
|
|
1616
1830
|
hiddenIds: string[];
|
|
1617
1831
|
nonInteractiveIds: string[];
|
|
@@ -1619,10 +1833,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1619
1833
|
itemWidthCache: Record<string, number>;
|
|
1620
1834
|
containerWidth: number;
|
|
1621
1835
|
overflowTargetWidth: number;
|
|
1622
|
-
selectedIds:
|
|
1836
|
+
selectedIds: string[] | "all";
|
|
1623
1837
|
unselectedIds: string[];
|
|
1624
1838
|
cursorId: string;
|
|
1625
1839
|
columnCount: number;
|
|
1840
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1841
|
+
cursorIndexRef: {
|
|
1842
|
+
readonly current: number;
|
|
1843
|
+
};
|
|
1626
1844
|
UNSTABLE_virtual: {
|
|
1627
1845
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1628
1846
|
totalSize: number;
|
|
@@ -1644,13 +1862,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1644
1862
|
setContainerWidth(data: {
|
|
1645
1863
|
width?: number | undefined;
|
|
1646
1864
|
}): void;
|
|
1647
|
-
/**
|
|
1648
|
-
* ### Breadcrumbs Link
|
|
1649
|
-
* ---
|
|
1650
|
-
* [View Developer Docs](https://canvas.workdaydesign.com/components/navigation/breadcrumbs/#breadcrumbslink)
|
|
1651
|
-
*
|
|
1652
|
-
* The hyperlink element in each `Breadcrumbs.Item`.
|
|
1653
|
-
*/
|
|
1654
1865
|
setOverflowTargetWidth(data: {
|
|
1655
1866
|
width: number;
|
|
1656
1867
|
}): void;
|
|
@@ -1669,10 +1880,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1669
1880
|
}): void;
|
|
1670
1881
|
selectAll(): void;
|
|
1671
1882
|
unselectAll(): void;
|
|
1672
|
-
registerItem(data: {
|
|
1673
|
-
item: any;
|
|
1674
|
-
textValue: string;
|
|
1675
|
-
}): void;
|
|
1676
1883
|
goTo(data: {
|
|
1677
1884
|
id: string;
|
|
1678
1885
|
}): void;
|
|
@@ -1686,6 +1893,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1686
1893
|
goToLastOfRow(): void;
|
|
1687
1894
|
goToNextPage(): void;
|
|
1688
1895
|
goToPreviousPage(): void;
|
|
1896
|
+
registerItem(data: {
|
|
1897
|
+
item: any;
|
|
1898
|
+
textValue: string;
|
|
1899
|
+
}): void;
|
|
1689
1900
|
unregisterItem(data: {
|
|
1690
1901
|
id: string;
|
|
1691
1902
|
}): void;
|
|
@@ -1701,11 +1912,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1701
1912
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1702
1913
|
placement: import("@popperjs/core").Placement;
|
|
1703
1914
|
id: string;
|
|
1704
|
-
visibility:
|
|
1705
|
-
selectedIds:
|
|
1915
|
+
visibility: "hidden" | "visible";
|
|
1916
|
+
selectedIds: string[] | "all";
|
|
1706
1917
|
unselectedIds: string[];
|
|
1707
1918
|
cursorId: string;
|
|
1708
1919
|
columnCount: number;
|
|
1920
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1921
|
+
cursorIndexRef: {
|
|
1922
|
+
readonly current: number;
|
|
1923
|
+
};
|
|
1709
1924
|
UNSTABLE_virtual: {
|
|
1710
1925
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1711
1926
|
totalSize: number;
|
|
@@ -1715,7 +1930,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1715
1930
|
};
|
|
1716
1931
|
UNSTABLE_defaultItemHeight: number;
|
|
1717
1932
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1718
|
-
orientation:
|
|
1933
|
+
orientation: "horizontal" | "vertical";
|
|
1719
1934
|
indexRef: React.MutableRefObject<number>;
|
|
1720
1935
|
nonInteractiveIds: string[];
|
|
1721
1936
|
isVirtualized: boolean;
|
|
@@ -1733,10 +1948,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1733
1948
|
}): void;
|
|
1734
1949
|
selectAll(): void;
|
|
1735
1950
|
unselectAll(): void;
|
|
1736
|
-
registerItem(data: {
|
|
1737
|
-
item: any;
|
|
1738
|
-
textValue: string;
|
|
1739
|
-
}): void;
|
|
1740
1951
|
goTo(data: {
|
|
1741
1952
|
id: string;
|
|
1742
1953
|
}): void;
|
|
@@ -1750,6 +1961,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1750
1961
|
goToLastOfRow(): void;
|
|
1751
1962
|
goToNextPage(): void;
|
|
1752
1963
|
goToPreviousPage(): void;
|
|
1964
|
+
registerItem(data: {
|
|
1965
|
+
item: any;
|
|
1966
|
+
textValue: string;
|
|
1967
|
+
}): void;
|
|
1753
1968
|
unregisterItem(data: {
|
|
1754
1969
|
id: string;
|
|
1755
1970
|
}): void;
|
|
@@ -1765,29 +1980,27 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1765
1980
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1766
1981
|
getId: (item: any) => string;
|
|
1767
1982
|
}> & {
|
|
1768
|
-
Link: import("
|
|
1983
|
+
Link: import("@workday/canvas-kit-react/common").ElementComponent<"a", import("./BreadcrumbsLink").BreadcrumbsLinkProps>;
|
|
1769
1984
|
};
|
|
1770
1985
|
/**
|
|
1771
|
-
*
|
|
1772
|
-
*
|
|
1773
|
-
*
|
|
1774
|
-
*
|
|
1775
|
-
*
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1986
|
+
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1987
|
+
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1988
|
+
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1989
|
+
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1990
|
+
* truncated
|
|
1991
|
+
*/
|
|
1992
|
+
Link: import("@workday/canvas-kit-react/common").ElementComponent<"a", import("./BreadcrumbsLink").BreadcrumbsLinkProps>;
|
|
1993
|
+
/**
|
|
1994
|
+
* The last element in the list of `Breadcrumbs.Item`s. By default, this item is truncated with
|
|
1995
|
+
* a tooltip at `350px`, But that can be customized with the `maxWidth` prop.
|
|
1779
1996
|
*
|
|
1780
|
-
* @example
|
|
1781
1997
|
* ```tsx
|
|
1782
|
-
* <Breadcrumbs.
|
|
1783
|
-
*
|
|
1784
|
-
*
|
|
1785
|
-
* onClick={handleOverflowButtonClick}
|
|
1786
|
-
* }}
|
|
1787
|
-
* >
|
|
1998
|
+
* <Breadcrumbs.CurrentItem maxWidth={200}>
|
|
1999
|
+
* Current Item Text
|
|
2000
|
+
* </Breadcrumbs.CurrentItem>
|
|
1788
2001
|
* ```
|
|
1789
2002
|
*/
|
|
1790
|
-
|
|
2003
|
+
CurrentItem: import("@workday/canvas-kit-react/common").ElementComponentM<"li", import("./BreadcrumbsCurrentItem").BreadcrumbsCurrentItemProps, {
|
|
1791
2004
|
state: {
|
|
1792
2005
|
hiddenIds: string[];
|
|
1793
2006
|
nonInteractiveIds: string[];
|
|
@@ -1795,10 +2008,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1795
2008
|
itemWidthCache: Record<string, number>;
|
|
1796
2009
|
containerWidth: number;
|
|
1797
2010
|
overflowTargetWidth: number;
|
|
1798
|
-
selectedIds:
|
|
2011
|
+
selectedIds: string[] | "all";
|
|
1799
2012
|
unselectedIds: string[];
|
|
1800
2013
|
cursorId: string;
|
|
1801
2014
|
columnCount: number;
|
|
2015
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2016
|
+
cursorIndexRef: {
|
|
2017
|
+
readonly current: number;
|
|
2018
|
+
};
|
|
1802
2019
|
UNSTABLE_virtual: {
|
|
1803
2020
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1804
2021
|
totalSize: number;
|
|
@@ -1820,13 +2037,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1820
2037
|
setContainerWidth(data: {
|
|
1821
2038
|
width?: number | undefined;
|
|
1822
2039
|
}): void;
|
|
1823
|
-
/**
|
|
1824
|
-
* ### Breadcrumbs Link
|
|
1825
|
-
* ---
|
|
1826
|
-
* [View Developer Docs](https://canvas.workdaydesign.com/components/navigation/breadcrumbs/#breadcrumbslink)
|
|
1827
|
-
*
|
|
1828
|
-
* The hyperlink element in each `Breadcrumbs.Item`.
|
|
1829
|
-
*/
|
|
1830
2040
|
setOverflowTargetWidth(data: {
|
|
1831
2041
|
width: number;
|
|
1832
2042
|
}): void;
|
|
@@ -1845,10 +2055,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1845
2055
|
}): void;
|
|
1846
2056
|
selectAll(): void;
|
|
1847
2057
|
unselectAll(): void;
|
|
1848
|
-
registerItem(data: {
|
|
1849
|
-
item: any;
|
|
1850
|
-
textValue: string;
|
|
1851
|
-
}): void;
|
|
1852
2058
|
goTo(data: {
|
|
1853
2059
|
id: string;
|
|
1854
2060
|
}): void;
|
|
@@ -1862,6 +2068,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1862
2068
|
goToLastOfRow(): void;
|
|
1863
2069
|
goToNextPage(): void;
|
|
1864
2070
|
goToPreviousPage(): void;
|
|
2071
|
+
registerItem(data: {
|
|
2072
|
+
item: any;
|
|
2073
|
+
textValue: string;
|
|
2074
|
+
}): void;
|
|
1865
2075
|
unregisterItem(data: {
|
|
1866
2076
|
id: string;
|
|
1867
2077
|
}): void;
|
|
@@ -1877,11 +2087,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1877
2087
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1878
2088
|
placement: import("@popperjs/core").Placement;
|
|
1879
2089
|
id: string;
|
|
1880
|
-
visibility:
|
|
1881
|
-
selectedIds:
|
|
2090
|
+
visibility: "hidden" | "visible";
|
|
2091
|
+
selectedIds: string[] | "all";
|
|
1882
2092
|
unselectedIds: string[];
|
|
1883
2093
|
cursorId: string;
|
|
1884
2094
|
columnCount: number;
|
|
2095
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2096
|
+
cursorIndexRef: {
|
|
2097
|
+
readonly current: number;
|
|
2098
|
+
};
|
|
1885
2099
|
UNSTABLE_virtual: {
|
|
1886
2100
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1887
2101
|
totalSize: number;
|
|
@@ -1891,7 +2105,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1891
2105
|
};
|
|
1892
2106
|
UNSTABLE_defaultItemHeight: number;
|
|
1893
2107
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1894
|
-
orientation:
|
|
2108
|
+
orientation: "horizontal" | "vertical";
|
|
1895
2109
|
indexRef: React.MutableRefObject<number>;
|
|
1896
2110
|
nonInteractiveIds: string[];
|
|
1897
2111
|
isVirtualized: boolean;
|
|
@@ -1909,10 +2123,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1909
2123
|
}): void;
|
|
1910
2124
|
selectAll(): void;
|
|
1911
2125
|
unselectAll(): void;
|
|
1912
|
-
registerItem(data: {
|
|
1913
|
-
item: any;
|
|
1914
|
-
textValue: string;
|
|
1915
|
-
}): void;
|
|
1916
2126
|
goTo(data: {
|
|
1917
2127
|
id: string;
|
|
1918
2128
|
}): void;
|
|
@@ -1926,6 +2136,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1926
2136
|
goToLastOfRow(): void;
|
|
1927
2137
|
goToNextPage(): void;
|
|
1928
2138
|
goToPreviousPage(): void;
|
|
2139
|
+
registerItem(data: {
|
|
2140
|
+
item: any;
|
|
2141
|
+
textValue: string;
|
|
2142
|
+
}): void;
|
|
1929
2143
|
unregisterItem(data: {
|
|
1930
2144
|
id: string;
|
|
1931
2145
|
}): void;
|
|
@@ -1942,22 +2156,22 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1942
2156
|
getId: (item: any) => string;
|
|
1943
2157
|
}>;
|
|
1944
2158
|
/**
|
|
1945
|
-
*
|
|
1946
|
-
*
|
|
1947
|
-
*
|
|
1948
|
-
*
|
|
1949
|
-
*
|
|
1950
|
-
* By default, this item is truncated with a tooltip at `350px`,
|
|
1951
|
-
* But that can be customized with the `maxWidth` prop.
|
|
2159
|
+
* The toggle button for the Breadcrumbs Menu. This button is rendered in the
|
|
2160
|
+
* {@link BreadcrumbsList Breadcrumbs.List} when `overflowButtonProps` passed and becomes
|
|
2161
|
+
* visible when the list overflows. `overflowButtonProps must contain at least `aria-label`. If
|
|
2162
|
+
* you need to pass other props to it, you can do so by adding it to `overflowButtonProps`
|
|
2163
|
+
* passed to the List.
|
|
1952
2164
|
*
|
|
1953
|
-
* @example
|
|
1954
2165
|
* ```tsx
|
|
1955
|
-
* <Breadcrumbs.
|
|
1956
|
-
*
|
|
1957
|
-
*
|
|
2166
|
+
* <Breadcrumbs.List
|
|
2167
|
+
* overflowButtonProps={{
|
|
2168
|
+
* 'aria-label': 'More links',
|
|
2169
|
+
* onClick={handleOverflowButtonClick}
|
|
2170
|
+
* }}
|
|
2171
|
+
* >
|
|
1958
2172
|
* ```
|
|
1959
2173
|
*/
|
|
1960
|
-
|
|
2174
|
+
OverflowButton: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("./BreadcrumbsOverflowButton").BreadcrumbsOverflowButtonProps, {
|
|
1961
2175
|
state: {
|
|
1962
2176
|
hiddenIds: string[];
|
|
1963
2177
|
nonInteractiveIds: string[];
|
|
@@ -1965,10 +2179,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1965
2179
|
itemWidthCache: Record<string, number>;
|
|
1966
2180
|
containerWidth: number;
|
|
1967
2181
|
overflowTargetWidth: number;
|
|
1968
|
-
selectedIds:
|
|
2182
|
+
selectedIds: string[] | "all";
|
|
1969
2183
|
unselectedIds: string[];
|
|
1970
2184
|
cursorId: string;
|
|
1971
2185
|
columnCount: number;
|
|
2186
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2187
|
+
cursorIndexRef: {
|
|
2188
|
+
readonly current: number;
|
|
2189
|
+
};
|
|
1972
2190
|
UNSTABLE_virtual: {
|
|
1973
2191
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1974
2192
|
totalSize: number;
|
|
@@ -1990,13 +2208,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1990
2208
|
setContainerWidth(data: {
|
|
1991
2209
|
width?: number | undefined;
|
|
1992
2210
|
}): void;
|
|
1993
|
-
/**
|
|
1994
|
-
* ### Breadcrumbs Link
|
|
1995
|
-
* ---
|
|
1996
|
-
* [View Developer Docs](https://canvas.workdaydesign.com/components/navigation/breadcrumbs/#breadcrumbslink)
|
|
1997
|
-
*
|
|
1998
|
-
* The hyperlink element in each `Breadcrumbs.Item`.
|
|
1999
|
-
*/
|
|
2000
2211
|
setOverflowTargetWidth(data: {
|
|
2001
2212
|
width: number;
|
|
2002
2213
|
}): void;
|
|
@@ -2015,10 +2226,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2015
2226
|
}): void;
|
|
2016
2227
|
selectAll(): void;
|
|
2017
2228
|
unselectAll(): void;
|
|
2018
|
-
registerItem(data: {
|
|
2019
|
-
item: any;
|
|
2020
|
-
textValue: string;
|
|
2021
|
-
}): void;
|
|
2022
2229
|
goTo(data: {
|
|
2023
2230
|
id: string;
|
|
2024
2231
|
}): void;
|
|
@@ -2032,6 +2239,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2032
2239
|
goToLastOfRow(): void;
|
|
2033
2240
|
goToNextPage(): void;
|
|
2034
2241
|
goToPreviousPage(): void;
|
|
2242
|
+
registerItem(data: {
|
|
2243
|
+
item: any;
|
|
2244
|
+
textValue: string;
|
|
2245
|
+
}): void;
|
|
2035
2246
|
unregisterItem(data: {
|
|
2036
2247
|
id: string;
|
|
2037
2248
|
}): void;
|
|
@@ -2047,11 +2258,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2047
2258
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2048
2259
|
placement: import("@popperjs/core").Placement;
|
|
2049
2260
|
id: string;
|
|
2050
|
-
visibility:
|
|
2051
|
-
selectedIds:
|
|
2261
|
+
visibility: "hidden" | "visible";
|
|
2262
|
+
selectedIds: string[] | "all";
|
|
2052
2263
|
unselectedIds: string[];
|
|
2053
2264
|
cursorId: string;
|
|
2054
2265
|
columnCount: number;
|
|
2266
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2267
|
+
cursorIndexRef: {
|
|
2268
|
+
readonly current: number;
|
|
2269
|
+
};
|
|
2055
2270
|
UNSTABLE_virtual: {
|
|
2056
2271
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2057
2272
|
totalSize: number;
|
|
@@ -2061,7 +2276,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2061
2276
|
};
|
|
2062
2277
|
UNSTABLE_defaultItemHeight: number;
|
|
2063
2278
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2064
|
-
orientation:
|
|
2279
|
+
orientation: "horizontal" | "vertical";
|
|
2065
2280
|
indexRef: React.MutableRefObject<number>;
|
|
2066
2281
|
nonInteractiveIds: string[];
|
|
2067
2282
|
isVirtualized: boolean;
|
|
@@ -2079,10 +2294,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2079
2294
|
}): void;
|
|
2080
2295
|
selectAll(): void;
|
|
2081
2296
|
unselectAll(): void;
|
|
2082
|
-
registerItem(data: {
|
|
2083
|
-
item: any;
|
|
2084
|
-
textValue: string;
|
|
2085
|
-
}): void;
|
|
2086
2297
|
goTo(data: {
|
|
2087
2298
|
id: string;
|
|
2088
2299
|
}): void;
|
|
@@ -2096,6 +2307,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2096
2307
|
goToLastOfRow(): void;
|
|
2097
2308
|
goToNextPage(): void;
|
|
2098
2309
|
goToPreviousPage(): void;
|
|
2310
|
+
registerItem(data: {
|
|
2311
|
+
item: any;
|
|
2312
|
+
textValue: string;
|
|
2313
|
+
}): void;
|
|
2099
2314
|
unregisterItem(data: {
|
|
2100
2315
|
id: string;
|
|
2101
2316
|
}): void;
|
|
@@ -2112,21 +2327,11 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2112
2327
|
getId: (item: any) => string;
|
|
2113
2328
|
}>;
|
|
2114
2329
|
/**
|
|
2115
|
-
*
|
|
2116
|
-
*
|
|
2117
|
-
*
|
|
2330
|
+
* The `Breadcrumbs.Menu` uses the {@link Menu} component under the hood. The overflow menu for
|
|
2331
|
+
* Breadcrumbs. If there isn't enough room to render all links, it will automatically overflow
|
|
2332
|
+
* items into this menu.
|
|
2118
2333
|
*
|
|
2119
|
-
*
|
|
2120
|
-
*/
|
|
2121
|
-
Link: import("../../common").ElementComponent<"a", import("./BreadcrumbsLink").BreadcrumbsLinkProps>;
|
|
2122
|
-
/**
|
|
2123
|
-
* ### Breadcrumbs Menu
|
|
2124
|
-
* ---
|
|
2125
|
-
* [View Developer Docs](https://canvas.workdaydesign.com/components/navigation/breadcrumbs/#breadcrumbsmenu)
|
|
2126
|
-
*
|
|
2127
|
-
* The overflow menu for Breadcrumbs. If there isn't enough room to render all links,
|
|
2128
|
-
* it will automatically overflow items into this menu.
|
|
2129
|
-
* @example
|
|
2334
|
+
* ```tsx
|
|
2130
2335
|
* <Breadcrumbs.Menu.Popper>
|
|
2131
2336
|
* <Breadcrumbs.Menu.Card>
|
|
2132
2337
|
* <Breadcrumbs.Menu.List>
|
|
@@ -2134,9 +2339,11 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2134
2339
|
* </Breadcrumbs.Menu.List>
|
|
2135
2340
|
* </Breadcrumbs.Menu.Card>
|
|
2136
2341
|
* </Breadcrumbs.Menu.Popper>
|
|
2342
|
+
* ```
|
|
2137
2343
|
*/
|
|
2138
|
-
Menu: import("
|
|
2344
|
+
Menu: import("@workday/canvas-kit-react/common").ComponentM<import("../../menu/lib/Menu").MenuProps & Partial<{
|
|
2139
2345
|
mode: "multiple" | "single";
|
|
2346
|
+
shouldVirtualize: boolean;
|
|
2140
2347
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2141
2348
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2142
2349
|
id: string;
|
|
@@ -2147,12 +2354,12 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2147
2354
|
initialCursorId: string;
|
|
2148
2355
|
columnCount: number;
|
|
2149
2356
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2357
|
+
pageSize: number;
|
|
2150
2358
|
getId: (item: any) => string;
|
|
2151
2359
|
getTextValue: (item: any) => string;
|
|
2152
2360
|
nonInteractiveIds: string[];
|
|
2153
2361
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2154
2362
|
defaultItemHeight: number;
|
|
2155
|
-
shouldVirtualize: boolean;
|
|
2156
2363
|
items: any[];
|
|
2157
2364
|
}> & {
|
|
2158
2365
|
onUpdatePlacement?: ((data: {
|
|
@@ -2164,11 +2371,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2164
2371
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2165
2372
|
placement: import("@popperjs/core").Placement;
|
|
2166
2373
|
id: string;
|
|
2167
|
-
visibility:
|
|
2168
|
-
selectedIds:
|
|
2374
|
+
visibility: "hidden" | "visible";
|
|
2375
|
+
selectedIds: string[] | "all";
|
|
2169
2376
|
unselectedIds: string[];
|
|
2170
2377
|
cursorId: string;
|
|
2171
2378
|
columnCount: number;
|
|
2379
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2380
|
+
cursorIndexRef: {
|
|
2381
|
+
readonly current: number;
|
|
2382
|
+
};
|
|
2172
2383
|
UNSTABLE_virtual: {
|
|
2173
2384
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2174
2385
|
totalSize: number;
|
|
@@ -2178,7 +2389,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2178
2389
|
};
|
|
2179
2390
|
UNSTABLE_defaultItemHeight: number;
|
|
2180
2391
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2181
|
-
orientation:
|
|
2392
|
+
orientation: "horizontal" | "vertical";
|
|
2182
2393
|
indexRef: React.MutableRefObject<number>;
|
|
2183
2394
|
nonInteractiveIds: string[];
|
|
2184
2395
|
isVirtualized: boolean;
|
|
@@ -2192,11 +2403,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2192
2403
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2193
2404
|
placement: import("@popperjs/core").Placement;
|
|
2194
2405
|
id: string;
|
|
2195
|
-
visibility:
|
|
2196
|
-
selectedIds:
|
|
2406
|
+
visibility: "hidden" | "visible";
|
|
2407
|
+
selectedIds: string[] | "all";
|
|
2197
2408
|
unselectedIds: string[];
|
|
2198
2409
|
cursorId: string;
|
|
2199
2410
|
columnCount: number;
|
|
2411
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2412
|
+
cursorIndexRef: {
|
|
2413
|
+
readonly current: number;
|
|
2414
|
+
};
|
|
2200
2415
|
UNSTABLE_virtual: {
|
|
2201
2416
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2202
2417
|
totalSize: number;
|
|
@@ -2206,7 +2421,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2206
2421
|
};
|
|
2207
2422
|
UNSTABLE_defaultItemHeight: number;
|
|
2208
2423
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2209
|
-
orientation:
|
|
2424
|
+
orientation: "horizontal" | "vertical";
|
|
2210
2425
|
indexRef: React.MutableRefObject<number>;
|
|
2211
2426
|
nonInteractiveIds: string[];
|
|
2212
2427
|
isVirtualized: boolean;
|
|
@@ -2220,11 +2435,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2220
2435
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2221
2436
|
placement: import("@popperjs/core").Placement;
|
|
2222
2437
|
id: string;
|
|
2223
|
-
visibility:
|
|
2224
|
-
selectedIds:
|
|
2438
|
+
visibility: "hidden" | "visible";
|
|
2439
|
+
selectedIds: string[] | "all";
|
|
2225
2440
|
unselectedIds: string[];
|
|
2226
2441
|
cursorId: string;
|
|
2227
2442
|
columnCount: number;
|
|
2443
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2444
|
+
cursorIndexRef: {
|
|
2445
|
+
readonly current: number;
|
|
2446
|
+
};
|
|
2228
2447
|
UNSTABLE_virtual: {
|
|
2229
2448
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2230
2449
|
totalSize: number;
|
|
@@ -2234,7 +2453,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2234
2453
|
};
|
|
2235
2454
|
UNSTABLE_defaultItemHeight: number;
|
|
2236
2455
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2237
|
-
orientation:
|
|
2456
|
+
orientation: "horizontal" | "vertical";
|
|
2238
2457
|
indexRef: React.MutableRefObject<number>;
|
|
2239
2458
|
nonInteractiveIds: string[];
|
|
2240
2459
|
isVirtualized: boolean;
|
|
@@ -2250,11 +2469,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2250
2469
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2251
2470
|
placement: import("@popperjs/core").Placement;
|
|
2252
2471
|
id: string;
|
|
2253
|
-
visibility:
|
|
2254
|
-
selectedIds:
|
|
2472
|
+
visibility: "hidden" | "visible";
|
|
2473
|
+
selectedIds: string[] | "all";
|
|
2255
2474
|
unselectedIds: string[];
|
|
2256
2475
|
cursorId: string;
|
|
2257
2476
|
columnCount: number;
|
|
2477
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2478
|
+
cursorIndexRef: {
|
|
2479
|
+
readonly current: number;
|
|
2480
|
+
};
|
|
2258
2481
|
UNSTABLE_virtual: {
|
|
2259
2482
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2260
2483
|
totalSize: number;
|
|
@@ -2264,7 +2487,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2264
2487
|
};
|
|
2265
2488
|
UNSTABLE_defaultItemHeight: number;
|
|
2266
2489
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2267
|
-
orientation:
|
|
2490
|
+
orientation: "horizontal" | "vertical";
|
|
2268
2491
|
indexRef: React.MutableRefObject<number>;
|
|
2269
2492
|
nonInteractiveIds: string[];
|
|
2270
2493
|
isVirtualized: boolean;
|
|
@@ -2278,11 +2501,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2278
2501
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2279
2502
|
placement: import("@popperjs/core").Placement;
|
|
2280
2503
|
id: string;
|
|
2281
|
-
visibility:
|
|
2282
|
-
selectedIds:
|
|
2504
|
+
visibility: "hidden" | "visible";
|
|
2505
|
+
selectedIds: string[] | "all";
|
|
2283
2506
|
unselectedIds: string[];
|
|
2284
2507
|
cursorId: string;
|
|
2285
2508
|
columnCount: number;
|
|
2509
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2510
|
+
cursorIndexRef: {
|
|
2511
|
+
readonly current: number;
|
|
2512
|
+
};
|
|
2286
2513
|
UNSTABLE_virtual: {
|
|
2287
2514
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2288
2515
|
totalSize: number;
|
|
@@ -2292,7 +2519,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2292
2519
|
};
|
|
2293
2520
|
UNSTABLE_defaultItemHeight: number;
|
|
2294
2521
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2295
|
-
orientation:
|
|
2522
|
+
orientation: "horizontal" | "vertical";
|
|
2296
2523
|
indexRef: React.MutableRefObject<number>;
|
|
2297
2524
|
nonInteractiveIds: string[];
|
|
2298
2525
|
isVirtualized: boolean;
|
|
@@ -2306,11 +2533,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2306
2533
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2307
2534
|
placement: import("@popperjs/core").Placement;
|
|
2308
2535
|
id: string;
|
|
2309
|
-
visibility:
|
|
2310
|
-
selectedIds:
|
|
2536
|
+
visibility: "hidden" | "visible";
|
|
2537
|
+
selectedIds: string[] | "all";
|
|
2311
2538
|
unselectedIds: string[];
|
|
2312
2539
|
cursorId: string;
|
|
2313
2540
|
columnCount: number;
|
|
2541
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2542
|
+
cursorIndexRef: {
|
|
2543
|
+
readonly current: number;
|
|
2544
|
+
};
|
|
2314
2545
|
UNSTABLE_virtual: {
|
|
2315
2546
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2316
2547
|
totalSize: number;
|
|
@@ -2320,16 +2551,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2320
2551
|
};
|
|
2321
2552
|
UNSTABLE_defaultItemHeight: number;
|
|
2322
2553
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2323
|
-
orientation:
|
|
2554
|
+
orientation: "horizontal" | "vertical";
|
|
2324
2555
|
indexRef: React.MutableRefObject<number>;
|
|
2325
2556
|
nonInteractiveIds: string[];
|
|
2326
2557
|
isVirtualized: boolean;
|
|
2327
2558
|
items: import("../..").Item<any>[];
|
|
2328
2559
|
mode: "multiple" | "single";
|
|
2329
2560
|
}) => void) | undefined;
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
textValue: string;
|
|
2561
|
+
onGoTo?: ((data: {
|
|
2562
|
+
id: string;
|
|
2333
2563
|
}, prevState: {
|
|
2334
2564
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2335
2565
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -2337,11 +2567,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2337
2567
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2338
2568
|
placement: import("@popperjs/core").Placement;
|
|
2339
2569
|
id: string;
|
|
2340
|
-
visibility:
|
|
2341
|
-
selectedIds:
|
|
2570
|
+
visibility: "hidden" | "visible";
|
|
2571
|
+
selectedIds: string[] | "all";
|
|
2342
2572
|
unselectedIds: string[];
|
|
2343
2573
|
cursorId: string;
|
|
2344
2574
|
columnCount: number;
|
|
2575
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2576
|
+
cursorIndexRef: {
|
|
2577
|
+
readonly current: number;
|
|
2578
|
+
};
|
|
2345
2579
|
UNSTABLE_virtual: {
|
|
2346
2580
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2347
2581
|
totalSize: number;
|
|
@@ -2351,27 +2585,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2351
2585
|
};
|
|
2352
2586
|
UNSTABLE_defaultItemHeight: number;
|
|
2353
2587
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2354
|
-
orientation:
|
|
2588
|
+
orientation: "horizontal" | "vertical";
|
|
2355
2589
|
indexRef: React.MutableRefObject<number>;
|
|
2356
2590
|
nonInteractiveIds: string[];
|
|
2357
2591
|
isVirtualized: boolean;
|
|
2358
2592
|
items: import("../..").Item<any>[];
|
|
2359
2593
|
mode: "multiple" | "single";
|
|
2360
2594
|
}) => void) | undefined;
|
|
2361
|
-
|
|
2362
|
-
id: string;
|
|
2363
|
-
}, prevState: {
|
|
2595
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
2364
2596
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2365
2597
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2366
2598
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2367
2599
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2368
2600
|
placement: import("@popperjs/core").Placement;
|
|
2369
2601
|
id: string;
|
|
2370
|
-
visibility:
|
|
2371
|
-
selectedIds:
|
|
2602
|
+
visibility: "hidden" | "visible";
|
|
2603
|
+
selectedIds: string[] | "all";
|
|
2372
2604
|
unselectedIds: string[];
|
|
2373
2605
|
cursorId: string;
|
|
2374
2606
|
columnCount: number;
|
|
2607
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2608
|
+
cursorIndexRef: {
|
|
2609
|
+
readonly current: number;
|
|
2610
|
+
};
|
|
2375
2611
|
UNSTABLE_virtual: {
|
|
2376
2612
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2377
2613
|
totalSize: number;
|
|
@@ -2381,25 +2617,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2381
2617
|
};
|
|
2382
2618
|
UNSTABLE_defaultItemHeight: number;
|
|
2383
2619
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2384
|
-
orientation:
|
|
2620
|
+
orientation: "horizontal" | "vertical";
|
|
2385
2621
|
indexRef: React.MutableRefObject<number>;
|
|
2386
2622
|
nonInteractiveIds: string[];
|
|
2387
2623
|
isVirtualized: boolean;
|
|
2388
2624
|
items: import("../..").Item<any>[];
|
|
2389
2625
|
mode: "multiple" | "single";
|
|
2390
2626
|
}) => void) | undefined;
|
|
2391
|
-
|
|
2627
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
2392
2628
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2393
2629
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2394
2630
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2395
2631
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2396
2632
|
placement: import("@popperjs/core").Placement;
|
|
2397
2633
|
id: string;
|
|
2398
|
-
visibility:
|
|
2399
|
-
selectedIds:
|
|
2634
|
+
visibility: "hidden" | "visible";
|
|
2635
|
+
selectedIds: string[] | "all";
|
|
2400
2636
|
unselectedIds: string[];
|
|
2401
2637
|
cursorId: string;
|
|
2402
2638
|
columnCount: number;
|
|
2639
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2640
|
+
cursorIndexRef: {
|
|
2641
|
+
readonly current: number;
|
|
2642
|
+
};
|
|
2403
2643
|
UNSTABLE_virtual: {
|
|
2404
2644
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2405
2645
|
totalSize: number;
|
|
@@ -2409,25 +2649,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2409
2649
|
};
|
|
2410
2650
|
UNSTABLE_defaultItemHeight: number;
|
|
2411
2651
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2412
|
-
orientation:
|
|
2652
|
+
orientation: "horizontal" | "vertical";
|
|
2413
2653
|
indexRef: React.MutableRefObject<number>;
|
|
2414
2654
|
nonInteractiveIds: string[];
|
|
2415
2655
|
isVirtualized: boolean;
|
|
2416
2656
|
items: import("../..").Item<any>[];
|
|
2417
2657
|
mode: "multiple" | "single";
|
|
2418
2658
|
}) => void) | undefined;
|
|
2419
|
-
|
|
2659
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
2420
2660
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2421
2661
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2422
2662
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2423
2663
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2424
2664
|
placement: import("@popperjs/core").Placement;
|
|
2425
2665
|
id: string;
|
|
2426
|
-
visibility:
|
|
2427
|
-
selectedIds:
|
|
2666
|
+
visibility: "hidden" | "visible";
|
|
2667
|
+
selectedIds: string[] | "all";
|
|
2428
2668
|
unselectedIds: string[];
|
|
2429
2669
|
cursorId: string;
|
|
2430
2670
|
columnCount: number;
|
|
2671
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2672
|
+
cursorIndexRef: {
|
|
2673
|
+
readonly current: number;
|
|
2674
|
+
};
|
|
2431
2675
|
UNSTABLE_virtual: {
|
|
2432
2676
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2433
2677
|
totalSize: number;
|
|
@@ -2437,25 +2681,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2437
2681
|
};
|
|
2438
2682
|
UNSTABLE_defaultItemHeight: number;
|
|
2439
2683
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2440
|
-
orientation:
|
|
2684
|
+
orientation: "horizontal" | "vertical";
|
|
2441
2685
|
indexRef: React.MutableRefObject<number>;
|
|
2442
2686
|
nonInteractiveIds: string[];
|
|
2443
2687
|
isVirtualized: boolean;
|
|
2444
2688
|
items: import("../..").Item<any>[];
|
|
2445
2689
|
mode: "multiple" | "single";
|
|
2446
2690
|
}) => void) | undefined;
|
|
2447
|
-
|
|
2691
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
2448
2692
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2449
2693
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2450
2694
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2451
2695
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2452
2696
|
placement: import("@popperjs/core").Placement;
|
|
2453
2697
|
id: string;
|
|
2454
|
-
visibility:
|
|
2455
|
-
selectedIds:
|
|
2698
|
+
visibility: "hidden" | "visible";
|
|
2699
|
+
selectedIds: string[] | "all";
|
|
2456
2700
|
unselectedIds: string[];
|
|
2457
2701
|
cursorId: string;
|
|
2458
2702
|
columnCount: number;
|
|
2703
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2704
|
+
cursorIndexRef: {
|
|
2705
|
+
readonly current: number;
|
|
2706
|
+
};
|
|
2459
2707
|
UNSTABLE_virtual: {
|
|
2460
2708
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2461
2709
|
totalSize: number;
|
|
@@ -2465,25 +2713,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2465
2713
|
};
|
|
2466
2714
|
UNSTABLE_defaultItemHeight: number;
|
|
2467
2715
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2468
|
-
orientation:
|
|
2716
|
+
orientation: "horizontal" | "vertical";
|
|
2469
2717
|
indexRef: React.MutableRefObject<number>;
|
|
2470
2718
|
nonInteractiveIds: string[];
|
|
2471
2719
|
isVirtualized: boolean;
|
|
2472
2720
|
items: import("../..").Item<any>[];
|
|
2473
2721
|
mode: "multiple" | "single";
|
|
2474
2722
|
}) => void) | undefined;
|
|
2475
|
-
|
|
2723
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
2476
2724
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2477
2725
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2478
2726
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2479
2727
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2480
2728
|
placement: import("@popperjs/core").Placement;
|
|
2481
2729
|
id: string;
|
|
2482
|
-
visibility:
|
|
2483
|
-
selectedIds:
|
|
2730
|
+
visibility: "hidden" | "visible";
|
|
2731
|
+
selectedIds: string[] | "all";
|
|
2484
2732
|
unselectedIds: string[];
|
|
2485
2733
|
cursorId: string;
|
|
2486
2734
|
columnCount: number;
|
|
2735
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2736
|
+
cursorIndexRef: {
|
|
2737
|
+
readonly current: number;
|
|
2738
|
+
};
|
|
2487
2739
|
UNSTABLE_virtual: {
|
|
2488
2740
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2489
2741
|
totalSize: number;
|
|
@@ -2493,25 +2745,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2493
2745
|
};
|
|
2494
2746
|
UNSTABLE_defaultItemHeight: number;
|
|
2495
2747
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2496
|
-
orientation:
|
|
2748
|
+
orientation: "horizontal" | "vertical";
|
|
2497
2749
|
indexRef: React.MutableRefObject<number>;
|
|
2498
2750
|
nonInteractiveIds: string[];
|
|
2499
2751
|
isVirtualized: boolean;
|
|
2500
2752
|
items: import("../..").Item<any>[];
|
|
2501
2753
|
mode: "multiple" | "single";
|
|
2502
2754
|
}) => void) | undefined;
|
|
2503
|
-
|
|
2755
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
2504
2756
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2505
2757
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2506
2758
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2507
2759
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2508
2760
|
placement: import("@popperjs/core").Placement;
|
|
2509
2761
|
id: string;
|
|
2510
|
-
visibility:
|
|
2511
|
-
selectedIds:
|
|
2762
|
+
visibility: "hidden" | "visible";
|
|
2763
|
+
selectedIds: string[] | "all";
|
|
2512
2764
|
unselectedIds: string[];
|
|
2513
2765
|
cursorId: string;
|
|
2514
2766
|
columnCount: number;
|
|
2767
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2768
|
+
cursorIndexRef: {
|
|
2769
|
+
readonly current: number;
|
|
2770
|
+
};
|
|
2515
2771
|
UNSTABLE_virtual: {
|
|
2516
2772
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2517
2773
|
totalSize: number;
|
|
@@ -2521,25 +2777,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2521
2777
|
};
|
|
2522
2778
|
UNSTABLE_defaultItemHeight: number;
|
|
2523
2779
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2524
|
-
orientation:
|
|
2780
|
+
orientation: "horizontal" | "vertical";
|
|
2525
2781
|
indexRef: React.MutableRefObject<number>;
|
|
2526
2782
|
nonInteractiveIds: string[];
|
|
2527
2783
|
isVirtualized: boolean;
|
|
2528
2784
|
items: import("../..").Item<any>[];
|
|
2529
2785
|
mode: "multiple" | "single";
|
|
2530
2786
|
}) => void) | undefined;
|
|
2531
|
-
|
|
2787
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
2532
2788
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2533
2789
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2534
2790
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2535
2791
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2536
2792
|
placement: import("@popperjs/core").Placement;
|
|
2537
2793
|
id: string;
|
|
2538
|
-
visibility:
|
|
2539
|
-
selectedIds:
|
|
2794
|
+
visibility: "hidden" | "visible";
|
|
2795
|
+
selectedIds: string[] | "all";
|
|
2540
2796
|
unselectedIds: string[];
|
|
2541
2797
|
cursorId: string;
|
|
2542
2798
|
columnCount: number;
|
|
2799
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2800
|
+
cursorIndexRef: {
|
|
2801
|
+
readonly current: number;
|
|
2802
|
+
};
|
|
2543
2803
|
UNSTABLE_virtual: {
|
|
2544
2804
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2545
2805
|
totalSize: number;
|
|
@@ -2549,25 +2809,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2549
2809
|
};
|
|
2550
2810
|
UNSTABLE_defaultItemHeight: number;
|
|
2551
2811
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2552
|
-
orientation:
|
|
2812
|
+
orientation: "horizontal" | "vertical";
|
|
2553
2813
|
indexRef: React.MutableRefObject<number>;
|
|
2554
2814
|
nonInteractiveIds: string[];
|
|
2555
2815
|
isVirtualized: boolean;
|
|
2556
2816
|
items: import("../..").Item<any>[];
|
|
2557
2817
|
mode: "multiple" | "single";
|
|
2558
2818
|
}) => void) | undefined;
|
|
2559
|
-
|
|
2819
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
2560
2820
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2561
2821
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2562
2822
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2563
2823
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2564
2824
|
placement: import("@popperjs/core").Placement;
|
|
2565
2825
|
id: string;
|
|
2566
|
-
visibility:
|
|
2567
|
-
selectedIds:
|
|
2826
|
+
visibility: "hidden" | "visible";
|
|
2827
|
+
selectedIds: string[] | "all";
|
|
2568
2828
|
unselectedIds: string[];
|
|
2569
2829
|
cursorId: string;
|
|
2570
2830
|
columnCount: number;
|
|
2831
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2832
|
+
cursorIndexRef: {
|
|
2833
|
+
readonly current: number;
|
|
2834
|
+
};
|
|
2571
2835
|
UNSTABLE_virtual: {
|
|
2572
2836
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2573
2837
|
totalSize: number;
|
|
@@ -2577,25 +2841,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2577
2841
|
};
|
|
2578
2842
|
UNSTABLE_defaultItemHeight: number;
|
|
2579
2843
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2580
|
-
orientation:
|
|
2844
|
+
orientation: "horizontal" | "vertical";
|
|
2581
2845
|
indexRef: React.MutableRefObject<number>;
|
|
2582
2846
|
nonInteractiveIds: string[];
|
|
2583
2847
|
isVirtualized: boolean;
|
|
2584
2848
|
items: import("../..").Item<any>[];
|
|
2585
2849
|
mode: "multiple" | "single";
|
|
2586
2850
|
}) => void) | undefined;
|
|
2587
|
-
|
|
2851
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
2588
2852
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2589
2853
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2590
2854
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2591
2855
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2592
2856
|
placement: import("@popperjs/core").Placement;
|
|
2593
2857
|
id: string;
|
|
2594
|
-
visibility:
|
|
2595
|
-
selectedIds:
|
|
2858
|
+
visibility: "hidden" | "visible";
|
|
2859
|
+
selectedIds: string[] | "all";
|
|
2596
2860
|
unselectedIds: string[];
|
|
2597
2861
|
cursorId: string;
|
|
2598
2862
|
columnCount: number;
|
|
2863
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2864
|
+
cursorIndexRef: {
|
|
2865
|
+
readonly current: number;
|
|
2866
|
+
};
|
|
2599
2867
|
UNSTABLE_virtual: {
|
|
2600
2868
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2601
2869
|
totalSize: number;
|
|
@@ -2605,25 +2873,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2605
2873
|
};
|
|
2606
2874
|
UNSTABLE_defaultItemHeight: number;
|
|
2607
2875
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2608
|
-
orientation:
|
|
2876
|
+
orientation: "horizontal" | "vertical";
|
|
2609
2877
|
indexRef: React.MutableRefObject<number>;
|
|
2610
2878
|
nonInteractiveIds: string[];
|
|
2611
2879
|
isVirtualized: boolean;
|
|
2612
2880
|
items: import("../..").Item<any>[];
|
|
2613
2881
|
mode: "multiple" | "single";
|
|
2614
2882
|
}) => void) | undefined;
|
|
2615
|
-
|
|
2883
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
2616
2884
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2617
2885
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2618
2886
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2619
2887
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2620
2888
|
placement: import("@popperjs/core").Placement;
|
|
2621
2889
|
id: string;
|
|
2622
|
-
visibility:
|
|
2623
|
-
selectedIds:
|
|
2890
|
+
visibility: "hidden" | "visible";
|
|
2891
|
+
selectedIds: string[] | "all";
|
|
2624
2892
|
unselectedIds: string[];
|
|
2625
2893
|
cursorId: string;
|
|
2626
2894
|
columnCount: number;
|
|
2895
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2896
|
+
cursorIndexRef: {
|
|
2897
|
+
readonly current: number;
|
|
2898
|
+
};
|
|
2627
2899
|
UNSTABLE_virtual: {
|
|
2628
2900
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2629
2901
|
totalSize: number;
|
|
@@ -2633,25 +2905,32 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2633
2905
|
};
|
|
2634
2906
|
UNSTABLE_defaultItemHeight: number;
|
|
2635
2907
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2636
|
-
orientation:
|
|
2908
|
+
orientation: "horizontal" | "vertical";
|
|
2637
2909
|
indexRef: React.MutableRefObject<number>;
|
|
2638
2910
|
nonInteractiveIds: string[];
|
|
2639
2911
|
isVirtualized: boolean;
|
|
2640
2912
|
items: import("../..").Item<any>[];
|
|
2641
2913
|
mode: "multiple" | "single";
|
|
2642
2914
|
}) => void) | undefined;
|
|
2643
|
-
|
|
2915
|
+
onRegisterItem?: ((data: {
|
|
2916
|
+
item: any;
|
|
2917
|
+
textValue: string;
|
|
2918
|
+
}, prevState: {
|
|
2644
2919
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2645
2920
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2646
2921
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2647
2922
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2648
2923
|
placement: import("@popperjs/core").Placement;
|
|
2649
2924
|
id: string;
|
|
2650
|
-
visibility:
|
|
2651
|
-
selectedIds:
|
|
2925
|
+
visibility: "hidden" | "visible";
|
|
2926
|
+
selectedIds: string[] | "all";
|
|
2652
2927
|
unselectedIds: string[];
|
|
2653
2928
|
cursorId: string;
|
|
2654
2929
|
columnCount: number;
|
|
2930
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2931
|
+
cursorIndexRef: {
|
|
2932
|
+
readonly current: number;
|
|
2933
|
+
};
|
|
2655
2934
|
UNSTABLE_virtual: {
|
|
2656
2935
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2657
2936
|
totalSize: number;
|
|
@@ -2661,7 +2940,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2661
2940
|
};
|
|
2662
2941
|
UNSTABLE_defaultItemHeight: number;
|
|
2663
2942
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2664
|
-
orientation:
|
|
2943
|
+
orientation: "horizontal" | "vertical";
|
|
2665
2944
|
indexRef: React.MutableRefObject<number>;
|
|
2666
2945
|
nonInteractiveIds: string[];
|
|
2667
2946
|
isVirtualized: boolean;
|
|
@@ -2677,11 +2956,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2677
2956
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2678
2957
|
placement: import("@popperjs/core").Placement;
|
|
2679
2958
|
id: string;
|
|
2680
|
-
visibility:
|
|
2681
|
-
selectedIds:
|
|
2959
|
+
visibility: "hidden" | "visible";
|
|
2960
|
+
selectedIds: string[] | "all";
|
|
2682
2961
|
unselectedIds: string[];
|
|
2683
2962
|
cursorId: string;
|
|
2684
2963
|
columnCount: number;
|
|
2964
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2965
|
+
cursorIndexRef: {
|
|
2966
|
+
readonly current: number;
|
|
2967
|
+
};
|
|
2685
2968
|
UNSTABLE_virtual: {
|
|
2686
2969
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2687
2970
|
totalSize: number;
|
|
@@ -2691,7 +2974,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2691
2974
|
};
|
|
2692
2975
|
UNSTABLE_defaultItemHeight: number;
|
|
2693
2976
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2694
|
-
orientation:
|
|
2977
|
+
orientation: "horizontal" | "vertical";
|
|
2695
2978
|
indexRef: React.MutableRefObject<number>;
|
|
2696
2979
|
nonInteractiveIds: string[];
|
|
2697
2980
|
isVirtualized: boolean;
|
|
@@ -2707,11 +2990,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2707
2990
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2708
2991
|
placement: import("@popperjs/core").Placement;
|
|
2709
2992
|
id: string;
|
|
2710
|
-
visibility:
|
|
2711
|
-
selectedIds:
|
|
2993
|
+
visibility: "hidden" | "visible";
|
|
2994
|
+
selectedIds: string[] | "all";
|
|
2712
2995
|
unselectedIds: string[];
|
|
2713
2996
|
cursorId: string;
|
|
2714
2997
|
columnCount: number;
|
|
2998
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2999
|
+
cursorIndexRef: {
|
|
3000
|
+
readonly current: number;
|
|
3001
|
+
};
|
|
2715
3002
|
UNSTABLE_virtual: {
|
|
2716
3003
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2717
3004
|
totalSize: number;
|
|
@@ -2721,7 +3008,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2721
3008
|
};
|
|
2722
3009
|
UNSTABLE_defaultItemHeight: number;
|
|
2723
3010
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2724
|
-
orientation:
|
|
3011
|
+
orientation: "horizontal" | "vertical";
|
|
2725
3012
|
indexRef: React.MutableRefObject<number>;
|
|
2726
3013
|
nonInteractiveIds: string[];
|
|
2727
3014
|
isVirtualized: boolean;
|
|
@@ -2738,11 +3025,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2738
3025
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2739
3026
|
placement: import("@popperjs/core").Placement;
|
|
2740
3027
|
id: string;
|
|
2741
|
-
visibility:
|
|
2742
|
-
selectedIds:
|
|
3028
|
+
visibility: "hidden" | "visible";
|
|
3029
|
+
selectedIds: string[] | "all";
|
|
2743
3030
|
unselectedIds: string[];
|
|
2744
3031
|
cursorId: string;
|
|
2745
3032
|
columnCount: number;
|
|
3033
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3034
|
+
cursorIndexRef: {
|
|
3035
|
+
readonly current: number;
|
|
3036
|
+
};
|
|
2746
3037
|
UNSTABLE_virtual: {
|
|
2747
3038
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2748
3039
|
totalSize: number;
|
|
@@ -2752,7 +3043,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2752
3043
|
};
|
|
2753
3044
|
UNSTABLE_defaultItemHeight: number;
|
|
2754
3045
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2755
|
-
orientation:
|
|
3046
|
+
orientation: "horizontal" | "vertical";
|
|
2756
3047
|
indexRef: React.MutableRefObject<number>;
|
|
2757
3048
|
nonInteractiveIds: string[];
|
|
2758
3049
|
isVirtualized: boolean;
|
|
@@ -2766,11 +3057,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2766
3057
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2767
3058
|
placement: import("@popperjs/core").Placement;
|
|
2768
3059
|
id: string;
|
|
2769
|
-
visibility:
|
|
2770
|
-
selectedIds:
|
|
3060
|
+
visibility: "hidden" | "visible";
|
|
3061
|
+
selectedIds: string[] | "all";
|
|
2771
3062
|
unselectedIds: string[];
|
|
2772
3063
|
cursorId: string;
|
|
2773
3064
|
columnCount: number;
|
|
3065
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3066
|
+
cursorIndexRef: {
|
|
3067
|
+
readonly current: number;
|
|
3068
|
+
};
|
|
2774
3069
|
UNSTABLE_virtual: {
|
|
2775
3070
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2776
3071
|
totalSize: number;
|
|
@@ -2780,7 +3075,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2780
3075
|
};
|
|
2781
3076
|
UNSTABLE_defaultItemHeight: number;
|
|
2782
3077
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2783
|
-
orientation:
|
|
3078
|
+
orientation: "horizontal" | "vertical";
|
|
2784
3079
|
indexRef: React.MutableRefObject<number>;
|
|
2785
3080
|
nonInteractiveIds: string[];
|
|
2786
3081
|
isVirtualized: boolean;
|
|
@@ -2794,11 +3089,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2794
3089
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2795
3090
|
placement: import("@popperjs/core").Placement;
|
|
2796
3091
|
id: string;
|
|
2797
|
-
visibility:
|
|
2798
|
-
selectedIds:
|
|
3092
|
+
visibility: "hidden" | "visible";
|
|
3093
|
+
selectedIds: string[] | "all";
|
|
2799
3094
|
unselectedIds: string[];
|
|
2800
3095
|
cursorId: string;
|
|
2801
3096
|
columnCount: number;
|
|
3097
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3098
|
+
cursorIndexRef: {
|
|
3099
|
+
readonly current: number;
|
|
3100
|
+
};
|
|
2802
3101
|
UNSTABLE_virtual: {
|
|
2803
3102
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2804
3103
|
totalSize: number;
|
|
@@ -2808,7 +3107,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2808
3107
|
};
|
|
2809
3108
|
UNSTABLE_defaultItemHeight: number;
|
|
2810
3109
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2811
|
-
orientation:
|
|
3110
|
+
orientation: "horizontal" | "vertical";
|
|
2812
3111
|
indexRef: React.MutableRefObject<number>;
|
|
2813
3112
|
nonInteractiveIds: string[];
|
|
2814
3113
|
isVirtualized: boolean;
|
|
@@ -2824,11 +3123,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2824
3123
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2825
3124
|
placement: import("@popperjs/core").Placement;
|
|
2826
3125
|
id: string;
|
|
2827
|
-
visibility:
|
|
2828
|
-
selectedIds:
|
|
3126
|
+
visibility: "hidden" | "visible";
|
|
3127
|
+
selectedIds: string[] | "all";
|
|
2829
3128
|
unselectedIds: string[];
|
|
2830
3129
|
cursorId: string;
|
|
2831
3130
|
columnCount: number;
|
|
3131
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3132
|
+
cursorIndexRef: {
|
|
3133
|
+
readonly current: number;
|
|
3134
|
+
};
|
|
2832
3135
|
UNSTABLE_virtual: {
|
|
2833
3136
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2834
3137
|
totalSize: number;
|
|
@@ -2838,7 +3141,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2838
3141
|
};
|
|
2839
3142
|
UNSTABLE_defaultItemHeight: number;
|
|
2840
3143
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2841
|
-
orientation:
|
|
3144
|
+
orientation: "horizontal" | "vertical";
|
|
2842
3145
|
indexRef: React.MutableRefObject<number>;
|
|
2843
3146
|
nonInteractiveIds: string[];
|
|
2844
3147
|
isVirtualized: boolean;
|
|
@@ -2852,11 +3155,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2852
3155
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2853
3156
|
placement: import("@popperjs/core").Placement;
|
|
2854
3157
|
id: string;
|
|
2855
|
-
visibility:
|
|
2856
|
-
selectedIds:
|
|
3158
|
+
visibility: "hidden" | "visible";
|
|
3159
|
+
selectedIds: string[] | "all";
|
|
2857
3160
|
unselectedIds: string[];
|
|
2858
3161
|
cursorId: string;
|
|
2859
3162
|
columnCount: number;
|
|
3163
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3164
|
+
cursorIndexRef: {
|
|
3165
|
+
readonly current: number;
|
|
3166
|
+
};
|
|
2860
3167
|
UNSTABLE_virtual: {
|
|
2861
3168
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2862
3169
|
totalSize: number;
|
|
@@ -2866,7 +3173,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2866
3173
|
};
|
|
2867
3174
|
UNSTABLE_defaultItemHeight: number;
|
|
2868
3175
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2869
|
-
orientation:
|
|
3176
|
+
orientation: "horizontal" | "vertical";
|
|
2870
3177
|
indexRef: React.MutableRefObject<number>;
|
|
2871
3178
|
nonInteractiveIds: string[];
|
|
2872
3179
|
isVirtualized: boolean;
|
|
@@ -2880,11 +3187,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2880
3187
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2881
3188
|
placement: import("@popperjs/core").Placement;
|
|
2882
3189
|
id: string;
|
|
2883
|
-
visibility:
|
|
2884
|
-
selectedIds:
|
|
3190
|
+
visibility: "hidden" | "visible";
|
|
3191
|
+
selectedIds: string[] | "all";
|
|
2885
3192
|
unselectedIds: string[];
|
|
2886
3193
|
cursorId: string;
|
|
2887
3194
|
columnCount: number;
|
|
3195
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3196
|
+
cursorIndexRef: {
|
|
3197
|
+
readonly current: number;
|
|
3198
|
+
};
|
|
2888
3199
|
UNSTABLE_virtual: {
|
|
2889
3200
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2890
3201
|
totalSize: number;
|
|
@@ -2894,16 +3205,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2894
3205
|
};
|
|
2895
3206
|
UNSTABLE_defaultItemHeight: number;
|
|
2896
3207
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2897
|
-
orientation:
|
|
3208
|
+
orientation: "horizontal" | "vertical";
|
|
2898
3209
|
indexRef: React.MutableRefObject<number>;
|
|
2899
3210
|
nonInteractiveIds: string[];
|
|
2900
3211
|
isVirtualized: boolean;
|
|
2901
3212
|
items: import("../..").Item<any>[];
|
|
2902
3213
|
mode: "multiple" | "single";
|
|
2903
3214
|
}) => boolean) | undefined;
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
textValue: string;
|
|
3215
|
+
shouldGoTo?: ((data: {
|
|
3216
|
+
id: string;
|
|
2907
3217
|
}, state: {
|
|
2908
3218
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2909
3219
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -2911,11 +3221,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2911
3221
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2912
3222
|
placement: import("@popperjs/core").Placement;
|
|
2913
3223
|
id: string;
|
|
2914
|
-
visibility:
|
|
2915
|
-
selectedIds:
|
|
3224
|
+
visibility: "hidden" | "visible";
|
|
3225
|
+
selectedIds: string[] | "all";
|
|
2916
3226
|
unselectedIds: string[];
|
|
2917
3227
|
cursorId: string;
|
|
2918
3228
|
columnCount: number;
|
|
3229
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3230
|
+
cursorIndexRef: {
|
|
3231
|
+
readonly current: number;
|
|
3232
|
+
};
|
|
2919
3233
|
UNSTABLE_virtual: {
|
|
2920
3234
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2921
3235
|
totalSize: number;
|
|
@@ -2925,27 +3239,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2925
3239
|
};
|
|
2926
3240
|
UNSTABLE_defaultItemHeight: number;
|
|
2927
3241
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2928
|
-
orientation:
|
|
3242
|
+
orientation: "horizontal" | "vertical";
|
|
2929
3243
|
indexRef: React.MutableRefObject<number>;
|
|
2930
3244
|
nonInteractiveIds: string[];
|
|
2931
3245
|
isVirtualized: boolean;
|
|
2932
3246
|
items: import("../..").Item<any>[];
|
|
2933
3247
|
mode: "multiple" | "single";
|
|
2934
3248
|
}) => boolean) | undefined;
|
|
2935
|
-
|
|
2936
|
-
id: string;
|
|
2937
|
-
}, state: {
|
|
3249
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
2938
3250
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2939
3251
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2940
3252
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2941
3253
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2942
3254
|
placement: import("@popperjs/core").Placement;
|
|
2943
3255
|
id: string;
|
|
2944
|
-
visibility:
|
|
2945
|
-
selectedIds:
|
|
3256
|
+
visibility: "hidden" | "visible";
|
|
3257
|
+
selectedIds: string[] | "all";
|
|
2946
3258
|
unselectedIds: string[];
|
|
2947
3259
|
cursorId: string;
|
|
2948
3260
|
columnCount: number;
|
|
3261
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3262
|
+
cursorIndexRef: {
|
|
3263
|
+
readonly current: number;
|
|
3264
|
+
};
|
|
2949
3265
|
UNSTABLE_virtual: {
|
|
2950
3266
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2951
3267
|
totalSize: number;
|
|
@@ -2955,25 +3271,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2955
3271
|
};
|
|
2956
3272
|
UNSTABLE_defaultItemHeight: number;
|
|
2957
3273
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2958
|
-
orientation:
|
|
3274
|
+
orientation: "horizontal" | "vertical";
|
|
2959
3275
|
indexRef: React.MutableRefObject<number>;
|
|
2960
3276
|
nonInteractiveIds: string[];
|
|
2961
3277
|
isVirtualized: boolean;
|
|
2962
3278
|
items: import("../..").Item<any>[];
|
|
2963
3279
|
mode: "multiple" | "single";
|
|
2964
3280
|
}) => boolean) | undefined;
|
|
2965
|
-
|
|
3281
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
2966
3282
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2967
3283
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2968
3284
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2969
3285
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2970
3286
|
placement: import("@popperjs/core").Placement;
|
|
2971
3287
|
id: string;
|
|
2972
|
-
visibility:
|
|
2973
|
-
selectedIds:
|
|
3288
|
+
visibility: "hidden" | "visible";
|
|
3289
|
+
selectedIds: string[] | "all";
|
|
2974
3290
|
unselectedIds: string[];
|
|
2975
3291
|
cursorId: string;
|
|
2976
3292
|
columnCount: number;
|
|
3293
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3294
|
+
cursorIndexRef: {
|
|
3295
|
+
readonly current: number;
|
|
3296
|
+
};
|
|
2977
3297
|
UNSTABLE_virtual: {
|
|
2978
3298
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2979
3299
|
totalSize: number;
|
|
@@ -2983,25 +3303,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2983
3303
|
};
|
|
2984
3304
|
UNSTABLE_defaultItemHeight: number;
|
|
2985
3305
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2986
|
-
orientation:
|
|
3306
|
+
orientation: "horizontal" | "vertical";
|
|
2987
3307
|
indexRef: React.MutableRefObject<number>;
|
|
2988
3308
|
nonInteractiveIds: string[];
|
|
2989
3309
|
isVirtualized: boolean;
|
|
2990
3310
|
items: import("../..").Item<any>[];
|
|
2991
3311
|
mode: "multiple" | "single";
|
|
2992
3312
|
}) => boolean) | undefined;
|
|
2993
|
-
|
|
3313
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
2994
3314
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2995
3315
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2996
3316
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2997
3317
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2998
3318
|
placement: import("@popperjs/core").Placement;
|
|
2999
3319
|
id: string;
|
|
3000
|
-
visibility:
|
|
3001
|
-
selectedIds:
|
|
3320
|
+
visibility: "hidden" | "visible";
|
|
3321
|
+
selectedIds: string[] | "all";
|
|
3002
3322
|
unselectedIds: string[];
|
|
3003
3323
|
cursorId: string;
|
|
3004
3324
|
columnCount: number;
|
|
3325
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3326
|
+
cursorIndexRef: {
|
|
3327
|
+
readonly current: number;
|
|
3328
|
+
};
|
|
3005
3329
|
UNSTABLE_virtual: {
|
|
3006
3330
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3007
3331
|
totalSize: number;
|
|
@@ -3011,25 +3335,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3011
3335
|
};
|
|
3012
3336
|
UNSTABLE_defaultItemHeight: number;
|
|
3013
3337
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3014
|
-
orientation:
|
|
3338
|
+
orientation: "horizontal" | "vertical";
|
|
3015
3339
|
indexRef: React.MutableRefObject<number>;
|
|
3016
3340
|
nonInteractiveIds: string[];
|
|
3017
3341
|
isVirtualized: boolean;
|
|
3018
3342
|
items: import("../..").Item<any>[];
|
|
3019
3343
|
mode: "multiple" | "single";
|
|
3020
3344
|
}) => boolean) | undefined;
|
|
3021
|
-
|
|
3345
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
3022
3346
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3023
3347
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3024
3348
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3025
3349
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3026
3350
|
placement: import("@popperjs/core").Placement;
|
|
3027
3351
|
id: string;
|
|
3028
|
-
visibility:
|
|
3029
|
-
selectedIds:
|
|
3352
|
+
visibility: "hidden" | "visible";
|
|
3353
|
+
selectedIds: string[] | "all";
|
|
3030
3354
|
unselectedIds: string[];
|
|
3031
3355
|
cursorId: string;
|
|
3032
3356
|
columnCount: number;
|
|
3357
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3358
|
+
cursorIndexRef: {
|
|
3359
|
+
readonly current: number;
|
|
3360
|
+
};
|
|
3033
3361
|
UNSTABLE_virtual: {
|
|
3034
3362
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3035
3363
|
totalSize: number;
|
|
@@ -3039,25 +3367,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3039
3367
|
};
|
|
3040
3368
|
UNSTABLE_defaultItemHeight: number;
|
|
3041
3369
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3042
|
-
orientation:
|
|
3370
|
+
orientation: "horizontal" | "vertical";
|
|
3043
3371
|
indexRef: React.MutableRefObject<number>;
|
|
3044
3372
|
nonInteractiveIds: string[];
|
|
3045
3373
|
isVirtualized: boolean;
|
|
3046
3374
|
items: import("../..").Item<any>[];
|
|
3047
3375
|
mode: "multiple" | "single";
|
|
3048
3376
|
}) => boolean) | undefined;
|
|
3049
|
-
|
|
3377
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
3050
3378
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3051
3379
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3052
3380
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3053
3381
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3054
3382
|
placement: import("@popperjs/core").Placement;
|
|
3055
3383
|
id: string;
|
|
3056
|
-
visibility:
|
|
3057
|
-
selectedIds:
|
|
3384
|
+
visibility: "hidden" | "visible";
|
|
3385
|
+
selectedIds: string[] | "all";
|
|
3058
3386
|
unselectedIds: string[];
|
|
3059
3387
|
cursorId: string;
|
|
3060
3388
|
columnCount: number;
|
|
3389
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3390
|
+
cursorIndexRef: {
|
|
3391
|
+
readonly current: number;
|
|
3392
|
+
};
|
|
3061
3393
|
UNSTABLE_virtual: {
|
|
3062
3394
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3063
3395
|
totalSize: number;
|
|
@@ -3067,25 +3399,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3067
3399
|
};
|
|
3068
3400
|
UNSTABLE_defaultItemHeight: number;
|
|
3069
3401
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3070
|
-
orientation:
|
|
3402
|
+
orientation: "horizontal" | "vertical";
|
|
3071
3403
|
indexRef: React.MutableRefObject<number>;
|
|
3072
3404
|
nonInteractiveIds: string[];
|
|
3073
3405
|
isVirtualized: boolean;
|
|
3074
3406
|
items: import("../..").Item<any>[];
|
|
3075
3407
|
mode: "multiple" | "single";
|
|
3076
3408
|
}) => boolean) | undefined;
|
|
3077
|
-
|
|
3409
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
3078
3410
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3079
3411
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3080
3412
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3081
3413
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3082
3414
|
placement: import("@popperjs/core").Placement;
|
|
3083
3415
|
id: string;
|
|
3084
|
-
visibility:
|
|
3085
|
-
selectedIds:
|
|
3416
|
+
visibility: "hidden" | "visible";
|
|
3417
|
+
selectedIds: string[] | "all";
|
|
3086
3418
|
unselectedIds: string[];
|
|
3087
3419
|
cursorId: string;
|
|
3088
3420
|
columnCount: number;
|
|
3421
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3422
|
+
cursorIndexRef: {
|
|
3423
|
+
readonly current: number;
|
|
3424
|
+
};
|
|
3089
3425
|
UNSTABLE_virtual: {
|
|
3090
3426
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3091
3427
|
totalSize: number;
|
|
@@ -3095,25 +3431,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3095
3431
|
};
|
|
3096
3432
|
UNSTABLE_defaultItemHeight: number;
|
|
3097
3433
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3098
|
-
orientation:
|
|
3434
|
+
orientation: "horizontal" | "vertical";
|
|
3099
3435
|
indexRef: React.MutableRefObject<number>;
|
|
3100
3436
|
nonInteractiveIds: string[];
|
|
3101
3437
|
isVirtualized: boolean;
|
|
3102
3438
|
items: import("../..").Item<any>[];
|
|
3103
3439
|
mode: "multiple" | "single";
|
|
3104
3440
|
}) => boolean) | undefined;
|
|
3105
|
-
|
|
3441
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
3106
3442
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3107
3443
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3108
3444
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3109
3445
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3110
3446
|
placement: import("@popperjs/core").Placement;
|
|
3111
3447
|
id: string;
|
|
3112
|
-
visibility:
|
|
3113
|
-
selectedIds:
|
|
3448
|
+
visibility: "hidden" | "visible";
|
|
3449
|
+
selectedIds: string[] | "all";
|
|
3114
3450
|
unselectedIds: string[];
|
|
3115
3451
|
cursorId: string;
|
|
3116
3452
|
columnCount: number;
|
|
3453
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3454
|
+
cursorIndexRef: {
|
|
3455
|
+
readonly current: number;
|
|
3456
|
+
};
|
|
3117
3457
|
UNSTABLE_virtual: {
|
|
3118
3458
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3119
3459
|
totalSize: number;
|
|
@@ -3123,25 +3463,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3123
3463
|
};
|
|
3124
3464
|
UNSTABLE_defaultItemHeight: number;
|
|
3125
3465
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3126
|
-
orientation:
|
|
3466
|
+
orientation: "horizontal" | "vertical";
|
|
3127
3467
|
indexRef: React.MutableRefObject<number>;
|
|
3128
3468
|
nonInteractiveIds: string[];
|
|
3129
3469
|
isVirtualized: boolean;
|
|
3130
3470
|
items: import("../..").Item<any>[];
|
|
3131
3471
|
mode: "multiple" | "single";
|
|
3132
3472
|
}) => boolean) | undefined;
|
|
3133
|
-
|
|
3473
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
3134
3474
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3135
3475
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3136
3476
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3137
3477
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3138
3478
|
placement: import("@popperjs/core").Placement;
|
|
3139
3479
|
id: string;
|
|
3140
|
-
visibility:
|
|
3141
|
-
selectedIds:
|
|
3480
|
+
visibility: "hidden" | "visible";
|
|
3481
|
+
selectedIds: string[] | "all";
|
|
3142
3482
|
unselectedIds: string[];
|
|
3143
3483
|
cursorId: string;
|
|
3144
3484
|
columnCount: number;
|
|
3485
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3486
|
+
cursorIndexRef: {
|
|
3487
|
+
readonly current: number;
|
|
3488
|
+
};
|
|
3145
3489
|
UNSTABLE_virtual: {
|
|
3146
3490
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3147
3491
|
totalSize: number;
|
|
@@ -3151,25 +3495,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3151
3495
|
};
|
|
3152
3496
|
UNSTABLE_defaultItemHeight: number;
|
|
3153
3497
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3154
|
-
orientation:
|
|
3498
|
+
orientation: "horizontal" | "vertical";
|
|
3155
3499
|
indexRef: React.MutableRefObject<number>;
|
|
3156
3500
|
nonInteractiveIds: string[];
|
|
3157
3501
|
isVirtualized: boolean;
|
|
3158
3502
|
items: import("../..").Item<any>[];
|
|
3159
3503
|
mode: "multiple" | "single";
|
|
3160
3504
|
}) => boolean) | undefined;
|
|
3161
|
-
|
|
3505
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
3162
3506
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3163
3507
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3164
3508
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3165
3509
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3166
3510
|
placement: import("@popperjs/core").Placement;
|
|
3167
3511
|
id: string;
|
|
3168
|
-
visibility:
|
|
3169
|
-
selectedIds:
|
|
3512
|
+
visibility: "hidden" | "visible";
|
|
3513
|
+
selectedIds: string[] | "all";
|
|
3170
3514
|
unselectedIds: string[];
|
|
3171
3515
|
cursorId: string;
|
|
3172
3516
|
columnCount: number;
|
|
3517
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3518
|
+
cursorIndexRef: {
|
|
3519
|
+
readonly current: number;
|
|
3520
|
+
};
|
|
3173
3521
|
UNSTABLE_virtual: {
|
|
3174
3522
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3175
3523
|
totalSize: number;
|
|
@@ -3179,25 +3527,29 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3179
3527
|
};
|
|
3180
3528
|
UNSTABLE_defaultItemHeight: number;
|
|
3181
3529
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3182
|
-
orientation:
|
|
3530
|
+
orientation: "horizontal" | "vertical";
|
|
3183
3531
|
indexRef: React.MutableRefObject<number>;
|
|
3184
3532
|
nonInteractiveIds: string[];
|
|
3185
3533
|
isVirtualized: boolean;
|
|
3186
3534
|
items: import("../..").Item<any>[];
|
|
3187
3535
|
mode: "multiple" | "single";
|
|
3188
3536
|
}) => boolean) | undefined;
|
|
3189
|
-
|
|
3537
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
3190
3538
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3191
3539
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3192
3540
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3193
3541
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3194
3542
|
placement: import("@popperjs/core").Placement;
|
|
3195
3543
|
id: string;
|
|
3196
|
-
visibility:
|
|
3197
|
-
selectedIds:
|
|
3544
|
+
visibility: "hidden" | "visible";
|
|
3545
|
+
selectedIds: string[] | "all";
|
|
3198
3546
|
unselectedIds: string[];
|
|
3199
3547
|
cursorId: string;
|
|
3200
3548
|
columnCount: number;
|
|
3549
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3550
|
+
cursorIndexRef: {
|
|
3551
|
+
readonly current: number;
|
|
3552
|
+
};
|
|
3201
3553
|
UNSTABLE_virtual: {
|
|
3202
3554
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3203
3555
|
totalSize: number;
|
|
@@ -3207,25 +3559,32 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3207
3559
|
};
|
|
3208
3560
|
UNSTABLE_defaultItemHeight: number;
|
|
3209
3561
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3210
|
-
orientation:
|
|
3562
|
+
orientation: "horizontal" | "vertical";
|
|
3211
3563
|
indexRef: React.MutableRefObject<number>;
|
|
3212
3564
|
nonInteractiveIds: string[];
|
|
3213
3565
|
isVirtualized: boolean;
|
|
3214
3566
|
items: import("../..").Item<any>[];
|
|
3215
3567
|
mode: "multiple" | "single";
|
|
3216
3568
|
}) => boolean) | undefined;
|
|
3217
|
-
|
|
3569
|
+
shouldRegisterItem?: ((data: {
|
|
3570
|
+
item: any;
|
|
3571
|
+
textValue: string;
|
|
3572
|
+
}, state: {
|
|
3218
3573
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3219
3574
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3220
3575
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3221
3576
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3222
3577
|
placement: import("@popperjs/core").Placement;
|
|
3223
3578
|
id: string;
|
|
3224
|
-
visibility:
|
|
3225
|
-
selectedIds:
|
|
3579
|
+
visibility: "hidden" | "visible";
|
|
3580
|
+
selectedIds: string[] | "all";
|
|
3226
3581
|
unselectedIds: string[];
|
|
3227
3582
|
cursorId: string;
|
|
3228
3583
|
columnCount: number;
|
|
3584
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3585
|
+
cursorIndexRef: {
|
|
3586
|
+
readonly current: number;
|
|
3587
|
+
};
|
|
3229
3588
|
UNSTABLE_virtual: {
|
|
3230
3589
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3231
3590
|
totalSize: number;
|
|
@@ -3235,7 +3594,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3235
3594
|
};
|
|
3236
3595
|
UNSTABLE_defaultItemHeight: number;
|
|
3237
3596
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3238
|
-
orientation:
|
|
3597
|
+
orientation: "horizontal" | "vertical";
|
|
3239
3598
|
indexRef: React.MutableRefObject<number>;
|
|
3240
3599
|
nonInteractiveIds: string[];
|
|
3241
3600
|
isVirtualized: boolean;
|
|
@@ -3251,11 +3610,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3251
3610
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3252
3611
|
placement: import("@popperjs/core").Placement;
|
|
3253
3612
|
id: string;
|
|
3254
|
-
visibility:
|
|
3255
|
-
selectedIds:
|
|
3613
|
+
visibility: "hidden" | "visible";
|
|
3614
|
+
selectedIds: string[] | "all";
|
|
3256
3615
|
unselectedIds: string[];
|
|
3257
3616
|
cursorId: string;
|
|
3258
3617
|
columnCount: number;
|
|
3618
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3619
|
+
cursorIndexRef: {
|
|
3620
|
+
readonly current: number;
|
|
3621
|
+
};
|
|
3259
3622
|
UNSTABLE_virtual: {
|
|
3260
3623
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3261
3624
|
totalSize: number;
|
|
@@ -3265,7 +3628,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3265
3628
|
};
|
|
3266
3629
|
UNSTABLE_defaultItemHeight: number;
|
|
3267
3630
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3268
|
-
orientation:
|
|
3631
|
+
orientation: "horizontal" | "vertical";
|
|
3269
3632
|
indexRef: React.MutableRefObject<number>;
|
|
3270
3633
|
nonInteractiveIds: string[];
|
|
3271
3634
|
isVirtualized: boolean;
|
|
@@ -3281,11 +3644,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3281
3644
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3282
3645
|
placement: import("@popperjs/core").Placement;
|
|
3283
3646
|
id: string;
|
|
3284
|
-
visibility:
|
|
3285
|
-
selectedIds:
|
|
3647
|
+
visibility: "hidden" | "visible";
|
|
3648
|
+
selectedIds: string[] | "all";
|
|
3286
3649
|
unselectedIds: string[];
|
|
3287
3650
|
cursorId: string;
|
|
3288
3651
|
columnCount: number;
|
|
3652
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3653
|
+
cursorIndexRef: {
|
|
3654
|
+
readonly current: number;
|
|
3655
|
+
};
|
|
3289
3656
|
UNSTABLE_virtual: {
|
|
3290
3657
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3291
3658
|
totalSize: number;
|
|
@@ -3295,14 +3662,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3295
3662
|
};
|
|
3296
3663
|
UNSTABLE_defaultItemHeight: number;
|
|
3297
3664
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3298
|
-
orientation:
|
|
3665
|
+
orientation: "horizontal" | "vertical";
|
|
3299
3666
|
indexRef: React.MutableRefObject<number>;
|
|
3300
3667
|
nonInteractiveIds: string[];
|
|
3301
3668
|
isVirtualized: boolean;
|
|
3302
3669
|
items: import("../..").Item<any>[];
|
|
3303
3670
|
mode: "multiple" | "single";
|
|
3304
3671
|
}) => boolean) | undefined;
|
|
3305
|
-
} & import("
|
|
3672
|
+
} & import("@workday/canvas-kit-react/common").PropsWithModel<{
|
|
3306
3673
|
state: {
|
|
3307
3674
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3308
3675
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3310,11 +3677,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3310
3677
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3311
3678
|
placement: import("@popperjs/core").Placement;
|
|
3312
3679
|
id: string;
|
|
3313
|
-
visibility:
|
|
3314
|
-
selectedIds:
|
|
3680
|
+
visibility: "hidden" | "visible";
|
|
3681
|
+
selectedIds: string[] | "all";
|
|
3315
3682
|
unselectedIds: string[];
|
|
3316
3683
|
cursorId: string;
|
|
3317
3684
|
columnCount: number;
|
|
3685
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3686
|
+
cursorIndexRef: {
|
|
3687
|
+
readonly current: number;
|
|
3688
|
+
};
|
|
3318
3689
|
UNSTABLE_virtual: {
|
|
3319
3690
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3320
3691
|
totalSize: number;
|
|
@@ -3324,7 +3695,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3324
3695
|
};
|
|
3325
3696
|
UNSTABLE_defaultItemHeight: number;
|
|
3326
3697
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3327
|
-
orientation:
|
|
3698
|
+
orientation: "horizontal" | "vertical";
|
|
3328
3699
|
indexRef: React.MutableRefObject<number>;
|
|
3329
3700
|
nonInteractiveIds: string[];
|
|
3330
3701
|
isVirtualized: boolean;
|
|
@@ -3342,10 +3713,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3342
3713
|
}): void;
|
|
3343
3714
|
selectAll(): void;
|
|
3344
3715
|
unselectAll(): void;
|
|
3345
|
-
registerItem(data: {
|
|
3346
|
-
item: any;
|
|
3347
|
-
textValue: string;
|
|
3348
|
-
}): void;
|
|
3349
3716
|
goTo(data: {
|
|
3350
3717
|
id: string;
|
|
3351
3718
|
}): void;
|
|
@@ -3359,6 +3726,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3359
3726
|
goToLastOfRow(): void;
|
|
3360
3727
|
goToNextPage(): void;
|
|
3361
3728
|
goToPreviousPage(): void;
|
|
3729
|
+
registerItem(data: {
|
|
3730
|
+
item: any;
|
|
3731
|
+
textValue: string;
|
|
3732
|
+
}): void;
|
|
3362
3733
|
unregisterItem(data: {
|
|
3363
3734
|
id: string;
|
|
3364
3735
|
}): void;
|
|
@@ -3369,7 +3740,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3369
3740
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
3370
3741
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3371
3742
|
getId: (item: any) => string;
|
|
3372
|
-
}>, {
|
|
3743
|
+
}, {}>, {
|
|
3373
3744
|
state: {
|
|
3374
3745
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3375
3746
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3377,11 +3748,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3377
3748
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3378
3749
|
placement: import("@popperjs/core").Placement;
|
|
3379
3750
|
id: string;
|
|
3380
|
-
visibility:
|
|
3381
|
-
selectedIds:
|
|
3751
|
+
visibility: "hidden" | "visible";
|
|
3752
|
+
selectedIds: string[] | "all";
|
|
3382
3753
|
unselectedIds: string[];
|
|
3383
3754
|
cursorId: string;
|
|
3384
3755
|
columnCount: number;
|
|
3756
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3757
|
+
cursorIndexRef: {
|
|
3758
|
+
readonly current: number;
|
|
3759
|
+
};
|
|
3385
3760
|
UNSTABLE_virtual: {
|
|
3386
3761
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3387
3762
|
totalSize: number;
|
|
@@ -3391,7 +3766,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3391
3766
|
};
|
|
3392
3767
|
UNSTABLE_defaultItemHeight: number;
|
|
3393
3768
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3394
|
-
orientation:
|
|
3769
|
+
orientation: "horizontal" | "vertical";
|
|
3395
3770
|
indexRef: React.MutableRefObject<number>;
|
|
3396
3771
|
nonInteractiveIds: string[];
|
|
3397
3772
|
isVirtualized: boolean;
|
|
@@ -3409,10 +3784,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3409
3784
|
}): void;
|
|
3410
3785
|
selectAll(): void;
|
|
3411
3786
|
unselectAll(): void;
|
|
3412
|
-
registerItem(data: {
|
|
3413
|
-
item: any;
|
|
3414
|
-
textValue: string;
|
|
3415
|
-
}): void;
|
|
3416
3787
|
goTo(data: {
|
|
3417
3788
|
id: string;
|
|
3418
3789
|
}): void;
|
|
@@ -3426,6 +3797,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3426
3797
|
goToLastOfRow(): void;
|
|
3427
3798
|
goToNextPage(): void;
|
|
3428
3799
|
goToPreviousPage(): void;
|
|
3800
|
+
registerItem(data: {
|
|
3801
|
+
item: any;
|
|
3802
|
+
textValue: string;
|
|
3803
|
+
}): void;
|
|
3429
3804
|
unregisterItem(data: {
|
|
3430
3805
|
id: string;
|
|
3431
3806
|
}): void;
|
|
@@ -3437,7 +3812,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3437
3812
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3438
3813
|
getId: (item: any) => string;
|
|
3439
3814
|
}> & {
|
|
3440
|
-
Card: (elemProps: import("../../menu/lib/MenuCard").MenuCardProps & import("
|
|
3815
|
+
Card: (elemProps: import("../../menu/lib/MenuCard").MenuCardProps & import("@workday/canvas-kit-react/common").PropsWithModel<{
|
|
3441
3816
|
state: {
|
|
3442
3817
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3443
3818
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3445,11 +3820,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3445
3820
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3446
3821
|
placement: import("@popperjs/core").Placement;
|
|
3447
3822
|
id: string;
|
|
3448
|
-
visibility:
|
|
3449
|
-
selectedIds:
|
|
3823
|
+
visibility: "hidden" | "visible";
|
|
3824
|
+
selectedIds: string[] | "all";
|
|
3450
3825
|
unselectedIds: string[];
|
|
3451
3826
|
cursorId: string;
|
|
3452
3827
|
columnCount: number;
|
|
3828
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3829
|
+
cursorIndexRef: {
|
|
3830
|
+
readonly current: number;
|
|
3831
|
+
};
|
|
3453
3832
|
UNSTABLE_virtual: {
|
|
3454
3833
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3455
3834
|
totalSize: number;
|
|
@@ -3459,7 +3838,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3459
3838
|
};
|
|
3460
3839
|
UNSTABLE_defaultItemHeight: number;
|
|
3461
3840
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3462
|
-
orientation:
|
|
3841
|
+
orientation: "horizontal" | "vertical";
|
|
3463
3842
|
indexRef: React.MutableRefObject<number>;
|
|
3464
3843
|
nonInteractiveIds: string[];
|
|
3465
3844
|
isVirtualized: boolean;
|
|
@@ -3477,10 +3856,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3477
3856
|
}): void;
|
|
3478
3857
|
selectAll(): void;
|
|
3479
3858
|
unselectAll(): void;
|
|
3480
|
-
registerItem(data: {
|
|
3481
|
-
item: any;
|
|
3482
|
-
textValue: string;
|
|
3483
|
-
}): void;
|
|
3484
3859
|
goTo(data: {
|
|
3485
3860
|
id: string;
|
|
3486
3861
|
}): void;
|
|
@@ -3494,6 +3869,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3494
3869
|
goToLastOfRow(): void;
|
|
3495
3870
|
goToNextPage(): void;
|
|
3496
3871
|
goToPreviousPage(): void;
|
|
3872
|
+
registerItem(data: {
|
|
3873
|
+
item: any;
|
|
3874
|
+
textValue: string;
|
|
3875
|
+
}): void;
|
|
3497
3876
|
unregisterItem(data: {
|
|
3498
3877
|
id: string;
|
|
3499
3878
|
}): void;
|
|
@@ -3504,8 +3883,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3504
3883
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
3505
3884
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3506
3885
|
getId: (item: any) => string;
|
|
3507
|
-
}>) => JSX.Element;
|
|
3508
|
-
List: import("
|
|
3886
|
+
}, {}>) => JSX.Element;
|
|
3887
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuList").MenuListProps<any>, {
|
|
3509
3888
|
state: {
|
|
3510
3889
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3511
3890
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3513,11 +3892,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3513
3892
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3514
3893
|
placement: import("@popperjs/core").Placement;
|
|
3515
3894
|
id: string;
|
|
3516
|
-
visibility:
|
|
3517
|
-
selectedIds:
|
|
3895
|
+
visibility: "hidden" | "visible";
|
|
3896
|
+
selectedIds: string[] | "all";
|
|
3518
3897
|
unselectedIds: string[];
|
|
3519
3898
|
cursorId: string;
|
|
3520
3899
|
columnCount: number;
|
|
3900
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3901
|
+
cursorIndexRef: {
|
|
3902
|
+
readonly current: number;
|
|
3903
|
+
};
|
|
3521
3904
|
UNSTABLE_virtual: {
|
|
3522
3905
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3523
3906
|
totalSize: number;
|
|
@@ -3527,7 +3910,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3527
3910
|
};
|
|
3528
3911
|
UNSTABLE_defaultItemHeight: number;
|
|
3529
3912
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3530
|
-
orientation:
|
|
3913
|
+
orientation: "horizontal" | "vertical";
|
|
3531
3914
|
indexRef: React.MutableRefObject<number>;
|
|
3532
3915
|
nonInteractiveIds: string[];
|
|
3533
3916
|
isVirtualized: boolean;
|
|
@@ -3545,10 +3928,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3545
3928
|
}): void;
|
|
3546
3929
|
selectAll(): void;
|
|
3547
3930
|
unselectAll(): void;
|
|
3548
|
-
registerItem(data: {
|
|
3549
|
-
item: any;
|
|
3550
|
-
textValue: string;
|
|
3551
|
-
}): void;
|
|
3552
3931
|
goTo(data: {
|
|
3553
3932
|
id: string;
|
|
3554
3933
|
}): void;
|
|
@@ -3562,6 +3941,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3562
3941
|
goToLastOfRow(): void;
|
|
3563
3942
|
goToNextPage(): void;
|
|
3564
3943
|
goToPreviousPage(): void;
|
|
3944
|
+
registerItem(data: {
|
|
3945
|
+
item: any;
|
|
3946
|
+
textValue: string;
|
|
3947
|
+
}): void;
|
|
3565
3948
|
unregisterItem(data: {
|
|
3566
3949
|
id: string;
|
|
3567
3950
|
}): void;
|
|
@@ -3573,7 +3956,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3573
3956
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3574
3957
|
getId: (item: any) => string;
|
|
3575
3958
|
}>;
|
|
3576
|
-
Item: import("
|
|
3959
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponent<"a", import("../../menu/lib/MenuItem").MenuItemProps & import("@workday/canvas-kit-react/common").PropsWithModel<{
|
|
3577
3960
|
state: {
|
|
3578
3961
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3579
3962
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3581,11 +3964,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3581
3964
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3582
3965
|
placement: import("@popperjs/core").Placement;
|
|
3583
3966
|
id: string;
|
|
3584
|
-
visibility:
|
|
3585
|
-
selectedIds:
|
|
3967
|
+
visibility: "hidden" | "visible";
|
|
3968
|
+
selectedIds: string[] | "all";
|
|
3586
3969
|
unselectedIds: string[];
|
|
3587
3970
|
cursorId: string;
|
|
3588
3971
|
columnCount: number;
|
|
3972
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3973
|
+
cursorIndexRef: {
|
|
3974
|
+
readonly current: number;
|
|
3975
|
+
};
|
|
3589
3976
|
UNSTABLE_virtual: {
|
|
3590
3977
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3591
3978
|
totalSize: number;
|
|
@@ -3595,7 +3982,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3595
3982
|
};
|
|
3596
3983
|
UNSTABLE_defaultItemHeight: number;
|
|
3597
3984
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3598
|
-
orientation:
|
|
3985
|
+
orientation: "horizontal" | "vertical";
|
|
3599
3986
|
indexRef: React.MutableRefObject<number>;
|
|
3600
3987
|
nonInteractiveIds: string[];
|
|
3601
3988
|
isVirtualized: boolean;
|
|
@@ -3613,10 +4000,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3613
4000
|
}): void;
|
|
3614
4001
|
selectAll(): void;
|
|
3615
4002
|
unselectAll(): void;
|
|
3616
|
-
registerItem(data: {
|
|
3617
|
-
item: any;
|
|
3618
|
-
textValue: string;
|
|
3619
|
-
}): void;
|
|
3620
4003
|
goTo(data: {
|
|
3621
4004
|
id: string;
|
|
3622
4005
|
}): void;
|
|
@@ -3630,6 +4013,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3630
4013
|
goToLastOfRow(): void;
|
|
3631
4014
|
goToNextPage(): void;
|
|
3632
4015
|
goToPreviousPage(): void;
|
|
4016
|
+
registerItem(data: {
|
|
4017
|
+
item: any;
|
|
4018
|
+
textValue: string;
|
|
4019
|
+
}): void;
|
|
3633
4020
|
unregisterItem(data: {
|
|
3634
4021
|
id: string;
|
|
3635
4022
|
}): void;
|
|
@@ -3640,9 +4027,9 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3640
4027
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
3641
4028
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3642
4029
|
getId: (item: any) => string;
|
|
3643
|
-
}>>;
|
|
3644
|
-
Divider: import("
|
|
3645
|
-
Target: import("
|
|
4030
|
+
}, {}>>;
|
|
4031
|
+
Divider: import("@workday/canvas-kit-react/common").ElementComponent<"hr", unknown>;
|
|
4032
|
+
Target: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3646
4033
|
state: {
|
|
3647
4034
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3648
4035
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3650,11 +4037,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3650
4037
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3651
4038
|
placement: import("@popperjs/core").Placement;
|
|
3652
4039
|
id: string;
|
|
3653
|
-
visibility:
|
|
3654
|
-
selectedIds:
|
|
4040
|
+
visibility: "hidden" | "visible";
|
|
4041
|
+
selectedIds: string[] | "all";
|
|
3655
4042
|
unselectedIds: string[];
|
|
3656
4043
|
cursorId: string;
|
|
3657
4044
|
columnCount: number;
|
|
4045
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4046
|
+
cursorIndexRef: {
|
|
4047
|
+
readonly current: number;
|
|
4048
|
+
};
|
|
3658
4049
|
UNSTABLE_virtual: {
|
|
3659
4050
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3660
4051
|
totalSize: number;
|
|
@@ -3664,7 +4055,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3664
4055
|
};
|
|
3665
4056
|
UNSTABLE_defaultItemHeight: number;
|
|
3666
4057
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3667
|
-
orientation:
|
|
4058
|
+
orientation: "horizontal" | "vertical";
|
|
3668
4059
|
indexRef: React.MutableRefObject<number>;
|
|
3669
4060
|
nonInteractiveIds: string[];
|
|
3670
4061
|
isVirtualized: boolean;
|
|
@@ -3682,10 +4073,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3682
4073
|
}): void;
|
|
3683
4074
|
selectAll(): void;
|
|
3684
4075
|
unselectAll(): void;
|
|
3685
|
-
registerItem(data: {
|
|
3686
|
-
item: any;
|
|
3687
|
-
textValue: string;
|
|
3688
|
-
}): void;
|
|
3689
4076
|
goTo(data: {
|
|
3690
4077
|
id: string;
|
|
3691
4078
|
}): void;
|
|
@@ -3699,6 +4086,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3699
4086
|
goToLastOfRow(): void;
|
|
3700
4087
|
goToNextPage(): void;
|
|
3701
4088
|
goToPreviousPage(): void;
|
|
4089
|
+
registerItem(data: {
|
|
4090
|
+
item: any;
|
|
4091
|
+
textValue: string;
|
|
4092
|
+
}): void;
|
|
3702
4093
|
unregisterItem(data: {
|
|
3703
4094
|
id: string;
|
|
3704
4095
|
}): void;
|
|
@@ -3710,7 +4101,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3710
4101
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3711
4102
|
getId: (item: any) => string;
|
|
3712
4103
|
}>;
|
|
3713
|
-
TargetContext: import("
|
|
4104
|
+
TargetContext: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3714
4105
|
state: {
|
|
3715
4106
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3716
4107
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3718,11 +4109,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3718
4109
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3719
4110
|
placement: import("@popperjs/core").Placement;
|
|
3720
4111
|
id: string;
|
|
3721
|
-
visibility:
|
|
3722
|
-
selectedIds:
|
|
4112
|
+
visibility: "hidden" | "visible";
|
|
4113
|
+
selectedIds: string[] | "all";
|
|
3723
4114
|
unselectedIds: string[];
|
|
3724
4115
|
cursorId: string;
|
|
3725
4116
|
columnCount: number;
|
|
4117
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4118
|
+
cursorIndexRef: {
|
|
4119
|
+
readonly current: number;
|
|
4120
|
+
};
|
|
3726
4121
|
UNSTABLE_virtual: {
|
|
3727
4122
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3728
4123
|
totalSize: number;
|
|
@@ -3732,7 +4127,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3732
4127
|
};
|
|
3733
4128
|
UNSTABLE_defaultItemHeight: number;
|
|
3734
4129
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3735
|
-
orientation:
|
|
4130
|
+
orientation: "horizontal" | "vertical";
|
|
3736
4131
|
indexRef: React.MutableRefObject<number>;
|
|
3737
4132
|
nonInteractiveIds: string[];
|
|
3738
4133
|
isVirtualized: boolean;
|
|
@@ -3750,10 +4145,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3750
4145
|
}): void;
|
|
3751
4146
|
selectAll(): void;
|
|
3752
4147
|
unselectAll(): void;
|
|
3753
|
-
registerItem(data: {
|
|
3754
|
-
item: any;
|
|
3755
|
-
textValue: string;
|
|
3756
|
-
}): void;
|
|
3757
4148
|
goTo(data: {
|
|
3758
4149
|
id: string;
|
|
3759
4150
|
}): void;
|
|
@@ -3767,6 +4158,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3767
4158
|
goToLastOfRow(): void;
|
|
3768
4159
|
goToNextPage(): void;
|
|
3769
4160
|
goToPreviousPage(): void;
|
|
4161
|
+
registerItem(data: {
|
|
4162
|
+
item: any;
|
|
4163
|
+
textValue: string;
|
|
4164
|
+
}): void;
|
|
3770
4165
|
unregisterItem(data: {
|
|
3771
4166
|
id: string;
|
|
3772
4167
|
}): void;
|
|
@@ -3778,7 +4173,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3778
4173
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3779
4174
|
getId: (item: any) => string;
|
|
3780
4175
|
}>;
|
|
3781
|
-
Popper: import("
|
|
4176
|
+
Popper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuPopper").MenuPopperProps, {
|
|
3782
4177
|
state: {
|
|
3783
4178
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3784
4179
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3786,11 +4181,15 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3786
4181
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3787
4182
|
placement: import("@popperjs/core").Placement;
|
|
3788
4183
|
id: string;
|
|
3789
|
-
visibility:
|
|
3790
|
-
selectedIds:
|
|
4184
|
+
visibility: "hidden" | "visible";
|
|
4185
|
+
selectedIds: string[] | "all";
|
|
3791
4186
|
unselectedIds: string[];
|
|
3792
4187
|
cursorId: string;
|
|
3793
4188
|
columnCount: number;
|
|
4189
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4190
|
+
cursorIndexRef: {
|
|
4191
|
+
readonly current: number;
|
|
4192
|
+
};
|
|
3794
4193
|
UNSTABLE_virtual: {
|
|
3795
4194
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3796
4195
|
totalSize: number;
|
|
@@ -3800,7 +4199,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3800
4199
|
};
|
|
3801
4200
|
UNSTABLE_defaultItemHeight: number;
|
|
3802
4201
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3803
|
-
orientation:
|
|
4202
|
+
orientation: "horizontal" | "vertical";
|
|
3804
4203
|
indexRef: React.MutableRefObject<number>;
|
|
3805
4204
|
nonInteractiveIds: string[];
|
|
3806
4205
|
isVirtualized: boolean;
|
|
@@ -3818,10 +4217,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3818
4217
|
}): void;
|
|
3819
4218
|
selectAll(): void;
|
|
3820
4219
|
unselectAll(): void;
|
|
3821
|
-
registerItem(data: {
|
|
3822
|
-
item: any;
|
|
3823
|
-
textValue: string;
|
|
3824
|
-
}): void;
|
|
3825
4220
|
goTo(data: {
|
|
3826
4221
|
id: string;
|
|
3827
4222
|
}): void;
|
|
@@ -3835,6 +4230,10 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3835
4230
|
goToLastOfRow(): void;
|
|
3836
4231
|
goToNextPage(): void;
|
|
3837
4232
|
goToPreviousPage(): void;
|
|
4233
|
+
registerItem(data: {
|
|
4234
|
+
item: any;
|
|
4235
|
+
textValue: string;
|
|
4236
|
+
}): void;
|
|
3838
4237
|
unregisterItem(data: {
|
|
3839
4238
|
id: string;
|
|
3840
4239
|
}): void;
|