@workday/canvas-kit-react 8.5.0-339-next.0 → 8.5.0-342-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/ActionBarOverflowButton.tsx +2 -2
- package/banner/lib/Banner.tsx +56 -0
- package/banner/lib/BannerIcon.tsx +0 -1
- package/breadcrumbs/lib/Breadcrumbs.tsx +77 -56
- package/breadcrumbs/lib/BreadcrumbsItem.tsx +2 -2
- package/button/lib/BaseButton.tsx +3 -2
- 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 +10 -9
- package/card/lib/Card.tsx +36 -0
- package/checkbox/lib/Checkbox.tsx +1 -7
- package/collection/lib/ListBox.tsx +19 -6
- package/collection/lib/useCursorListModel.tsx +9 -2
- package/collection/lib/useGridModel.ts +4 -0
- package/collection/lib/useListItemRegister.tsx +11 -2
- package/collection/lib/useListItemRovingFocus.tsx +11 -3
- package/collection/lib/useListItemSelect.tsx +12 -0
- package/collection/lib/useListModel.tsx +20 -3
- package/collection/lib/useListRenderItem.tsx +14 -0
- package/collection/lib/useListResetCursorOnBlur.tsx +12 -1
- package/collection/lib/useOverflowListItemMeasure.tsx +11 -0
- package/collection/lib/useOverflowListMeasure.ts +4 -0
- package/collection/lib/useOverflowListTarget.tsx +4 -0
- package/collection/lib/useSelectionListModel.tsx +13 -1
- package/common/lib/EllipsisText.tsx +11 -3
- package/common/lib/theming/getObjectProxy.ts +3 -2
- package/common/lib/utils/components.ts +106 -19
- package/dialog/lib/DialogPopper.tsx +3 -0
- package/disclosure/lib/useDisclosureModel.tsx +2 -2
- package/dist/commonjs/action-bar/lib/ActionBar.d.ts +267 -223
- package/dist/commonjs/action-bar/lib/ActionBar.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBar.js +44 -0
- package/dist/commonjs/action-bar/lib/ActionBarItem.d.ts +11 -11
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts +11 -11
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts +11 -11
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.js +1 -1
- package/dist/commonjs/action-bar/lib/useActionBarModel.d.ts +107 -107
- 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 +56 -0
- package/dist/commonjs/banner/lib/BannerActionText.d.ts +1 -1
- 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/BannerLabel.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useBanner.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerActionText.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerIcon.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerLabel.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerModel.d.ts +1 -1
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts +305 -325
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.js +77 -56
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +11 -11
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts +12 -12
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.js +2 -2
- 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/BreadcrumbsList.d.ts +7 -7
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts +153 -153
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +11 -11
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +107 -107
- package/dist/commonjs/button/lib/BaseButton.d.ts +6 -5
- package/dist/commonjs/button/lib/BaseButton.d.ts.map +1 -1
- 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 +6 -1
- 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 +6 -2
- 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 +6 -2
- 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 +9 -0
- 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 +9 -0
- package/dist/commonjs/button/lib/TertiaryButton.d.ts +11 -8
- package/dist/commonjs/button/lib/TertiaryButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/TertiaryButton.js +12 -2
- 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 +1 -1
- 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/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 +1 -1
- 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/ButtonLabelIcon.d.ts +1 -1
- package/dist/commonjs/button/lib/parts/ButtonLabelIcon.d.ts.map +1 -1
- 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 +36 -0
- 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/CardHeading.d.ts +1 -1
- package/dist/commonjs/card/lib/CardHeading.d.ts.map +1 -1
- 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 +3 -3
- package/dist/commonjs/collection/lib/ListBox.d.ts +158 -82
- package/dist/commonjs/collection/lib/ListBox.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/ListBox.js +21 -8
- package/dist/commonjs/collection/lib/useBaseListModel.d.ts +10 -10
- package/dist/commonjs/collection/lib/useBaseListModel.js +1 -1
- package/dist/commonjs/collection/lib/useCursorListModel.d.ts +47 -36
- package/dist/commonjs/collection/lib/useCursorListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useGridModel.d.ts +79 -75
- package/dist/commonjs/collection/lib/useGridModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useGridModel.js +4 -0
- package/dist/commonjs/collection/lib/useListItemRegister.d.ts +14 -5
- package/dist/commonjs/collection/lib/useListItemRegister.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRegister.js +11 -2
- package/dist/commonjs/collection/lib/useListItemRovingFocus.d.ts +14 -6
- package/dist/commonjs/collection/lib/useListItemRovingFocus.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRovingFocus.js +11 -3
- package/dist/commonjs/collection/lib/useListItemSelect.d.ts +15 -3
- package/dist/commonjs/collection/lib/useListItemSelect.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemSelect.js +12 -0
- package/dist/commonjs/collection/lib/useListModel.d.ts +95 -78
- package/dist/commonjs/collection/lib/useListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListModel.js +20 -3
- 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 +14 -0
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.d.ts +15 -4
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.js +12 -1
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.d.ts +14 -3
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.js +11 -0
- package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts +7 -3
- package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListMeasure.js +4 -0
- package/dist/commonjs/collection/lib/useOverflowListModel.d.ts +99 -99
- package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts +7 -3
- package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListTarget.js +4 -0
- package/dist/commonjs/collection/lib/useSelectionListModel.d.ts +88 -76
- package/dist/commonjs/collection/lib/useSelectionListModel.d.ts.map +1 -1
- 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 +6 -0
- 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/common/lib/CanvasProvider.js +2 -0
- 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 +21 -2
- package/dist/commonjs/common/lib/InputProvider.d.ts +1 -1
- package/dist/commonjs/common/lib/InputProvider.js +2 -0
- package/dist/commonjs/common/lib/responsive/useResponsiveContainerStyles.js +5 -7
- package/dist/commonjs/common/lib/theming/getObjectProxy.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/getObjectProxy.js +3 -2
- package/dist/commonjs/common/lib/utils/components.d.ts +113 -26
- package/dist/commonjs/common/lib/utils/components.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/components.js +72 -9
- package/dist/commonjs/common/lib/utils/models.js +2 -1
- package/dist/commonjs/dialog/lib/Dialog.d.ts +24 -24
- package/dist/commonjs/dialog/lib/DialogCard.d.ts +3 -3
- package/dist/commonjs/dialog/lib/DialogPopper.d.ts +3 -3
- package/dist/commonjs/dialog/lib/DialogPopper.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/DialogPopper.js +3 -0
- package/dist/commonjs/dialog/lib/hooks/useDialogCard.d.ts +2 -2
- package/dist/commonjs/dialog/lib/hooks/useDialogModel.d.ts +10 -10
- package/dist/commonjs/dialog/lib/hooks/useDialogPopper.d.ts +2 -2
- package/dist/commonjs/dialog/lib/hooks/useDialogPopper.js +1 -1
- package/dist/commonjs/disclosure/lib/useDisclosureModel.d.ts +22 -22
- package/dist/commonjs/disclosure/lib/useDisclosureModel.js +2 -2
- 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 +2 -0
- package/dist/commonjs/form-field/lib/Hint.js +2 -0
- package/dist/commonjs/form-field/lib/Label.js +7 -7
- package/dist/commonjs/icon/lib/AccentIcon.d.ts +1 -1
- package/dist/commonjs/icon/lib/AccentIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/AppletIcon.d.ts +1 -1
- 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/Icon.d.ts +1 -1
- package/dist/commonjs/icon/lib/Icon.d.ts.map +1 -1
- 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/SystemIcon.d.ts +1 -2
- package/dist/commonjs/icon/lib/SystemIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/SystemIconCircle.d.ts +1 -1
- package/dist/commonjs/icon/lib/SystemIconCircle.d.ts.map +1 -1
- 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/Column.js +2 -0
- package/dist/commonjs/layout/lib/Flex.d.ts +2 -2
- package/dist/commonjs/layout/lib/Grid.d.ts +2 -2
- package/dist/commonjs/layout/lib/Layout.js +2 -0
- package/dist/commonjs/layout/lib/Stack.d.ts +7 -6
- package/dist/commonjs/layout/lib/Stack.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/border/color.d.ts +7 -7
- package/dist/commonjs/layout/lib/utils/border/index.js +5 -7
- 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/layout.d.ts +1 -1
- package/dist/commonjs/layout/lib/utils/layout.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/stack.d.ts +0 -2
- package/dist/commonjs/layout/lib/utils/stack.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/Menu.d.ts +218 -378
- package/dist/commonjs/menu/lib/Menu.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/Menu.js +37 -9
- package/dist/commonjs/menu/lib/MenuCard.d.ts +8 -8
- package/dist/commonjs/menu/lib/MenuContextTarget.d.ts +8 -8
- 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/MenuItem.d.ts +10 -10
- package/dist/commonjs/menu/lib/MenuList.d.ts +10 -10
- package/dist/commonjs/menu/lib/MenuPopper.d.ts +6 -6
- package/dist/commonjs/menu/lib/MenuTarget.d.ts +87 -12
- package/dist/commonjs/menu/lib/MenuTarget.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuTarget.js +4 -4
- package/dist/commonjs/menu/lib/useMenuModel.d.ts +173 -173
- package/dist/commonjs/modal/lib/Modal.d.ts +202 -46
- package/dist/commonjs/modal/lib/Modal.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/Modal.js +76 -5
- package/dist/commonjs/modal/lib/ModalBody.d.ts +2 -2
- package/dist/commonjs/modal/lib/ModalCard.d.ts +2 -2
- package/dist/commonjs/modal/lib/ModalCard.js +1 -1
- package/dist/commonjs/modal/lib/ModalHeading.d.ts +2 -2
- package/dist/commonjs/modal/lib/ModalOverflowOverlay.d.ts +3 -3
- package/dist/commonjs/modal/lib/ModalOverflowOverlay.js +1 -1
- package/dist/commonjs/modal/lib/ModalOverlay.d.ts +4 -4
- package/dist/commonjs/modal/lib/hooks/useCloseOnOverlayClick.d.ts +2 -2
- package/dist/commonjs/modal/lib/hooks/useModalCard.d.ts +2 -2
- package/dist/commonjs/modal/lib/hooks/useModalHeading.d.ts +2 -2
- package/dist/commonjs/modal/lib/hooks/useModalModel.d.ts +10 -10
- 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 +10 -6
- 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 +81 -66
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.d.ts +4 -3
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.js +14 -7
- 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 +10 -5
- 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 +9 -16
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.d.ts +9 -0
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.js +2 -1
- 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 +2 -14
- 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 +16 -11
- package/dist/commonjs/pagination/lib/Pagination/PageList.d.ts +4 -4
- package/dist/commonjs/pagination/lib/Pagination/PageList.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/PageList.js +17 -10
- 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 +227 -76
- package/dist/commonjs/pagination/lib/Pagination/buildPageRange.js +5 -7
- 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/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/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/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 +5 -4
- 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 +21 -8
- package/dist/commonjs/popup/lib/Popup.d.ts +183 -22
- package/dist/commonjs/popup/lib/Popup.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/Popup.js +85 -4
- package/dist/commonjs/popup/lib/PopupBody.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupCard.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupCloseButton.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupCloseIcon.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupHeading.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupPopper.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupTarget.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useAssistiveHideSiblings.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useAssistiveHideSiblings.js +5 -7
- package/dist/commonjs/popup/lib/hooks/useBringToTopOnClick.d.ts +6 -6
- package/dist/commonjs/popup/lib/hooks/useBringToTopOnClick.js +4 -4
- package/dist/commonjs/popup/lib/hooks/useCloseOnEscape.d.ts +4 -4
- package/dist/commonjs/popup/lib/hooks/useCloseOnEscape.js +2 -2
- package/dist/commonjs/popup/lib/hooks/useCloseOnFullscreenExit.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useCloseOnOutsideClick.d.ts +8 -8
- package/dist/commonjs/popup/lib/hooks/useCloseOnOutsideClick.js +6 -6
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useDisableBodyScroll.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useFocusRedirect.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useFocusTrap.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useInitialFocus.d.ts +4 -4
- package/dist/commonjs/popup/lib/hooks/useInitialFocus.js +2 -2
- package/dist/commonjs/popup/lib/hooks/usePopupCard.d.ts +3 -3
- package/dist/commonjs/popup/lib/hooks/usePopupCard.js +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.d.ts +5 -4
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.js +3 -2
- package/dist/commonjs/popup/lib/hooks/usePopupHeading.d.ts +3 -3
- package/dist/commonjs/popup/lib/hooks/usePopupHeading.js +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupModel.d.ts +13 -13
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.d.ts +4 -3
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.js +2 -1
- 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 +26 -18
- package/dist/commonjs/popup/lib/hooks/usePopupTarget.d.ts +3 -3
- package/dist/commonjs/popup/lib/hooks/usePopupTarget.js +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupTargetContext.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.d.ts +4 -4
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.js +2 -2
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts +2 -2
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenExit.d.ts +2 -2
- 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 +1 -1
- 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 +2 -0
- package/dist/commonjs/segmented-control/lib/SegmentedControl.d.ts +2 -2
- 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/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 +2 -2
- package/dist/commonjs/select/lib/SelectOption.js +2 -0
- package/dist/commonjs/side-panel/lib/SidePanel.js +3 -1
- 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/skeletonShape.d.ts +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonShape.d.ts.map +1 -1
- 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/skeleton.d.ts +30 -4
- package/dist/commonjs/skeleton/lib/skeleton.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/skeleton.js +27 -1
- package/dist/commonjs/status-indicator/lib/StatusIndicator.js +2 -0
- package/dist/commonjs/switch/lib/Switch.d.ts +1 -1
- package/dist/commonjs/table/lib/Table.js +2 -0
- package/dist/commonjs/table/lib/TableRow.d.ts +2 -1
- package/dist/commonjs/table/lib/TableRow.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/Tabs.d.ts +585 -382
- package/dist/commonjs/tabs/lib/Tabs.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/Tabs.js +94 -2
- package/dist/commonjs/tabs/lib/TabsItem.d.ts +15 -15
- package/dist/commonjs/tabs/lib/TabsList.d.ts +12 -12
- package/dist/commonjs/tabs/lib/TabsList.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsList.js +4 -1
- package/dist/commonjs/tabs/lib/TabsMenuPopper.d.ts +6 -6
- package/dist/commonjs/tabs/lib/TabsOverflowButton.d.ts +12 -12
- package/dist/commonjs/tabs/lib/TabsOverflowButton.js +1 -1
- package/dist/commonjs/tabs/lib/TabsPanel.d.ts +12 -12
- package/dist/commonjs/tabs/lib/TabsPanels.d.ts +8 -8
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts +534 -506
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/useTabsModel.js +18 -1
- package/dist/commonjs/text/lib/LabelText.d.ts +4 -9
- package/dist/commonjs/text/lib/LabelText.d.ts.map +1 -1
- package/dist/commonjs/text/lib/LabelText.js +3 -8
- package/dist/commonjs/text/lib/Text.d.ts +11 -15
- package/dist/commonjs/text/lib/Text.d.ts.map +1 -1
- package/dist/commonjs/text/lib/Text.js +10 -12
- package/dist/commonjs/text/lib/TypeLevelComponents.d.ts +4 -24
- package/dist/commonjs/text/lib/TypeLevelComponents.d.ts.map +1 -1
- package/dist/commonjs/text/lib/TypeLevelComponents.js +0 -20
- package/dist/commonjs/text-area/lib/TextArea.d.ts +1 -1
- package/dist/commonjs/text-input/lib/TextInput.d.ts +1 -1
- package/dist/commonjs/toast/lib/Toast.d.ts +1 -1
- package/dist/commonjs/toast/lib/Toast.d.ts.map +1 -1
- package/dist/commonjs/tokens/lib/type/index.d.ts +7 -7
- package/dist/commonjs/tokens/lib/type/index.js +2 -2
- 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 +22 -20
- package/dist/commonjs/tooltip/lib/TooltipContainer.d.ts +1 -1
- package/dist/es6/action-bar/lib/ActionBar.d.ts +267 -223
- package/dist/es6/action-bar/lib/ActionBar.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBar.js +44 -0
- package/dist/es6/action-bar/lib/ActionBarItem.d.ts +11 -11
- package/dist/es6/action-bar/lib/ActionBarList.d.ts +11 -11
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts +11 -11
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.js +2 -2
- package/dist/es6/action-bar/lib/useActionBarModel.d.ts +107 -107
- 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 +56 -0
- package/dist/es6/banner/lib/BannerActionText.d.ts +1 -1
- 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/BannerLabel.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useBanner.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useBannerActionText.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useBannerIcon.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useBannerLabel.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useBannerModel.d.ts +1 -1
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts +305 -325
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.js +77 -56
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +11 -11
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts +12 -12
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.js +2 -2
- 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/BreadcrumbsList.d.ts +7 -7
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts +153 -153
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +11 -11
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +107 -107
- package/dist/es6/button/lib/BaseButton.d.ts +6 -5
- package/dist/es6/button/lib/BaseButton.d.ts.map +1 -1
- 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 +6 -1
- 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 +6 -2
- 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 +6 -2
- 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 +9 -0
- 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 +9 -0
- package/dist/es6/button/lib/TertiaryButton.d.ts +11 -8
- package/dist/es6/button/lib/TertiaryButton.d.ts.map +1 -1
- package/dist/es6/button/lib/TertiaryButton.js +12 -2
- 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 +1 -1
- 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/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 +1 -1
- 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/ButtonLabelIcon.d.ts +1 -1
- package/dist/es6/button/lib/parts/ButtonLabelIcon.d.ts.map +1 -1
- 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 +36 -0
- 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/CardHeading.d.ts +1 -1
- package/dist/es6/card/lib/CardHeading.d.ts.map +1 -1
- 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 +3 -3
- package/dist/es6/collection/lib/ListBox.d.ts +158 -82
- package/dist/es6/collection/lib/ListBox.d.ts.map +1 -1
- package/dist/es6/collection/lib/ListBox.js +19 -6
- package/dist/es6/collection/lib/useBaseListModel.d.ts +10 -10
- package/dist/es6/collection/lib/useBaseListModel.js +1 -1
- package/dist/es6/collection/lib/useCursorListModel.d.ts +47 -36
- package/dist/es6/collection/lib/useCursorListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useGridModel.d.ts +79 -75
- package/dist/es6/collection/lib/useGridModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useGridModel.js +4 -0
- package/dist/es6/collection/lib/useListItemRegister.d.ts +14 -5
- package/dist/es6/collection/lib/useListItemRegister.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRegister.js +11 -2
- package/dist/es6/collection/lib/useListItemRovingFocus.d.ts +14 -6
- package/dist/es6/collection/lib/useListItemRovingFocus.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRovingFocus.js +11 -3
- package/dist/es6/collection/lib/useListItemSelect.d.ts +15 -3
- package/dist/es6/collection/lib/useListItemSelect.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemSelect.js +12 -0
- package/dist/es6/collection/lib/useListModel.d.ts +95 -78
- package/dist/es6/collection/lib/useListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListModel.js +20 -3
- 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 +14 -0
- package/dist/es6/collection/lib/useListResetCursorOnBlur.d.ts +15 -4
- package/dist/es6/collection/lib/useListResetCursorOnBlur.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListResetCursorOnBlur.js +12 -1
- package/dist/es6/collection/lib/useOverflowListItemMeasure.d.ts +14 -3
- package/dist/es6/collection/lib/useOverflowListItemMeasure.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListItemMeasure.js +11 -0
- package/dist/es6/collection/lib/useOverflowListMeasure.d.ts +7 -3
- package/dist/es6/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListMeasure.js +4 -0
- package/dist/es6/collection/lib/useOverflowListModel.d.ts +99 -99
- package/dist/es6/collection/lib/useOverflowListTarget.d.ts +7 -3
- package/dist/es6/collection/lib/useOverflowListTarget.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListTarget.js +4 -0
- package/dist/es6/collection/lib/useSelectionListModel.d.ts +88 -76
- package/dist/es6/collection/lib/useSelectionListModel.d.ts.map +1 -1
- 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 +6 -0
- 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/common/lib/CanvasProvider.js +2 -0
- 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 +21 -2
- package/dist/es6/common/lib/InputProvider.d.ts +1 -1
- package/dist/es6/common/lib/InputProvider.js +2 -0
- package/dist/es6/common/lib/responsive/useResponsiveContainerStyles.js +5 -7
- package/dist/es6/common/lib/theming/getObjectProxy.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/getObjectProxy.js +3 -2
- package/dist/es6/common/lib/utils/components.d.ts +113 -26
- package/dist/es6/common/lib/utils/components.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/components.js +70 -8
- package/dist/es6/common/lib/utils/models.js +2 -1
- package/dist/es6/dialog/lib/Dialog.d.ts +24 -24
- package/dist/es6/dialog/lib/DialogCard.d.ts +3 -3
- package/dist/es6/dialog/lib/DialogPopper.d.ts +3 -3
- package/dist/es6/dialog/lib/DialogPopper.d.ts.map +1 -1
- package/dist/es6/dialog/lib/DialogPopper.js +3 -0
- package/dist/es6/dialog/lib/hooks/useDialogCard.d.ts +2 -2
- package/dist/es6/dialog/lib/hooks/useDialogModel.d.ts +10 -10
- package/dist/es6/dialog/lib/hooks/useDialogPopper.d.ts +2 -2
- package/dist/es6/dialog/lib/hooks/useDialogPopper.js +1 -1
- package/dist/es6/disclosure/lib/useDisclosureModel.d.ts +22 -22
- package/dist/es6/disclosure/lib/useDisclosureModel.js +2 -2
- 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 +3 -1
- package/dist/es6/form-field/lib/Hint.js +2 -0
- package/dist/es6/form-field/lib/Label.js +7 -7
- package/dist/es6/icon/lib/AccentIcon.d.ts +1 -1
- package/dist/es6/icon/lib/AccentIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/AppletIcon.d.ts +1 -1
- 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/Icon.d.ts +1 -1
- package/dist/es6/icon/lib/Icon.d.ts.map +1 -1
- 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/SystemIcon.d.ts +1 -2
- package/dist/es6/icon/lib/SystemIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/SystemIconCircle.d.ts +1 -1
- package/dist/es6/icon/lib/SystemIconCircle.d.ts.map +1 -1
- 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/Column.js +2 -0
- package/dist/es6/layout/lib/Flex.d.ts +2 -2
- package/dist/es6/layout/lib/Grid.d.ts +2 -2
- package/dist/es6/layout/lib/Layout.js +2 -0
- package/dist/es6/layout/lib/Stack.d.ts +7 -6
- package/dist/es6/layout/lib/Stack.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/border/color.d.ts +7 -7
- package/dist/es6/layout/lib/utils/border/index.js +5 -7
- 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/layout.d.ts +1 -1
- package/dist/es6/layout/lib/utils/layout.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/stack.d.ts +0 -2
- package/dist/es6/layout/lib/utils/stack.d.ts.map +1 -1
- package/dist/es6/menu/lib/Menu.d.ts +218 -378
- package/dist/es6/menu/lib/Menu.d.ts.map +1 -1
- package/dist/es6/menu/lib/Menu.js +37 -9
- package/dist/es6/menu/lib/MenuCard.d.ts +8 -8
- package/dist/es6/menu/lib/MenuContextTarget.d.ts +8 -8
- 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/MenuItem.d.ts +10 -10
- package/dist/es6/menu/lib/MenuList.d.ts +10 -10
- package/dist/es6/menu/lib/MenuPopper.d.ts +6 -6
- package/dist/es6/menu/lib/MenuTarget.d.ts +87 -12
- package/dist/es6/menu/lib/MenuTarget.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuTarget.js +1 -1
- package/dist/es6/menu/lib/useMenuModel.d.ts +173 -173
- package/dist/es6/modal/lib/Modal.d.ts +202 -46
- package/dist/es6/modal/lib/Modal.d.ts.map +1 -1
- package/dist/es6/modal/lib/Modal.js +76 -5
- package/dist/es6/modal/lib/ModalBody.d.ts +2 -2
- package/dist/es6/modal/lib/ModalCard.d.ts +2 -2
- package/dist/es6/modal/lib/ModalCard.js +1 -1
- package/dist/es6/modal/lib/ModalHeading.d.ts +2 -2
- package/dist/es6/modal/lib/ModalOverflowOverlay.d.ts +3 -3
- package/dist/es6/modal/lib/ModalOverflowOverlay.js +1 -1
- package/dist/es6/modal/lib/ModalOverlay.d.ts +4 -4
- package/dist/es6/modal/lib/hooks/useCloseOnOverlayClick.d.ts +2 -2
- package/dist/es6/modal/lib/hooks/useModalCard.d.ts +2 -2
- package/dist/es6/modal/lib/hooks/useModalHeading.d.ts +2 -2
- package/dist/es6/modal/lib/hooks/useModalModel.d.ts +10 -10
- 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 +11 -6
- 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 +80 -60
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.d.ts +4 -3
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.js +14 -6
- 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 +10 -4
- 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 -15
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.d.ts +9 -0
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.js +1 -0
- 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 -14
- 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 +17 -11
- package/dist/es6/pagination/lib/Pagination/PageList.d.ts +4 -4
- package/dist/es6/pagination/lib/Pagination/PageList.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/PageList.js +17 -8
- 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 -77
- package/dist/es6/pagination/lib/Pagination/buildPageRange.js +5 -7
- 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/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/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/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 +4 -3
- 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 +21 -8
- package/dist/es6/popup/lib/Popup.d.ts +183 -22
- package/dist/es6/popup/lib/Popup.d.ts.map +1 -1
- package/dist/es6/popup/lib/Popup.js +85 -4
- package/dist/es6/popup/lib/PopupBody.d.ts +2 -2
- package/dist/es6/popup/lib/PopupCard.d.ts +2 -2
- package/dist/es6/popup/lib/PopupCloseButton.d.ts +2 -2
- package/dist/es6/popup/lib/PopupCloseIcon.d.ts +2 -2
- package/dist/es6/popup/lib/PopupHeading.d.ts +2 -2
- package/dist/es6/popup/lib/PopupPopper.d.ts +2 -2
- package/dist/es6/popup/lib/PopupTarget.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useAssistiveHideSiblings.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useAssistiveHideSiblings.js +5 -7
- package/dist/es6/popup/lib/hooks/useBringToTopOnClick.d.ts +6 -6
- package/dist/es6/popup/lib/hooks/useBringToTopOnClick.js +4 -4
- package/dist/es6/popup/lib/hooks/useCloseOnEscape.d.ts +4 -4
- package/dist/es6/popup/lib/hooks/useCloseOnEscape.js +2 -2
- package/dist/es6/popup/lib/hooks/useCloseOnFullscreenExit.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useCloseOnOutsideClick.d.ts +8 -8
- package/dist/es6/popup/lib/hooks/useCloseOnOutsideClick.js +6 -6
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useDisableBodyScroll.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useFocusRedirect.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useFocusTrap.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useInitialFocus.d.ts +4 -4
- package/dist/es6/popup/lib/hooks/useInitialFocus.js +2 -2
- package/dist/es6/popup/lib/hooks/usePopupCard.d.ts +3 -3
- package/dist/es6/popup/lib/hooks/usePopupCard.js +1 -1
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.d.ts +5 -4
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.js +3 -2
- package/dist/es6/popup/lib/hooks/usePopupHeading.d.ts +3 -3
- package/dist/es6/popup/lib/hooks/usePopupHeading.js +1 -1
- package/dist/es6/popup/lib/hooks/usePopupModel.d.ts +13 -13
- package/dist/es6/popup/lib/hooks/usePopupPopper.d.ts +4 -3
- package/dist/es6/popup/lib/hooks/usePopupPopper.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupPopper.js +2 -1
- 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 +26 -18
- package/dist/es6/popup/lib/hooks/usePopupTarget.d.ts +3 -3
- package/dist/es6/popup/lib/hooks/usePopupTarget.js +1 -1
- package/dist/es6/popup/lib/hooks/usePopupTargetContext.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useReturnFocus.d.ts +4 -4
- package/dist/es6/popup/lib/hooks/useReturnFocus.js +2 -2
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts +2 -2
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenExit.d.ts +2 -2
- 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 +1 -1
- 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 +3 -1
- package/dist/es6/segmented-control/lib/SegmentedControl.d.ts +2 -2
- 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/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 +2 -2
- package/dist/es6/select/lib/SelectOption.js +2 -0
- package/dist/es6/side-panel/lib/SidePanel.js +3 -1
- 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/skeletonShape.d.ts +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonShape.d.ts.map +1 -1
- 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/skeleton.d.ts +30 -4
- package/dist/es6/skeleton/lib/skeleton.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/skeleton.js +27 -1
- package/dist/es6/status-indicator/lib/StatusIndicator.js +2 -0
- package/dist/es6/switch/lib/Switch.d.ts +1 -1
- package/dist/es6/table/lib/Table.js +2 -0
- package/dist/es6/table/lib/TableRow.d.ts +2 -1
- package/dist/es6/table/lib/TableRow.d.ts.map +1 -1
- package/dist/es6/tabs/lib/Tabs.d.ts +585 -382
- package/dist/es6/tabs/lib/Tabs.d.ts.map +1 -1
- package/dist/es6/tabs/lib/Tabs.js +94 -2
- package/dist/es6/tabs/lib/TabsItem.d.ts +15 -15
- package/dist/es6/tabs/lib/TabsList.d.ts +12 -12
- package/dist/es6/tabs/lib/TabsList.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsList.js +4 -1
- package/dist/es6/tabs/lib/TabsMenuPopper.d.ts +6 -6
- package/dist/es6/tabs/lib/TabsOverflowButton.d.ts +12 -12
- package/dist/es6/tabs/lib/TabsOverflowButton.js +2 -2
- package/dist/es6/tabs/lib/TabsPanel.d.ts +12 -12
- package/dist/es6/tabs/lib/TabsPanels.d.ts +8 -8
- package/dist/es6/tabs/lib/useTabsModel.d.ts +534 -506
- package/dist/es6/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/es6/tabs/lib/useTabsModel.js +18 -1
- package/dist/es6/text/lib/LabelText.d.ts +4 -9
- package/dist/es6/text/lib/LabelText.d.ts.map +1 -1
- package/dist/es6/text/lib/LabelText.js +3 -8
- package/dist/es6/text/lib/Text.d.ts +11 -15
- package/dist/es6/text/lib/Text.d.ts.map +1 -1
- package/dist/es6/text/lib/Text.js +10 -12
- package/dist/es6/text/lib/TypeLevelComponents.d.ts +4 -24
- package/dist/es6/text/lib/TypeLevelComponents.d.ts.map +1 -1
- package/dist/es6/text/lib/TypeLevelComponents.js +0 -20
- package/dist/es6/text-area/lib/TextArea.d.ts +1 -1
- package/dist/es6/text-input/lib/TextInput.d.ts +1 -1
- package/dist/es6/toast/lib/Toast.d.ts +1 -1
- package/dist/es6/toast/lib/Toast.d.ts.map +1 -1
- package/dist/es6/tokens/lib/type/index.d.ts +7 -7
- package/dist/es6/tokens/lib/type/index.js +2 -2
- 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 +23 -20
- package/dist/es6/tooltip/lib/TooltipContainer.d.ts +1 -1
- package/form-field/lib/FormField.tsx +1 -3
- package/icon/lib/SystemIcon.tsx +0 -1
- package/layout/lib/utils/border/color.ts +7 -7
- package/layout/lib/utils/layout.ts +1 -1
- package/menu/lib/Menu.tsx +37 -9
- package/menu/lib/MenuTarget.tsx +1 -1
- package/modal/lib/Modal.tsx +76 -5
- package/package.json +3 -3
- package/pagination/lib/Pagination/AdditionalDetails.tsx +30 -20
- package/pagination/lib/Pagination/Controls.tsx +121 -98
- package/pagination/lib/Pagination/GoTo/Form.tsx +33 -21
- 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 +2 -0
- package/pagination/lib/Pagination/Nav.tsx +1 -2
- package/pagination/lib/Pagination/PageButton.tsx +34 -31
- package/pagination/lib/Pagination/PageList.tsx +33 -20
- 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/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 +2 -2
- package/radio/lib/RadioGroup.tsx +1 -3
- package/select/lib/Select.tsx +2 -15
- package/skeleton/lib/skeleton.tsx +27 -1
- package/tabs/lib/Tabs.tsx +95 -3
- package/tabs/lib/TabsItem.tsx +2 -2
- package/tabs/lib/TabsList.tsx +4 -1
- package/tabs/lib/TabsOverflowButton.tsx +3 -3
- package/tabs/lib/TabsPanel.tsx +2 -2
- package/tabs/lib/useTabsModel.tsx +16 -0
- package/text/lib/LabelText.tsx +3 -8
- package/text/lib/Text.tsx +17 -21
- package/text/lib/TypeLevelComponents.tsx +0 -20
- package/tokens/lib/type/index.ts +8 -8
- package/tooltip/lib/Tooltip.tsx +42 -39
- 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/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/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,8 +31,32 @@ 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<{
|
|
@@ -60,13 +80,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
60
80
|
items: any[];
|
|
61
81
|
}>;
|
|
62
82
|
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
|
-
*/
|
|
83
|
+
containerWidth: number;
|
|
70
84
|
shouldCalculateOverflow: boolean;
|
|
71
85
|
initialSelectedIds: import("../../collection/lib/useSelectionListModel").SelectedIds;
|
|
72
86
|
initialUnselectedIds: string[];
|
|
@@ -90,7 +104,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
90
104
|
itemWidthCache: Record<string, number>;
|
|
91
105
|
containerWidth: number;
|
|
92
106
|
overflowTargetWidth: number;
|
|
93
|
-
selectedIds:
|
|
107
|
+
selectedIds: string[] | "all";
|
|
94
108
|
unselectedIds: string[];
|
|
95
109
|
cursorId: string;
|
|
96
110
|
columnCount: number;
|
|
@@ -117,7 +131,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
117
131
|
itemWidthCache: Record<string, number>;
|
|
118
132
|
containerWidth: number;
|
|
119
133
|
overflowTargetWidth: number;
|
|
120
|
-
selectedIds:
|
|
134
|
+
selectedIds: string[] | "all";
|
|
121
135
|
unselectedIds: string[];
|
|
122
136
|
cursorId: string;
|
|
123
137
|
columnCount: number;
|
|
@@ -144,7 +158,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
144
158
|
itemWidthCache: Record<string, number>;
|
|
145
159
|
containerWidth: number;
|
|
146
160
|
overflowTargetWidth: number;
|
|
147
|
-
selectedIds:
|
|
161
|
+
selectedIds: string[] | "all";
|
|
148
162
|
unselectedIds: string[];
|
|
149
163
|
cursorId: string;
|
|
150
164
|
columnCount: number;
|
|
@@ -172,7 +186,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
172
186
|
itemWidthCache: Record<string, number>;
|
|
173
187
|
containerWidth: number;
|
|
174
188
|
overflowTargetWidth: number;
|
|
175
|
-
selectedIds:
|
|
189
|
+
selectedIds: string[] | "all";
|
|
176
190
|
unselectedIds: string[];
|
|
177
191
|
cursorId: string;
|
|
178
192
|
columnCount: number;
|
|
@@ -199,7 +213,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
199
213
|
itemWidthCache: Record<string, number>;
|
|
200
214
|
containerWidth: number;
|
|
201
215
|
overflowTargetWidth: number;
|
|
202
|
-
selectedIds:
|
|
216
|
+
selectedIds: string[] | "all";
|
|
203
217
|
unselectedIds: string[];
|
|
204
218
|
cursorId: string;
|
|
205
219
|
columnCount: number;
|
|
@@ -226,7 +240,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
226
240
|
itemWidthCache: Record<string, number>;
|
|
227
241
|
containerWidth: number;
|
|
228
242
|
overflowTargetWidth: number;
|
|
229
|
-
selectedIds:
|
|
243
|
+
selectedIds: string[] | "all";
|
|
230
244
|
unselectedIds: string[];
|
|
231
245
|
cursorId: string;
|
|
232
246
|
columnCount: number;
|
|
@@ -253,7 +267,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
253
267
|
itemWidthCache: Record<string, number>;
|
|
254
268
|
containerWidth: number;
|
|
255
269
|
overflowTargetWidth: number;
|
|
256
|
-
selectedIds:
|
|
270
|
+
selectedIds: string[] | "all";
|
|
257
271
|
unselectedIds: string[];
|
|
258
272
|
cursorId: string;
|
|
259
273
|
columnCount: number;
|
|
@@ -278,7 +292,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
278
292
|
itemWidthCache: Record<string, number>;
|
|
279
293
|
containerWidth: number;
|
|
280
294
|
overflowTargetWidth: number;
|
|
281
|
-
selectedIds:
|
|
295
|
+
selectedIds: string[] | "all";
|
|
282
296
|
unselectedIds: string[];
|
|
283
297
|
cursorId: string;
|
|
284
298
|
columnCount: number;
|
|
@@ -303,7 +317,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
303
317
|
itemWidthCache: Record<string, number>;
|
|
304
318
|
containerWidth: number;
|
|
305
319
|
overflowTargetWidth: number;
|
|
306
|
-
selectedIds:
|
|
320
|
+
selectedIds: string[] | "all";
|
|
307
321
|
unselectedIds: string[];
|
|
308
322
|
cursorId: string;
|
|
309
323
|
columnCount: number;
|
|
@@ -331,7 +345,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
331
345
|
itemWidthCache: Record<string, number>;
|
|
332
346
|
containerWidth: number;
|
|
333
347
|
overflowTargetWidth: number;
|
|
334
|
-
selectedIds:
|
|
348
|
+
selectedIds: string[] | "all";
|
|
335
349
|
unselectedIds: string[];
|
|
336
350
|
cursorId: string;
|
|
337
351
|
columnCount: number;
|
|
@@ -358,7 +372,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
358
372
|
itemWidthCache: Record<string, number>;
|
|
359
373
|
containerWidth: number;
|
|
360
374
|
overflowTargetWidth: number;
|
|
361
|
-
selectedIds:
|
|
375
|
+
selectedIds: string[] | "all";
|
|
362
376
|
unselectedIds: string[];
|
|
363
377
|
cursorId: string;
|
|
364
378
|
columnCount: number;
|
|
@@ -383,7 +397,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
383
397
|
itemWidthCache: Record<string, number>;
|
|
384
398
|
containerWidth: number;
|
|
385
399
|
overflowTargetWidth: number;
|
|
386
|
-
selectedIds:
|
|
400
|
+
selectedIds: string[] | "all";
|
|
387
401
|
unselectedIds: string[];
|
|
388
402
|
cursorId: string;
|
|
389
403
|
columnCount: number;
|
|
@@ -408,7 +422,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
408
422
|
itemWidthCache: Record<string, number>;
|
|
409
423
|
containerWidth: number;
|
|
410
424
|
overflowTargetWidth: number;
|
|
411
|
-
selectedIds:
|
|
425
|
+
selectedIds: string[] | "all";
|
|
412
426
|
unselectedIds: string[];
|
|
413
427
|
cursorId: string;
|
|
414
428
|
columnCount: number;
|
|
@@ -433,7 +447,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
433
447
|
itemWidthCache: Record<string, number>;
|
|
434
448
|
containerWidth: number;
|
|
435
449
|
overflowTargetWidth: number;
|
|
436
|
-
selectedIds:
|
|
450
|
+
selectedIds: string[] | "all";
|
|
437
451
|
unselectedIds: string[];
|
|
438
452
|
cursorId: string;
|
|
439
453
|
columnCount: number;
|
|
@@ -458,7 +472,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
458
472
|
itemWidthCache: Record<string, number>;
|
|
459
473
|
containerWidth: number;
|
|
460
474
|
overflowTargetWidth: number;
|
|
461
|
-
selectedIds:
|
|
475
|
+
selectedIds: string[] | "all";
|
|
462
476
|
unselectedIds: string[];
|
|
463
477
|
cursorId: string;
|
|
464
478
|
columnCount: number;
|
|
@@ -483,7 +497,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
483
497
|
itemWidthCache: Record<string, number>;
|
|
484
498
|
containerWidth: number;
|
|
485
499
|
overflowTargetWidth: number;
|
|
486
|
-
selectedIds:
|
|
500
|
+
selectedIds: string[] | "all";
|
|
487
501
|
unselectedIds: string[];
|
|
488
502
|
cursorId: string;
|
|
489
503
|
columnCount: number;
|
|
@@ -508,7 +522,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
508
522
|
itemWidthCache: Record<string, number>;
|
|
509
523
|
containerWidth: number;
|
|
510
524
|
overflowTargetWidth: number;
|
|
511
|
-
selectedIds:
|
|
525
|
+
selectedIds: string[] | "all";
|
|
512
526
|
unselectedIds: string[];
|
|
513
527
|
cursorId: string;
|
|
514
528
|
columnCount: number;
|
|
@@ -533,7 +547,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
533
547
|
itemWidthCache: Record<string, number>;
|
|
534
548
|
containerWidth: number;
|
|
535
549
|
overflowTargetWidth: number;
|
|
536
|
-
selectedIds:
|
|
550
|
+
selectedIds: string[] | "all";
|
|
537
551
|
unselectedIds: string[];
|
|
538
552
|
cursorId: string;
|
|
539
553
|
columnCount: number;
|
|
@@ -558,7 +572,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
558
572
|
itemWidthCache: Record<string, number>;
|
|
559
573
|
containerWidth: number;
|
|
560
574
|
overflowTargetWidth: number;
|
|
561
|
-
selectedIds:
|
|
575
|
+
selectedIds: string[] | "all";
|
|
562
576
|
unselectedIds: string[];
|
|
563
577
|
cursorId: string;
|
|
564
578
|
columnCount: number;
|
|
@@ -583,7 +597,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
583
597
|
itemWidthCache: Record<string, number>;
|
|
584
598
|
containerWidth: number;
|
|
585
599
|
overflowTargetWidth: number;
|
|
586
|
-
selectedIds:
|
|
600
|
+
selectedIds: string[] | "all";
|
|
587
601
|
unselectedIds: string[];
|
|
588
602
|
cursorId: string;
|
|
589
603
|
columnCount: number;
|
|
@@ -608,7 +622,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
608
622
|
itemWidthCache: Record<string, number>;
|
|
609
623
|
containerWidth: number;
|
|
610
624
|
overflowTargetWidth: number;
|
|
611
|
-
selectedIds:
|
|
625
|
+
selectedIds: string[] | "all";
|
|
612
626
|
unselectedIds: string[];
|
|
613
627
|
cursorId: string;
|
|
614
628
|
columnCount: number;
|
|
@@ -635,7 +649,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
635
649
|
itemWidthCache: Record<string, number>;
|
|
636
650
|
containerWidth: number;
|
|
637
651
|
overflowTargetWidth: number;
|
|
638
|
-
selectedIds:
|
|
652
|
+
selectedIds: string[] | "all";
|
|
639
653
|
unselectedIds: string[];
|
|
640
654
|
cursorId: string;
|
|
641
655
|
columnCount: number;
|
|
@@ -662,7 +676,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
662
676
|
itemWidthCache: Record<string, number>;
|
|
663
677
|
containerWidth: number;
|
|
664
678
|
overflowTargetWidth: number;
|
|
665
|
-
selectedIds:
|
|
679
|
+
selectedIds: string[] | "all";
|
|
666
680
|
unselectedIds: string[];
|
|
667
681
|
cursorId: string;
|
|
668
682
|
columnCount: number;
|
|
@@ -690,7 +704,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
690
704
|
itemWidthCache: Record<string, number>;
|
|
691
705
|
containerWidth: number;
|
|
692
706
|
overflowTargetWidth: number;
|
|
693
|
-
selectedIds:
|
|
707
|
+
selectedIds: string[] | "all";
|
|
694
708
|
unselectedIds: string[];
|
|
695
709
|
cursorId: string;
|
|
696
710
|
columnCount: number;
|
|
@@ -717,7 +731,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
717
731
|
itemWidthCache: Record<string, number>;
|
|
718
732
|
containerWidth: number;
|
|
719
733
|
overflowTargetWidth: number;
|
|
720
|
-
selectedIds:
|
|
734
|
+
selectedIds: string[] | "all";
|
|
721
735
|
unselectedIds: string[];
|
|
722
736
|
cursorId: string;
|
|
723
737
|
columnCount: number;
|
|
@@ -744,7 +758,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
744
758
|
itemWidthCache: Record<string, number>;
|
|
745
759
|
containerWidth: number;
|
|
746
760
|
overflowTargetWidth: number;
|
|
747
|
-
selectedIds:
|
|
761
|
+
selectedIds: string[] | "all";
|
|
748
762
|
unselectedIds: string[];
|
|
749
763
|
cursorId: string;
|
|
750
764
|
columnCount: number;
|
|
@@ -772,7 +786,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
772
786
|
itemWidthCache: Record<string, number>;
|
|
773
787
|
containerWidth: number;
|
|
774
788
|
overflowTargetWidth: number;
|
|
775
|
-
selectedIds:
|
|
789
|
+
selectedIds: string[] | "all";
|
|
776
790
|
unselectedIds: string[];
|
|
777
791
|
cursorId: string;
|
|
778
792
|
columnCount: number;
|
|
@@ -799,7 +813,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
799
813
|
itemWidthCache: Record<string, number>;
|
|
800
814
|
containerWidth: number;
|
|
801
815
|
overflowTargetWidth: number;
|
|
802
|
-
selectedIds:
|
|
816
|
+
selectedIds: string[] | "all";
|
|
803
817
|
unselectedIds: string[];
|
|
804
818
|
cursorId: string;
|
|
805
819
|
columnCount: number;
|
|
@@ -826,7 +840,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
826
840
|
itemWidthCache: Record<string, number>;
|
|
827
841
|
containerWidth: number;
|
|
828
842
|
overflowTargetWidth: number;
|
|
829
|
-
selectedIds:
|
|
843
|
+
selectedIds: string[] | "all";
|
|
830
844
|
unselectedIds: string[];
|
|
831
845
|
cursorId: string;
|
|
832
846
|
columnCount: number;
|
|
@@ -853,7 +867,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
853
867
|
itemWidthCache: Record<string, number>;
|
|
854
868
|
containerWidth: number;
|
|
855
869
|
overflowTargetWidth: number;
|
|
856
|
-
selectedIds:
|
|
870
|
+
selectedIds: string[] | "all";
|
|
857
871
|
unselectedIds: string[];
|
|
858
872
|
cursorId: string;
|
|
859
873
|
columnCount: number;
|
|
@@ -878,7 +892,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
878
892
|
itemWidthCache: Record<string, number>;
|
|
879
893
|
containerWidth: number;
|
|
880
894
|
overflowTargetWidth: number;
|
|
881
|
-
selectedIds:
|
|
895
|
+
selectedIds: string[] | "all";
|
|
882
896
|
unselectedIds: string[];
|
|
883
897
|
cursorId: string;
|
|
884
898
|
columnCount: number;
|
|
@@ -903,7 +917,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
903
917
|
itemWidthCache: Record<string, number>;
|
|
904
918
|
containerWidth: number;
|
|
905
919
|
overflowTargetWidth: number;
|
|
906
|
-
selectedIds:
|
|
920
|
+
selectedIds: string[] | "all";
|
|
907
921
|
unselectedIds: string[];
|
|
908
922
|
cursorId: string;
|
|
909
923
|
columnCount: number;
|
|
@@ -931,7 +945,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
931
945
|
itemWidthCache: Record<string, number>;
|
|
932
946
|
containerWidth: number;
|
|
933
947
|
overflowTargetWidth: number;
|
|
934
|
-
selectedIds:
|
|
948
|
+
selectedIds: string[] | "all";
|
|
935
949
|
unselectedIds: string[];
|
|
936
950
|
cursorId: string;
|
|
937
951
|
columnCount: number;
|
|
@@ -958,7 +972,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
958
972
|
itemWidthCache: Record<string, number>;
|
|
959
973
|
containerWidth: number;
|
|
960
974
|
overflowTargetWidth: number;
|
|
961
|
-
selectedIds:
|
|
975
|
+
selectedIds: string[] | "all";
|
|
962
976
|
unselectedIds: string[];
|
|
963
977
|
cursorId: string;
|
|
964
978
|
columnCount: number;
|
|
@@ -983,7 +997,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
983
997
|
itemWidthCache: Record<string, number>;
|
|
984
998
|
containerWidth: number;
|
|
985
999
|
overflowTargetWidth: number;
|
|
986
|
-
selectedIds:
|
|
1000
|
+
selectedIds: string[] | "all";
|
|
987
1001
|
unselectedIds: string[];
|
|
988
1002
|
cursorId: string;
|
|
989
1003
|
columnCount: number;
|
|
@@ -1008,7 +1022,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1008
1022
|
itemWidthCache: Record<string, number>;
|
|
1009
1023
|
containerWidth: number;
|
|
1010
1024
|
overflowTargetWidth: number;
|
|
1011
|
-
selectedIds:
|
|
1025
|
+
selectedIds: string[] | "all";
|
|
1012
1026
|
unselectedIds: string[];
|
|
1013
1027
|
cursorId: string;
|
|
1014
1028
|
columnCount: number;
|
|
@@ -1033,7 +1047,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1033
1047
|
itemWidthCache: Record<string, number>;
|
|
1034
1048
|
containerWidth: number;
|
|
1035
1049
|
overflowTargetWidth: number;
|
|
1036
|
-
selectedIds:
|
|
1050
|
+
selectedIds: string[] | "all";
|
|
1037
1051
|
unselectedIds: string[];
|
|
1038
1052
|
cursorId: string;
|
|
1039
1053
|
columnCount: number;
|
|
@@ -1058,7 +1072,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1058
1072
|
itemWidthCache: Record<string, number>;
|
|
1059
1073
|
containerWidth: number;
|
|
1060
1074
|
overflowTargetWidth: number;
|
|
1061
|
-
selectedIds:
|
|
1075
|
+
selectedIds: string[] | "all";
|
|
1062
1076
|
unselectedIds: string[];
|
|
1063
1077
|
cursorId: string;
|
|
1064
1078
|
columnCount: number;
|
|
@@ -1083,7 +1097,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1083
1097
|
itemWidthCache: Record<string, number>;
|
|
1084
1098
|
containerWidth: number;
|
|
1085
1099
|
overflowTargetWidth: number;
|
|
1086
|
-
selectedIds:
|
|
1100
|
+
selectedIds: string[] | "all";
|
|
1087
1101
|
unselectedIds: string[];
|
|
1088
1102
|
cursorId: string;
|
|
1089
1103
|
columnCount: number;
|
|
@@ -1108,7 +1122,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1108
1122
|
itemWidthCache: Record<string, number>;
|
|
1109
1123
|
containerWidth: number;
|
|
1110
1124
|
overflowTargetWidth: number;
|
|
1111
|
-
selectedIds:
|
|
1125
|
+
selectedIds: string[] | "all";
|
|
1112
1126
|
unselectedIds: string[];
|
|
1113
1127
|
cursorId: string;
|
|
1114
1128
|
columnCount: number;
|
|
@@ -1133,7 +1147,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1133
1147
|
itemWidthCache: Record<string, number>;
|
|
1134
1148
|
containerWidth: number;
|
|
1135
1149
|
overflowTargetWidth: number;
|
|
1136
|
-
selectedIds:
|
|
1150
|
+
selectedIds: string[] | "all";
|
|
1137
1151
|
unselectedIds: string[];
|
|
1138
1152
|
cursorId: string;
|
|
1139
1153
|
columnCount: number;
|
|
@@ -1158,7 +1172,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1158
1172
|
itemWidthCache: Record<string, number>;
|
|
1159
1173
|
containerWidth: number;
|
|
1160
1174
|
overflowTargetWidth: number;
|
|
1161
|
-
selectedIds:
|
|
1175
|
+
selectedIds: string[] | "all";
|
|
1162
1176
|
unselectedIds: string[];
|
|
1163
1177
|
cursorId: string;
|
|
1164
1178
|
columnCount: number;
|
|
@@ -1183,7 +1197,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1183
1197
|
itemWidthCache: Record<string, number>;
|
|
1184
1198
|
containerWidth: number;
|
|
1185
1199
|
overflowTargetWidth: number;
|
|
1186
|
-
selectedIds:
|
|
1200
|
+
selectedIds: string[] | "all";
|
|
1187
1201
|
unselectedIds: string[];
|
|
1188
1202
|
cursorId: string;
|
|
1189
1203
|
columnCount: number;
|
|
@@ -1208,7 +1222,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1208
1222
|
itemWidthCache: Record<string, number>;
|
|
1209
1223
|
containerWidth: number;
|
|
1210
1224
|
overflowTargetWidth: number;
|
|
1211
|
-
selectedIds:
|
|
1225
|
+
selectedIds: string[] | "all";
|
|
1212
1226
|
unselectedIds: string[];
|
|
1213
1227
|
cursorId: string;
|
|
1214
1228
|
columnCount: number;
|
|
@@ -1235,7 +1249,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1235
1249
|
itemWidthCache: Record<string, number>;
|
|
1236
1250
|
containerWidth: number;
|
|
1237
1251
|
overflowTargetWidth: number;
|
|
1238
|
-
selectedIds:
|
|
1252
|
+
selectedIds: string[] | "all";
|
|
1239
1253
|
unselectedIds: string[];
|
|
1240
1254
|
cursorId: string;
|
|
1241
1255
|
columnCount: number;
|
|
@@ -1262,7 +1276,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1262
1276
|
itemWidthCache: Record<string, number>;
|
|
1263
1277
|
containerWidth: number;
|
|
1264
1278
|
overflowTargetWidth: number;
|
|
1265
|
-
selectedIds:
|
|
1279
|
+
selectedIds: string[] | "all";
|
|
1266
1280
|
unselectedIds: string[];
|
|
1267
1281
|
cursorId: string;
|
|
1268
1282
|
columnCount: number;
|
|
@@ -1288,7 +1302,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1288
1302
|
itemWidthCache: Record<string, number>;
|
|
1289
1303
|
containerWidth: number;
|
|
1290
1304
|
overflowTargetWidth: number;
|
|
1291
|
-
selectedIds:
|
|
1305
|
+
selectedIds: string[] | "all";
|
|
1292
1306
|
unselectedIds: string[];
|
|
1293
1307
|
cursorId: string;
|
|
1294
1308
|
columnCount: number;
|
|
@@ -1313,13 +1327,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1313
1327
|
setContainerWidth(data: {
|
|
1314
1328
|
width?: number | undefined;
|
|
1315
1329
|
}): 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
1330
|
setOverflowTargetWidth(data: {
|
|
1324
1331
|
width: number;
|
|
1325
1332
|
}): void;
|
|
@@ -1370,8 +1377,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1370
1377
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1371
1378
|
placement: import("@popperjs/core").Placement;
|
|
1372
1379
|
id: string;
|
|
1373
|
-
visibility:
|
|
1374
|
-
selectedIds:
|
|
1380
|
+
visibility: "hidden" | "visible";
|
|
1381
|
+
selectedIds: string[] | "all";
|
|
1375
1382
|
unselectedIds: string[];
|
|
1376
1383
|
cursorId: string;
|
|
1377
1384
|
columnCount: number;
|
|
@@ -1384,7 +1391,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1384
1391
|
};
|
|
1385
1392
|
UNSTABLE_defaultItemHeight: number;
|
|
1386
1393
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1387
|
-
orientation:
|
|
1394
|
+
orientation: "horizontal" | "vertical";
|
|
1388
1395
|
indexRef: React.MutableRefObject<number>;
|
|
1389
1396
|
nonInteractiveIds: string[];
|
|
1390
1397
|
isVirtualized: boolean;
|
|
@@ -1435,13 +1442,27 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1435
1442
|
getId: (item: any) => string;
|
|
1436
1443
|
}> & {
|
|
1437
1444
|
/**
|
|
1438
|
-
*
|
|
1439
|
-
*
|
|
1440
|
-
*
|
|
1445
|
+
* `Breadcrumbs.List` is a `Flex` component rendered as a `<ul>` element. It is a container for
|
|
1446
|
+
* `Breadcrumbs.Item` subcomponents. It also renders overflow button if `overflowButton` prop
|
|
1447
|
+
* has been passed;
|
|
1448
|
+
*
|
|
1449
|
+
* ```tsx
|
|
1450
|
+
* // without overflow
|
|
1451
|
+
* <Breadcrumbs.List>{Breadcrumbs.Items}</Breadcrumbs.List>
|
|
1452
|
+
* ```
|
|
1441
1453
|
*
|
|
1442
|
-
*
|
|
1454
|
+
* ```tsx
|
|
1455
|
+
* // with overflow
|
|
1456
|
+
* <Breadcrumbs.List overflowButton={<Breadcrumbs.OverflowButton aria-label="More links" />}>
|
|
1457
|
+
* {Breadcrumbs.Items}
|
|
1458
|
+
* </Breadcrumbs.List>
|
|
1459
|
+
* ```
|
|
1460
|
+
*
|
|
1461
|
+
* `Breadcrumbs.List` accepts a `overflowButton` prop allowing to pass specific overflow button.
|
|
1462
|
+
* Breadcrumbs.List with overflow behavior should contain `overflowButton` component with
|
|
1463
|
+
* `aria-label` to render overflow button.
|
|
1443
1464
|
*/
|
|
1444
|
-
List: import("
|
|
1465
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"ul", import("./BreadcrumbsList").BreadcrumbsListProps<any>, {
|
|
1445
1466
|
state: {
|
|
1446
1467
|
hiddenIds: string[];
|
|
1447
1468
|
nonInteractiveIds: string[];
|
|
@@ -1449,7 +1470,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1449
1470
|
itemWidthCache: Record<string, number>;
|
|
1450
1471
|
containerWidth: number;
|
|
1451
1472
|
overflowTargetWidth: number;
|
|
1452
|
-
selectedIds:
|
|
1473
|
+
selectedIds: string[] | "all";
|
|
1453
1474
|
unselectedIds: string[];
|
|
1454
1475
|
cursorId: string;
|
|
1455
1476
|
columnCount: number;
|
|
@@ -1474,13 +1495,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1474
1495
|
setContainerWidth(data: {
|
|
1475
1496
|
width?: number | undefined;
|
|
1476
1497
|
}): 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
1498
|
setOverflowTargetWidth(data: {
|
|
1485
1499
|
width: number;
|
|
1486
1500
|
}): void;
|
|
@@ -1531,8 +1545,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1531
1545
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1532
1546
|
placement: import("@popperjs/core").Placement;
|
|
1533
1547
|
id: string;
|
|
1534
|
-
visibility:
|
|
1535
|
-
selectedIds:
|
|
1548
|
+
visibility: "hidden" | "visible";
|
|
1549
|
+
selectedIds: string[] | "all";
|
|
1536
1550
|
unselectedIds: string[];
|
|
1537
1551
|
cursorId: string;
|
|
1538
1552
|
columnCount: number;
|
|
@@ -1545,7 +1559,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1545
1559
|
};
|
|
1546
1560
|
UNSTABLE_defaultItemHeight: number;
|
|
1547
1561
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1548
|
-
orientation:
|
|
1562
|
+
orientation: "horizontal" | "vertical";
|
|
1549
1563
|
indexRef: React.MutableRefObject<number>;
|
|
1550
1564
|
nonInteractiveIds: string[];
|
|
1551
1565
|
isVirtualized: boolean;
|
|
@@ -1596,22 +1610,20 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1596
1610
|
getId: (item: any) => string;
|
|
1597
1611
|
}>;
|
|
1598
1612
|
/**
|
|
1599
|
-
*
|
|
1600
|
-
*
|
|
1601
|
-
*
|
|
1613
|
+
* `Breadcrumbs.Item` is a {@link Flex} component rendered as an `<li>` element. It is a
|
|
1614
|
+
* container for the `Breadcrumbs.Link` subcomponent which provides correct overflow behavior
|
|
1615
|
+
* across all items.
|
|
1602
1616
|
*
|
|
1603
|
-
* List items in
|
|
1604
|
-
*
|
|
1605
|
-
* but that can be customized with the `maxWidth` prop.
|
|
1617
|
+
* List items in {@link BreadcrumbsList Breadcrumbs.List}. By default, this item is truncated
|
|
1618
|
+
* with a tooltip at `350px`, but that can be customized with the `maxWidth` prop.
|
|
1606
1619
|
*
|
|
1607
|
-
* @example
|
|
1608
1620
|
* ```tsx
|
|
1609
1621
|
* <Breadcrumbs.Item maxWidth={200}>
|
|
1610
1622
|
* <Breadcrumbs.Link href="/docs">Docs</Breadcrumbs.Link>
|
|
1611
1623
|
* </Breadcrumbs.Item>
|
|
1612
1624
|
* ```
|
|
1613
1625
|
*/
|
|
1614
|
-
Item: import("
|
|
1626
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"li", import("./BreadcrumbsItem").BreadcrumbsItemProps, {
|
|
1615
1627
|
state: {
|
|
1616
1628
|
hiddenIds: string[];
|
|
1617
1629
|
nonInteractiveIds: string[];
|
|
@@ -1619,7 +1631,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1619
1631
|
itemWidthCache: Record<string, number>;
|
|
1620
1632
|
containerWidth: number;
|
|
1621
1633
|
overflowTargetWidth: number;
|
|
1622
|
-
selectedIds:
|
|
1634
|
+
selectedIds: string[] | "all";
|
|
1623
1635
|
unselectedIds: string[];
|
|
1624
1636
|
cursorId: string;
|
|
1625
1637
|
columnCount: number;
|
|
@@ -1644,13 +1656,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1644
1656
|
setContainerWidth(data: {
|
|
1645
1657
|
width?: number | undefined;
|
|
1646
1658
|
}): 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
1659
|
setOverflowTargetWidth(data: {
|
|
1655
1660
|
width: number;
|
|
1656
1661
|
}): void;
|
|
@@ -1701,8 +1706,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1701
1706
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1702
1707
|
placement: import("@popperjs/core").Placement;
|
|
1703
1708
|
id: string;
|
|
1704
|
-
visibility:
|
|
1705
|
-
selectedIds:
|
|
1709
|
+
visibility: "hidden" | "visible";
|
|
1710
|
+
selectedIds: string[] | "all";
|
|
1706
1711
|
unselectedIds: string[];
|
|
1707
1712
|
cursorId: string;
|
|
1708
1713
|
columnCount: number;
|
|
@@ -1715,7 +1720,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1715
1720
|
};
|
|
1716
1721
|
UNSTABLE_defaultItemHeight: number;
|
|
1717
1722
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1718
|
-
orientation:
|
|
1723
|
+
orientation: "horizontal" | "vertical";
|
|
1719
1724
|
indexRef: React.MutableRefObject<number>;
|
|
1720
1725
|
nonInteractiveIds: string[];
|
|
1721
1726
|
isVirtualized: boolean;
|
|
@@ -1765,29 +1770,27 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1765
1770
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1766
1771
|
getId: (item: any) => string;
|
|
1767
1772
|
}> & {
|
|
1768
|
-
Link: import("
|
|
1773
|
+
Link: import("@workday/canvas-kit-react/common").ElementComponent<"a", import("./BreadcrumbsLink").BreadcrumbsLinkProps>;
|
|
1769
1774
|
};
|
|
1770
1775
|
/**
|
|
1771
|
-
*
|
|
1772
|
-
*
|
|
1773
|
-
*
|
|
1774
|
-
*
|
|
1775
|
-
*
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1776
|
+
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1777
|
+
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1778
|
+
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1779
|
+
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1780
|
+
* truncated
|
|
1781
|
+
*/
|
|
1782
|
+
Link: import("@workday/canvas-kit-react/common").ElementComponent<"a", import("./BreadcrumbsLink").BreadcrumbsLinkProps>;
|
|
1783
|
+
/**
|
|
1784
|
+
* The last element in the list of `Breadcrumbs.Item`s. By default, this item is truncated with
|
|
1785
|
+
* a tooltip at `350px`, But that can be customized with the `maxWidth` prop.
|
|
1779
1786
|
*
|
|
1780
|
-
* @example
|
|
1781
1787
|
* ```tsx
|
|
1782
|
-
* <Breadcrumbs.
|
|
1783
|
-
*
|
|
1784
|
-
*
|
|
1785
|
-
* onClick={handleOverflowButtonClick}
|
|
1786
|
-
* }}
|
|
1787
|
-
* >
|
|
1788
|
+
* <Breadcrumbs.CurrentItem maxWidth={200}>
|
|
1789
|
+
* Current Item Text
|
|
1790
|
+
* </Breadcrumbs.CurrentItem>
|
|
1788
1791
|
* ```
|
|
1789
1792
|
*/
|
|
1790
|
-
|
|
1793
|
+
CurrentItem: import("@workday/canvas-kit-react/common").ElementComponentM<"li", import("./BreadcrumbsCurrentItem").BreadcrumbsCurrentItemProps, {
|
|
1791
1794
|
state: {
|
|
1792
1795
|
hiddenIds: string[];
|
|
1793
1796
|
nonInteractiveIds: string[];
|
|
@@ -1795,7 +1798,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1795
1798
|
itemWidthCache: Record<string, number>;
|
|
1796
1799
|
containerWidth: number;
|
|
1797
1800
|
overflowTargetWidth: number;
|
|
1798
|
-
selectedIds:
|
|
1801
|
+
selectedIds: string[] | "all";
|
|
1799
1802
|
unselectedIds: string[];
|
|
1800
1803
|
cursorId: string;
|
|
1801
1804
|
columnCount: number;
|
|
@@ -1820,13 +1823,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1820
1823
|
setContainerWidth(data: {
|
|
1821
1824
|
width?: number | undefined;
|
|
1822
1825
|
}): 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
1826
|
setOverflowTargetWidth(data: {
|
|
1831
1827
|
width: number;
|
|
1832
1828
|
}): void;
|
|
@@ -1877,8 +1873,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1877
1873
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1878
1874
|
placement: import("@popperjs/core").Placement;
|
|
1879
1875
|
id: string;
|
|
1880
|
-
visibility:
|
|
1881
|
-
selectedIds:
|
|
1876
|
+
visibility: "hidden" | "visible";
|
|
1877
|
+
selectedIds: string[] | "all";
|
|
1882
1878
|
unselectedIds: string[];
|
|
1883
1879
|
cursorId: string;
|
|
1884
1880
|
columnCount: number;
|
|
@@ -1891,7 +1887,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1891
1887
|
};
|
|
1892
1888
|
UNSTABLE_defaultItemHeight: number;
|
|
1893
1889
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1894
|
-
orientation:
|
|
1890
|
+
orientation: "horizontal" | "vertical";
|
|
1895
1891
|
indexRef: React.MutableRefObject<number>;
|
|
1896
1892
|
nonInteractiveIds: string[];
|
|
1897
1893
|
isVirtualized: boolean;
|
|
@@ -1942,22 +1938,22 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1942
1938
|
getId: (item: any) => string;
|
|
1943
1939
|
}>;
|
|
1944
1940
|
/**
|
|
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.
|
|
1941
|
+
* The toggle button for the Breadcrumbs Menu. This button is rendered in the
|
|
1942
|
+
* {@link BreadcrumbsList Breadcrumbs.List} when `overflowButtonProps` passed and becomes
|
|
1943
|
+
* visible when the list overflows. `overflowButtonProps must contain at least `aria-label`. If
|
|
1944
|
+
* you need to pass other props to it, you can do so by adding it to `overflowButtonProps`
|
|
1945
|
+
* passed to the List.
|
|
1952
1946
|
*
|
|
1953
|
-
* @example
|
|
1954
1947
|
* ```tsx
|
|
1955
|
-
* <Breadcrumbs.
|
|
1956
|
-
*
|
|
1957
|
-
*
|
|
1948
|
+
* <Breadcrumbs.List
|
|
1949
|
+
* overflowButtonProps={{
|
|
1950
|
+
* 'aria-label': 'More links',
|
|
1951
|
+
* onClick={handleOverflowButtonClick}
|
|
1952
|
+
* }}
|
|
1953
|
+
* >
|
|
1958
1954
|
* ```
|
|
1959
1955
|
*/
|
|
1960
|
-
|
|
1956
|
+
OverflowButton: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("./BreadcrumbsOverflowButton").BreadcrumbsOverflowButtonProps, {
|
|
1961
1957
|
state: {
|
|
1962
1958
|
hiddenIds: string[];
|
|
1963
1959
|
nonInteractiveIds: string[];
|
|
@@ -1965,7 +1961,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1965
1961
|
itemWidthCache: Record<string, number>;
|
|
1966
1962
|
containerWidth: number;
|
|
1967
1963
|
overflowTargetWidth: number;
|
|
1968
|
-
selectedIds:
|
|
1964
|
+
selectedIds: string[] | "all";
|
|
1969
1965
|
unselectedIds: string[];
|
|
1970
1966
|
cursorId: string;
|
|
1971
1967
|
columnCount: number;
|
|
@@ -1990,13 +1986,6 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
1990
1986
|
setContainerWidth(data: {
|
|
1991
1987
|
width?: number | undefined;
|
|
1992
1988
|
}): 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
1989
|
setOverflowTargetWidth(data: {
|
|
2001
1990
|
width: number;
|
|
2002
1991
|
}): void;
|
|
@@ -2047,8 +2036,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2047
2036
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2048
2037
|
placement: import("@popperjs/core").Placement;
|
|
2049
2038
|
id: string;
|
|
2050
|
-
visibility:
|
|
2051
|
-
selectedIds:
|
|
2039
|
+
visibility: "hidden" | "visible";
|
|
2040
|
+
selectedIds: string[] | "all";
|
|
2052
2041
|
unselectedIds: string[];
|
|
2053
2042
|
cursorId: string;
|
|
2054
2043
|
columnCount: number;
|
|
@@ -2061,7 +2050,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2061
2050
|
};
|
|
2062
2051
|
UNSTABLE_defaultItemHeight: number;
|
|
2063
2052
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2064
|
-
orientation:
|
|
2053
|
+
orientation: "horizontal" | "vertical";
|
|
2065
2054
|
indexRef: React.MutableRefObject<number>;
|
|
2066
2055
|
nonInteractiveIds: string[];
|
|
2067
2056
|
isVirtualized: boolean;
|
|
@@ -2112,21 +2101,11 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2112
2101
|
getId: (item: any) => string;
|
|
2113
2102
|
}>;
|
|
2114
2103
|
/**
|
|
2115
|
-
*
|
|
2116
|
-
*
|
|
2117
|
-
*
|
|
2118
|
-
*
|
|
2119
|
-
* The hyperlink element in each `Breadcrumbs.Item`.
|
|
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)
|
|
2104
|
+
* The `Breadcrumbs.Menu` uses the {@link Menu} component under the hood. The overflow menu for
|
|
2105
|
+
* Breadcrumbs. If there isn't enough room to render all links, it will automatically overflow
|
|
2106
|
+
* items into this menu.
|
|
2126
2107
|
*
|
|
2127
|
-
*
|
|
2128
|
-
* it will automatically overflow items into this menu.
|
|
2129
|
-
* @example
|
|
2108
|
+
* ```tsx
|
|
2130
2109
|
* <Breadcrumbs.Menu.Popper>
|
|
2131
2110
|
* <Breadcrumbs.Menu.Card>
|
|
2132
2111
|
* <Breadcrumbs.Menu.List>
|
|
@@ -2134,8 +2113,9 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2134
2113
|
* </Breadcrumbs.Menu.List>
|
|
2135
2114
|
* </Breadcrumbs.Menu.Card>
|
|
2136
2115
|
* </Breadcrumbs.Menu.Popper>
|
|
2116
|
+
* ```
|
|
2137
2117
|
*/
|
|
2138
|
-
Menu: import("
|
|
2118
|
+
Menu: import("@workday/canvas-kit-react/common").ComponentM<import("../../menu/lib/Menu").MenuProps & Partial<{
|
|
2139
2119
|
mode: "multiple" | "single";
|
|
2140
2120
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2141
2121
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
@@ -2164,8 +2144,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2164
2144
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2165
2145
|
placement: import("@popperjs/core").Placement;
|
|
2166
2146
|
id: string;
|
|
2167
|
-
visibility:
|
|
2168
|
-
selectedIds:
|
|
2147
|
+
visibility: "hidden" | "visible";
|
|
2148
|
+
selectedIds: string[] | "all";
|
|
2169
2149
|
unselectedIds: string[];
|
|
2170
2150
|
cursorId: string;
|
|
2171
2151
|
columnCount: number;
|
|
@@ -2178,7 +2158,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2178
2158
|
};
|
|
2179
2159
|
UNSTABLE_defaultItemHeight: number;
|
|
2180
2160
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2181
|
-
orientation:
|
|
2161
|
+
orientation: "horizontal" | "vertical";
|
|
2182
2162
|
indexRef: React.MutableRefObject<number>;
|
|
2183
2163
|
nonInteractiveIds: string[];
|
|
2184
2164
|
isVirtualized: boolean;
|
|
@@ -2192,8 +2172,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2192
2172
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2193
2173
|
placement: import("@popperjs/core").Placement;
|
|
2194
2174
|
id: string;
|
|
2195
|
-
visibility:
|
|
2196
|
-
selectedIds:
|
|
2175
|
+
visibility: "hidden" | "visible";
|
|
2176
|
+
selectedIds: string[] | "all";
|
|
2197
2177
|
unselectedIds: string[];
|
|
2198
2178
|
cursorId: string;
|
|
2199
2179
|
columnCount: number;
|
|
@@ -2206,7 +2186,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2206
2186
|
};
|
|
2207
2187
|
UNSTABLE_defaultItemHeight: number;
|
|
2208
2188
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2209
|
-
orientation:
|
|
2189
|
+
orientation: "horizontal" | "vertical";
|
|
2210
2190
|
indexRef: React.MutableRefObject<number>;
|
|
2211
2191
|
nonInteractiveIds: string[];
|
|
2212
2192
|
isVirtualized: boolean;
|
|
@@ -2220,8 +2200,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2220
2200
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2221
2201
|
placement: import("@popperjs/core").Placement;
|
|
2222
2202
|
id: string;
|
|
2223
|
-
visibility:
|
|
2224
|
-
selectedIds:
|
|
2203
|
+
visibility: "hidden" | "visible";
|
|
2204
|
+
selectedIds: string[] | "all";
|
|
2225
2205
|
unselectedIds: string[];
|
|
2226
2206
|
cursorId: string;
|
|
2227
2207
|
columnCount: number;
|
|
@@ -2234,7 +2214,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2234
2214
|
};
|
|
2235
2215
|
UNSTABLE_defaultItemHeight: number;
|
|
2236
2216
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2237
|
-
orientation:
|
|
2217
|
+
orientation: "horizontal" | "vertical";
|
|
2238
2218
|
indexRef: React.MutableRefObject<number>;
|
|
2239
2219
|
nonInteractiveIds: string[];
|
|
2240
2220
|
isVirtualized: boolean;
|
|
@@ -2250,8 +2230,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2250
2230
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2251
2231
|
placement: import("@popperjs/core").Placement;
|
|
2252
2232
|
id: string;
|
|
2253
|
-
visibility:
|
|
2254
|
-
selectedIds:
|
|
2233
|
+
visibility: "hidden" | "visible";
|
|
2234
|
+
selectedIds: string[] | "all";
|
|
2255
2235
|
unselectedIds: string[];
|
|
2256
2236
|
cursorId: string;
|
|
2257
2237
|
columnCount: number;
|
|
@@ -2264,7 +2244,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2264
2244
|
};
|
|
2265
2245
|
UNSTABLE_defaultItemHeight: number;
|
|
2266
2246
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2267
|
-
orientation:
|
|
2247
|
+
orientation: "horizontal" | "vertical";
|
|
2268
2248
|
indexRef: React.MutableRefObject<number>;
|
|
2269
2249
|
nonInteractiveIds: string[];
|
|
2270
2250
|
isVirtualized: boolean;
|
|
@@ -2278,8 +2258,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2278
2258
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2279
2259
|
placement: import("@popperjs/core").Placement;
|
|
2280
2260
|
id: string;
|
|
2281
|
-
visibility:
|
|
2282
|
-
selectedIds:
|
|
2261
|
+
visibility: "hidden" | "visible";
|
|
2262
|
+
selectedIds: string[] | "all";
|
|
2283
2263
|
unselectedIds: string[];
|
|
2284
2264
|
cursorId: string;
|
|
2285
2265
|
columnCount: number;
|
|
@@ -2292,7 +2272,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2292
2272
|
};
|
|
2293
2273
|
UNSTABLE_defaultItemHeight: number;
|
|
2294
2274
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2295
|
-
orientation:
|
|
2275
|
+
orientation: "horizontal" | "vertical";
|
|
2296
2276
|
indexRef: React.MutableRefObject<number>;
|
|
2297
2277
|
nonInteractiveIds: string[];
|
|
2298
2278
|
isVirtualized: boolean;
|
|
@@ -2306,8 +2286,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2306
2286
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2307
2287
|
placement: import("@popperjs/core").Placement;
|
|
2308
2288
|
id: string;
|
|
2309
|
-
visibility:
|
|
2310
|
-
selectedIds:
|
|
2289
|
+
visibility: "hidden" | "visible";
|
|
2290
|
+
selectedIds: string[] | "all";
|
|
2311
2291
|
unselectedIds: string[];
|
|
2312
2292
|
cursorId: string;
|
|
2313
2293
|
columnCount: number;
|
|
@@ -2320,7 +2300,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2320
2300
|
};
|
|
2321
2301
|
UNSTABLE_defaultItemHeight: number;
|
|
2322
2302
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2323
|
-
orientation:
|
|
2303
|
+
orientation: "horizontal" | "vertical";
|
|
2324
2304
|
indexRef: React.MutableRefObject<number>;
|
|
2325
2305
|
nonInteractiveIds: string[];
|
|
2326
2306
|
isVirtualized: boolean;
|
|
@@ -2337,8 +2317,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2337
2317
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2338
2318
|
placement: import("@popperjs/core").Placement;
|
|
2339
2319
|
id: string;
|
|
2340
|
-
visibility:
|
|
2341
|
-
selectedIds:
|
|
2320
|
+
visibility: "hidden" | "visible";
|
|
2321
|
+
selectedIds: string[] | "all";
|
|
2342
2322
|
unselectedIds: string[];
|
|
2343
2323
|
cursorId: string;
|
|
2344
2324
|
columnCount: number;
|
|
@@ -2351,7 +2331,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2351
2331
|
};
|
|
2352
2332
|
UNSTABLE_defaultItemHeight: number;
|
|
2353
2333
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2354
|
-
orientation:
|
|
2334
|
+
orientation: "horizontal" | "vertical";
|
|
2355
2335
|
indexRef: React.MutableRefObject<number>;
|
|
2356
2336
|
nonInteractiveIds: string[];
|
|
2357
2337
|
isVirtualized: boolean;
|
|
@@ -2367,8 +2347,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2367
2347
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2368
2348
|
placement: import("@popperjs/core").Placement;
|
|
2369
2349
|
id: string;
|
|
2370
|
-
visibility:
|
|
2371
|
-
selectedIds:
|
|
2350
|
+
visibility: "hidden" | "visible";
|
|
2351
|
+
selectedIds: string[] | "all";
|
|
2372
2352
|
unselectedIds: string[];
|
|
2373
2353
|
cursorId: string;
|
|
2374
2354
|
columnCount: number;
|
|
@@ -2381,7 +2361,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2381
2361
|
};
|
|
2382
2362
|
UNSTABLE_defaultItemHeight: number;
|
|
2383
2363
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2384
|
-
orientation:
|
|
2364
|
+
orientation: "horizontal" | "vertical";
|
|
2385
2365
|
indexRef: React.MutableRefObject<number>;
|
|
2386
2366
|
nonInteractiveIds: string[];
|
|
2387
2367
|
isVirtualized: boolean;
|
|
@@ -2395,8 +2375,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2395
2375
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2396
2376
|
placement: import("@popperjs/core").Placement;
|
|
2397
2377
|
id: string;
|
|
2398
|
-
visibility:
|
|
2399
|
-
selectedIds:
|
|
2378
|
+
visibility: "hidden" | "visible";
|
|
2379
|
+
selectedIds: string[] | "all";
|
|
2400
2380
|
unselectedIds: string[];
|
|
2401
2381
|
cursorId: string;
|
|
2402
2382
|
columnCount: number;
|
|
@@ -2409,7 +2389,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2409
2389
|
};
|
|
2410
2390
|
UNSTABLE_defaultItemHeight: number;
|
|
2411
2391
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2412
|
-
orientation:
|
|
2392
|
+
orientation: "horizontal" | "vertical";
|
|
2413
2393
|
indexRef: React.MutableRefObject<number>;
|
|
2414
2394
|
nonInteractiveIds: string[];
|
|
2415
2395
|
isVirtualized: boolean;
|
|
@@ -2423,8 +2403,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2423
2403
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2424
2404
|
placement: import("@popperjs/core").Placement;
|
|
2425
2405
|
id: string;
|
|
2426
|
-
visibility:
|
|
2427
|
-
selectedIds:
|
|
2406
|
+
visibility: "hidden" | "visible";
|
|
2407
|
+
selectedIds: string[] | "all";
|
|
2428
2408
|
unselectedIds: string[];
|
|
2429
2409
|
cursorId: string;
|
|
2430
2410
|
columnCount: number;
|
|
@@ -2437,7 +2417,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2437
2417
|
};
|
|
2438
2418
|
UNSTABLE_defaultItemHeight: number;
|
|
2439
2419
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2440
|
-
orientation:
|
|
2420
|
+
orientation: "horizontal" | "vertical";
|
|
2441
2421
|
indexRef: React.MutableRefObject<number>;
|
|
2442
2422
|
nonInteractiveIds: string[];
|
|
2443
2423
|
isVirtualized: boolean;
|
|
@@ -2451,8 +2431,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2451
2431
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2452
2432
|
placement: import("@popperjs/core").Placement;
|
|
2453
2433
|
id: string;
|
|
2454
|
-
visibility:
|
|
2455
|
-
selectedIds:
|
|
2434
|
+
visibility: "hidden" | "visible";
|
|
2435
|
+
selectedIds: string[] | "all";
|
|
2456
2436
|
unselectedIds: string[];
|
|
2457
2437
|
cursorId: string;
|
|
2458
2438
|
columnCount: number;
|
|
@@ -2465,7 +2445,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2465
2445
|
};
|
|
2466
2446
|
UNSTABLE_defaultItemHeight: number;
|
|
2467
2447
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2468
|
-
orientation:
|
|
2448
|
+
orientation: "horizontal" | "vertical";
|
|
2469
2449
|
indexRef: React.MutableRefObject<number>;
|
|
2470
2450
|
nonInteractiveIds: string[];
|
|
2471
2451
|
isVirtualized: boolean;
|
|
@@ -2479,8 +2459,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2479
2459
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2480
2460
|
placement: import("@popperjs/core").Placement;
|
|
2481
2461
|
id: string;
|
|
2482
|
-
visibility:
|
|
2483
|
-
selectedIds:
|
|
2462
|
+
visibility: "hidden" | "visible";
|
|
2463
|
+
selectedIds: string[] | "all";
|
|
2484
2464
|
unselectedIds: string[];
|
|
2485
2465
|
cursorId: string;
|
|
2486
2466
|
columnCount: number;
|
|
@@ -2493,7 +2473,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2493
2473
|
};
|
|
2494
2474
|
UNSTABLE_defaultItemHeight: number;
|
|
2495
2475
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2496
|
-
orientation:
|
|
2476
|
+
orientation: "horizontal" | "vertical";
|
|
2497
2477
|
indexRef: React.MutableRefObject<number>;
|
|
2498
2478
|
nonInteractiveIds: string[];
|
|
2499
2479
|
isVirtualized: boolean;
|
|
@@ -2507,8 +2487,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2507
2487
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2508
2488
|
placement: import("@popperjs/core").Placement;
|
|
2509
2489
|
id: string;
|
|
2510
|
-
visibility:
|
|
2511
|
-
selectedIds:
|
|
2490
|
+
visibility: "hidden" | "visible";
|
|
2491
|
+
selectedIds: string[] | "all";
|
|
2512
2492
|
unselectedIds: string[];
|
|
2513
2493
|
cursorId: string;
|
|
2514
2494
|
columnCount: number;
|
|
@@ -2521,7 +2501,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2521
2501
|
};
|
|
2522
2502
|
UNSTABLE_defaultItemHeight: number;
|
|
2523
2503
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2524
|
-
orientation:
|
|
2504
|
+
orientation: "horizontal" | "vertical";
|
|
2525
2505
|
indexRef: React.MutableRefObject<number>;
|
|
2526
2506
|
nonInteractiveIds: string[];
|
|
2527
2507
|
isVirtualized: boolean;
|
|
@@ -2535,8 +2515,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2535
2515
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2536
2516
|
placement: import("@popperjs/core").Placement;
|
|
2537
2517
|
id: string;
|
|
2538
|
-
visibility:
|
|
2539
|
-
selectedIds:
|
|
2518
|
+
visibility: "hidden" | "visible";
|
|
2519
|
+
selectedIds: string[] | "all";
|
|
2540
2520
|
unselectedIds: string[];
|
|
2541
2521
|
cursorId: string;
|
|
2542
2522
|
columnCount: number;
|
|
@@ -2549,7 +2529,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2549
2529
|
};
|
|
2550
2530
|
UNSTABLE_defaultItemHeight: number;
|
|
2551
2531
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2552
|
-
orientation:
|
|
2532
|
+
orientation: "horizontal" | "vertical";
|
|
2553
2533
|
indexRef: React.MutableRefObject<number>;
|
|
2554
2534
|
nonInteractiveIds: string[];
|
|
2555
2535
|
isVirtualized: boolean;
|
|
@@ -2563,8 +2543,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2563
2543
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2564
2544
|
placement: import("@popperjs/core").Placement;
|
|
2565
2545
|
id: string;
|
|
2566
|
-
visibility:
|
|
2567
|
-
selectedIds:
|
|
2546
|
+
visibility: "hidden" | "visible";
|
|
2547
|
+
selectedIds: string[] | "all";
|
|
2568
2548
|
unselectedIds: string[];
|
|
2569
2549
|
cursorId: string;
|
|
2570
2550
|
columnCount: number;
|
|
@@ -2577,7 +2557,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2577
2557
|
};
|
|
2578
2558
|
UNSTABLE_defaultItemHeight: number;
|
|
2579
2559
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2580
|
-
orientation:
|
|
2560
|
+
orientation: "horizontal" | "vertical";
|
|
2581
2561
|
indexRef: React.MutableRefObject<number>;
|
|
2582
2562
|
nonInteractiveIds: string[];
|
|
2583
2563
|
isVirtualized: boolean;
|
|
@@ -2591,8 +2571,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2591
2571
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2592
2572
|
placement: import("@popperjs/core").Placement;
|
|
2593
2573
|
id: string;
|
|
2594
|
-
visibility:
|
|
2595
|
-
selectedIds:
|
|
2574
|
+
visibility: "hidden" | "visible";
|
|
2575
|
+
selectedIds: string[] | "all";
|
|
2596
2576
|
unselectedIds: string[];
|
|
2597
2577
|
cursorId: string;
|
|
2598
2578
|
columnCount: number;
|
|
@@ -2605,7 +2585,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2605
2585
|
};
|
|
2606
2586
|
UNSTABLE_defaultItemHeight: number;
|
|
2607
2587
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2608
|
-
orientation:
|
|
2588
|
+
orientation: "horizontal" | "vertical";
|
|
2609
2589
|
indexRef: React.MutableRefObject<number>;
|
|
2610
2590
|
nonInteractiveIds: string[];
|
|
2611
2591
|
isVirtualized: boolean;
|
|
@@ -2619,8 +2599,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2619
2599
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2620
2600
|
placement: import("@popperjs/core").Placement;
|
|
2621
2601
|
id: string;
|
|
2622
|
-
visibility:
|
|
2623
|
-
selectedIds:
|
|
2602
|
+
visibility: "hidden" | "visible";
|
|
2603
|
+
selectedIds: string[] | "all";
|
|
2624
2604
|
unselectedIds: string[];
|
|
2625
2605
|
cursorId: string;
|
|
2626
2606
|
columnCount: number;
|
|
@@ -2633,7 +2613,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2633
2613
|
};
|
|
2634
2614
|
UNSTABLE_defaultItemHeight: number;
|
|
2635
2615
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2636
|
-
orientation:
|
|
2616
|
+
orientation: "horizontal" | "vertical";
|
|
2637
2617
|
indexRef: React.MutableRefObject<number>;
|
|
2638
2618
|
nonInteractiveIds: string[];
|
|
2639
2619
|
isVirtualized: boolean;
|
|
@@ -2647,8 +2627,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2647
2627
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2648
2628
|
placement: import("@popperjs/core").Placement;
|
|
2649
2629
|
id: string;
|
|
2650
|
-
visibility:
|
|
2651
|
-
selectedIds:
|
|
2630
|
+
visibility: "hidden" | "visible";
|
|
2631
|
+
selectedIds: string[] | "all";
|
|
2652
2632
|
unselectedIds: string[];
|
|
2653
2633
|
cursorId: string;
|
|
2654
2634
|
columnCount: number;
|
|
@@ -2661,7 +2641,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2661
2641
|
};
|
|
2662
2642
|
UNSTABLE_defaultItemHeight: number;
|
|
2663
2643
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2664
|
-
orientation:
|
|
2644
|
+
orientation: "horizontal" | "vertical";
|
|
2665
2645
|
indexRef: React.MutableRefObject<number>;
|
|
2666
2646
|
nonInteractiveIds: string[];
|
|
2667
2647
|
isVirtualized: boolean;
|
|
@@ -2677,8 +2657,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2677
2657
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2678
2658
|
placement: import("@popperjs/core").Placement;
|
|
2679
2659
|
id: string;
|
|
2680
|
-
visibility:
|
|
2681
|
-
selectedIds:
|
|
2660
|
+
visibility: "hidden" | "visible";
|
|
2661
|
+
selectedIds: string[] | "all";
|
|
2682
2662
|
unselectedIds: string[];
|
|
2683
2663
|
cursorId: string;
|
|
2684
2664
|
columnCount: number;
|
|
@@ -2691,7 +2671,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2691
2671
|
};
|
|
2692
2672
|
UNSTABLE_defaultItemHeight: number;
|
|
2693
2673
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2694
|
-
orientation:
|
|
2674
|
+
orientation: "horizontal" | "vertical";
|
|
2695
2675
|
indexRef: React.MutableRefObject<number>;
|
|
2696
2676
|
nonInteractiveIds: string[];
|
|
2697
2677
|
isVirtualized: boolean;
|
|
@@ -2707,8 +2687,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2707
2687
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2708
2688
|
placement: import("@popperjs/core").Placement;
|
|
2709
2689
|
id: string;
|
|
2710
|
-
visibility:
|
|
2711
|
-
selectedIds:
|
|
2690
|
+
visibility: "hidden" | "visible";
|
|
2691
|
+
selectedIds: string[] | "all";
|
|
2712
2692
|
unselectedIds: string[];
|
|
2713
2693
|
cursorId: string;
|
|
2714
2694
|
columnCount: number;
|
|
@@ -2721,7 +2701,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2721
2701
|
};
|
|
2722
2702
|
UNSTABLE_defaultItemHeight: number;
|
|
2723
2703
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2724
|
-
orientation:
|
|
2704
|
+
orientation: "horizontal" | "vertical";
|
|
2725
2705
|
indexRef: React.MutableRefObject<number>;
|
|
2726
2706
|
nonInteractiveIds: string[];
|
|
2727
2707
|
isVirtualized: boolean;
|
|
@@ -2738,8 +2718,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2738
2718
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2739
2719
|
placement: import("@popperjs/core").Placement;
|
|
2740
2720
|
id: string;
|
|
2741
|
-
visibility:
|
|
2742
|
-
selectedIds:
|
|
2721
|
+
visibility: "hidden" | "visible";
|
|
2722
|
+
selectedIds: string[] | "all";
|
|
2743
2723
|
unselectedIds: string[];
|
|
2744
2724
|
cursorId: string;
|
|
2745
2725
|
columnCount: number;
|
|
@@ -2752,7 +2732,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2752
2732
|
};
|
|
2753
2733
|
UNSTABLE_defaultItemHeight: number;
|
|
2754
2734
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2755
|
-
orientation:
|
|
2735
|
+
orientation: "horizontal" | "vertical";
|
|
2756
2736
|
indexRef: React.MutableRefObject<number>;
|
|
2757
2737
|
nonInteractiveIds: string[];
|
|
2758
2738
|
isVirtualized: boolean;
|
|
@@ -2766,8 +2746,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2766
2746
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2767
2747
|
placement: import("@popperjs/core").Placement;
|
|
2768
2748
|
id: string;
|
|
2769
|
-
visibility:
|
|
2770
|
-
selectedIds:
|
|
2749
|
+
visibility: "hidden" | "visible";
|
|
2750
|
+
selectedIds: string[] | "all";
|
|
2771
2751
|
unselectedIds: string[];
|
|
2772
2752
|
cursorId: string;
|
|
2773
2753
|
columnCount: number;
|
|
@@ -2780,7 +2760,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2780
2760
|
};
|
|
2781
2761
|
UNSTABLE_defaultItemHeight: number;
|
|
2782
2762
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2783
|
-
orientation:
|
|
2763
|
+
orientation: "horizontal" | "vertical";
|
|
2784
2764
|
indexRef: React.MutableRefObject<number>;
|
|
2785
2765
|
nonInteractiveIds: string[];
|
|
2786
2766
|
isVirtualized: boolean;
|
|
@@ -2794,8 +2774,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2794
2774
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2795
2775
|
placement: import("@popperjs/core").Placement;
|
|
2796
2776
|
id: string;
|
|
2797
|
-
visibility:
|
|
2798
|
-
selectedIds:
|
|
2777
|
+
visibility: "hidden" | "visible";
|
|
2778
|
+
selectedIds: string[] | "all";
|
|
2799
2779
|
unselectedIds: string[];
|
|
2800
2780
|
cursorId: string;
|
|
2801
2781
|
columnCount: number;
|
|
@@ -2808,7 +2788,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2808
2788
|
};
|
|
2809
2789
|
UNSTABLE_defaultItemHeight: number;
|
|
2810
2790
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2811
|
-
orientation:
|
|
2791
|
+
orientation: "horizontal" | "vertical";
|
|
2812
2792
|
indexRef: React.MutableRefObject<number>;
|
|
2813
2793
|
nonInteractiveIds: string[];
|
|
2814
2794
|
isVirtualized: boolean;
|
|
@@ -2824,8 +2804,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2824
2804
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2825
2805
|
placement: import("@popperjs/core").Placement;
|
|
2826
2806
|
id: string;
|
|
2827
|
-
visibility:
|
|
2828
|
-
selectedIds:
|
|
2807
|
+
visibility: "hidden" | "visible";
|
|
2808
|
+
selectedIds: string[] | "all";
|
|
2829
2809
|
unselectedIds: string[];
|
|
2830
2810
|
cursorId: string;
|
|
2831
2811
|
columnCount: number;
|
|
@@ -2838,7 +2818,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2838
2818
|
};
|
|
2839
2819
|
UNSTABLE_defaultItemHeight: number;
|
|
2840
2820
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2841
|
-
orientation:
|
|
2821
|
+
orientation: "horizontal" | "vertical";
|
|
2842
2822
|
indexRef: React.MutableRefObject<number>;
|
|
2843
2823
|
nonInteractiveIds: string[];
|
|
2844
2824
|
isVirtualized: boolean;
|
|
@@ -2852,8 +2832,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2852
2832
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2853
2833
|
placement: import("@popperjs/core").Placement;
|
|
2854
2834
|
id: string;
|
|
2855
|
-
visibility:
|
|
2856
|
-
selectedIds:
|
|
2835
|
+
visibility: "hidden" | "visible";
|
|
2836
|
+
selectedIds: string[] | "all";
|
|
2857
2837
|
unselectedIds: string[];
|
|
2858
2838
|
cursorId: string;
|
|
2859
2839
|
columnCount: number;
|
|
@@ -2866,7 +2846,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2866
2846
|
};
|
|
2867
2847
|
UNSTABLE_defaultItemHeight: number;
|
|
2868
2848
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2869
|
-
orientation:
|
|
2849
|
+
orientation: "horizontal" | "vertical";
|
|
2870
2850
|
indexRef: React.MutableRefObject<number>;
|
|
2871
2851
|
nonInteractiveIds: string[];
|
|
2872
2852
|
isVirtualized: boolean;
|
|
@@ -2880,8 +2860,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2880
2860
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2881
2861
|
placement: import("@popperjs/core").Placement;
|
|
2882
2862
|
id: string;
|
|
2883
|
-
visibility:
|
|
2884
|
-
selectedIds:
|
|
2863
|
+
visibility: "hidden" | "visible";
|
|
2864
|
+
selectedIds: string[] | "all";
|
|
2885
2865
|
unselectedIds: string[];
|
|
2886
2866
|
cursorId: string;
|
|
2887
2867
|
columnCount: number;
|
|
@@ -2894,7 +2874,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2894
2874
|
};
|
|
2895
2875
|
UNSTABLE_defaultItemHeight: number;
|
|
2896
2876
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2897
|
-
orientation:
|
|
2877
|
+
orientation: "horizontal" | "vertical";
|
|
2898
2878
|
indexRef: React.MutableRefObject<number>;
|
|
2899
2879
|
nonInteractiveIds: string[];
|
|
2900
2880
|
isVirtualized: boolean;
|
|
@@ -2911,8 +2891,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2911
2891
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2912
2892
|
placement: import("@popperjs/core").Placement;
|
|
2913
2893
|
id: string;
|
|
2914
|
-
visibility:
|
|
2915
|
-
selectedIds:
|
|
2894
|
+
visibility: "hidden" | "visible";
|
|
2895
|
+
selectedIds: string[] | "all";
|
|
2916
2896
|
unselectedIds: string[];
|
|
2917
2897
|
cursorId: string;
|
|
2918
2898
|
columnCount: number;
|
|
@@ -2925,7 +2905,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2925
2905
|
};
|
|
2926
2906
|
UNSTABLE_defaultItemHeight: number;
|
|
2927
2907
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2928
|
-
orientation:
|
|
2908
|
+
orientation: "horizontal" | "vertical";
|
|
2929
2909
|
indexRef: React.MutableRefObject<number>;
|
|
2930
2910
|
nonInteractiveIds: string[];
|
|
2931
2911
|
isVirtualized: boolean;
|
|
@@ -2941,8 +2921,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2941
2921
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2942
2922
|
placement: import("@popperjs/core").Placement;
|
|
2943
2923
|
id: string;
|
|
2944
|
-
visibility:
|
|
2945
|
-
selectedIds:
|
|
2924
|
+
visibility: "hidden" | "visible";
|
|
2925
|
+
selectedIds: string[] | "all";
|
|
2946
2926
|
unselectedIds: string[];
|
|
2947
2927
|
cursorId: string;
|
|
2948
2928
|
columnCount: number;
|
|
@@ -2955,7 +2935,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2955
2935
|
};
|
|
2956
2936
|
UNSTABLE_defaultItemHeight: number;
|
|
2957
2937
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2958
|
-
orientation:
|
|
2938
|
+
orientation: "horizontal" | "vertical";
|
|
2959
2939
|
indexRef: React.MutableRefObject<number>;
|
|
2960
2940
|
nonInteractiveIds: string[];
|
|
2961
2941
|
isVirtualized: boolean;
|
|
@@ -2969,8 +2949,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2969
2949
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2970
2950
|
placement: import("@popperjs/core").Placement;
|
|
2971
2951
|
id: string;
|
|
2972
|
-
visibility:
|
|
2973
|
-
selectedIds:
|
|
2952
|
+
visibility: "hidden" | "visible";
|
|
2953
|
+
selectedIds: string[] | "all";
|
|
2974
2954
|
unselectedIds: string[];
|
|
2975
2955
|
cursorId: string;
|
|
2976
2956
|
columnCount: number;
|
|
@@ -2983,7 +2963,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2983
2963
|
};
|
|
2984
2964
|
UNSTABLE_defaultItemHeight: number;
|
|
2985
2965
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2986
|
-
orientation:
|
|
2966
|
+
orientation: "horizontal" | "vertical";
|
|
2987
2967
|
indexRef: React.MutableRefObject<number>;
|
|
2988
2968
|
nonInteractiveIds: string[];
|
|
2989
2969
|
isVirtualized: boolean;
|
|
@@ -2997,8 +2977,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
2997
2977
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2998
2978
|
placement: import("@popperjs/core").Placement;
|
|
2999
2979
|
id: string;
|
|
3000
|
-
visibility:
|
|
3001
|
-
selectedIds:
|
|
2980
|
+
visibility: "hidden" | "visible";
|
|
2981
|
+
selectedIds: string[] | "all";
|
|
3002
2982
|
unselectedIds: string[];
|
|
3003
2983
|
cursorId: string;
|
|
3004
2984
|
columnCount: number;
|
|
@@ -3011,7 +2991,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3011
2991
|
};
|
|
3012
2992
|
UNSTABLE_defaultItemHeight: number;
|
|
3013
2993
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3014
|
-
orientation:
|
|
2994
|
+
orientation: "horizontal" | "vertical";
|
|
3015
2995
|
indexRef: React.MutableRefObject<number>;
|
|
3016
2996
|
nonInteractiveIds: string[];
|
|
3017
2997
|
isVirtualized: boolean;
|
|
@@ -3025,8 +3005,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3025
3005
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3026
3006
|
placement: import("@popperjs/core").Placement;
|
|
3027
3007
|
id: string;
|
|
3028
|
-
visibility:
|
|
3029
|
-
selectedIds:
|
|
3008
|
+
visibility: "hidden" | "visible";
|
|
3009
|
+
selectedIds: string[] | "all";
|
|
3030
3010
|
unselectedIds: string[];
|
|
3031
3011
|
cursorId: string;
|
|
3032
3012
|
columnCount: number;
|
|
@@ -3039,7 +3019,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3039
3019
|
};
|
|
3040
3020
|
UNSTABLE_defaultItemHeight: number;
|
|
3041
3021
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3042
|
-
orientation:
|
|
3022
|
+
orientation: "horizontal" | "vertical";
|
|
3043
3023
|
indexRef: React.MutableRefObject<number>;
|
|
3044
3024
|
nonInteractiveIds: string[];
|
|
3045
3025
|
isVirtualized: boolean;
|
|
@@ -3053,8 +3033,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3053
3033
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3054
3034
|
placement: import("@popperjs/core").Placement;
|
|
3055
3035
|
id: string;
|
|
3056
|
-
visibility:
|
|
3057
|
-
selectedIds:
|
|
3036
|
+
visibility: "hidden" | "visible";
|
|
3037
|
+
selectedIds: string[] | "all";
|
|
3058
3038
|
unselectedIds: string[];
|
|
3059
3039
|
cursorId: string;
|
|
3060
3040
|
columnCount: number;
|
|
@@ -3067,7 +3047,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3067
3047
|
};
|
|
3068
3048
|
UNSTABLE_defaultItemHeight: number;
|
|
3069
3049
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3070
|
-
orientation:
|
|
3050
|
+
orientation: "horizontal" | "vertical";
|
|
3071
3051
|
indexRef: React.MutableRefObject<number>;
|
|
3072
3052
|
nonInteractiveIds: string[];
|
|
3073
3053
|
isVirtualized: boolean;
|
|
@@ -3081,8 +3061,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3081
3061
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3082
3062
|
placement: import("@popperjs/core").Placement;
|
|
3083
3063
|
id: string;
|
|
3084
|
-
visibility:
|
|
3085
|
-
selectedIds:
|
|
3064
|
+
visibility: "hidden" | "visible";
|
|
3065
|
+
selectedIds: string[] | "all";
|
|
3086
3066
|
unselectedIds: string[];
|
|
3087
3067
|
cursorId: string;
|
|
3088
3068
|
columnCount: number;
|
|
@@ -3095,7 +3075,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3095
3075
|
};
|
|
3096
3076
|
UNSTABLE_defaultItemHeight: number;
|
|
3097
3077
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3098
|
-
orientation:
|
|
3078
|
+
orientation: "horizontal" | "vertical";
|
|
3099
3079
|
indexRef: React.MutableRefObject<number>;
|
|
3100
3080
|
nonInteractiveIds: string[];
|
|
3101
3081
|
isVirtualized: boolean;
|
|
@@ -3109,8 +3089,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3109
3089
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3110
3090
|
placement: import("@popperjs/core").Placement;
|
|
3111
3091
|
id: string;
|
|
3112
|
-
visibility:
|
|
3113
|
-
selectedIds:
|
|
3092
|
+
visibility: "hidden" | "visible";
|
|
3093
|
+
selectedIds: string[] | "all";
|
|
3114
3094
|
unselectedIds: string[];
|
|
3115
3095
|
cursorId: string;
|
|
3116
3096
|
columnCount: number;
|
|
@@ -3123,7 +3103,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3123
3103
|
};
|
|
3124
3104
|
UNSTABLE_defaultItemHeight: number;
|
|
3125
3105
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3126
|
-
orientation:
|
|
3106
|
+
orientation: "horizontal" | "vertical";
|
|
3127
3107
|
indexRef: React.MutableRefObject<number>;
|
|
3128
3108
|
nonInteractiveIds: string[];
|
|
3129
3109
|
isVirtualized: boolean;
|
|
@@ -3137,8 +3117,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3137
3117
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3138
3118
|
placement: import("@popperjs/core").Placement;
|
|
3139
3119
|
id: string;
|
|
3140
|
-
visibility:
|
|
3141
|
-
selectedIds:
|
|
3120
|
+
visibility: "hidden" | "visible";
|
|
3121
|
+
selectedIds: string[] | "all";
|
|
3142
3122
|
unselectedIds: string[];
|
|
3143
3123
|
cursorId: string;
|
|
3144
3124
|
columnCount: number;
|
|
@@ -3151,7 +3131,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3151
3131
|
};
|
|
3152
3132
|
UNSTABLE_defaultItemHeight: number;
|
|
3153
3133
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3154
|
-
orientation:
|
|
3134
|
+
orientation: "horizontal" | "vertical";
|
|
3155
3135
|
indexRef: React.MutableRefObject<number>;
|
|
3156
3136
|
nonInteractiveIds: string[];
|
|
3157
3137
|
isVirtualized: boolean;
|
|
@@ -3165,8 +3145,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3165
3145
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3166
3146
|
placement: import("@popperjs/core").Placement;
|
|
3167
3147
|
id: string;
|
|
3168
|
-
visibility:
|
|
3169
|
-
selectedIds:
|
|
3148
|
+
visibility: "hidden" | "visible";
|
|
3149
|
+
selectedIds: string[] | "all";
|
|
3170
3150
|
unselectedIds: string[];
|
|
3171
3151
|
cursorId: string;
|
|
3172
3152
|
columnCount: number;
|
|
@@ -3179,7 +3159,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3179
3159
|
};
|
|
3180
3160
|
UNSTABLE_defaultItemHeight: number;
|
|
3181
3161
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3182
|
-
orientation:
|
|
3162
|
+
orientation: "horizontal" | "vertical";
|
|
3183
3163
|
indexRef: React.MutableRefObject<number>;
|
|
3184
3164
|
nonInteractiveIds: string[];
|
|
3185
3165
|
isVirtualized: boolean;
|
|
@@ -3193,8 +3173,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3193
3173
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3194
3174
|
placement: import("@popperjs/core").Placement;
|
|
3195
3175
|
id: string;
|
|
3196
|
-
visibility:
|
|
3197
|
-
selectedIds:
|
|
3176
|
+
visibility: "hidden" | "visible";
|
|
3177
|
+
selectedIds: string[] | "all";
|
|
3198
3178
|
unselectedIds: string[];
|
|
3199
3179
|
cursorId: string;
|
|
3200
3180
|
columnCount: number;
|
|
@@ -3207,7 +3187,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3207
3187
|
};
|
|
3208
3188
|
UNSTABLE_defaultItemHeight: number;
|
|
3209
3189
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3210
|
-
orientation:
|
|
3190
|
+
orientation: "horizontal" | "vertical";
|
|
3211
3191
|
indexRef: React.MutableRefObject<number>;
|
|
3212
3192
|
nonInteractiveIds: string[];
|
|
3213
3193
|
isVirtualized: boolean;
|
|
@@ -3221,8 +3201,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3221
3201
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3222
3202
|
placement: import("@popperjs/core").Placement;
|
|
3223
3203
|
id: string;
|
|
3224
|
-
visibility:
|
|
3225
|
-
selectedIds:
|
|
3204
|
+
visibility: "hidden" | "visible";
|
|
3205
|
+
selectedIds: string[] | "all";
|
|
3226
3206
|
unselectedIds: string[];
|
|
3227
3207
|
cursorId: string;
|
|
3228
3208
|
columnCount: number;
|
|
@@ -3235,7 +3215,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3235
3215
|
};
|
|
3236
3216
|
UNSTABLE_defaultItemHeight: number;
|
|
3237
3217
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3238
|
-
orientation:
|
|
3218
|
+
orientation: "horizontal" | "vertical";
|
|
3239
3219
|
indexRef: React.MutableRefObject<number>;
|
|
3240
3220
|
nonInteractiveIds: string[];
|
|
3241
3221
|
isVirtualized: boolean;
|
|
@@ -3251,8 +3231,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3251
3231
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3252
3232
|
placement: import("@popperjs/core").Placement;
|
|
3253
3233
|
id: string;
|
|
3254
|
-
visibility:
|
|
3255
|
-
selectedIds:
|
|
3234
|
+
visibility: "hidden" | "visible";
|
|
3235
|
+
selectedIds: string[] | "all";
|
|
3256
3236
|
unselectedIds: string[];
|
|
3257
3237
|
cursorId: string;
|
|
3258
3238
|
columnCount: number;
|
|
@@ -3265,7 +3245,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3265
3245
|
};
|
|
3266
3246
|
UNSTABLE_defaultItemHeight: number;
|
|
3267
3247
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3268
|
-
orientation:
|
|
3248
|
+
orientation: "horizontal" | "vertical";
|
|
3269
3249
|
indexRef: React.MutableRefObject<number>;
|
|
3270
3250
|
nonInteractiveIds: string[];
|
|
3271
3251
|
isVirtualized: boolean;
|
|
@@ -3281,8 +3261,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3281
3261
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3282
3262
|
placement: import("@popperjs/core").Placement;
|
|
3283
3263
|
id: string;
|
|
3284
|
-
visibility:
|
|
3285
|
-
selectedIds:
|
|
3264
|
+
visibility: "hidden" | "visible";
|
|
3265
|
+
selectedIds: string[] | "all";
|
|
3286
3266
|
unselectedIds: string[];
|
|
3287
3267
|
cursorId: string;
|
|
3288
3268
|
columnCount: number;
|
|
@@ -3295,14 +3275,14 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3295
3275
|
};
|
|
3296
3276
|
UNSTABLE_defaultItemHeight: number;
|
|
3297
3277
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3298
|
-
orientation:
|
|
3278
|
+
orientation: "horizontal" | "vertical";
|
|
3299
3279
|
indexRef: React.MutableRefObject<number>;
|
|
3300
3280
|
nonInteractiveIds: string[];
|
|
3301
3281
|
isVirtualized: boolean;
|
|
3302
3282
|
items: import("../..").Item<any>[];
|
|
3303
3283
|
mode: "multiple" | "single";
|
|
3304
3284
|
}) => boolean) | undefined;
|
|
3305
|
-
} & import("
|
|
3285
|
+
} & import("@workday/canvas-kit-react/common").PropsWithModel<{
|
|
3306
3286
|
state: {
|
|
3307
3287
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3308
3288
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3310,8 +3290,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3310
3290
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3311
3291
|
placement: import("@popperjs/core").Placement;
|
|
3312
3292
|
id: string;
|
|
3313
|
-
visibility:
|
|
3314
|
-
selectedIds:
|
|
3293
|
+
visibility: "hidden" | "visible";
|
|
3294
|
+
selectedIds: string[] | "all";
|
|
3315
3295
|
unselectedIds: string[];
|
|
3316
3296
|
cursorId: string;
|
|
3317
3297
|
columnCount: number;
|
|
@@ -3324,7 +3304,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3324
3304
|
};
|
|
3325
3305
|
UNSTABLE_defaultItemHeight: number;
|
|
3326
3306
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3327
|
-
orientation:
|
|
3307
|
+
orientation: "horizontal" | "vertical";
|
|
3328
3308
|
indexRef: React.MutableRefObject<number>;
|
|
3329
3309
|
nonInteractiveIds: string[];
|
|
3330
3310
|
isVirtualized: boolean;
|
|
@@ -3377,8 +3357,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3377
3357
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3378
3358
|
placement: import("@popperjs/core").Placement;
|
|
3379
3359
|
id: string;
|
|
3380
|
-
visibility:
|
|
3381
|
-
selectedIds:
|
|
3360
|
+
visibility: "hidden" | "visible";
|
|
3361
|
+
selectedIds: string[] | "all";
|
|
3382
3362
|
unselectedIds: string[];
|
|
3383
3363
|
cursorId: string;
|
|
3384
3364
|
columnCount: number;
|
|
@@ -3391,7 +3371,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3391
3371
|
};
|
|
3392
3372
|
UNSTABLE_defaultItemHeight: number;
|
|
3393
3373
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3394
|
-
orientation:
|
|
3374
|
+
orientation: "horizontal" | "vertical";
|
|
3395
3375
|
indexRef: React.MutableRefObject<number>;
|
|
3396
3376
|
nonInteractiveIds: string[];
|
|
3397
3377
|
isVirtualized: boolean;
|
|
@@ -3437,7 +3417,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3437
3417
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3438
3418
|
getId: (item: any) => string;
|
|
3439
3419
|
}> & {
|
|
3440
|
-
Card: (elemProps: import("../../menu/lib/MenuCard").MenuCardProps & import("
|
|
3420
|
+
Card: (elemProps: import("../../menu/lib/MenuCard").MenuCardProps & import("@workday/canvas-kit-react/common").PropsWithModel<{
|
|
3441
3421
|
state: {
|
|
3442
3422
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3443
3423
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3445,8 +3425,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3445
3425
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3446
3426
|
placement: import("@popperjs/core").Placement;
|
|
3447
3427
|
id: string;
|
|
3448
|
-
visibility:
|
|
3449
|
-
selectedIds:
|
|
3428
|
+
visibility: "hidden" | "visible";
|
|
3429
|
+
selectedIds: string[] | "all";
|
|
3450
3430
|
unselectedIds: string[];
|
|
3451
3431
|
cursorId: string;
|
|
3452
3432
|
columnCount: number;
|
|
@@ -3459,7 +3439,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3459
3439
|
};
|
|
3460
3440
|
UNSTABLE_defaultItemHeight: number;
|
|
3461
3441
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3462
|
-
orientation:
|
|
3442
|
+
orientation: "horizontal" | "vertical";
|
|
3463
3443
|
indexRef: React.MutableRefObject<number>;
|
|
3464
3444
|
nonInteractiveIds: string[];
|
|
3465
3445
|
isVirtualized: boolean;
|
|
@@ -3505,7 +3485,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3505
3485
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3506
3486
|
getId: (item: any) => string;
|
|
3507
3487
|
}>) => JSX.Element;
|
|
3508
|
-
List: import("
|
|
3488
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuList").MenuListProps<any>, {
|
|
3509
3489
|
state: {
|
|
3510
3490
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3511
3491
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3513,8 +3493,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3513
3493
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3514
3494
|
placement: import("@popperjs/core").Placement;
|
|
3515
3495
|
id: string;
|
|
3516
|
-
visibility:
|
|
3517
|
-
selectedIds:
|
|
3496
|
+
visibility: "hidden" | "visible";
|
|
3497
|
+
selectedIds: string[] | "all";
|
|
3518
3498
|
unselectedIds: string[];
|
|
3519
3499
|
cursorId: string;
|
|
3520
3500
|
columnCount: number;
|
|
@@ -3527,7 +3507,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3527
3507
|
};
|
|
3528
3508
|
UNSTABLE_defaultItemHeight: number;
|
|
3529
3509
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3530
|
-
orientation:
|
|
3510
|
+
orientation: "horizontal" | "vertical";
|
|
3531
3511
|
indexRef: React.MutableRefObject<number>;
|
|
3532
3512
|
nonInteractiveIds: string[];
|
|
3533
3513
|
isVirtualized: boolean;
|
|
@@ -3573,7 +3553,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3573
3553
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3574
3554
|
getId: (item: any) => string;
|
|
3575
3555
|
}>;
|
|
3576
|
-
Item: import("
|
|
3556
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponent<"a", import("../../menu/lib/MenuItem").MenuItemProps & import("@workday/canvas-kit-react/common").PropsWithModel<{
|
|
3577
3557
|
state: {
|
|
3578
3558
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3579
3559
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3581,8 +3561,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3581
3561
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3582
3562
|
placement: import("@popperjs/core").Placement;
|
|
3583
3563
|
id: string;
|
|
3584
|
-
visibility:
|
|
3585
|
-
selectedIds:
|
|
3564
|
+
visibility: "hidden" | "visible";
|
|
3565
|
+
selectedIds: string[] | "all";
|
|
3586
3566
|
unselectedIds: string[];
|
|
3587
3567
|
cursorId: string;
|
|
3588
3568
|
columnCount: number;
|
|
@@ -3595,7 +3575,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3595
3575
|
};
|
|
3596
3576
|
UNSTABLE_defaultItemHeight: number;
|
|
3597
3577
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3598
|
-
orientation:
|
|
3578
|
+
orientation: "horizontal" | "vertical";
|
|
3599
3579
|
indexRef: React.MutableRefObject<number>;
|
|
3600
3580
|
nonInteractiveIds: string[];
|
|
3601
3581
|
isVirtualized: boolean;
|
|
@@ -3641,8 +3621,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3641
3621
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3642
3622
|
getId: (item: any) => string;
|
|
3643
3623
|
}>>;
|
|
3644
|
-
Divider: import("
|
|
3645
|
-
Target: import("
|
|
3624
|
+
Divider: import("@workday/canvas-kit-react/common").ElementComponent<"hr", unknown>;
|
|
3625
|
+
Target: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3646
3626
|
state: {
|
|
3647
3627
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3648
3628
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3650,8 +3630,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3650
3630
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3651
3631
|
placement: import("@popperjs/core").Placement;
|
|
3652
3632
|
id: string;
|
|
3653
|
-
visibility:
|
|
3654
|
-
selectedIds:
|
|
3633
|
+
visibility: "hidden" | "visible";
|
|
3634
|
+
selectedIds: string[] | "all";
|
|
3655
3635
|
unselectedIds: string[];
|
|
3656
3636
|
cursorId: string;
|
|
3657
3637
|
columnCount: number;
|
|
@@ -3664,7 +3644,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3664
3644
|
};
|
|
3665
3645
|
UNSTABLE_defaultItemHeight: number;
|
|
3666
3646
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3667
|
-
orientation:
|
|
3647
|
+
orientation: "horizontal" | "vertical";
|
|
3668
3648
|
indexRef: React.MutableRefObject<number>;
|
|
3669
3649
|
nonInteractiveIds: string[];
|
|
3670
3650
|
isVirtualized: boolean;
|
|
@@ -3710,7 +3690,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3710
3690
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3711
3691
|
getId: (item: any) => string;
|
|
3712
3692
|
}>;
|
|
3713
|
-
TargetContext: import("
|
|
3693
|
+
TargetContext: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3714
3694
|
state: {
|
|
3715
3695
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3716
3696
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3718,8 +3698,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3718
3698
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3719
3699
|
placement: import("@popperjs/core").Placement;
|
|
3720
3700
|
id: string;
|
|
3721
|
-
visibility:
|
|
3722
|
-
selectedIds:
|
|
3701
|
+
visibility: "hidden" | "visible";
|
|
3702
|
+
selectedIds: string[] | "all";
|
|
3723
3703
|
unselectedIds: string[];
|
|
3724
3704
|
cursorId: string;
|
|
3725
3705
|
columnCount: number;
|
|
@@ -3732,7 +3712,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3732
3712
|
};
|
|
3733
3713
|
UNSTABLE_defaultItemHeight: number;
|
|
3734
3714
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3735
|
-
orientation:
|
|
3715
|
+
orientation: "horizontal" | "vertical";
|
|
3736
3716
|
indexRef: React.MutableRefObject<number>;
|
|
3737
3717
|
nonInteractiveIds: string[];
|
|
3738
3718
|
isVirtualized: boolean;
|
|
@@ -3778,7 +3758,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3778
3758
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3779
3759
|
getId: (item: any) => string;
|
|
3780
3760
|
}>;
|
|
3781
|
-
Popper: import("
|
|
3761
|
+
Popper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuPopper").MenuPopperProps, {
|
|
3782
3762
|
state: {
|
|
3783
3763
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3784
3764
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3786,8 +3766,8 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3786
3766
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3787
3767
|
placement: import("@popperjs/core").Placement;
|
|
3788
3768
|
id: string;
|
|
3789
|
-
visibility:
|
|
3790
|
-
selectedIds:
|
|
3769
|
+
visibility: "hidden" | "visible";
|
|
3770
|
+
selectedIds: string[] | "all";
|
|
3791
3771
|
unselectedIds: string[];
|
|
3792
3772
|
cursorId: string;
|
|
3793
3773
|
columnCount: number;
|
|
@@ -3800,7 +3780,7 @@ export declare const Breadcrumbs: import("../../common").ElementComponentM<"nav"
|
|
|
3800
3780
|
};
|
|
3801
3781
|
UNSTABLE_defaultItemHeight: number;
|
|
3802
3782
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3803
|
-
orientation:
|
|
3783
|
+
orientation: "horizontal" | "vertical";
|
|
3804
3784
|
indexRef: React.MutableRefObject<number>;
|
|
3805
3785
|
nonInteractiveIds: string[];
|
|
3806
3786
|
isVirtualized: boolean;
|