@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
|
@@ -5,7 +5,33 @@ export interface TabsProps {
|
|
|
5
5
|
*/
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
/**
|
|
9
|
+
* `Tabs` is a container component that is responsible for creating a {@link TabsModel} and sharing
|
|
10
|
+
* it with its subcomponents using React context. It does not represent a real element.
|
|
11
|
+
*
|
|
12
|
+
* ```tsx
|
|
13
|
+
* <Tabs onSelect={data => console.log('Selected tab', data.id)}>
|
|
14
|
+
* {child components}
|
|
15
|
+
* </Tabs>
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* Alternatively, you may pass in a model using the hoisted model pattern.
|
|
19
|
+
*
|
|
20
|
+
* ```tsx
|
|
21
|
+
* const model = useTabsModel({
|
|
22
|
+
* onSelect(data) {
|
|
23
|
+
* console.log('Activated Tab', data.id);
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
*
|
|
27
|
+
* <Tabs model={model}>{child components}</Tabs>
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* See [Configuring a
|
|
31
|
+
* Model](/getting-started/for-developers/resources/compound-components/#configuring-a-model) for
|
|
32
|
+
* more information on model configuration.
|
|
33
|
+
*/
|
|
34
|
+
export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM<TabsProps & Partial<{
|
|
9
35
|
id: string;
|
|
10
36
|
initialTab: string;
|
|
11
37
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -25,7 +51,9 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
25
51
|
getTextValue: (item: any) => string;
|
|
26
52
|
nonInteractiveIds: string[];
|
|
27
53
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
28
|
-
defaultItemHeight: number;
|
|
54
|
+
defaultItemHeight: number; /**
|
|
55
|
+
* @deprecated Use `Tabs.Menu.Popper` instead
|
|
56
|
+
*/
|
|
29
57
|
shouldVirtualize: boolean;
|
|
30
58
|
items: any[];
|
|
31
59
|
}> & {
|
|
@@ -38,8 +66,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
38
66
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
39
67
|
placement: import("@popperjs/core").Placement;
|
|
40
68
|
id: string;
|
|
41
|
-
visibility:
|
|
42
|
-
selectedIds:
|
|
69
|
+
visibility: "hidden" | "visible";
|
|
70
|
+
selectedIds: string[] | "all";
|
|
43
71
|
unselectedIds: string[];
|
|
44
72
|
cursorId: string;
|
|
45
73
|
columnCount: number;
|
|
@@ -52,7 +80,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
52
80
|
};
|
|
53
81
|
UNSTABLE_defaultItemHeight: number;
|
|
54
82
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
55
|
-
orientation:
|
|
83
|
+
orientation: "horizontal" | "vertical";
|
|
56
84
|
indexRef: React.MutableRefObject<number>;
|
|
57
85
|
nonInteractiveIds: string[];
|
|
58
86
|
isVirtualized: boolean;
|
|
@@ -66,8 +94,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
66
94
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
67
95
|
placement: import("@popperjs/core").Placement;
|
|
68
96
|
id: string;
|
|
69
|
-
visibility:
|
|
70
|
-
selectedIds:
|
|
97
|
+
visibility: "hidden" | "visible";
|
|
98
|
+
selectedIds: string[] | "all";
|
|
71
99
|
unselectedIds: string[];
|
|
72
100
|
cursorId: string;
|
|
73
101
|
columnCount: number;
|
|
@@ -80,7 +108,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
80
108
|
};
|
|
81
109
|
UNSTABLE_defaultItemHeight: number;
|
|
82
110
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
83
|
-
orientation:
|
|
111
|
+
orientation: "horizontal" | "vertical";
|
|
84
112
|
indexRef: React.MutableRefObject<number>;
|
|
85
113
|
nonInteractiveIds: string[];
|
|
86
114
|
isVirtualized: boolean;
|
|
@@ -94,8 +122,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
94
122
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
95
123
|
placement: import("@popperjs/core").Placement;
|
|
96
124
|
id: string;
|
|
97
|
-
visibility:
|
|
98
|
-
selectedIds:
|
|
125
|
+
visibility: "hidden" | "visible";
|
|
126
|
+
selectedIds: string[] | "all";
|
|
99
127
|
unselectedIds: string[];
|
|
100
128
|
cursorId: string;
|
|
101
129
|
columnCount: number;
|
|
@@ -108,7 +136,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
108
136
|
};
|
|
109
137
|
UNSTABLE_defaultItemHeight: number;
|
|
110
138
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
111
|
-
orientation:
|
|
139
|
+
orientation: "horizontal" | "vertical";
|
|
112
140
|
indexRef: React.MutableRefObject<number>;
|
|
113
141
|
nonInteractiveIds: string[];
|
|
114
142
|
isVirtualized: boolean;
|
|
@@ -124,8 +152,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
124
152
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
125
153
|
placement: import("@popperjs/core").Placement;
|
|
126
154
|
id: string;
|
|
127
|
-
visibility:
|
|
128
|
-
selectedIds:
|
|
155
|
+
visibility: "hidden" | "visible";
|
|
156
|
+
selectedIds: string[] | "all";
|
|
129
157
|
unselectedIds: string[];
|
|
130
158
|
cursorId: string;
|
|
131
159
|
columnCount: number;
|
|
@@ -138,7 +166,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
138
166
|
};
|
|
139
167
|
UNSTABLE_defaultItemHeight: number;
|
|
140
168
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
141
|
-
orientation:
|
|
169
|
+
orientation: "horizontal" | "vertical";
|
|
142
170
|
indexRef: React.MutableRefObject<number>;
|
|
143
171
|
nonInteractiveIds: string[];
|
|
144
172
|
isVirtualized: boolean;
|
|
@@ -152,8 +180,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
152
180
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
153
181
|
placement: import("@popperjs/core").Placement;
|
|
154
182
|
id: string;
|
|
155
|
-
visibility:
|
|
156
|
-
selectedIds:
|
|
183
|
+
visibility: "hidden" | "visible";
|
|
184
|
+
selectedIds: string[] | "all";
|
|
157
185
|
unselectedIds: string[];
|
|
158
186
|
cursorId: string;
|
|
159
187
|
columnCount: number;
|
|
@@ -166,7 +194,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
166
194
|
};
|
|
167
195
|
UNSTABLE_defaultItemHeight: number;
|
|
168
196
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
169
|
-
orientation:
|
|
197
|
+
orientation: "horizontal" | "vertical";
|
|
170
198
|
indexRef: React.MutableRefObject<number>;
|
|
171
199
|
nonInteractiveIds: string[];
|
|
172
200
|
isVirtualized: boolean;
|
|
@@ -180,8 +208,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
180
208
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
181
209
|
placement: import("@popperjs/core").Placement;
|
|
182
210
|
id: string;
|
|
183
|
-
visibility:
|
|
184
|
-
selectedIds:
|
|
211
|
+
visibility: "hidden" | "visible";
|
|
212
|
+
selectedIds: string[] | "all";
|
|
185
213
|
unselectedIds: string[];
|
|
186
214
|
cursorId: string;
|
|
187
215
|
columnCount: number;
|
|
@@ -194,7 +222,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
194
222
|
};
|
|
195
223
|
UNSTABLE_defaultItemHeight: number;
|
|
196
224
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
197
|
-
orientation:
|
|
225
|
+
orientation: "horizontal" | "vertical";
|
|
198
226
|
indexRef: React.MutableRefObject<number>;
|
|
199
227
|
nonInteractiveIds: string[];
|
|
200
228
|
isVirtualized: boolean;
|
|
@@ -211,8 +239,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
211
239
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
212
240
|
placement: import("@popperjs/core").Placement;
|
|
213
241
|
id: string;
|
|
214
|
-
visibility:
|
|
215
|
-
selectedIds:
|
|
242
|
+
visibility: "hidden" | "visible";
|
|
243
|
+
selectedIds: string[] | "all";
|
|
216
244
|
unselectedIds: string[];
|
|
217
245
|
cursorId: string;
|
|
218
246
|
columnCount: number;
|
|
@@ -225,7 +253,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
225
253
|
};
|
|
226
254
|
UNSTABLE_defaultItemHeight: number;
|
|
227
255
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
228
|
-
orientation:
|
|
256
|
+
orientation: "horizontal" | "vertical";
|
|
229
257
|
indexRef: React.MutableRefObject<number>;
|
|
230
258
|
nonInteractiveIds: string[];
|
|
231
259
|
isVirtualized: boolean;
|
|
@@ -241,8 +269,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
241
269
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
242
270
|
placement: import("@popperjs/core").Placement;
|
|
243
271
|
id: string;
|
|
244
|
-
visibility:
|
|
245
|
-
selectedIds:
|
|
272
|
+
visibility: "hidden" | "visible";
|
|
273
|
+
selectedIds: string[] | "all";
|
|
246
274
|
unselectedIds: string[];
|
|
247
275
|
cursorId: string;
|
|
248
276
|
columnCount: number;
|
|
@@ -255,7 +283,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
255
283
|
};
|
|
256
284
|
UNSTABLE_defaultItemHeight: number;
|
|
257
285
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
258
|
-
orientation:
|
|
286
|
+
orientation: "horizontal" | "vertical";
|
|
259
287
|
indexRef: React.MutableRefObject<number>;
|
|
260
288
|
nonInteractiveIds: string[];
|
|
261
289
|
isVirtualized: boolean;
|
|
@@ -269,8 +297,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
269
297
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
270
298
|
placement: import("@popperjs/core").Placement;
|
|
271
299
|
id: string;
|
|
272
|
-
visibility:
|
|
273
|
-
selectedIds:
|
|
300
|
+
visibility: "hidden" | "visible";
|
|
301
|
+
selectedIds: string[] | "all";
|
|
274
302
|
unselectedIds: string[];
|
|
275
303
|
cursorId: string;
|
|
276
304
|
columnCount: number;
|
|
@@ -283,7 +311,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
283
311
|
};
|
|
284
312
|
UNSTABLE_defaultItemHeight: number;
|
|
285
313
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
286
|
-
orientation:
|
|
314
|
+
orientation: "horizontal" | "vertical";
|
|
287
315
|
indexRef: React.MutableRefObject<number>;
|
|
288
316
|
nonInteractiveIds: string[];
|
|
289
317
|
isVirtualized: boolean;
|
|
@@ -297,8 +325,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
297
325
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
298
326
|
placement: import("@popperjs/core").Placement;
|
|
299
327
|
id: string;
|
|
300
|
-
visibility:
|
|
301
|
-
selectedIds:
|
|
328
|
+
visibility: "hidden" | "visible";
|
|
329
|
+
selectedIds: string[] | "all";
|
|
302
330
|
unselectedIds: string[];
|
|
303
331
|
cursorId: string;
|
|
304
332
|
columnCount: number;
|
|
@@ -311,7 +339,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
311
339
|
};
|
|
312
340
|
UNSTABLE_defaultItemHeight: number;
|
|
313
341
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
314
|
-
orientation:
|
|
342
|
+
orientation: "horizontal" | "vertical";
|
|
315
343
|
indexRef: React.MutableRefObject<number>;
|
|
316
344
|
nonInteractiveIds: string[];
|
|
317
345
|
isVirtualized: boolean;
|
|
@@ -325,8 +353,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
325
353
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
326
354
|
placement: import("@popperjs/core").Placement;
|
|
327
355
|
id: string;
|
|
328
|
-
visibility:
|
|
329
|
-
selectedIds:
|
|
356
|
+
visibility: "hidden" | "visible";
|
|
357
|
+
selectedIds: string[] | "all";
|
|
330
358
|
unselectedIds: string[];
|
|
331
359
|
cursorId: string;
|
|
332
360
|
columnCount: number;
|
|
@@ -339,7 +367,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
339
367
|
};
|
|
340
368
|
UNSTABLE_defaultItemHeight: number;
|
|
341
369
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
342
|
-
orientation:
|
|
370
|
+
orientation: "horizontal" | "vertical";
|
|
343
371
|
indexRef: React.MutableRefObject<number>;
|
|
344
372
|
nonInteractiveIds: string[];
|
|
345
373
|
isVirtualized: boolean;
|
|
@@ -353,8 +381,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
353
381
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
354
382
|
placement: import("@popperjs/core").Placement;
|
|
355
383
|
id: string;
|
|
356
|
-
visibility:
|
|
357
|
-
selectedIds:
|
|
384
|
+
visibility: "hidden" | "visible";
|
|
385
|
+
selectedIds: string[] | "all";
|
|
358
386
|
unselectedIds: string[];
|
|
359
387
|
cursorId: string;
|
|
360
388
|
columnCount: number;
|
|
@@ -367,7 +395,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
367
395
|
};
|
|
368
396
|
UNSTABLE_defaultItemHeight: number;
|
|
369
397
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
370
|
-
orientation:
|
|
398
|
+
orientation: "horizontal" | "vertical";
|
|
371
399
|
indexRef: React.MutableRefObject<number>;
|
|
372
400
|
nonInteractiveIds: string[];
|
|
373
401
|
isVirtualized: boolean;
|
|
@@ -381,8 +409,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
381
409
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
382
410
|
placement: import("@popperjs/core").Placement;
|
|
383
411
|
id: string;
|
|
384
|
-
visibility:
|
|
385
|
-
selectedIds:
|
|
412
|
+
visibility: "hidden" | "visible";
|
|
413
|
+
selectedIds: string[] | "all";
|
|
386
414
|
unselectedIds: string[];
|
|
387
415
|
cursorId: string;
|
|
388
416
|
columnCount: number;
|
|
@@ -395,7 +423,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
395
423
|
};
|
|
396
424
|
UNSTABLE_defaultItemHeight: number;
|
|
397
425
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
398
|
-
orientation:
|
|
426
|
+
orientation: "horizontal" | "vertical";
|
|
399
427
|
indexRef: React.MutableRefObject<number>;
|
|
400
428
|
nonInteractiveIds: string[];
|
|
401
429
|
isVirtualized: boolean;
|
|
@@ -409,8 +437,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
409
437
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
410
438
|
placement: import("@popperjs/core").Placement;
|
|
411
439
|
id: string;
|
|
412
|
-
visibility:
|
|
413
|
-
selectedIds:
|
|
440
|
+
visibility: "hidden" | "visible";
|
|
441
|
+
selectedIds: string[] | "all";
|
|
414
442
|
unselectedIds: string[];
|
|
415
443
|
cursorId: string;
|
|
416
444
|
columnCount: number;
|
|
@@ -423,7 +451,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
423
451
|
};
|
|
424
452
|
UNSTABLE_defaultItemHeight: number;
|
|
425
453
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
426
|
-
orientation:
|
|
454
|
+
orientation: "horizontal" | "vertical";
|
|
427
455
|
indexRef: React.MutableRefObject<number>;
|
|
428
456
|
nonInteractiveIds: string[];
|
|
429
457
|
isVirtualized: boolean;
|
|
@@ -437,8 +465,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
437
465
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
438
466
|
placement: import("@popperjs/core").Placement;
|
|
439
467
|
id: string;
|
|
440
|
-
visibility:
|
|
441
|
-
selectedIds:
|
|
468
|
+
visibility: "hidden" | "visible";
|
|
469
|
+
selectedIds: string[] | "all";
|
|
442
470
|
unselectedIds: string[];
|
|
443
471
|
cursorId: string;
|
|
444
472
|
columnCount: number;
|
|
@@ -451,7 +479,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
451
479
|
};
|
|
452
480
|
UNSTABLE_defaultItemHeight: number;
|
|
453
481
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
454
|
-
orientation:
|
|
482
|
+
orientation: "horizontal" | "vertical";
|
|
455
483
|
indexRef: React.MutableRefObject<number>;
|
|
456
484
|
nonInteractiveIds: string[];
|
|
457
485
|
isVirtualized: boolean;
|
|
@@ -465,8 +493,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
465
493
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
466
494
|
placement: import("@popperjs/core").Placement;
|
|
467
495
|
id: string;
|
|
468
|
-
visibility:
|
|
469
|
-
selectedIds:
|
|
496
|
+
visibility: "hidden" | "visible";
|
|
497
|
+
selectedIds: string[] | "all";
|
|
470
498
|
unselectedIds: string[];
|
|
471
499
|
cursorId: string;
|
|
472
500
|
columnCount: number;
|
|
@@ -479,7 +507,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
479
507
|
};
|
|
480
508
|
UNSTABLE_defaultItemHeight: number;
|
|
481
509
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
482
|
-
orientation:
|
|
510
|
+
orientation: "horizontal" | "vertical";
|
|
483
511
|
indexRef: React.MutableRefObject<number>;
|
|
484
512
|
nonInteractiveIds: string[];
|
|
485
513
|
isVirtualized: boolean;
|
|
@@ -493,8 +521,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
493
521
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
494
522
|
placement: import("@popperjs/core").Placement;
|
|
495
523
|
id: string;
|
|
496
|
-
visibility:
|
|
497
|
-
selectedIds:
|
|
524
|
+
visibility: "hidden" | "visible";
|
|
525
|
+
selectedIds: string[] | "all";
|
|
498
526
|
unselectedIds: string[];
|
|
499
527
|
cursorId: string;
|
|
500
528
|
columnCount: number;
|
|
@@ -507,7 +535,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
507
535
|
};
|
|
508
536
|
UNSTABLE_defaultItemHeight: number;
|
|
509
537
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
510
|
-
orientation:
|
|
538
|
+
orientation: "horizontal" | "vertical";
|
|
511
539
|
indexRef: React.MutableRefObject<number>;
|
|
512
540
|
nonInteractiveIds: string[];
|
|
513
541
|
isVirtualized: boolean;
|
|
@@ -521,8 +549,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
521
549
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
522
550
|
placement: import("@popperjs/core").Placement;
|
|
523
551
|
id: string;
|
|
524
|
-
visibility:
|
|
525
|
-
selectedIds:
|
|
552
|
+
visibility: "hidden" | "visible";
|
|
553
|
+
selectedIds: string[] | "all";
|
|
526
554
|
unselectedIds: string[];
|
|
527
555
|
cursorId: string;
|
|
528
556
|
columnCount: number;
|
|
@@ -535,7 +563,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
535
563
|
};
|
|
536
564
|
UNSTABLE_defaultItemHeight: number;
|
|
537
565
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
538
|
-
orientation:
|
|
566
|
+
orientation: "horizontal" | "vertical";
|
|
539
567
|
indexRef: React.MutableRefObject<number>;
|
|
540
568
|
nonInteractiveIds: string[];
|
|
541
569
|
isVirtualized: boolean;
|
|
@@ -551,8 +579,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
551
579
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
552
580
|
placement: import("@popperjs/core").Placement;
|
|
553
581
|
id: string;
|
|
554
|
-
visibility:
|
|
555
|
-
selectedIds:
|
|
582
|
+
visibility: "hidden" | "visible";
|
|
583
|
+
selectedIds: string[] | "all";
|
|
556
584
|
unselectedIds: string[];
|
|
557
585
|
cursorId: string;
|
|
558
586
|
columnCount: number;
|
|
@@ -565,7 +593,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
565
593
|
};
|
|
566
594
|
UNSTABLE_defaultItemHeight: number;
|
|
567
595
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
568
|
-
orientation:
|
|
596
|
+
orientation: "horizontal" | "vertical";
|
|
569
597
|
indexRef: React.MutableRefObject<number>;
|
|
570
598
|
nonInteractiveIds: string[];
|
|
571
599
|
isVirtualized: boolean;
|
|
@@ -581,8 +609,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
581
609
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
582
610
|
placement: import("@popperjs/core").Placement;
|
|
583
611
|
id: string;
|
|
584
|
-
visibility:
|
|
585
|
-
selectedIds:
|
|
612
|
+
visibility: "hidden" | "visible";
|
|
613
|
+
selectedIds: string[] | "all";
|
|
586
614
|
unselectedIds: string[];
|
|
587
615
|
cursorId: string;
|
|
588
616
|
columnCount: number;
|
|
@@ -595,7 +623,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
595
623
|
};
|
|
596
624
|
UNSTABLE_defaultItemHeight: number;
|
|
597
625
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
598
|
-
orientation:
|
|
626
|
+
orientation: "horizontal" | "vertical";
|
|
599
627
|
indexRef: React.MutableRefObject<number>;
|
|
600
628
|
nonInteractiveIds: string[];
|
|
601
629
|
isVirtualized: boolean;
|
|
@@ -612,8 +640,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
612
640
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
613
641
|
placement: import("@popperjs/core").Placement;
|
|
614
642
|
id: string;
|
|
615
|
-
visibility:
|
|
616
|
-
selectedIds:
|
|
643
|
+
visibility: "hidden" | "visible";
|
|
644
|
+
selectedIds: string[] | "all";
|
|
617
645
|
unselectedIds: string[];
|
|
618
646
|
cursorId: string;
|
|
619
647
|
columnCount: number;
|
|
@@ -626,7 +654,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
626
654
|
};
|
|
627
655
|
UNSTABLE_defaultItemHeight: number;
|
|
628
656
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
629
|
-
orientation:
|
|
657
|
+
orientation: "horizontal" | "vertical";
|
|
630
658
|
indexRef: React.MutableRefObject<number>;
|
|
631
659
|
nonInteractiveIds: string[];
|
|
632
660
|
isVirtualized: boolean;
|
|
@@ -640,8 +668,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
640
668
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
641
669
|
placement: import("@popperjs/core").Placement;
|
|
642
670
|
id: string;
|
|
643
|
-
visibility:
|
|
644
|
-
selectedIds:
|
|
671
|
+
visibility: "hidden" | "visible";
|
|
672
|
+
selectedIds: string[] | "all";
|
|
645
673
|
unselectedIds: string[];
|
|
646
674
|
cursorId: string;
|
|
647
675
|
columnCount: number;
|
|
@@ -654,7 +682,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
654
682
|
};
|
|
655
683
|
UNSTABLE_defaultItemHeight: number;
|
|
656
684
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
657
|
-
orientation:
|
|
685
|
+
orientation: "horizontal" | "vertical";
|
|
658
686
|
indexRef: React.MutableRefObject<number>;
|
|
659
687
|
nonInteractiveIds: string[];
|
|
660
688
|
isVirtualized: boolean;
|
|
@@ -668,8 +696,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
668
696
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
669
697
|
placement: import("@popperjs/core").Placement;
|
|
670
698
|
id: string;
|
|
671
|
-
visibility:
|
|
672
|
-
selectedIds:
|
|
699
|
+
visibility: "hidden" | "visible";
|
|
700
|
+
selectedIds: string[] | "all";
|
|
673
701
|
unselectedIds: string[];
|
|
674
702
|
cursorId: string;
|
|
675
703
|
columnCount: number;
|
|
@@ -682,7 +710,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
682
710
|
};
|
|
683
711
|
UNSTABLE_defaultItemHeight: number;
|
|
684
712
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
685
|
-
orientation:
|
|
713
|
+
orientation: "horizontal" | "vertical";
|
|
686
714
|
indexRef: React.MutableRefObject<number>;
|
|
687
715
|
nonInteractiveIds: string[];
|
|
688
716
|
isVirtualized: boolean;
|
|
@@ -698,8 +726,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
698
726
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
699
727
|
placement: import("@popperjs/core").Placement;
|
|
700
728
|
id: string;
|
|
701
|
-
visibility:
|
|
702
|
-
selectedIds:
|
|
729
|
+
visibility: "hidden" | "visible";
|
|
730
|
+
selectedIds: string[] | "all";
|
|
703
731
|
unselectedIds: string[];
|
|
704
732
|
cursorId: string;
|
|
705
733
|
columnCount: number;
|
|
@@ -712,7 +740,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
712
740
|
};
|
|
713
741
|
UNSTABLE_defaultItemHeight: number;
|
|
714
742
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
715
|
-
orientation:
|
|
743
|
+
orientation: "horizontal" | "vertical";
|
|
716
744
|
indexRef: React.MutableRefObject<number>;
|
|
717
745
|
nonInteractiveIds: string[];
|
|
718
746
|
isVirtualized: boolean;
|
|
@@ -726,8 +754,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
726
754
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
727
755
|
placement: import("@popperjs/core").Placement;
|
|
728
756
|
id: string;
|
|
729
|
-
visibility:
|
|
730
|
-
selectedIds:
|
|
757
|
+
visibility: "hidden" | "visible";
|
|
758
|
+
selectedIds: string[] | "all";
|
|
731
759
|
unselectedIds: string[];
|
|
732
760
|
cursorId: string;
|
|
733
761
|
columnCount: number;
|
|
@@ -740,7 +768,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
740
768
|
};
|
|
741
769
|
UNSTABLE_defaultItemHeight: number;
|
|
742
770
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
743
|
-
orientation:
|
|
771
|
+
orientation: "horizontal" | "vertical";
|
|
744
772
|
indexRef: React.MutableRefObject<number>;
|
|
745
773
|
nonInteractiveIds: string[];
|
|
746
774
|
isVirtualized: boolean;
|
|
@@ -754,8 +782,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
754
782
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
755
783
|
placement: import("@popperjs/core").Placement;
|
|
756
784
|
id: string;
|
|
757
|
-
visibility:
|
|
758
|
-
selectedIds:
|
|
785
|
+
visibility: "hidden" | "visible";
|
|
786
|
+
selectedIds: string[] | "all";
|
|
759
787
|
unselectedIds: string[];
|
|
760
788
|
cursorId: string;
|
|
761
789
|
columnCount: number;
|
|
@@ -768,7 +796,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
768
796
|
};
|
|
769
797
|
UNSTABLE_defaultItemHeight: number;
|
|
770
798
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
771
|
-
orientation:
|
|
799
|
+
orientation: "horizontal" | "vertical";
|
|
772
800
|
indexRef: React.MutableRefObject<number>;
|
|
773
801
|
nonInteractiveIds: string[];
|
|
774
802
|
isVirtualized: boolean;
|
|
@@ -785,8 +813,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
785
813
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
786
814
|
placement: import("@popperjs/core").Placement;
|
|
787
815
|
id: string;
|
|
788
|
-
visibility:
|
|
789
|
-
selectedIds:
|
|
816
|
+
visibility: "hidden" | "visible";
|
|
817
|
+
selectedIds: string[] | "all";
|
|
790
818
|
unselectedIds: string[];
|
|
791
819
|
cursorId: string;
|
|
792
820
|
columnCount: number;
|
|
@@ -799,7 +827,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
799
827
|
};
|
|
800
828
|
UNSTABLE_defaultItemHeight: number;
|
|
801
829
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
802
|
-
orientation:
|
|
830
|
+
orientation: "horizontal" | "vertical";
|
|
803
831
|
indexRef: React.MutableRefObject<number>;
|
|
804
832
|
nonInteractiveIds: string[];
|
|
805
833
|
isVirtualized: boolean;
|
|
@@ -815,8 +843,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
815
843
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
816
844
|
placement: import("@popperjs/core").Placement;
|
|
817
845
|
id: string;
|
|
818
|
-
visibility:
|
|
819
|
-
selectedIds:
|
|
846
|
+
visibility: "hidden" | "visible";
|
|
847
|
+
selectedIds: string[] | "all";
|
|
820
848
|
unselectedIds: string[];
|
|
821
849
|
cursorId: string;
|
|
822
850
|
columnCount: number;
|
|
@@ -829,7 +857,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
829
857
|
};
|
|
830
858
|
UNSTABLE_defaultItemHeight: number;
|
|
831
859
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
832
|
-
orientation:
|
|
860
|
+
orientation: "horizontal" | "vertical";
|
|
833
861
|
indexRef: React.MutableRefObject<number>;
|
|
834
862
|
nonInteractiveIds: string[];
|
|
835
863
|
isVirtualized: boolean;
|
|
@@ -843,8 +871,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
843
871
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
844
872
|
placement: import("@popperjs/core").Placement;
|
|
845
873
|
id: string;
|
|
846
|
-
visibility:
|
|
847
|
-
selectedIds:
|
|
874
|
+
visibility: "hidden" | "visible";
|
|
875
|
+
selectedIds: string[] | "all";
|
|
848
876
|
unselectedIds: string[];
|
|
849
877
|
cursorId: string;
|
|
850
878
|
columnCount: number;
|
|
@@ -857,7 +885,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
857
885
|
};
|
|
858
886
|
UNSTABLE_defaultItemHeight: number;
|
|
859
887
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
860
|
-
orientation:
|
|
888
|
+
orientation: "horizontal" | "vertical";
|
|
861
889
|
indexRef: React.MutableRefObject<number>;
|
|
862
890
|
nonInteractiveIds: string[];
|
|
863
891
|
isVirtualized: boolean;
|
|
@@ -871,8 +899,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
871
899
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
872
900
|
placement: import("@popperjs/core").Placement;
|
|
873
901
|
id: string;
|
|
874
|
-
visibility:
|
|
875
|
-
selectedIds:
|
|
902
|
+
visibility: "hidden" | "visible";
|
|
903
|
+
selectedIds: string[] | "all";
|
|
876
904
|
unselectedIds: string[];
|
|
877
905
|
cursorId: string;
|
|
878
906
|
columnCount: number;
|
|
@@ -885,7 +913,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
885
913
|
};
|
|
886
914
|
UNSTABLE_defaultItemHeight: number;
|
|
887
915
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
888
|
-
orientation:
|
|
916
|
+
orientation: "horizontal" | "vertical";
|
|
889
917
|
indexRef: React.MutableRefObject<number>;
|
|
890
918
|
nonInteractiveIds: string[];
|
|
891
919
|
isVirtualized: boolean;
|
|
@@ -899,8 +927,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
899
927
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
900
928
|
placement: import("@popperjs/core").Placement;
|
|
901
929
|
id: string;
|
|
902
|
-
visibility:
|
|
903
|
-
selectedIds:
|
|
930
|
+
visibility: "hidden" | "visible";
|
|
931
|
+
selectedIds: string[] | "all";
|
|
904
932
|
unselectedIds: string[];
|
|
905
933
|
cursorId: string;
|
|
906
934
|
columnCount: number;
|
|
@@ -913,7 +941,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
913
941
|
};
|
|
914
942
|
UNSTABLE_defaultItemHeight: number;
|
|
915
943
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
916
|
-
orientation:
|
|
944
|
+
orientation: "horizontal" | "vertical";
|
|
917
945
|
indexRef: React.MutableRefObject<number>;
|
|
918
946
|
nonInteractiveIds: string[];
|
|
919
947
|
isVirtualized: boolean;
|
|
@@ -927,8 +955,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
927
955
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
928
956
|
placement: import("@popperjs/core").Placement;
|
|
929
957
|
id: string;
|
|
930
|
-
visibility:
|
|
931
|
-
selectedIds:
|
|
958
|
+
visibility: "hidden" | "visible";
|
|
959
|
+
selectedIds: string[] | "all";
|
|
932
960
|
unselectedIds: string[];
|
|
933
961
|
cursorId: string;
|
|
934
962
|
columnCount: number;
|
|
@@ -941,7 +969,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
941
969
|
};
|
|
942
970
|
UNSTABLE_defaultItemHeight: number;
|
|
943
971
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
944
|
-
orientation:
|
|
972
|
+
orientation: "horizontal" | "vertical";
|
|
945
973
|
indexRef: React.MutableRefObject<number>;
|
|
946
974
|
nonInteractiveIds: string[];
|
|
947
975
|
isVirtualized: boolean;
|
|
@@ -955,8 +983,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
955
983
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
956
984
|
placement: import("@popperjs/core").Placement;
|
|
957
985
|
id: string;
|
|
958
|
-
visibility:
|
|
959
|
-
selectedIds:
|
|
986
|
+
visibility: "hidden" | "visible";
|
|
987
|
+
selectedIds: string[] | "all";
|
|
960
988
|
unselectedIds: string[];
|
|
961
989
|
cursorId: string;
|
|
962
990
|
columnCount: number;
|
|
@@ -969,7 +997,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
969
997
|
};
|
|
970
998
|
UNSTABLE_defaultItemHeight: number;
|
|
971
999
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
972
|
-
orientation:
|
|
1000
|
+
orientation: "horizontal" | "vertical";
|
|
973
1001
|
indexRef: React.MutableRefObject<number>;
|
|
974
1002
|
nonInteractiveIds: string[];
|
|
975
1003
|
isVirtualized: boolean;
|
|
@@ -983,8 +1011,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
983
1011
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
984
1012
|
placement: import("@popperjs/core").Placement;
|
|
985
1013
|
id: string;
|
|
986
|
-
visibility:
|
|
987
|
-
selectedIds:
|
|
1014
|
+
visibility: "hidden" | "visible";
|
|
1015
|
+
selectedIds: string[] | "all";
|
|
988
1016
|
unselectedIds: string[];
|
|
989
1017
|
cursorId: string;
|
|
990
1018
|
columnCount: number;
|
|
@@ -997,7 +1025,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
997
1025
|
};
|
|
998
1026
|
UNSTABLE_defaultItemHeight: number;
|
|
999
1027
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1000
|
-
orientation:
|
|
1028
|
+
orientation: "horizontal" | "vertical";
|
|
1001
1029
|
indexRef: React.MutableRefObject<number>;
|
|
1002
1030
|
nonInteractiveIds: string[];
|
|
1003
1031
|
isVirtualized: boolean;
|
|
@@ -1011,8 +1039,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1011
1039
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1012
1040
|
placement: import("@popperjs/core").Placement;
|
|
1013
1041
|
id: string;
|
|
1014
|
-
visibility:
|
|
1015
|
-
selectedIds:
|
|
1042
|
+
visibility: "hidden" | "visible";
|
|
1043
|
+
selectedIds: string[] | "all";
|
|
1016
1044
|
unselectedIds: string[];
|
|
1017
1045
|
cursorId: string;
|
|
1018
1046
|
columnCount: number;
|
|
@@ -1025,7 +1053,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1025
1053
|
};
|
|
1026
1054
|
UNSTABLE_defaultItemHeight: number;
|
|
1027
1055
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1028
|
-
orientation:
|
|
1056
|
+
orientation: "horizontal" | "vertical";
|
|
1029
1057
|
indexRef: React.MutableRefObject<number>;
|
|
1030
1058
|
nonInteractiveIds: string[];
|
|
1031
1059
|
isVirtualized: boolean;
|
|
@@ -1039,8 +1067,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1039
1067
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1040
1068
|
placement: import("@popperjs/core").Placement;
|
|
1041
1069
|
id: string;
|
|
1042
|
-
visibility:
|
|
1043
|
-
selectedIds:
|
|
1070
|
+
visibility: "hidden" | "visible";
|
|
1071
|
+
selectedIds: string[] | "all";
|
|
1044
1072
|
unselectedIds: string[];
|
|
1045
1073
|
cursorId: string;
|
|
1046
1074
|
columnCount: number;
|
|
@@ -1053,7 +1081,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1053
1081
|
};
|
|
1054
1082
|
UNSTABLE_defaultItemHeight: number;
|
|
1055
1083
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1056
|
-
orientation:
|
|
1084
|
+
orientation: "horizontal" | "vertical";
|
|
1057
1085
|
indexRef: React.MutableRefObject<number>;
|
|
1058
1086
|
nonInteractiveIds: string[];
|
|
1059
1087
|
isVirtualized: boolean;
|
|
@@ -1067,8 +1095,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1067
1095
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1068
1096
|
placement: import("@popperjs/core").Placement;
|
|
1069
1097
|
id: string;
|
|
1070
|
-
visibility:
|
|
1071
|
-
selectedIds:
|
|
1098
|
+
visibility: "hidden" | "visible";
|
|
1099
|
+
selectedIds: string[] | "all";
|
|
1072
1100
|
unselectedIds: string[];
|
|
1073
1101
|
cursorId: string;
|
|
1074
1102
|
columnCount: number;
|
|
@@ -1081,7 +1109,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1081
1109
|
};
|
|
1082
1110
|
UNSTABLE_defaultItemHeight: number;
|
|
1083
1111
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1084
|
-
orientation:
|
|
1112
|
+
orientation: "horizontal" | "vertical";
|
|
1085
1113
|
indexRef: React.MutableRefObject<number>;
|
|
1086
1114
|
nonInteractiveIds: string[];
|
|
1087
1115
|
isVirtualized: boolean;
|
|
@@ -1095,8 +1123,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1095
1123
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1096
1124
|
placement: import("@popperjs/core").Placement;
|
|
1097
1125
|
id: string;
|
|
1098
|
-
visibility:
|
|
1099
|
-
selectedIds:
|
|
1126
|
+
visibility: "hidden" | "visible";
|
|
1127
|
+
selectedIds: string[] | "all";
|
|
1100
1128
|
unselectedIds: string[];
|
|
1101
1129
|
cursorId: string;
|
|
1102
1130
|
columnCount: number;
|
|
@@ -1109,7 +1137,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1109
1137
|
};
|
|
1110
1138
|
UNSTABLE_defaultItemHeight: number;
|
|
1111
1139
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1112
|
-
orientation:
|
|
1140
|
+
orientation: "horizontal" | "vertical";
|
|
1113
1141
|
indexRef: React.MutableRefObject<number>;
|
|
1114
1142
|
nonInteractiveIds: string[];
|
|
1115
1143
|
isVirtualized: boolean;
|
|
@@ -1125,8 +1153,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1125
1153
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1126
1154
|
placement: import("@popperjs/core").Placement;
|
|
1127
1155
|
id: string;
|
|
1128
|
-
visibility:
|
|
1129
|
-
selectedIds:
|
|
1156
|
+
visibility: "hidden" | "visible";
|
|
1157
|
+
selectedIds: string[] | "all";
|
|
1130
1158
|
unselectedIds: string[];
|
|
1131
1159
|
cursorId: string;
|
|
1132
1160
|
columnCount: number;
|
|
@@ -1139,7 +1167,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1139
1167
|
};
|
|
1140
1168
|
UNSTABLE_defaultItemHeight: number;
|
|
1141
1169
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1142
|
-
orientation:
|
|
1170
|
+
orientation: "horizontal" | "vertical";
|
|
1143
1171
|
indexRef: React.MutableRefObject<number>;
|
|
1144
1172
|
nonInteractiveIds: string[];
|
|
1145
1173
|
isVirtualized: boolean;
|
|
@@ -1155,8 +1183,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1155
1183
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1156
1184
|
placement: import("@popperjs/core").Placement;
|
|
1157
1185
|
id: string;
|
|
1158
|
-
visibility:
|
|
1159
|
-
selectedIds:
|
|
1186
|
+
visibility: "hidden" | "visible";
|
|
1187
|
+
selectedIds: string[] | "all";
|
|
1160
1188
|
unselectedIds: string[];
|
|
1161
1189
|
cursorId: string;
|
|
1162
1190
|
columnCount: number;
|
|
@@ -1169,7 +1197,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1169
1197
|
};
|
|
1170
1198
|
UNSTABLE_defaultItemHeight: number;
|
|
1171
1199
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1172
|
-
orientation:
|
|
1200
|
+
orientation: "horizontal" | "vertical";
|
|
1173
1201
|
indexRef: React.MutableRefObject<number>;
|
|
1174
1202
|
nonInteractiveIds: string[];
|
|
1175
1203
|
isVirtualized: boolean;
|
|
@@ -1177,6 +1205,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1177
1205
|
mode: "multiple" | "single";
|
|
1178
1206
|
}) => boolean) | undefined;
|
|
1179
1207
|
};
|
|
1208
|
+
/**
|
|
1209
|
+
* `Tabs.Item` is a `<button role="tab">` element. Each `Tabs.Item` is associated with a
|
|
1210
|
+
* `Tabs.Panel` either by a `data-id` attribute or by the position in the list. If a `data-id`
|
|
1211
|
+
* is provided, it must match the `data-id` passed to the corresponding `Tabs.Panel` component.
|
|
1212
|
+
*
|
|
1213
|
+
* ```tsx
|
|
1214
|
+
* <Tabs.Item data-id="first">First Tab</Tabs.Item>
|
|
1215
|
+
* ```
|
|
1216
|
+
*/
|
|
1180
1217
|
initialHiddenIds: string[];
|
|
1181
1218
|
containerWidth: number;
|
|
1182
1219
|
shouldCalculateOverflow: boolean;
|
|
@@ -1189,7 +1226,9 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1189
1226
|
getId: (item: any) => string;
|
|
1190
1227
|
getTextValue: (item: any) => string;
|
|
1191
1228
|
nonInteractiveIds: string[];
|
|
1192
|
-
defaultItemHeight: number;
|
|
1229
|
+
defaultItemHeight: number; /**
|
|
1230
|
+
* @deprecated Use `Tabs.Menu.Popper` instead
|
|
1231
|
+
*/
|
|
1193
1232
|
shouldVirtualize: boolean;
|
|
1194
1233
|
items: any[];
|
|
1195
1234
|
}> & {
|
|
@@ -1205,7 +1244,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1205
1244
|
itemWidthCache: Record<string, number>;
|
|
1206
1245
|
containerWidth: number;
|
|
1207
1246
|
overflowTargetWidth: number;
|
|
1208
|
-
selectedIds:
|
|
1247
|
+
selectedIds: string[] | "all";
|
|
1209
1248
|
unselectedIds: string[];
|
|
1210
1249
|
cursorId: string;
|
|
1211
1250
|
columnCount: number;
|
|
@@ -1235,7 +1274,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1235
1274
|
itemWidthCache: Record<string, number>;
|
|
1236
1275
|
containerWidth: number;
|
|
1237
1276
|
overflowTargetWidth: number;
|
|
1238
|
-
selectedIds:
|
|
1277
|
+
selectedIds: string[] | "all";
|
|
1239
1278
|
unselectedIds: string[];
|
|
1240
1279
|
cursorId: string;
|
|
1241
1280
|
columnCount: number;
|
|
@@ -1265,7 +1304,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1265
1304
|
itemWidthCache: Record<string, number>;
|
|
1266
1305
|
containerWidth: number;
|
|
1267
1306
|
overflowTargetWidth: number;
|
|
1268
|
-
selectedIds:
|
|
1307
|
+
selectedIds: string[] | "all";
|
|
1269
1308
|
unselectedIds: string[];
|
|
1270
1309
|
cursorId: string;
|
|
1271
1310
|
columnCount: number;
|
|
@@ -1295,7 +1334,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1295
1334
|
itemWidthCache: Record<string, number>;
|
|
1296
1335
|
containerWidth: number;
|
|
1297
1336
|
overflowTargetWidth: number;
|
|
1298
|
-
selectedIds:
|
|
1337
|
+
selectedIds: string[] | "all";
|
|
1299
1338
|
unselectedIds: string[];
|
|
1300
1339
|
cursorId: string;
|
|
1301
1340
|
columnCount: number;
|
|
@@ -1325,7 +1364,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1325
1364
|
itemWidthCache: Record<string, number>;
|
|
1326
1365
|
containerWidth: number;
|
|
1327
1366
|
overflowTargetWidth: number;
|
|
1328
|
-
selectedIds:
|
|
1367
|
+
selectedIds: string[] | "all";
|
|
1329
1368
|
unselectedIds: string[];
|
|
1330
1369
|
cursorId: string;
|
|
1331
1370
|
columnCount: number;
|
|
@@ -1356,7 +1395,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1356
1395
|
itemWidthCache: Record<string, number>;
|
|
1357
1396
|
containerWidth: number;
|
|
1358
1397
|
overflowTargetWidth: number;
|
|
1359
|
-
selectedIds:
|
|
1398
|
+
selectedIds: string[] | "all";
|
|
1360
1399
|
unselectedIds: string[];
|
|
1361
1400
|
cursorId: string;
|
|
1362
1401
|
columnCount: number;
|
|
@@ -1386,7 +1425,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1386
1425
|
itemWidthCache: Record<string, number>;
|
|
1387
1426
|
containerWidth: number;
|
|
1388
1427
|
overflowTargetWidth: number;
|
|
1389
|
-
selectedIds:
|
|
1428
|
+
selectedIds: string[] | "all";
|
|
1390
1429
|
unselectedIds: string[];
|
|
1391
1430
|
cursorId: string;
|
|
1392
1431
|
columnCount: number;
|
|
@@ -1416,7 +1455,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1416
1455
|
itemWidthCache: Record<string, number>;
|
|
1417
1456
|
containerWidth: number;
|
|
1418
1457
|
overflowTargetWidth: number;
|
|
1419
|
-
selectedIds:
|
|
1458
|
+
selectedIds: string[] | "all";
|
|
1420
1459
|
unselectedIds: string[];
|
|
1421
1460
|
cursorId: string;
|
|
1422
1461
|
columnCount: number;
|
|
@@ -1446,7 +1485,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1446
1485
|
itemWidthCache: Record<string, number>;
|
|
1447
1486
|
containerWidth: number;
|
|
1448
1487
|
overflowTargetWidth: number;
|
|
1449
|
-
selectedIds:
|
|
1488
|
+
selectedIds: string[] | "all";
|
|
1450
1489
|
unselectedIds: string[];
|
|
1451
1490
|
cursorId: string;
|
|
1452
1491
|
columnCount: number;
|
|
@@ -1474,7 +1513,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1474
1513
|
itemWidthCache: Record<string, number>;
|
|
1475
1514
|
containerWidth: number;
|
|
1476
1515
|
overflowTargetWidth: number;
|
|
1477
|
-
selectedIds:
|
|
1516
|
+
selectedIds: string[] | "all";
|
|
1478
1517
|
unselectedIds: string[];
|
|
1479
1518
|
cursorId: string;
|
|
1480
1519
|
columnCount: number;
|
|
@@ -1502,7 +1541,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1502
1541
|
itemWidthCache: Record<string, number>;
|
|
1503
1542
|
containerWidth: number;
|
|
1504
1543
|
overflowTargetWidth: number;
|
|
1505
|
-
selectedIds:
|
|
1544
|
+
selectedIds: string[] | "all";
|
|
1506
1545
|
unselectedIds: string[];
|
|
1507
1546
|
cursorId: string;
|
|
1508
1547
|
columnCount: number;
|
|
@@ -1533,7 +1572,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1533
1572
|
itemWidthCache: Record<string, number>;
|
|
1534
1573
|
containerWidth: number;
|
|
1535
1574
|
overflowTargetWidth: number;
|
|
1536
|
-
selectedIds:
|
|
1575
|
+
selectedIds: string[] | "all";
|
|
1537
1576
|
unselectedIds: string[];
|
|
1538
1577
|
cursorId: string;
|
|
1539
1578
|
columnCount: number;
|
|
@@ -1563,7 +1602,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1563
1602
|
itemWidthCache: Record<string, number>;
|
|
1564
1603
|
containerWidth: number;
|
|
1565
1604
|
overflowTargetWidth: number;
|
|
1566
|
-
selectedIds:
|
|
1605
|
+
selectedIds: string[] | "all";
|
|
1567
1606
|
unselectedIds: string[];
|
|
1568
1607
|
cursorId: string;
|
|
1569
1608
|
columnCount: number;
|
|
@@ -1591,7 +1630,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1591
1630
|
itemWidthCache: Record<string, number>;
|
|
1592
1631
|
containerWidth: number;
|
|
1593
1632
|
overflowTargetWidth: number;
|
|
1594
|
-
selectedIds:
|
|
1633
|
+
selectedIds: string[] | "all";
|
|
1595
1634
|
unselectedIds: string[];
|
|
1596
1635
|
cursorId: string;
|
|
1597
1636
|
columnCount: number;
|
|
@@ -1619,7 +1658,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1619
1658
|
itemWidthCache: Record<string, number>;
|
|
1620
1659
|
containerWidth: number;
|
|
1621
1660
|
overflowTargetWidth: number;
|
|
1622
|
-
selectedIds:
|
|
1661
|
+
selectedIds: string[] | "all";
|
|
1623
1662
|
unselectedIds: string[];
|
|
1624
1663
|
cursorId: string;
|
|
1625
1664
|
columnCount: number;
|
|
@@ -1647,7 +1686,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1647
1686
|
itemWidthCache: Record<string, number>;
|
|
1648
1687
|
containerWidth: number;
|
|
1649
1688
|
overflowTargetWidth: number;
|
|
1650
|
-
selectedIds:
|
|
1689
|
+
selectedIds: string[] | "all";
|
|
1651
1690
|
unselectedIds: string[];
|
|
1652
1691
|
cursorId: string;
|
|
1653
1692
|
columnCount: number;
|
|
@@ -1675,7 +1714,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1675
1714
|
itemWidthCache: Record<string, number>;
|
|
1676
1715
|
containerWidth: number;
|
|
1677
1716
|
overflowTargetWidth: number;
|
|
1678
|
-
selectedIds:
|
|
1717
|
+
selectedIds: string[] | "all";
|
|
1679
1718
|
unselectedIds: string[];
|
|
1680
1719
|
cursorId: string;
|
|
1681
1720
|
columnCount: number;
|
|
@@ -1703,7 +1742,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1703
1742
|
itemWidthCache: Record<string, number>;
|
|
1704
1743
|
containerWidth: number;
|
|
1705
1744
|
overflowTargetWidth: number;
|
|
1706
|
-
selectedIds:
|
|
1745
|
+
selectedIds: string[] | "all";
|
|
1707
1746
|
unselectedIds: string[];
|
|
1708
1747
|
cursorId: string;
|
|
1709
1748
|
columnCount: number;
|
|
@@ -1731,7 +1770,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1731
1770
|
itemWidthCache: Record<string, number>;
|
|
1732
1771
|
containerWidth: number;
|
|
1733
1772
|
overflowTargetWidth: number;
|
|
1734
|
-
selectedIds:
|
|
1773
|
+
selectedIds: string[] | "all";
|
|
1735
1774
|
unselectedIds: string[];
|
|
1736
1775
|
cursorId: string;
|
|
1737
1776
|
columnCount: number;
|
|
@@ -1759,7 +1798,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1759
1798
|
itemWidthCache: Record<string, number>;
|
|
1760
1799
|
containerWidth: number;
|
|
1761
1800
|
overflowTargetWidth: number;
|
|
1762
|
-
selectedIds:
|
|
1801
|
+
selectedIds: string[] | "all";
|
|
1763
1802
|
unselectedIds: string[];
|
|
1764
1803
|
cursorId: string;
|
|
1765
1804
|
columnCount: number;
|
|
@@ -1787,7 +1826,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1787
1826
|
itemWidthCache: Record<string, number>;
|
|
1788
1827
|
containerWidth: number;
|
|
1789
1828
|
overflowTargetWidth: number;
|
|
1790
|
-
selectedIds:
|
|
1829
|
+
selectedIds: string[] | "all";
|
|
1791
1830
|
unselectedIds: string[];
|
|
1792
1831
|
cursorId: string;
|
|
1793
1832
|
columnCount: number;
|
|
@@ -1815,7 +1854,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1815
1854
|
itemWidthCache: Record<string, number>;
|
|
1816
1855
|
containerWidth: number;
|
|
1817
1856
|
overflowTargetWidth: number;
|
|
1818
|
-
selectedIds:
|
|
1857
|
+
selectedIds: string[] | "all";
|
|
1819
1858
|
unselectedIds: string[];
|
|
1820
1859
|
cursorId: string;
|
|
1821
1860
|
columnCount: number;
|
|
@@ -1843,7 +1882,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1843
1882
|
itemWidthCache: Record<string, number>;
|
|
1844
1883
|
containerWidth: number;
|
|
1845
1884
|
overflowTargetWidth: number;
|
|
1846
|
-
selectedIds:
|
|
1885
|
+
selectedIds: string[] | "all";
|
|
1847
1886
|
unselectedIds: string[];
|
|
1848
1887
|
cursorId: string;
|
|
1849
1888
|
columnCount: number;
|
|
@@ -1873,7 +1912,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1873
1912
|
itemWidthCache: Record<string, number>;
|
|
1874
1913
|
containerWidth: number;
|
|
1875
1914
|
overflowTargetWidth: number;
|
|
1876
|
-
selectedIds:
|
|
1915
|
+
selectedIds: string[] | "all";
|
|
1877
1916
|
unselectedIds: string[];
|
|
1878
1917
|
cursorId: string;
|
|
1879
1918
|
columnCount: number;
|
|
@@ -1903,7 +1942,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1903
1942
|
itemWidthCache: Record<string, number>;
|
|
1904
1943
|
containerWidth: number;
|
|
1905
1944
|
overflowTargetWidth: number;
|
|
1906
|
-
selectedIds:
|
|
1945
|
+
selectedIds: string[] | "all";
|
|
1907
1946
|
unselectedIds: string[];
|
|
1908
1947
|
cursorId: string;
|
|
1909
1948
|
columnCount: number;
|
|
@@ -1935,7 +1974,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1935
1974
|
itemWidthCache: Record<string, number>;
|
|
1936
1975
|
containerWidth: number;
|
|
1937
1976
|
overflowTargetWidth: number;
|
|
1938
|
-
selectedIds:
|
|
1977
|
+
selectedIds: string[] | "all";
|
|
1939
1978
|
unselectedIds: string[];
|
|
1940
1979
|
cursorId: string;
|
|
1941
1980
|
columnCount: number;
|
|
@@ -1965,7 +2004,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1965
2004
|
itemWidthCache: Record<string, number>;
|
|
1966
2005
|
containerWidth: number;
|
|
1967
2006
|
overflowTargetWidth: number;
|
|
1968
|
-
selectedIds:
|
|
2007
|
+
selectedIds: string[] | "all";
|
|
1969
2008
|
unselectedIds: string[];
|
|
1970
2009
|
cursorId: string;
|
|
1971
2010
|
columnCount: number;
|
|
@@ -1995,7 +2034,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1995
2034
|
itemWidthCache: Record<string, number>;
|
|
1996
2035
|
containerWidth: number;
|
|
1997
2036
|
overflowTargetWidth: number;
|
|
1998
|
-
selectedIds:
|
|
2037
|
+
selectedIds: string[] | "all";
|
|
1999
2038
|
unselectedIds: string[];
|
|
2000
2039
|
cursorId: string;
|
|
2001
2040
|
columnCount: number;
|
|
@@ -2025,7 +2064,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2025
2064
|
itemWidthCache: Record<string, number>;
|
|
2026
2065
|
containerWidth: number;
|
|
2027
2066
|
overflowTargetWidth: number;
|
|
2028
|
-
selectedIds:
|
|
2067
|
+
selectedIds: string[] | "all";
|
|
2029
2068
|
unselectedIds: string[];
|
|
2030
2069
|
cursorId: string;
|
|
2031
2070
|
columnCount: number;
|
|
@@ -2055,7 +2094,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2055
2094
|
itemWidthCache: Record<string, number>;
|
|
2056
2095
|
containerWidth: number;
|
|
2057
2096
|
overflowTargetWidth: number;
|
|
2058
|
-
selectedIds:
|
|
2097
|
+
selectedIds: string[] | "all";
|
|
2059
2098
|
unselectedIds: string[];
|
|
2060
2099
|
cursorId: string;
|
|
2061
2100
|
columnCount: number;
|
|
@@ -2086,7 +2125,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2086
2125
|
itemWidthCache: Record<string, number>;
|
|
2087
2126
|
containerWidth: number;
|
|
2088
2127
|
overflowTargetWidth: number;
|
|
2089
|
-
selectedIds:
|
|
2128
|
+
selectedIds: string[] | "all";
|
|
2090
2129
|
unselectedIds: string[];
|
|
2091
2130
|
cursorId: string;
|
|
2092
2131
|
columnCount: number;
|
|
@@ -2116,7 +2155,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2116
2155
|
itemWidthCache: Record<string, number>;
|
|
2117
2156
|
containerWidth: number;
|
|
2118
2157
|
overflowTargetWidth: number;
|
|
2119
|
-
selectedIds:
|
|
2158
|
+
selectedIds: string[] | "all";
|
|
2120
2159
|
unselectedIds: string[];
|
|
2121
2160
|
cursorId: string;
|
|
2122
2161
|
columnCount: number;
|
|
@@ -2146,7 +2185,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2146
2185
|
itemWidthCache: Record<string, number>;
|
|
2147
2186
|
containerWidth: number;
|
|
2148
2187
|
overflowTargetWidth: number;
|
|
2149
|
-
selectedIds:
|
|
2188
|
+
selectedIds: string[] | "all";
|
|
2150
2189
|
unselectedIds: string[];
|
|
2151
2190
|
cursorId: string;
|
|
2152
2191
|
columnCount: number;
|
|
@@ -2176,7 +2215,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2176
2215
|
itemWidthCache: Record<string, number>;
|
|
2177
2216
|
containerWidth: number;
|
|
2178
2217
|
overflowTargetWidth: number;
|
|
2179
|
-
selectedIds:
|
|
2218
|
+
selectedIds: string[] | "all";
|
|
2180
2219
|
unselectedIds: string[];
|
|
2181
2220
|
cursorId: string;
|
|
2182
2221
|
columnCount: number;
|
|
@@ -2204,7 +2243,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2204
2243
|
itemWidthCache: Record<string, number>;
|
|
2205
2244
|
containerWidth: number;
|
|
2206
2245
|
overflowTargetWidth: number;
|
|
2207
|
-
selectedIds:
|
|
2246
|
+
selectedIds: string[] | "all";
|
|
2208
2247
|
unselectedIds: string[];
|
|
2209
2248
|
cursorId: string;
|
|
2210
2249
|
columnCount: number;
|
|
@@ -2232,7 +2271,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2232
2271
|
itemWidthCache: Record<string, number>;
|
|
2233
2272
|
containerWidth: number;
|
|
2234
2273
|
overflowTargetWidth: number;
|
|
2235
|
-
selectedIds:
|
|
2274
|
+
selectedIds: string[] | "all";
|
|
2236
2275
|
unselectedIds: string[];
|
|
2237
2276
|
cursorId: string;
|
|
2238
2277
|
columnCount: number;
|
|
@@ -2263,7 +2302,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2263
2302
|
itemWidthCache: Record<string, number>;
|
|
2264
2303
|
containerWidth: number;
|
|
2265
2304
|
overflowTargetWidth: number;
|
|
2266
|
-
selectedIds:
|
|
2305
|
+
selectedIds: string[] | "all";
|
|
2267
2306
|
unselectedIds: string[];
|
|
2268
2307
|
cursorId: string;
|
|
2269
2308
|
columnCount: number;
|
|
@@ -2293,7 +2332,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2293
2332
|
itemWidthCache: Record<string, number>;
|
|
2294
2333
|
containerWidth: number;
|
|
2295
2334
|
overflowTargetWidth: number;
|
|
2296
|
-
selectedIds:
|
|
2335
|
+
selectedIds: string[] | "all";
|
|
2297
2336
|
unselectedIds: string[];
|
|
2298
2337
|
cursorId: string;
|
|
2299
2338
|
columnCount: number;
|
|
@@ -2321,7 +2360,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2321
2360
|
itemWidthCache: Record<string, number>;
|
|
2322
2361
|
containerWidth: number;
|
|
2323
2362
|
overflowTargetWidth: number;
|
|
2324
|
-
selectedIds:
|
|
2363
|
+
selectedIds: string[] | "all";
|
|
2325
2364
|
unselectedIds: string[];
|
|
2326
2365
|
cursorId: string;
|
|
2327
2366
|
columnCount: number;
|
|
@@ -2349,7 +2388,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2349
2388
|
itemWidthCache: Record<string, number>;
|
|
2350
2389
|
containerWidth: number;
|
|
2351
2390
|
overflowTargetWidth: number;
|
|
2352
|
-
selectedIds:
|
|
2391
|
+
selectedIds: string[] | "all";
|
|
2353
2392
|
unselectedIds: string[];
|
|
2354
2393
|
cursorId: string;
|
|
2355
2394
|
columnCount: number;
|
|
@@ -2377,7 +2416,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2377
2416
|
itemWidthCache: Record<string, number>;
|
|
2378
2417
|
containerWidth: number;
|
|
2379
2418
|
overflowTargetWidth: number;
|
|
2380
|
-
selectedIds:
|
|
2419
|
+
selectedIds: string[] | "all";
|
|
2381
2420
|
unselectedIds: string[];
|
|
2382
2421
|
cursorId: string;
|
|
2383
2422
|
columnCount: number;
|
|
@@ -2405,7 +2444,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2405
2444
|
itemWidthCache: Record<string, number>;
|
|
2406
2445
|
containerWidth: number;
|
|
2407
2446
|
overflowTargetWidth: number;
|
|
2408
|
-
selectedIds:
|
|
2447
|
+
selectedIds: string[] | "all";
|
|
2409
2448
|
unselectedIds: string[];
|
|
2410
2449
|
cursorId: string;
|
|
2411
2450
|
columnCount: number;
|
|
@@ -2433,7 +2472,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2433
2472
|
itemWidthCache: Record<string, number>;
|
|
2434
2473
|
containerWidth: number;
|
|
2435
2474
|
overflowTargetWidth: number;
|
|
2436
|
-
selectedIds:
|
|
2475
|
+
selectedIds: string[] | "all";
|
|
2437
2476
|
unselectedIds: string[];
|
|
2438
2477
|
cursorId: string;
|
|
2439
2478
|
columnCount: number;
|
|
@@ -2461,7 +2500,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2461
2500
|
itemWidthCache: Record<string, number>;
|
|
2462
2501
|
containerWidth: number;
|
|
2463
2502
|
overflowTargetWidth: number;
|
|
2464
|
-
selectedIds:
|
|
2503
|
+
selectedIds: string[] | "all";
|
|
2465
2504
|
unselectedIds: string[];
|
|
2466
2505
|
cursorId: string;
|
|
2467
2506
|
columnCount: number;
|
|
@@ -2489,7 +2528,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2489
2528
|
itemWidthCache: Record<string, number>;
|
|
2490
2529
|
containerWidth: number;
|
|
2491
2530
|
overflowTargetWidth: number;
|
|
2492
|
-
selectedIds:
|
|
2531
|
+
selectedIds: string[] | "all";
|
|
2493
2532
|
unselectedIds: string[];
|
|
2494
2533
|
cursorId: string;
|
|
2495
2534
|
columnCount: number;
|
|
@@ -2517,7 +2556,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2517
2556
|
itemWidthCache: Record<string, number>;
|
|
2518
2557
|
containerWidth: number;
|
|
2519
2558
|
overflowTargetWidth: number;
|
|
2520
|
-
selectedIds:
|
|
2559
|
+
selectedIds: string[] | "all";
|
|
2521
2560
|
unselectedIds: string[];
|
|
2522
2561
|
cursorId: string;
|
|
2523
2562
|
columnCount: number;
|
|
@@ -2545,7 +2584,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2545
2584
|
itemWidthCache: Record<string, number>;
|
|
2546
2585
|
containerWidth: number;
|
|
2547
2586
|
overflowTargetWidth: number;
|
|
2548
|
-
selectedIds:
|
|
2587
|
+
selectedIds: string[] | "all";
|
|
2549
2588
|
unselectedIds: string[];
|
|
2550
2589
|
cursorId: string;
|
|
2551
2590
|
columnCount: number;
|
|
@@ -2573,7 +2612,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2573
2612
|
itemWidthCache: Record<string, number>;
|
|
2574
2613
|
containerWidth: number;
|
|
2575
2614
|
overflowTargetWidth: number;
|
|
2576
|
-
selectedIds:
|
|
2615
|
+
selectedIds: string[] | "all";
|
|
2577
2616
|
unselectedIds: string[];
|
|
2578
2617
|
cursorId: string;
|
|
2579
2618
|
columnCount: number;
|
|
@@ -2603,7 +2642,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2603
2642
|
itemWidthCache: Record<string, number>;
|
|
2604
2643
|
containerWidth: number;
|
|
2605
2644
|
overflowTargetWidth: number;
|
|
2606
|
-
selectedIds:
|
|
2645
|
+
selectedIds: string[] | "all";
|
|
2607
2646
|
unselectedIds: string[];
|
|
2608
2647
|
cursorId: string;
|
|
2609
2648
|
columnCount: number;
|
|
@@ -2633,7 +2672,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2633
2672
|
itemWidthCache: Record<string, number>;
|
|
2634
2673
|
containerWidth: number;
|
|
2635
2674
|
overflowTargetWidth: number;
|
|
2636
|
-
selectedIds:
|
|
2675
|
+
selectedIds: string[] | "all";
|
|
2637
2676
|
unselectedIds: string[];
|
|
2638
2677
|
cursorId: string;
|
|
2639
2678
|
columnCount: number;
|
|
@@ -2662,7 +2701,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2662
2701
|
itemWidthCache: Record<string, number>;
|
|
2663
2702
|
containerWidth: number;
|
|
2664
2703
|
overflowTargetWidth: number;
|
|
2665
|
-
selectedIds:
|
|
2704
|
+
selectedIds: string[] | "all";
|
|
2666
2705
|
unselectedIds: string[];
|
|
2667
2706
|
cursorId: string;
|
|
2668
2707
|
columnCount: number;
|
|
@@ -2745,8 +2784,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2745
2784
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2746
2785
|
placement: import("@popperjs/core").Placement;
|
|
2747
2786
|
id: string;
|
|
2748
|
-
visibility:
|
|
2749
|
-
selectedIds:
|
|
2787
|
+
visibility: "hidden" | "visible";
|
|
2788
|
+
selectedIds: string[] | "all";
|
|
2750
2789
|
unselectedIds: string[];
|
|
2751
2790
|
cursorId: string;
|
|
2752
2791
|
columnCount: number;
|
|
@@ -2759,13 +2798,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2759
2798
|
};
|
|
2760
2799
|
UNSTABLE_defaultItemHeight: number;
|
|
2761
2800
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2762
|
-
orientation:
|
|
2801
|
+
orientation: "horizontal" | "vertical";
|
|
2763
2802
|
indexRef: React.MutableRefObject<number>;
|
|
2764
2803
|
nonInteractiveIds: string[];
|
|
2765
2804
|
isVirtualized: boolean;
|
|
2766
2805
|
items: import("../..").Item<any>[];
|
|
2767
2806
|
mode: "multiple" | "single";
|
|
2768
|
-
};
|
|
2807
|
+
}; /**
|
|
2808
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
2809
|
+
* subcomponents.
|
|
2810
|
+
*
|
|
2811
|
+
* ```tsx
|
|
2812
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
2813
|
+
* ```
|
|
2814
|
+
*/
|
|
2769
2815
|
events: {
|
|
2770
2816
|
updatePlacement(data: {
|
|
2771
2817
|
placement: import("@popperjs/core").Placement;
|
|
@@ -2809,7 +2855,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2809
2855
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2810
2856
|
getId: (item: any) => string;
|
|
2811
2857
|
}> & {
|
|
2812
|
-
|
|
2858
|
+
/**
|
|
2859
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
2860
|
+
* subcomponents.
|
|
2861
|
+
*
|
|
2862
|
+
* ```tsx
|
|
2863
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
2864
|
+
* ```
|
|
2865
|
+
*/
|
|
2866
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./TabsList").TabListProps<any>, {
|
|
2813
2867
|
state: {
|
|
2814
2868
|
getId: (item: any) => string;
|
|
2815
2869
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -2819,7 +2873,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2819
2873
|
itemWidthCache: Record<string, number>;
|
|
2820
2874
|
containerWidth: number;
|
|
2821
2875
|
overflowTargetWidth: number;
|
|
2822
|
-
selectedIds:
|
|
2876
|
+
selectedIds: string[] | "all";
|
|
2823
2877
|
unselectedIds: string[];
|
|
2824
2878
|
cursorId: string;
|
|
2825
2879
|
columnCount: number;
|
|
@@ -2902,8 +2956,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2902
2956
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2903
2957
|
placement: import("@popperjs/core").Placement;
|
|
2904
2958
|
id: string;
|
|
2905
|
-
visibility:
|
|
2906
|
-
selectedIds:
|
|
2959
|
+
visibility: "hidden" | "visible";
|
|
2960
|
+
selectedIds: string[] | "all";
|
|
2907
2961
|
unselectedIds: string[];
|
|
2908
2962
|
cursorId: string;
|
|
2909
2963
|
columnCount: number;
|
|
@@ -2916,13 +2970,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2916
2970
|
};
|
|
2917
2971
|
UNSTABLE_defaultItemHeight: number;
|
|
2918
2972
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2919
|
-
orientation:
|
|
2973
|
+
orientation: "horizontal" | "vertical";
|
|
2920
2974
|
indexRef: React.MutableRefObject<number>;
|
|
2921
2975
|
nonInteractiveIds: string[];
|
|
2922
2976
|
isVirtualized: boolean;
|
|
2923
2977
|
items: import("../..").Item<any>[];
|
|
2924
2978
|
mode: "multiple" | "single";
|
|
2925
|
-
};
|
|
2979
|
+
}; /**
|
|
2980
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
2981
|
+
* subcomponents.
|
|
2982
|
+
*
|
|
2983
|
+
* ```tsx
|
|
2984
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
2985
|
+
* ```
|
|
2986
|
+
*/
|
|
2926
2987
|
events: {
|
|
2927
2988
|
updatePlacement(data: {
|
|
2928
2989
|
placement: import("@popperjs/core").Placement;
|
|
@@ -2966,7 +3027,16 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2966
3027
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2967
3028
|
getId: (item: any) => string;
|
|
2968
3029
|
}>;
|
|
2969
|
-
|
|
3030
|
+
/**
|
|
3031
|
+
* `Tabs.Item` is a `<button role="tab">` element. Each `Tabs.Item` is associated with a
|
|
3032
|
+
* `Tabs.Panel` either by a `data-id` attribute or by the position in the list. If a `data-id`
|
|
3033
|
+
* is provided, it must match the `data-id` passed to the corresponding `Tabs.Panel` component.
|
|
3034
|
+
*
|
|
3035
|
+
* ```tsx
|
|
3036
|
+
* <Tabs.Item data-id="first">First Tab</Tabs.Item>
|
|
3037
|
+
* ```
|
|
3038
|
+
*/
|
|
3039
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("./TabsItem").TabsItemProps, {
|
|
2970
3040
|
state: {
|
|
2971
3041
|
getId: (item: any) => string;
|
|
2972
3042
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -2976,7 +3046,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2976
3046
|
itemWidthCache: Record<string, number>;
|
|
2977
3047
|
containerWidth: number;
|
|
2978
3048
|
overflowTargetWidth: number;
|
|
2979
|
-
selectedIds:
|
|
3049
|
+
selectedIds: string[] | "all";
|
|
2980
3050
|
unselectedIds: string[];
|
|
2981
3051
|
cursorId: string;
|
|
2982
3052
|
columnCount: number;
|
|
@@ -3059,8 +3129,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3059
3129
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3060
3130
|
placement: import("@popperjs/core").Placement;
|
|
3061
3131
|
id: string;
|
|
3062
|
-
visibility:
|
|
3063
|
-
selectedIds:
|
|
3132
|
+
visibility: "hidden" | "visible";
|
|
3133
|
+
selectedIds: string[] | "all";
|
|
3064
3134
|
unselectedIds: string[];
|
|
3065
3135
|
cursorId: string;
|
|
3066
3136
|
columnCount: number;
|
|
@@ -3073,13 +3143,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3073
3143
|
};
|
|
3074
3144
|
UNSTABLE_defaultItemHeight: number;
|
|
3075
3145
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3076
|
-
orientation:
|
|
3146
|
+
orientation: "horizontal" | "vertical";
|
|
3077
3147
|
indexRef: React.MutableRefObject<number>;
|
|
3078
3148
|
nonInteractiveIds: string[];
|
|
3079
3149
|
isVirtualized: boolean;
|
|
3080
3150
|
items: import("../..").Item<any>[];
|
|
3081
3151
|
mode: "multiple" | "single";
|
|
3082
|
-
};
|
|
3152
|
+
}; /**
|
|
3153
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
3154
|
+
* subcomponents.
|
|
3155
|
+
*
|
|
3156
|
+
* ```tsx
|
|
3157
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
3158
|
+
* ```
|
|
3159
|
+
*/
|
|
3083
3160
|
events: {
|
|
3084
3161
|
updatePlacement(data: {
|
|
3085
3162
|
placement: import("@popperjs/core").Placement;
|
|
@@ -3123,10 +3200,22 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3123
3200
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3124
3201
|
getId: (item: any) => string;
|
|
3125
3202
|
}> & {
|
|
3126
|
-
Icon: import("
|
|
3127
|
-
Text: import("
|
|
3203
|
+
Icon: import("@workday/canvas-kit-react/common").ElementComponent<"span", import("../..").SystemIconProps>;
|
|
3204
|
+
Text: import("@workday/canvas-kit-react/common").ElementComponent<"span", unknown>;
|
|
3128
3205
|
};
|
|
3129
|
-
|
|
3206
|
+
/**
|
|
3207
|
+
* `Tabs.Panel` is a `<div role="tabpanel">` element. It is focusable by default. Each
|
|
3208
|
+
* `Tabs.Panel` is controlled by a `Tabs.Item` either by a `data-id` attribute or by the
|
|
3209
|
+
* position in the list. If a `data-id` is provided, it must match the `data-id` passed to the
|
|
3210
|
+
* corresponding `Tabs.Item` component.
|
|
3211
|
+
*
|
|
3212
|
+
* ```tsx
|
|
3213
|
+
* <Tabs.Panel data-id="first">
|
|
3214
|
+
* {contents of tab panel}
|
|
3215
|
+
* </Tabs.Panel>
|
|
3216
|
+
* ```
|
|
3217
|
+
*/
|
|
3218
|
+
Panel: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./TabsPanel").TabPanelProps, {
|
|
3130
3219
|
state: {
|
|
3131
3220
|
getId: (item: any) => string;
|
|
3132
3221
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -3136,7 +3225,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3136
3225
|
itemWidthCache: Record<string, number>;
|
|
3137
3226
|
containerWidth: number;
|
|
3138
3227
|
overflowTargetWidth: number;
|
|
3139
|
-
selectedIds:
|
|
3228
|
+
selectedIds: string[] | "all";
|
|
3140
3229
|
unselectedIds: string[];
|
|
3141
3230
|
cursorId: string;
|
|
3142
3231
|
columnCount: number;
|
|
@@ -3219,8 +3308,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3219
3308
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3220
3309
|
placement: import("@popperjs/core").Placement;
|
|
3221
3310
|
id: string;
|
|
3222
|
-
visibility:
|
|
3223
|
-
selectedIds:
|
|
3311
|
+
visibility: "hidden" | "visible";
|
|
3312
|
+
selectedIds: string[] | "all";
|
|
3224
3313
|
unselectedIds: string[];
|
|
3225
3314
|
cursorId: string;
|
|
3226
3315
|
columnCount: number;
|
|
@@ -3233,13 +3322,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3233
3322
|
};
|
|
3234
3323
|
UNSTABLE_defaultItemHeight: number;
|
|
3235
3324
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3236
|
-
orientation:
|
|
3325
|
+
orientation: "horizontal" | "vertical";
|
|
3237
3326
|
indexRef: React.MutableRefObject<number>;
|
|
3238
3327
|
nonInteractiveIds: string[];
|
|
3239
3328
|
isVirtualized: boolean;
|
|
3240
3329
|
items: import("../..").Item<any>[];
|
|
3241
3330
|
mode: "multiple" | "single";
|
|
3242
|
-
};
|
|
3331
|
+
}; /**
|
|
3332
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
3333
|
+
* subcomponents.
|
|
3334
|
+
*
|
|
3335
|
+
* ```tsx
|
|
3336
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
3337
|
+
* ```
|
|
3338
|
+
*/
|
|
3243
3339
|
events: {
|
|
3244
3340
|
updatePlacement(data: {
|
|
3245
3341
|
placement: import("@popperjs/core").Placement;
|
|
@@ -3283,7 +3379,21 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3283
3379
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3284
3380
|
getId: (item: any) => string;
|
|
3285
3381
|
}>;
|
|
3286
|
-
|
|
3382
|
+
/**
|
|
3383
|
+
* Optional subcomponent of tabs that makes dealing with dynamic tabs easier. `Tabs.Panels` only
|
|
3384
|
+
* works if the model is given an array of items.
|
|
3385
|
+
*
|
|
3386
|
+
* ```tsx
|
|
3387
|
+
* const items = [{ id: '1', name: 'first' }]
|
|
3388
|
+
* <Tabs items={items}>
|
|
3389
|
+
* {tab list}
|
|
3390
|
+
* <Tabs.Panels>
|
|
3391
|
+
* {item => <Tabs.Panel>Contents of {item.name}</Tabs.Panel>}
|
|
3392
|
+
* </Tabs.Panels>
|
|
3393
|
+
* </Tabs>
|
|
3394
|
+
* ```
|
|
3395
|
+
*/
|
|
3396
|
+
Panels: import("@workday/canvas-kit-react/common").ElementComponentM<React.FC<{}>, import("./TabsPanels").TabsPanelsProps<any>, {
|
|
3287
3397
|
state: {
|
|
3288
3398
|
getId: (item: any) => string;
|
|
3289
3399
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -3293,7 +3403,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3293
3403
|
itemWidthCache: Record<string, number>;
|
|
3294
3404
|
containerWidth: number;
|
|
3295
3405
|
overflowTargetWidth: number;
|
|
3296
|
-
selectedIds:
|
|
3406
|
+
selectedIds: string[] | "all";
|
|
3297
3407
|
unselectedIds: string[];
|
|
3298
3408
|
cursorId: string;
|
|
3299
3409
|
columnCount: number;
|
|
@@ -3376,8 +3486,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3376
3486
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3377
3487
|
placement: import("@popperjs/core").Placement;
|
|
3378
3488
|
id: string;
|
|
3379
|
-
visibility:
|
|
3380
|
-
selectedIds:
|
|
3489
|
+
visibility: "hidden" | "visible";
|
|
3490
|
+
selectedIds: string[] | "all";
|
|
3381
3491
|
unselectedIds: string[];
|
|
3382
3492
|
cursorId: string;
|
|
3383
3493
|
columnCount: number;
|
|
@@ -3390,13 +3500,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3390
3500
|
};
|
|
3391
3501
|
UNSTABLE_defaultItemHeight: number;
|
|
3392
3502
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3393
|
-
orientation:
|
|
3503
|
+
orientation: "horizontal" | "vertical";
|
|
3394
3504
|
indexRef: React.MutableRefObject<number>;
|
|
3395
3505
|
nonInteractiveIds: string[];
|
|
3396
3506
|
isVirtualized: boolean;
|
|
3397
3507
|
items: import("../..").Item<any>[];
|
|
3398
3508
|
mode: "multiple" | "single";
|
|
3399
|
-
};
|
|
3509
|
+
}; /**
|
|
3510
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
3511
|
+
* subcomponents.
|
|
3512
|
+
*
|
|
3513
|
+
* ```tsx
|
|
3514
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
3515
|
+
* ```
|
|
3516
|
+
*/
|
|
3400
3517
|
events: {
|
|
3401
3518
|
updatePlacement(data: {
|
|
3402
3519
|
placement: import("@popperjs/core").Placement;
|
|
@@ -3440,7 +3557,21 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3440
3557
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3441
3558
|
getId: (item: any) => string;
|
|
3442
3559
|
}>;
|
|
3443
|
-
|
|
3560
|
+
/**
|
|
3561
|
+
* The overflow button of a `Tabs.List`. When a tab list overflows, this overflow button is
|
|
3562
|
+
* rendered. Overflow only works when the model is given an array of `items`.
|
|
3563
|
+
*
|
|
3564
|
+
* ```tsx
|
|
3565
|
+
* <Tabs items={items}>
|
|
3566
|
+
* <Tabs.List overflowButton={
|
|
3567
|
+
* <Tabs.OverflowButton>More</Tabs.OverflowButton>
|
|
3568
|
+
* }>
|
|
3569
|
+
* {dynamic tab items}
|
|
3570
|
+
* </Tabs.List>
|
|
3571
|
+
* </Tabs>
|
|
3572
|
+
* ```
|
|
3573
|
+
*/
|
|
3574
|
+
OverflowButton: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("./TabsOverflowButton").OverflowButtonProps, {
|
|
3444
3575
|
state: {
|
|
3445
3576
|
getId: (item: any) => string;
|
|
3446
3577
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -3450,7 +3581,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3450
3581
|
itemWidthCache: Record<string, number>;
|
|
3451
3582
|
containerWidth: number;
|
|
3452
3583
|
overflowTargetWidth: number;
|
|
3453
|
-
selectedIds:
|
|
3584
|
+
selectedIds: string[] | "all";
|
|
3454
3585
|
unselectedIds: string[];
|
|
3455
3586
|
cursorId: string;
|
|
3456
3587
|
columnCount: number;
|
|
@@ -3533,8 +3664,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3533
3664
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3534
3665
|
placement: import("@popperjs/core").Placement;
|
|
3535
3666
|
id: string;
|
|
3536
|
-
visibility:
|
|
3537
|
-
selectedIds:
|
|
3667
|
+
visibility: "hidden" | "visible";
|
|
3668
|
+
selectedIds: string[] | "all";
|
|
3538
3669
|
unselectedIds: string[];
|
|
3539
3670
|
cursorId: string;
|
|
3540
3671
|
columnCount: number;
|
|
@@ -3547,13 +3678,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3547
3678
|
};
|
|
3548
3679
|
UNSTABLE_defaultItemHeight: number;
|
|
3549
3680
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3550
|
-
orientation:
|
|
3681
|
+
orientation: "horizontal" | "vertical";
|
|
3551
3682
|
indexRef: React.MutableRefObject<number>;
|
|
3552
3683
|
nonInteractiveIds: string[];
|
|
3553
3684
|
isVirtualized: boolean;
|
|
3554
3685
|
items: import("../..").Item<any>[];
|
|
3555
3686
|
mode: "multiple" | "single";
|
|
3556
|
-
};
|
|
3687
|
+
}; /**
|
|
3688
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
3689
|
+
* subcomponents.
|
|
3690
|
+
*
|
|
3691
|
+
* ```tsx
|
|
3692
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
3693
|
+
* ```
|
|
3694
|
+
*/
|
|
3557
3695
|
events: {
|
|
3558
3696
|
updatePlacement(data: {
|
|
3559
3697
|
placement: import("@popperjs/core").Placement;
|
|
@@ -3597,7 +3735,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3597
3735
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3598
3736
|
getId: (item: any) => string;
|
|
3599
3737
|
}>;
|
|
3600
|
-
|
|
3738
|
+
/**
|
|
3739
|
+
* @deprecated Use `Tabs.Menu.Popper` instead
|
|
3740
|
+
*/
|
|
3741
|
+
MenuPopper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./TabsMenuPopper").MenuPopperProps, {
|
|
3601
3742
|
state: {
|
|
3602
3743
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3603
3744
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3605,8 +3746,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3605
3746
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3606
3747
|
placement: import("@popperjs/core").Placement;
|
|
3607
3748
|
id: string;
|
|
3608
|
-
visibility:
|
|
3609
|
-
selectedIds:
|
|
3749
|
+
visibility: "hidden" | "visible";
|
|
3750
|
+
selectedIds: string[] | "all";
|
|
3610
3751
|
unselectedIds: string[];
|
|
3611
3752
|
cursorId: string;
|
|
3612
3753
|
columnCount: number;
|
|
@@ -3619,13 +3760,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3619
3760
|
};
|
|
3620
3761
|
UNSTABLE_defaultItemHeight: number;
|
|
3621
3762
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3622
|
-
orientation:
|
|
3763
|
+
orientation: "horizontal" | "vertical";
|
|
3623
3764
|
indexRef: React.MutableRefObject<number>;
|
|
3624
3765
|
nonInteractiveIds: string[];
|
|
3625
3766
|
isVirtualized: boolean;
|
|
3626
3767
|
items: import("../..").Item<any>[];
|
|
3627
3768
|
mode: "multiple" | "single";
|
|
3628
|
-
};
|
|
3769
|
+
}; /**
|
|
3770
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
3771
|
+
* subcomponents.
|
|
3772
|
+
*
|
|
3773
|
+
* ```tsx
|
|
3774
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
3775
|
+
* ```
|
|
3776
|
+
*/
|
|
3629
3777
|
events: {
|
|
3630
3778
|
updatePlacement(data: {
|
|
3631
3779
|
placement: import("@popperjs/core").Placement;
|
|
@@ -3668,16 +3816,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3668
3816
|
/**
|
|
3669
3817
|
* The overflow menu of the Tabs component. If there isn't enough room to render all the tab
|
|
3670
3818
|
* items, the extra tabs that don't fit will be overflowed into this menu.
|
|
3671
|
-
*
|
|
3819
|
+
*
|
|
3820
|
+
* ```tsx
|
|
3672
3821
|
* <Tabs.Menu.Popper>
|
|
3673
3822
|
* <Tabs.Menu.Card>
|
|
3674
3823
|
* <Tabs.Menu.List>
|
|
3675
|
-
* {(item: MyTabItem) => <Tabs.Menu.Item data-id={item.id}>
|
|
3824
|
+
* {(item: MyTabItem) => <Tabs.Menu.Item data-id={item.id}>
|
|
3825
|
+
* {item.text}
|
|
3826
|
+
* </Tabs.Menu.Item>}
|
|
3676
3827
|
* </Tabs.Menu.List>
|
|
3677
3828
|
* </Tabs.Menu.Card>
|
|
3678
3829
|
* </Tabs.Menu.Popper>
|
|
3830
|
+
* ```
|
|
3679
3831
|
*/
|
|
3680
|
-
Menu: import("
|
|
3832
|
+
Menu: import("@workday/canvas-kit-react/common").ComponentM<import("../../menu/lib/Menu").MenuProps & Partial<{
|
|
3681
3833
|
mode: "multiple" | "single";
|
|
3682
3834
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3683
3835
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
@@ -3693,7 +3845,9 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3693
3845
|
getTextValue: (item: any) => string;
|
|
3694
3846
|
nonInteractiveIds: string[];
|
|
3695
3847
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
3696
|
-
defaultItemHeight: number;
|
|
3848
|
+
defaultItemHeight: number; /**
|
|
3849
|
+
* @deprecated Use `Tabs.Menu.Popper` instead
|
|
3850
|
+
*/
|
|
3697
3851
|
shouldVirtualize: boolean;
|
|
3698
3852
|
items: any[];
|
|
3699
3853
|
}> & {
|
|
@@ -3706,8 +3860,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3706
3860
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3707
3861
|
placement: import("@popperjs/core").Placement;
|
|
3708
3862
|
id: string;
|
|
3709
|
-
visibility:
|
|
3710
|
-
selectedIds:
|
|
3863
|
+
visibility: "hidden" | "visible";
|
|
3864
|
+
selectedIds: string[] | "all";
|
|
3711
3865
|
unselectedIds: string[];
|
|
3712
3866
|
cursorId: string;
|
|
3713
3867
|
columnCount: number;
|
|
@@ -3720,7 +3874,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3720
3874
|
};
|
|
3721
3875
|
UNSTABLE_defaultItemHeight: number;
|
|
3722
3876
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3723
|
-
orientation:
|
|
3877
|
+
orientation: "horizontal" | "vertical";
|
|
3724
3878
|
indexRef: React.MutableRefObject<number>;
|
|
3725
3879
|
nonInteractiveIds: string[];
|
|
3726
3880
|
isVirtualized: boolean;
|
|
@@ -3734,8 +3888,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3734
3888
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3735
3889
|
placement: import("@popperjs/core").Placement;
|
|
3736
3890
|
id: string;
|
|
3737
|
-
visibility:
|
|
3738
|
-
selectedIds:
|
|
3891
|
+
visibility: "hidden" | "visible";
|
|
3892
|
+
selectedIds: string[] | "all";
|
|
3739
3893
|
unselectedIds: string[];
|
|
3740
3894
|
cursorId: string;
|
|
3741
3895
|
columnCount: number;
|
|
@@ -3748,7 +3902,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3748
3902
|
};
|
|
3749
3903
|
UNSTABLE_defaultItemHeight: number;
|
|
3750
3904
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3751
|
-
orientation:
|
|
3905
|
+
orientation: "horizontal" | "vertical";
|
|
3752
3906
|
indexRef: React.MutableRefObject<number>;
|
|
3753
3907
|
nonInteractiveIds: string[];
|
|
3754
3908
|
isVirtualized: boolean;
|
|
@@ -3762,8 +3916,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3762
3916
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3763
3917
|
placement: import("@popperjs/core").Placement;
|
|
3764
3918
|
id: string;
|
|
3765
|
-
visibility:
|
|
3766
|
-
selectedIds:
|
|
3919
|
+
visibility: "hidden" | "visible";
|
|
3920
|
+
selectedIds: string[] | "all";
|
|
3767
3921
|
unselectedIds: string[];
|
|
3768
3922
|
cursorId: string;
|
|
3769
3923
|
columnCount: number;
|
|
@@ -3776,7 +3930,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3776
3930
|
};
|
|
3777
3931
|
UNSTABLE_defaultItemHeight: number;
|
|
3778
3932
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3779
|
-
orientation:
|
|
3933
|
+
orientation: "horizontal" | "vertical";
|
|
3780
3934
|
indexRef: React.MutableRefObject<number>;
|
|
3781
3935
|
nonInteractiveIds: string[];
|
|
3782
3936
|
isVirtualized: boolean;
|
|
@@ -3792,8 +3946,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3792
3946
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3793
3947
|
placement: import("@popperjs/core").Placement;
|
|
3794
3948
|
id: string;
|
|
3795
|
-
visibility:
|
|
3796
|
-
selectedIds:
|
|
3949
|
+
visibility: "hidden" | "visible";
|
|
3950
|
+
selectedIds: string[] | "all";
|
|
3797
3951
|
unselectedIds: string[];
|
|
3798
3952
|
cursorId: string;
|
|
3799
3953
|
columnCount: number;
|
|
@@ -3806,7 +3960,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3806
3960
|
};
|
|
3807
3961
|
UNSTABLE_defaultItemHeight: number;
|
|
3808
3962
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3809
|
-
orientation:
|
|
3963
|
+
orientation: "horizontal" | "vertical";
|
|
3810
3964
|
indexRef: React.MutableRefObject<number>;
|
|
3811
3965
|
nonInteractiveIds: string[];
|
|
3812
3966
|
isVirtualized: boolean;
|
|
@@ -3820,8 +3974,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3820
3974
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3821
3975
|
placement: import("@popperjs/core").Placement;
|
|
3822
3976
|
id: string;
|
|
3823
|
-
visibility:
|
|
3824
|
-
selectedIds:
|
|
3977
|
+
visibility: "hidden" | "visible";
|
|
3978
|
+
selectedIds: string[] | "all";
|
|
3825
3979
|
unselectedIds: string[];
|
|
3826
3980
|
cursorId: string;
|
|
3827
3981
|
columnCount: number;
|
|
@@ -3834,7 +3988,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3834
3988
|
};
|
|
3835
3989
|
UNSTABLE_defaultItemHeight: number;
|
|
3836
3990
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3837
|
-
orientation:
|
|
3991
|
+
orientation: "horizontal" | "vertical";
|
|
3838
3992
|
indexRef: React.MutableRefObject<number>;
|
|
3839
3993
|
nonInteractiveIds: string[];
|
|
3840
3994
|
isVirtualized: boolean;
|
|
@@ -3848,8 +4002,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3848
4002
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3849
4003
|
placement: import("@popperjs/core").Placement;
|
|
3850
4004
|
id: string;
|
|
3851
|
-
visibility:
|
|
3852
|
-
selectedIds:
|
|
4005
|
+
visibility: "hidden" | "visible";
|
|
4006
|
+
selectedIds: string[] | "all";
|
|
3853
4007
|
unselectedIds: string[];
|
|
3854
4008
|
cursorId: string;
|
|
3855
4009
|
columnCount: number;
|
|
@@ -3862,7 +4016,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3862
4016
|
};
|
|
3863
4017
|
UNSTABLE_defaultItemHeight: number;
|
|
3864
4018
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3865
|
-
orientation:
|
|
4019
|
+
orientation: "horizontal" | "vertical";
|
|
3866
4020
|
indexRef: React.MutableRefObject<number>;
|
|
3867
4021
|
nonInteractiveIds: string[];
|
|
3868
4022
|
isVirtualized: boolean;
|
|
@@ -3879,8 +4033,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3879
4033
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3880
4034
|
placement: import("@popperjs/core").Placement;
|
|
3881
4035
|
id: string;
|
|
3882
|
-
visibility:
|
|
3883
|
-
selectedIds:
|
|
4036
|
+
visibility: "hidden" | "visible";
|
|
4037
|
+
selectedIds: string[] | "all";
|
|
3884
4038
|
unselectedIds: string[];
|
|
3885
4039
|
cursorId: string;
|
|
3886
4040
|
columnCount: number;
|
|
@@ -3893,7 +4047,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3893
4047
|
};
|
|
3894
4048
|
UNSTABLE_defaultItemHeight: number;
|
|
3895
4049
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3896
|
-
orientation:
|
|
4050
|
+
orientation: "horizontal" | "vertical";
|
|
3897
4051
|
indexRef: React.MutableRefObject<number>;
|
|
3898
4052
|
nonInteractiveIds: string[];
|
|
3899
4053
|
isVirtualized: boolean;
|
|
@@ -3909,8 +4063,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3909
4063
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3910
4064
|
placement: import("@popperjs/core").Placement;
|
|
3911
4065
|
id: string;
|
|
3912
|
-
visibility:
|
|
3913
|
-
selectedIds:
|
|
4066
|
+
visibility: "hidden" | "visible";
|
|
4067
|
+
selectedIds: string[] | "all";
|
|
3914
4068
|
unselectedIds: string[];
|
|
3915
4069
|
cursorId: string;
|
|
3916
4070
|
columnCount: number;
|
|
@@ -3923,7 +4077,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3923
4077
|
};
|
|
3924
4078
|
UNSTABLE_defaultItemHeight: number;
|
|
3925
4079
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3926
|
-
orientation:
|
|
4080
|
+
orientation: "horizontal" | "vertical";
|
|
3927
4081
|
indexRef: React.MutableRefObject<number>;
|
|
3928
4082
|
nonInteractiveIds: string[];
|
|
3929
4083
|
isVirtualized: boolean;
|
|
@@ -3937,8 +4091,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3937
4091
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3938
4092
|
placement: import("@popperjs/core").Placement;
|
|
3939
4093
|
id: string;
|
|
3940
|
-
visibility:
|
|
3941
|
-
selectedIds:
|
|
4094
|
+
visibility: "hidden" | "visible";
|
|
4095
|
+
selectedIds: string[] | "all";
|
|
3942
4096
|
unselectedIds: string[];
|
|
3943
4097
|
cursorId: string;
|
|
3944
4098
|
columnCount: number;
|
|
@@ -3951,7 +4105,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3951
4105
|
};
|
|
3952
4106
|
UNSTABLE_defaultItemHeight: number;
|
|
3953
4107
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3954
|
-
orientation:
|
|
4108
|
+
orientation: "horizontal" | "vertical";
|
|
3955
4109
|
indexRef: React.MutableRefObject<number>;
|
|
3956
4110
|
nonInteractiveIds: string[];
|
|
3957
4111
|
isVirtualized: boolean;
|
|
@@ -3965,8 +4119,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3965
4119
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3966
4120
|
placement: import("@popperjs/core").Placement;
|
|
3967
4121
|
id: string;
|
|
3968
|
-
visibility:
|
|
3969
|
-
selectedIds:
|
|
4122
|
+
visibility: "hidden" | "visible";
|
|
4123
|
+
selectedIds: string[] | "all";
|
|
3970
4124
|
unselectedIds: string[];
|
|
3971
4125
|
cursorId: string;
|
|
3972
4126
|
columnCount: number;
|
|
@@ -3979,7 +4133,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3979
4133
|
};
|
|
3980
4134
|
UNSTABLE_defaultItemHeight: number;
|
|
3981
4135
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3982
|
-
orientation:
|
|
4136
|
+
orientation: "horizontal" | "vertical";
|
|
3983
4137
|
indexRef: React.MutableRefObject<number>;
|
|
3984
4138
|
nonInteractiveIds: string[];
|
|
3985
4139
|
isVirtualized: boolean;
|
|
@@ -3993,8 +4147,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3993
4147
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3994
4148
|
placement: import("@popperjs/core").Placement;
|
|
3995
4149
|
id: string;
|
|
3996
|
-
visibility:
|
|
3997
|
-
selectedIds:
|
|
4150
|
+
visibility: "hidden" | "visible";
|
|
4151
|
+
selectedIds: string[] | "all";
|
|
3998
4152
|
unselectedIds: string[];
|
|
3999
4153
|
cursorId: string;
|
|
4000
4154
|
columnCount: number;
|
|
@@ -4007,7 +4161,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4007
4161
|
};
|
|
4008
4162
|
UNSTABLE_defaultItemHeight: number;
|
|
4009
4163
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4010
|
-
orientation:
|
|
4164
|
+
orientation: "horizontal" | "vertical";
|
|
4011
4165
|
indexRef: React.MutableRefObject<number>;
|
|
4012
4166
|
nonInteractiveIds: string[];
|
|
4013
4167
|
isVirtualized: boolean;
|
|
@@ -4021,8 +4175,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4021
4175
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4022
4176
|
placement: import("@popperjs/core").Placement;
|
|
4023
4177
|
id: string;
|
|
4024
|
-
visibility:
|
|
4025
|
-
selectedIds:
|
|
4178
|
+
visibility: "hidden" | "visible";
|
|
4179
|
+
selectedIds: string[] | "all";
|
|
4026
4180
|
unselectedIds: string[];
|
|
4027
4181
|
cursorId: string;
|
|
4028
4182
|
columnCount: number;
|
|
@@ -4035,7 +4189,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4035
4189
|
};
|
|
4036
4190
|
UNSTABLE_defaultItemHeight: number;
|
|
4037
4191
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4038
|
-
orientation:
|
|
4192
|
+
orientation: "horizontal" | "vertical";
|
|
4039
4193
|
indexRef: React.MutableRefObject<number>;
|
|
4040
4194
|
nonInteractiveIds: string[];
|
|
4041
4195
|
isVirtualized: boolean;
|
|
@@ -4049,8 +4203,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4049
4203
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4050
4204
|
placement: import("@popperjs/core").Placement;
|
|
4051
4205
|
id: string;
|
|
4052
|
-
visibility:
|
|
4053
|
-
selectedIds:
|
|
4206
|
+
visibility: "hidden" | "visible";
|
|
4207
|
+
selectedIds: string[] | "all";
|
|
4054
4208
|
unselectedIds: string[];
|
|
4055
4209
|
cursorId: string;
|
|
4056
4210
|
columnCount: number;
|
|
@@ -4063,7 +4217,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4063
4217
|
};
|
|
4064
4218
|
UNSTABLE_defaultItemHeight: number;
|
|
4065
4219
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4066
|
-
orientation:
|
|
4220
|
+
orientation: "horizontal" | "vertical";
|
|
4067
4221
|
indexRef: React.MutableRefObject<number>;
|
|
4068
4222
|
nonInteractiveIds: string[];
|
|
4069
4223
|
isVirtualized: boolean;
|
|
@@ -4077,8 +4231,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4077
4231
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4078
4232
|
placement: import("@popperjs/core").Placement;
|
|
4079
4233
|
id: string;
|
|
4080
|
-
visibility:
|
|
4081
|
-
selectedIds:
|
|
4234
|
+
visibility: "hidden" | "visible";
|
|
4235
|
+
selectedIds: string[] | "all";
|
|
4082
4236
|
unselectedIds: string[];
|
|
4083
4237
|
cursorId: string;
|
|
4084
4238
|
columnCount: number;
|
|
@@ -4091,7 +4245,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4091
4245
|
};
|
|
4092
4246
|
UNSTABLE_defaultItemHeight: number;
|
|
4093
4247
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4094
|
-
orientation:
|
|
4248
|
+
orientation: "horizontal" | "vertical";
|
|
4095
4249
|
indexRef: React.MutableRefObject<number>;
|
|
4096
4250
|
nonInteractiveIds: string[];
|
|
4097
4251
|
isVirtualized: boolean;
|
|
@@ -4105,8 +4259,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4105
4259
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4106
4260
|
placement: import("@popperjs/core").Placement;
|
|
4107
4261
|
id: string;
|
|
4108
|
-
visibility:
|
|
4109
|
-
selectedIds:
|
|
4262
|
+
visibility: "hidden" | "visible";
|
|
4263
|
+
selectedIds: string[] | "all";
|
|
4110
4264
|
unselectedIds: string[];
|
|
4111
4265
|
cursorId: string;
|
|
4112
4266
|
columnCount: number;
|
|
@@ -4119,7 +4273,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4119
4273
|
};
|
|
4120
4274
|
UNSTABLE_defaultItemHeight: number;
|
|
4121
4275
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4122
|
-
orientation:
|
|
4276
|
+
orientation: "horizontal" | "vertical";
|
|
4123
4277
|
indexRef: React.MutableRefObject<number>;
|
|
4124
4278
|
nonInteractiveIds: string[];
|
|
4125
4279
|
isVirtualized: boolean;
|
|
@@ -4133,8 +4287,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4133
4287
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4134
4288
|
placement: import("@popperjs/core").Placement;
|
|
4135
4289
|
id: string;
|
|
4136
|
-
visibility:
|
|
4137
|
-
selectedIds:
|
|
4290
|
+
visibility: "hidden" | "visible";
|
|
4291
|
+
selectedIds: string[] | "all";
|
|
4138
4292
|
unselectedIds: string[];
|
|
4139
4293
|
cursorId: string;
|
|
4140
4294
|
columnCount: number;
|
|
@@ -4147,7 +4301,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4147
4301
|
};
|
|
4148
4302
|
UNSTABLE_defaultItemHeight: number;
|
|
4149
4303
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4150
|
-
orientation:
|
|
4304
|
+
orientation: "horizontal" | "vertical";
|
|
4151
4305
|
indexRef: React.MutableRefObject<number>;
|
|
4152
4306
|
nonInteractiveIds: string[];
|
|
4153
4307
|
isVirtualized: boolean;
|
|
@@ -4161,8 +4315,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4161
4315
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4162
4316
|
placement: import("@popperjs/core").Placement;
|
|
4163
4317
|
id: string;
|
|
4164
|
-
visibility:
|
|
4165
|
-
selectedIds:
|
|
4318
|
+
visibility: "hidden" | "visible";
|
|
4319
|
+
selectedIds: string[] | "all";
|
|
4166
4320
|
unselectedIds: string[];
|
|
4167
4321
|
cursorId: string;
|
|
4168
4322
|
columnCount: number;
|
|
@@ -4175,7 +4329,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4175
4329
|
};
|
|
4176
4330
|
UNSTABLE_defaultItemHeight: number;
|
|
4177
4331
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4178
|
-
orientation:
|
|
4332
|
+
orientation: "horizontal" | "vertical";
|
|
4179
4333
|
indexRef: React.MutableRefObject<number>;
|
|
4180
4334
|
nonInteractiveIds: string[];
|
|
4181
4335
|
isVirtualized: boolean;
|
|
@@ -4189,8 +4343,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4189
4343
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4190
4344
|
placement: import("@popperjs/core").Placement;
|
|
4191
4345
|
id: string;
|
|
4192
|
-
visibility:
|
|
4193
|
-
selectedIds:
|
|
4346
|
+
visibility: "hidden" | "visible";
|
|
4347
|
+
selectedIds: string[] | "all";
|
|
4194
4348
|
unselectedIds: string[];
|
|
4195
4349
|
cursorId: string;
|
|
4196
4350
|
columnCount: number;
|
|
@@ -4203,7 +4357,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4203
4357
|
};
|
|
4204
4358
|
UNSTABLE_defaultItemHeight: number;
|
|
4205
4359
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4206
|
-
orientation:
|
|
4360
|
+
orientation: "horizontal" | "vertical";
|
|
4207
4361
|
indexRef: React.MutableRefObject<number>;
|
|
4208
4362
|
nonInteractiveIds: string[];
|
|
4209
4363
|
isVirtualized: boolean;
|
|
@@ -4219,8 +4373,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4219
4373
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4220
4374
|
placement: import("@popperjs/core").Placement;
|
|
4221
4375
|
id: string;
|
|
4222
|
-
visibility:
|
|
4223
|
-
selectedIds:
|
|
4376
|
+
visibility: "hidden" | "visible";
|
|
4377
|
+
selectedIds: string[] | "all";
|
|
4224
4378
|
unselectedIds: string[];
|
|
4225
4379
|
cursorId: string;
|
|
4226
4380
|
columnCount: number;
|
|
@@ -4233,7 +4387,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4233
4387
|
};
|
|
4234
4388
|
UNSTABLE_defaultItemHeight: number;
|
|
4235
4389
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4236
|
-
orientation:
|
|
4390
|
+
orientation: "horizontal" | "vertical";
|
|
4237
4391
|
indexRef: React.MutableRefObject<number>;
|
|
4238
4392
|
nonInteractiveIds: string[];
|
|
4239
4393
|
isVirtualized: boolean;
|
|
@@ -4249,8 +4403,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4249
4403
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4250
4404
|
placement: import("@popperjs/core").Placement;
|
|
4251
4405
|
id: string;
|
|
4252
|
-
visibility:
|
|
4253
|
-
selectedIds:
|
|
4406
|
+
visibility: "hidden" | "visible";
|
|
4407
|
+
selectedIds: string[] | "all";
|
|
4254
4408
|
unselectedIds: string[];
|
|
4255
4409
|
cursorId: string;
|
|
4256
4410
|
columnCount: number;
|
|
@@ -4263,7 +4417,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4263
4417
|
};
|
|
4264
4418
|
UNSTABLE_defaultItemHeight: number;
|
|
4265
4419
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4266
|
-
orientation:
|
|
4420
|
+
orientation: "horizontal" | "vertical";
|
|
4267
4421
|
indexRef: React.MutableRefObject<number>;
|
|
4268
4422
|
nonInteractiveIds: string[];
|
|
4269
4423
|
isVirtualized: boolean;
|
|
@@ -4280,8 +4434,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4280
4434
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4281
4435
|
placement: import("@popperjs/core").Placement;
|
|
4282
4436
|
id: string;
|
|
4283
|
-
visibility:
|
|
4284
|
-
selectedIds:
|
|
4437
|
+
visibility: "hidden" | "visible";
|
|
4438
|
+
selectedIds: string[] | "all";
|
|
4285
4439
|
unselectedIds: string[];
|
|
4286
4440
|
cursorId: string;
|
|
4287
4441
|
columnCount: number;
|
|
@@ -4294,7 +4448,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4294
4448
|
};
|
|
4295
4449
|
UNSTABLE_defaultItemHeight: number;
|
|
4296
4450
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4297
|
-
orientation:
|
|
4451
|
+
orientation: "horizontal" | "vertical";
|
|
4298
4452
|
indexRef: React.MutableRefObject<number>;
|
|
4299
4453
|
nonInteractiveIds: string[];
|
|
4300
4454
|
isVirtualized: boolean;
|
|
@@ -4308,8 +4462,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4308
4462
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4309
4463
|
placement: import("@popperjs/core").Placement;
|
|
4310
4464
|
id: string;
|
|
4311
|
-
visibility:
|
|
4312
|
-
selectedIds:
|
|
4465
|
+
visibility: "hidden" | "visible";
|
|
4466
|
+
selectedIds: string[] | "all";
|
|
4313
4467
|
unselectedIds: string[];
|
|
4314
4468
|
cursorId: string;
|
|
4315
4469
|
columnCount: number;
|
|
@@ -4322,7 +4476,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4322
4476
|
};
|
|
4323
4477
|
UNSTABLE_defaultItemHeight: number;
|
|
4324
4478
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4325
|
-
orientation:
|
|
4479
|
+
orientation: "horizontal" | "vertical";
|
|
4326
4480
|
indexRef: React.MutableRefObject<number>;
|
|
4327
4481
|
nonInteractiveIds: string[];
|
|
4328
4482
|
isVirtualized: boolean;
|
|
@@ -4336,8 +4490,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4336
4490
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4337
4491
|
placement: import("@popperjs/core").Placement;
|
|
4338
4492
|
id: string;
|
|
4339
|
-
visibility:
|
|
4340
|
-
selectedIds:
|
|
4493
|
+
visibility: "hidden" | "visible";
|
|
4494
|
+
selectedIds: string[] | "all";
|
|
4341
4495
|
unselectedIds: string[];
|
|
4342
4496
|
cursorId: string;
|
|
4343
4497
|
columnCount: number;
|
|
@@ -4350,7 +4504,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4350
4504
|
};
|
|
4351
4505
|
UNSTABLE_defaultItemHeight: number;
|
|
4352
4506
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4353
|
-
orientation:
|
|
4507
|
+
orientation: "horizontal" | "vertical";
|
|
4354
4508
|
indexRef: React.MutableRefObject<number>;
|
|
4355
4509
|
nonInteractiveIds: string[];
|
|
4356
4510
|
isVirtualized: boolean;
|
|
@@ -4366,8 +4520,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4366
4520
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4367
4521
|
placement: import("@popperjs/core").Placement;
|
|
4368
4522
|
id: string;
|
|
4369
|
-
visibility:
|
|
4370
|
-
selectedIds:
|
|
4523
|
+
visibility: "hidden" | "visible";
|
|
4524
|
+
selectedIds: string[] | "all";
|
|
4371
4525
|
unselectedIds: string[];
|
|
4372
4526
|
cursorId: string;
|
|
4373
4527
|
columnCount: number;
|
|
@@ -4380,7 +4534,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4380
4534
|
};
|
|
4381
4535
|
UNSTABLE_defaultItemHeight: number;
|
|
4382
4536
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4383
|
-
orientation:
|
|
4537
|
+
orientation: "horizontal" | "vertical";
|
|
4384
4538
|
indexRef: React.MutableRefObject<number>;
|
|
4385
4539
|
nonInteractiveIds: string[];
|
|
4386
4540
|
isVirtualized: boolean;
|
|
@@ -4394,8 +4548,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4394
4548
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4395
4549
|
placement: import("@popperjs/core").Placement;
|
|
4396
4550
|
id: string;
|
|
4397
|
-
visibility:
|
|
4398
|
-
selectedIds:
|
|
4551
|
+
visibility: "hidden" | "visible";
|
|
4552
|
+
selectedIds: string[] | "all";
|
|
4399
4553
|
unselectedIds: string[];
|
|
4400
4554
|
cursorId: string;
|
|
4401
4555
|
columnCount: number;
|
|
@@ -4408,7 +4562,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4408
4562
|
};
|
|
4409
4563
|
UNSTABLE_defaultItemHeight: number;
|
|
4410
4564
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4411
|
-
orientation:
|
|
4565
|
+
orientation: "horizontal" | "vertical";
|
|
4412
4566
|
indexRef: React.MutableRefObject<number>;
|
|
4413
4567
|
nonInteractiveIds: string[];
|
|
4414
4568
|
isVirtualized: boolean;
|
|
@@ -4422,8 +4576,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4422
4576
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4423
4577
|
placement: import("@popperjs/core").Placement;
|
|
4424
4578
|
id: string;
|
|
4425
|
-
visibility:
|
|
4426
|
-
selectedIds:
|
|
4579
|
+
visibility: "hidden" | "visible";
|
|
4580
|
+
selectedIds: string[] | "all";
|
|
4427
4581
|
unselectedIds: string[];
|
|
4428
4582
|
cursorId: string;
|
|
4429
4583
|
columnCount: number;
|
|
@@ -4436,7 +4590,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4436
4590
|
};
|
|
4437
4591
|
UNSTABLE_defaultItemHeight: number;
|
|
4438
4592
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4439
|
-
orientation:
|
|
4593
|
+
orientation: "horizontal" | "vertical";
|
|
4440
4594
|
indexRef: React.MutableRefObject<number>;
|
|
4441
4595
|
nonInteractiveIds: string[];
|
|
4442
4596
|
isVirtualized: boolean;
|
|
@@ -4453,8 +4607,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4453
4607
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4454
4608
|
placement: import("@popperjs/core").Placement;
|
|
4455
4609
|
id: string;
|
|
4456
|
-
visibility:
|
|
4457
|
-
selectedIds:
|
|
4610
|
+
visibility: "hidden" | "visible";
|
|
4611
|
+
selectedIds: string[] | "all";
|
|
4458
4612
|
unselectedIds: string[];
|
|
4459
4613
|
cursorId: string;
|
|
4460
4614
|
columnCount: number;
|
|
@@ -4467,7 +4621,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4467
4621
|
};
|
|
4468
4622
|
UNSTABLE_defaultItemHeight: number;
|
|
4469
4623
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4470
|
-
orientation:
|
|
4624
|
+
orientation: "horizontal" | "vertical";
|
|
4471
4625
|
indexRef: React.MutableRefObject<number>;
|
|
4472
4626
|
nonInteractiveIds: string[];
|
|
4473
4627
|
isVirtualized: boolean;
|
|
@@ -4483,8 +4637,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4483
4637
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4484
4638
|
placement: import("@popperjs/core").Placement;
|
|
4485
4639
|
id: string;
|
|
4486
|
-
visibility:
|
|
4487
|
-
selectedIds:
|
|
4640
|
+
visibility: "hidden" | "visible";
|
|
4641
|
+
selectedIds: string[] | "all";
|
|
4488
4642
|
unselectedIds: string[];
|
|
4489
4643
|
cursorId: string;
|
|
4490
4644
|
columnCount: number;
|
|
@@ -4497,7 +4651,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4497
4651
|
};
|
|
4498
4652
|
UNSTABLE_defaultItemHeight: number;
|
|
4499
4653
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4500
|
-
orientation:
|
|
4654
|
+
orientation: "horizontal" | "vertical";
|
|
4501
4655
|
indexRef: React.MutableRefObject<number>;
|
|
4502
4656
|
nonInteractiveIds: string[];
|
|
4503
4657
|
isVirtualized: boolean;
|
|
@@ -4511,8 +4665,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4511
4665
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4512
4666
|
placement: import("@popperjs/core").Placement;
|
|
4513
4667
|
id: string;
|
|
4514
|
-
visibility:
|
|
4515
|
-
selectedIds:
|
|
4668
|
+
visibility: "hidden" | "visible";
|
|
4669
|
+
selectedIds: string[] | "all";
|
|
4516
4670
|
unselectedIds: string[];
|
|
4517
4671
|
cursorId: string;
|
|
4518
4672
|
columnCount: number;
|
|
@@ -4525,7 +4679,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4525
4679
|
};
|
|
4526
4680
|
UNSTABLE_defaultItemHeight: number;
|
|
4527
4681
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4528
|
-
orientation:
|
|
4682
|
+
orientation: "horizontal" | "vertical";
|
|
4529
4683
|
indexRef: React.MutableRefObject<number>;
|
|
4530
4684
|
nonInteractiveIds: string[];
|
|
4531
4685
|
isVirtualized: boolean;
|
|
@@ -4539,8 +4693,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4539
4693
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4540
4694
|
placement: import("@popperjs/core").Placement;
|
|
4541
4695
|
id: string;
|
|
4542
|
-
visibility:
|
|
4543
|
-
selectedIds:
|
|
4696
|
+
visibility: "hidden" | "visible";
|
|
4697
|
+
selectedIds: string[] | "all";
|
|
4544
4698
|
unselectedIds: string[];
|
|
4545
4699
|
cursorId: string;
|
|
4546
4700
|
columnCount: number;
|
|
@@ -4553,7 +4707,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4553
4707
|
};
|
|
4554
4708
|
UNSTABLE_defaultItemHeight: number;
|
|
4555
4709
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4556
|
-
orientation:
|
|
4710
|
+
orientation: "horizontal" | "vertical";
|
|
4557
4711
|
indexRef: React.MutableRefObject<number>;
|
|
4558
4712
|
nonInteractiveIds: string[];
|
|
4559
4713
|
isVirtualized: boolean;
|
|
@@ -4567,8 +4721,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4567
4721
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4568
4722
|
placement: import("@popperjs/core").Placement;
|
|
4569
4723
|
id: string;
|
|
4570
|
-
visibility:
|
|
4571
|
-
selectedIds:
|
|
4724
|
+
visibility: "hidden" | "visible";
|
|
4725
|
+
selectedIds: string[] | "all";
|
|
4572
4726
|
unselectedIds: string[];
|
|
4573
4727
|
cursorId: string;
|
|
4574
4728
|
columnCount: number;
|
|
@@ -4581,7 +4735,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4581
4735
|
};
|
|
4582
4736
|
UNSTABLE_defaultItemHeight: number;
|
|
4583
4737
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4584
|
-
orientation:
|
|
4738
|
+
orientation: "horizontal" | "vertical";
|
|
4585
4739
|
indexRef: React.MutableRefObject<number>;
|
|
4586
4740
|
nonInteractiveIds: string[];
|
|
4587
4741
|
isVirtualized: boolean;
|
|
@@ -4595,8 +4749,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4595
4749
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4596
4750
|
placement: import("@popperjs/core").Placement;
|
|
4597
4751
|
id: string;
|
|
4598
|
-
visibility:
|
|
4599
|
-
selectedIds:
|
|
4752
|
+
visibility: "hidden" | "visible";
|
|
4753
|
+
selectedIds: string[] | "all";
|
|
4600
4754
|
unselectedIds: string[];
|
|
4601
4755
|
cursorId: string;
|
|
4602
4756
|
columnCount: number;
|
|
@@ -4609,7 +4763,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4609
4763
|
};
|
|
4610
4764
|
UNSTABLE_defaultItemHeight: number;
|
|
4611
4765
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4612
|
-
orientation:
|
|
4766
|
+
orientation: "horizontal" | "vertical";
|
|
4613
4767
|
indexRef: React.MutableRefObject<number>;
|
|
4614
4768
|
nonInteractiveIds: string[];
|
|
4615
4769
|
isVirtualized: boolean;
|
|
@@ -4623,8 +4777,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4623
4777
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4624
4778
|
placement: import("@popperjs/core").Placement;
|
|
4625
4779
|
id: string;
|
|
4626
|
-
visibility:
|
|
4627
|
-
selectedIds:
|
|
4780
|
+
visibility: "hidden" | "visible";
|
|
4781
|
+
selectedIds: string[] | "all";
|
|
4628
4782
|
unselectedIds: string[];
|
|
4629
4783
|
cursorId: string;
|
|
4630
4784
|
columnCount: number;
|
|
@@ -4637,7 +4791,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4637
4791
|
};
|
|
4638
4792
|
UNSTABLE_defaultItemHeight: number;
|
|
4639
4793
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4640
|
-
orientation:
|
|
4794
|
+
orientation: "horizontal" | "vertical";
|
|
4641
4795
|
indexRef: React.MutableRefObject<number>;
|
|
4642
4796
|
nonInteractiveIds: string[];
|
|
4643
4797
|
isVirtualized: boolean;
|
|
@@ -4651,8 +4805,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4651
4805
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4652
4806
|
placement: import("@popperjs/core").Placement;
|
|
4653
4807
|
id: string;
|
|
4654
|
-
visibility:
|
|
4655
|
-
selectedIds:
|
|
4808
|
+
visibility: "hidden" | "visible";
|
|
4809
|
+
selectedIds: string[] | "all";
|
|
4656
4810
|
unselectedIds: string[];
|
|
4657
4811
|
cursorId: string;
|
|
4658
4812
|
columnCount: number;
|
|
@@ -4665,7 +4819,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4665
4819
|
};
|
|
4666
4820
|
UNSTABLE_defaultItemHeight: number;
|
|
4667
4821
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4668
|
-
orientation:
|
|
4822
|
+
orientation: "horizontal" | "vertical";
|
|
4669
4823
|
indexRef: React.MutableRefObject<number>;
|
|
4670
4824
|
nonInteractiveIds: string[];
|
|
4671
4825
|
isVirtualized: boolean;
|
|
@@ -4679,8 +4833,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4679
4833
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4680
4834
|
placement: import("@popperjs/core").Placement;
|
|
4681
4835
|
id: string;
|
|
4682
|
-
visibility:
|
|
4683
|
-
selectedIds:
|
|
4836
|
+
visibility: "hidden" | "visible";
|
|
4837
|
+
selectedIds: string[] | "all";
|
|
4684
4838
|
unselectedIds: string[];
|
|
4685
4839
|
cursorId: string;
|
|
4686
4840
|
columnCount: number;
|
|
@@ -4693,7 +4847,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4693
4847
|
};
|
|
4694
4848
|
UNSTABLE_defaultItemHeight: number;
|
|
4695
4849
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4696
|
-
orientation:
|
|
4850
|
+
orientation: "horizontal" | "vertical";
|
|
4697
4851
|
indexRef: React.MutableRefObject<number>;
|
|
4698
4852
|
nonInteractiveIds: string[];
|
|
4699
4853
|
isVirtualized: boolean;
|
|
@@ -4707,8 +4861,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4707
4861
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4708
4862
|
placement: import("@popperjs/core").Placement;
|
|
4709
4863
|
id: string;
|
|
4710
|
-
visibility:
|
|
4711
|
-
selectedIds:
|
|
4864
|
+
visibility: "hidden" | "visible";
|
|
4865
|
+
selectedIds: string[] | "all";
|
|
4712
4866
|
unselectedIds: string[];
|
|
4713
4867
|
cursorId: string;
|
|
4714
4868
|
columnCount: number;
|
|
@@ -4721,7 +4875,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4721
4875
|
};
|
|
4722
4876
|
UNSTABLE_defaultItemHeight: number;
|
|
4723
4877
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4724
|
-
orientation:
|
|
4878
|
+
orientation: "horizontal" | "vertical";
|
|
4725
4879
|
indexRef: React.MutableRefObject<number>;
|
|
4726
4880
|
nonInteractiveIds: string[];
|
|
4727
4881
|
isVirtualized: boolean;
|
|
@@ -4735,8 +4889,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4735
4889
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4736
4890
|
placement: import("@popperjs/core").Placement;
|
|
4737
4891
|
id: string;
|
|
4738
|
-
visibility:
|
|
4739
|
-
selectedIds:
|
|
4892
|
+
visibility: "hidden" | "visible";
|
|
4893
|
+
selectedIds: string[] | "all";
|
|
4740
4894
|
unselectedIds: string[];
|
|
4741
4895
|
cursorId: string;
|
|
4742
4896
|
columnCount: number;
|
|
@@ -4749,7 +4903,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4749
4903
|
};
|
|
4750
4904
|
UNSTABLE_defaultItemHeight: number;
|
|
4751
4905
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4752
|
-
orientation:
|
|
4906
|
+
orientation: "horizontal" | "vertical";
|
|
4753
4907
|
indexRef: React.MutableRefObject<number>;
|
|
4754
4908
|
nonInteractiveIds: string[];
|
|
4755
4909
|
isVirtualized: boolean;
|
|
@@ -4763,8 +4917,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4763
4917
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4764
4918
|
placement: import("@popperjs/core").Placement;
|
|
4765
4919
|
id: string;
|
|
4766
|
-
visibility:
|
|
4767
|
-
selectedIds:
|
|
4920
|
+
visibility: "hidden" | "visible";
|
|
4921
|
+
selectedIds: string[] | "all";
|
|
4768
4922
|
unselectedIds: string[];
|
|
4769
4923
|
cursorId: string;
|
|
4770
4924
|
columnCount: number;
|
|
@@ -4777,7 +4931,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4777
4931
|
};
|
|
4778
4932
|
UNSTABLE_defaultItemHeight: number;
|
|
4779
4933
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4780
|
-
orientation:
|
|
4934
|
+
orientation: "horizontal" | "vertical";
|
|
4781
4935
|
indexRef: React.MutableRefObject<number>;
|
|
4782
4936
|
nonInteractiveIds: string[];
|
|
4783
4937
|
isVirtualized: boolean;
|
|
@@ -4793,8 +4947,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4793
4947
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4794
4948
|
placement: import("@popperjs/core").Placement;
|
|
4795
4949
|
id: string;
|
|
4796
|
-
visibility:
|
|
4797
|
-
selectedIds:
|
|
4950
|
+
visibility: "hidden" | "visible";
|
|
4951
|
+
selectedIds: string[] | "all";
|
|
4798
4952
|
unselectedIds: string[];
|
|
4799
4953
|
cursorId: string;
|
|
4800
4954
|
columnCount: number;
|
|
@@ -4807,7 +4961,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4807
4961
|
};
|
|
4808
4962
|
UNSTABLE_defaultItemHeight: number;
|
|
4809
4963
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4810
|
-
orientation:
|
|
4964
|
+
orientation: "horizontal" | "vertical";
|
|
4811
4965
|
indexRef: React.MutableRefObject<number>;
|
|
4812
4966
|
nonInteractiveIds: string[];
|
|
4813
4967
|
isVirtualized: boolean;
|
|
@@ -4823,8 +4977,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4823
4977
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4824
4978
|
placement: import("@popperjs/core").Placement;
|
|
4825
4979
|
id: string;
|
|
4826
|
-
visibility:
|
|
4827
|
-
selectedIds:
|
|
4980
|
+
visibility: "hidden" | "visible";
|
|
4981
|
+
selectedIds: string[] | "all";
|
|
4828
4982
|
unselectedIds: string[];
|
|
4829
4983
|
cursorId: string;
|
|
4830
4984
|
columnCount: number;
|
|
@@ -4837,7 +4991,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4837
4991
|
};
|
|
4838
4992
|
UNSTABLE_defaultItemHeight: number;
|
|
4839
4993
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4840
|
-
orientation:
|
|
4994
|
+
orientation: "horizontal" | "vertical";
|
|
4841
4995
|
indexRef: React.MutableRefObject<number>;
|
|
4842
4996
|
nonInteractiveIds: string[];
|
|
4843
4997
|
isVirtualized: boolean;
|
|
@@ -4852,8 +5006,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4852
5006
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4853
5007
|
placement: import("@popperjs/core").Placement;
|
|
4854
5008
|
id: string;
|
|
4855
|
-
visibility:
|
|
4856
|
-
selectedIds:
|
|
5009
|
+
visibility: "hidden" | "visible";
|
|
5010
|
+
selectedIds: string[] | "all";
|
|
4857
5011
|
unselectedIds: string[];
|
|
4858
5012
|
cursorId: string;
|
|
4859
5013
|
columnCount: number;
|
|
@@ -4866,13 +5020,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4866
5020
|
};
|
|
4867
5021
|
UNSTABLE_defaultItemHeight: number;
|
|
4868
5022
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4869
|
-
orientation:
|
|
5023
|
+
orientation: "horizontal" | "vertical";
|
|
4870
5024
|
indexRef: React.MutableRefObject<number>;
|
|
4871
5025
|
nonInteractiveIds: string[];
|
|
4872
5026
|
isVirtualized: boolean;
|
|
4873
5027
|
items: import("../..").Item<any>[];
|
|
4874
5028
|
mode: "multiple" | "single";
|
|
4875
|
-
};
|
|
5029
|
+
}; /**
|
|
5030
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
5031
|
+
* subcomponents.
|
|
5032
|
+
*
|
|
5033
|
+
* ```tsx
|
|
5034
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
5035
|
+
* ```
|
|
5036
|
+
*/
|
|
4876
5037
|
events: {
|
|
4877
5038
|
updatePlacement(data: {
|
|
4878
5039
|
placement: import("@popperjs/core").Placement;
|
|
@@ -4912,7 +5073,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4912
5073
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
4913
5074
|
getId: (item: any) => string;
|
|
4914
5075
|
}> & {
|
|
4915
|
-
|
|
5076
|
+
Target: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
4916
5077
|
state: {
|
|
4917
5078
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4918
5079
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -4920,8 +5081,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4920
5081
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4921
5082
|
placement: import("@popperjs/core").Placement;
|
|
4922
5083
|
id: string;
|
|
4923
|
-
visibility:
|
|
4924
|
-
selectedIds:
|
|
5084
|
+
visibility: "hidden" | "visible";
|
|
5085
|
+
selectedIds: string[] | "all";
|
|
4925
5086
|
unselectedIds: string[];
|
|
4926
5087
|
cursorId: string;
|
|
4927
5088
|
columnCount: number;
|
|
@@ -4934,13 +5095,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4934
5095
|
};
|
|
4935
5096
|
UNSTABLE_defaultItemHeight: number;
|
|
4936
5097
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4937
|
-
orientation:
|
|
5098
|
+
orientation: "horizontal" | "vertical";
|
|
4938
5099
|
indexRef: React.MutableRefObject<number>;
|
|
4939
5100
|
nonInteractiveIds: string[];
|
|
4940
5101
|
isVirtualized: boolean;
|
|
4941
5102
|
items: import("../..").Item<any>[];
|
|
4942
5103
|
mode: "multiple" | "single";
|
|
4943
|
-
};
|
|
5104
|
+
}; /**
|
|
5105
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
5106
|
+
* subcomponents.
|
|
5107
|
+
*
|
|
5108
|
+
* ```tsx
|
|
5109
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
5110
|
+
* ```
|
|
5111
|
+
*/
|
|
4944
5112
|
events: {
|
|
4945
5113
|
updatePlacement(data: {
|
|
4946
5114
|
placement: import("@popperjs/core").Placement;
|
|
@@ -4980,7 +5148,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4980
5148
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
4981
5149
|
getId: (item: any) => string;
|
|
4982
5150
|
}>;
|
|
4983
|
-
|
|
5151
|
+
Card: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuCard").MenuCardProps, {
|
|
4984
5152
|
state: {
|
|
4985
5153
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4986
5154
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -4988,8 +5156,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4988
5156
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4989
5157
|
placement: import("@popperjs/core").Placement;
|
|
4990
5158
|
id: string;
|
|
4991
|
-
visibility:
|
|
4992
|
-
selectedIds:
|
|
5159
|
+
visibility: "hidden" | "visible";
|
|
5160
|
+
selectedIds: string[] | "all";
|
|
4993
5161
|
unselectedIds: string[];
|
|
4994
5162
|
cursorId: string;
|
|
4995
5163
|
columnCount: number;
|
|
@@ -5002,13 +5170,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5002
5170
|
};
|
|
5003
5171
|
UNSTABLE_defaultItemHeight: number;
|
|
5004
5172
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5005
|
-
orientation:
|
|
5173
|
+
orientation: "horizontal" | "vertical";
|
|
5006
5174
|
indexRef: React.MutableRefObject<number>;
|
|
5007
5175
|
nonInteractiveIds: string[];
|
|
5008
5176
|
isVirtualized: boolean;
|
|
5009
5177
|
items: import("../..").Item<any>[];
|
|
5010
5178
|
mode: "multiple" | "single";
|
|
5011
|
-
};
|
|
5179
|
+
}; /**
|
|
5180
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
5181
|
+
* subcomponents.
|
|
5182
|
+
*
|
|
5183
|
+
* ```tsx
|
|
5184
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
5185
|
+
* ```
|
|
5186
|
+
*/
|
|
5012
5187
|
events: {
|
|
5013
5188
|
updatePlacement(data: {
|
|
5014
5189
|
placement: import("@popperjs/core").Placement;
|
|
@@ -5048,7 +5223,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5048
5223
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
5049
5224
|
getId: (item: any) => string;
|
|
5050
5225
|
}>;
|
|
5051
|
-
|
|
5226
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuList").MenuListProps<any>, {
|
|
5052
5227
|
state: {
|
|
5053
5228
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
5054
5229
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -5056,8 +5231,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5056
5231
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
5057
5232
|
placement: import("@popperjs/core").Placement;
|
|
5058
5233
|
id: string;
|
|
5059
|
-
visibility:
|
|
5060
|
-
selectedIds:
|
|
5234
|
+
visibility: "hidden" | "visible";
|
|
5235
|
+
selectedIds: string[] | "all";
|
|
5061
5236
|
unselectedIds: string[];
|
|
5062
5237
|
cursorId: string;
|
|
5063
5238
|
columnCount: number;
|
|
@@ -5070,13 +5245,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5070
5245
|
};
|
|
5071
5246
|
UNSTABLE_defaultItemHeight: number;
|
|
5072
5247
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5073
|
-
orientation:
|
|
5248
|
+
orientation: "horizontal" | "vertical";
|
|
5074
5249
|
indexRef: React.MutableRefObject<number>;
|
|
5075
5250
|
nonInteractiveIds: string[];
|
|
5076
5251
|
isVirtualized: boolean;
|
|
5077
5252
|
items: import("../..").Item<any>[];
|
|
5078
5253
|
mode: "multiple" | "single";
|
|
5079
|
-
};
|
|
5254
|
+
}; /**
|
|
5255
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
5256
|
+
* subcomponents.
|
|
5257
|
+
*
|
|
5258
|
+
* ```tsx
|
|
5259
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
5260
|
+
* ```
|
|
5261
|
+
*/
|
|
5080
5262
|
events: {
|
|
5081
5263
|
updatePlacement(data: {
|
|
5082
5264
|
placement: import("@popperjs/core").Placement;
|
|
@@ -5115,15 +5297,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5115
5297
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
5116
5298
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
5117
5299
|
getId: (item: any) => string;
|
|
5118
|
-
}
|
|
5119
|
-
|
|
5120
|
-
Text: import("@emotion/styled").StyledComponent<{
|
|
5121
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
5122
|
-
as?: "symbol" | "object" | "s" | "big" | "link" | "small" | "sub" | "sup" | "circle" | "stop" | "path" | "style" | "map" | "filter" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "main" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "samp" | "slot" | "script" | "section" | "select" | "source" | "span" | "strong" | "summary" | "table" | "template" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
|
5123
|
-
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
5124
|
-
};
|
|
5125
|
-
Divider: import("../../common").ElementComponent<"hr", unknown>;
|
|
5126
|
-
Target: import("../../common").ElementComponentM<import("../../common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
5300
|
+
}>;
|
|
5301
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("../../menu/lib/MenuItem").MenuItemProps, {
|
|
5127
5302
|
state: {
|
|
5128
5303
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
5129
5304
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -5131,8 +5306,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5131
5306
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
5132
5307
|
placement: import("@popperjs/core").Placement;
|
|
5133
5308
|
id: string;
|
|
5134
|
-
visibility:
|
|
5135
|
-
selectedIds:
|
|
5309
|
+
visibility: "hidden" | "visible";
|
|
5310
|
+
selectedIds: string[] | "all";
|
|
5136
5311
|
unselectedIds: string[];
|
|
5137
5312
|
cursorId: string;
|
|
5138
5313
|
columnCount: number;
|
|
@@ -5145,13 +5320,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5145
5320
|
};
|
|
5146
5321
|
UNSTABLE_defaultItemHeight: number;
|
|
5147
5322
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5148
|
-
orientation:
|
|
5323
|
+
orientation: "horizontal" | "vertical";
|
|
5149
5324
|
indexRef: React.MutableRefObject<number>;
|
|
5150
5325
|
nonInteractiveIds: string[];
|
|
5151
5326
|
isVirtualized: boolean;
|
|
5152
5327
|
items: import("../..").Item<any>[];
|
|
5153
5328
|
mode: "multiple" | "single";
|
|
5154
|
-
};
|
|
5329
|
+
}; /**
|
|
5330
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
5331
|
+
* subcomponents.
|
|
5332
|
+
*
|
|
5333
|
+
* ```tsx
|
|
5334
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
5335
|
+
* ```
|
|
5336
|
+
*/
|
|
5155
5337
|
events: {
|
|
5156
5338
|
updatePlacement(data: {
|
|
5157
5339
|
placement: import("@popperjs/core").Placement;
|
|
@@ -5190,8 +5372,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5190
5372
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
5191
5373
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
5192
5374
|
getId: (item: any) => string;
|
|
5193
|
-
}
|
|
5194
|
-
|
|
5375
|
+
}> & {
|
|
5376
|
+
Icon: import("@workday/canvas-kit-react/common").ElementComponent<"span", import("../..").SystemIconProps>;
|
|
5377
|
+
Text: import("@emotion/styled").StyledComponent<{
|
|
5378
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
5379
|
+
as?: React.ElementType<any> | undefined;
|
|
5380
|
+
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
5381
|
+
};
|
|
5382
|
+
Divider: import("@workday/canvas-kit-react/common").ElementComponent<"hr", unknown>;
|
|
5383
|
+
TargetContext: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
5195
5384
|
state: {
|
|
5196
5385
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
5197
5386
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -5199,8 +5388,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5199
5388
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
5200
5389
|
placement: import("@popperjs/core").Placement;
|
|
5201
5390
|
id: string;
|
|
5202
|
-
visibility:
|
|
5203
|
-
selectedIds:
|
|
5391
|
+
visibility: "hidden" | "visible";
|
|
5392
|
+
selectedIds: string[] | "all";
|
|
5204
5393
|
unselectedIds: string[];
|
|
5205
5394
|
cursorId: string;
|
|
5206
5395
|
columnCount: number;
|
|
@@ -5213,13 +5402,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5213
5402
|
};
|
|
5214
5403
|
UNSTABLE_defaultItemHeight: number;
|
|
5215
5404
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5216
|
-
orientation:
|
|
5405
|
+
orientation: "horizontal" | "vertical";
|
|
5217
5406
|
indexRef: React.MutableRefObject<number>;
|
|
5218
5407
|
nonInteractiveIds: string[];
|
|
5219
5408
|
isVirtualized: boolean;
|
|
5220
5409
|
items: import("../..").Item<any>[];
|
|
5221
5410
|
mode: "multiple" | "single";
|
|
5222
|
-
};
|
|
5411
|
+
}; /**
|
|
5412
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
5413
|
+
* subcomponents.
|
|
5414
|
+
*
|
|
5415
|
+
* ```tsx
|
|
5416
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
5417
|
+
* ```
|
|
5418
|
+
*/
|
|
5223
5419
|
events: {
|
|
5224
5420
|
updatePlacement(data: {
|
|
5225
5421
|
placement: import("@popperjs/core").Placement;
|
|
@@ -5259,7 +5455,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5259
5455
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
5260
5456
|
getId: (item: any) => string;
|
|
5261
5457
|
}>;
|
|
5262
|
-
Popper: import("
|
|
5458
|
+
Popper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuPopper").MenuPopperProps, {
|
|
5263
5459
|
state: {
|
|
5264
5460
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
5265
5461
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -5267,8 +5463,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5267
5463
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
5268
5464
|
placement: import("@popperjs/core").Placement;
|
|
5269
5465
|
id: string;
|
|
5270
|
-
visibility:
|
|
5271
|
-
selectedIds:
|
|
5466
|
+
visibility: "hidden" | "visible";
|
|
5467
|
+
selectedIds: string[] | "all";
|
|
5272
5468
|
unselectedIds: string[];
|
|
5273
5469
|
cursorId: string;
|
|
5274
5470
|
columnCount: number;
|
|
@@ -5281,13 +5477,20 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5281
5477
|
};
|
|
5282
5478
|
UNSTABLE_defaultItemHeight: number;
|
|
5283
5479
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5284
|
-
orientation:
|
|
5480
|
+
orientation: "horizontal" | "vertical";
|
|
5285
5481
|
indexRef: React.MutableRefObject<number>;
|
|
5286
5482
|
nonInteractiveIds: string[];
|
|
5287
5483
|
isVirtualized: boolean;
|
|
5288
5484
|
items: import("../..").Item<any>[];
|
|
5289
5485
|
mode: "multiple" | "single";
|
|
5290
|
-
};
|
|
5486
|
+
}; /**
|
|
5487
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
5488
|
+
* subcomponents.
|
|
5489
|
+
*
|
|
5490
|
+
* ```tsx
|
|
5491
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
5492
|
+
* ```
|
|
5493
|
+
*/
|
|
5291
5494
|
events: {
|
|
5292
5495
|
updatePlacement(data: {
|
|
5293
5496
|
placement: import("@popperjs/core").Placement;
|