@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,25 @@ export interface ActionBarProps {
|
|
|
5
5
|
*/
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
/**
|
|
9
|
+
* `ActionBar` is a container component that is responsible for creating an {@link ActionBarModel}
|
|
10
|
+
* and sharing it with its subcomponents using React context. It does not represent a real element.
|
|
11
|
+
*
|
|
12
|
+
* ```tsx
|
|
13
|
+
* <ActionBar items={[]}>{Child components}</ActionBar>
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* Alternatively, you may pass in a model using the hoisted model pattern.
|
|
17
|
+
*
|
|
18
|
+
* ```tsx
|
|
19
|
+
* const model = useActionBarModel({
|
|
20
|
+
* items: [],
|
|
21
|
+
* });
|
|
22
|
+
*
|
|
23
|
+
* <ActionBar model={model}>{Child components}</ActionBar>;
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare const ActionBar: import("@workday/canvas-kit-react/common").ComponentM<ActionBarProps & Partial<{
|
|
9
27
|
id: string;
|
|
10
28
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
11
29
|
menuConfig: Partial<{
|
|
@@ -53,7 +71,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
53
71
|
itemWidthCache: Record<string, number>;
|
|
54
72
|
containerWidth: number;
|
|
55
73
|
overflowTargetWidth: number;
|
|
56
|
-
selectedIds:
|
|
74
|
+
selectedIds: string[] | "all";
|
|
57
75
|
unselectedIds: string[];
|
|
58
76
|
cursorId: string;
|
|
59
77
|
columnCount: number;
|
|
@@ -80,7 +98,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
80
98
|
itemWidthCache: Record<string, number>;
|
|
81
99
|
containerWidth: number;
|
|
82
100
|
overflowTargetWidth: number;
|
|
83
|
-
selectedIds:
|
|
101
|
+
selectedIds: string[] | "all";
|
|
84
102
|
unselectedIds: string[];
|
|
85
103
|
cursorId: string;
|
|
86
104
|
columnCount: number;
|
|
@@ -107,7 +125,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
107
125
|
itemWidthCache: Record<string, number>;
|
|
108
126
|
containerWidth: number;
|
|
109
127
|
overflowTargetWidth: number;
|
|
110
|
-
selectedIds:
|
|
128
|
+
selectedIds: string[] | "all";
|
|
111
129
|
unselectedIds: string[];
|
|
112
130
|
cursorId: string;
|
|
113
131
|
columnCount: number;
|
|
@@ -135,7 +153,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
135
153
|
itemWidthCache: Record<string, number>;
|
|
136
154
|
containerWidth: number;
|
|
137
155
|
overflowTargetWidth: number;
|
|
138
|
-
selectedIds:
|
|
156
|
+
selectedIds: string[] | "all";
|
|
139
157
|
unselectedIds: string[];
|
|
140
158
|
cursorId: string;
|
|
141
159
|
columnCount: number;
|
|
@@ -162,7 +180,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
162
180
|
itemWidthCache: Record<string, number>;
|
|
163
181
|
containerWidth: number;
|
|
164
182
|
overflowTargetWidth: number;
|
|
165
|
-
selectedIds:
|
|
183
|
+
selectedIds: string[] | "all";
|
|
166
184
|
unselectedIds: string[];
|
|
167
185
|
cursorId: string;
|
|
168
186
|
columnCount: number;
|
|
@@ -189,7 +207,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
189
207
|
itemWidthCache: Record<string, number>;
|
|
190
208
|
containerWidth: number;
|
|
191
209
|
overflowTargetWidth: number;
|
|
192
|
-
selectedIds:
|
|
210
|
+
selectedIds: string[] | "all";
|
|
193
211
|
unselectedIds: string[];
|
|
194
212
|
cursorId: string;
|
|
195
213
|
columnCount: number;
|
|
@@ -216,7 +234,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
216
234
|
itemWidthCache: Record<string, number>;
|
|
217
235
|
containerWidth: number;
|
|
218
236
|
overflowTargetWidth: number;
|
|
219
|
-
selectedIds:
|
|
237
|
+
selectedIds: string[] | "all";
|
|
220
238
|
unselectedIds: string[];
|
|
221
239
|
cursorId: string;
|
|
222
240
|
columnCount: number;
|
|
@@ -241,7 +259,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
241
259
|
itemWidthCache: Record<string, number>;
|
|
242
260
|
containerWidth: number;
|
|
243
261
|
overflowTargetWidth: number;
|
|
244
|
-
selectedIds:
|
|
262
|
+
selectedIds: string[] | "all";
|
|
245
263
|
unselectedIds: string[];
|
|
246
264
|
cursorId: string;
|
|
247
265
|
columnCount: number;
|
|
@@ -266,7 +284,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
266
284
|
itemWidthCache: Record<string, number>;
|
|
267
285
|
containerWidth: number;
|
|
268
286
|
overflowTargetWidth: number;
|
|
269
|
-
selectedIds:
|
|
287
|
+
selectedIds: string[] | "all";
|
|
270
288
|
unselectedIds: string[];
|
|
271
289
|
cursorId: string;
|
|
272
290
|
columnCount: number;
|
|
@@ -294,7 +312,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
294
312
|
itemWidthCache: Record<string, number>;
|
|
295
313
|
containerWidth: number;
|
|
296
314
|
overflowTargetWidth: number;
|
|
297
|
-
selectedIds:
|
|
315
|
+
selectedIds: string[] | "all";
|
|
298
316
|
unselectedIds: string[];
|
|
299
317
|
cursorId: string;
|
|
300
318
|
columnCount: number;
|
|
@@ -321,7 +339,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
321
339
|
itemWidthCache: Record<string, number>;
|
|
322
340
|
containerWidth: number;
|
|
323
341
|
overflowTargetWidth: number;
|
|
324
|
-
selectedIds:
|
|
342
|
+
selectedIds: string[] | "all";
|
|
325
343
|
unselectedIds: string[];
|
|
326
344
|
cursorId: string;
|
|
327
345
|
columnCount: number;
|
|
@@ -346,7 +364,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
346
364
|
itemWidthCache: Record<string, number>;
|
|
347
365
|
containerWidth: number;
|
|
348
366
|
overflowTargetWidth: number;
|
|
349
|
-
selectedIds:
|
|
367
|
+
selectedIds: string[] | "all";
|
|
350
368
|
unselectedIds: string[];
|
|
351
369
|
cursorId: string;
|
|
352
370
|
columnCount: number;
|
|
@@ -371,7 +389,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
371
389
|
itemWidthCache: Record<string, number>;
|
|
372
390
|
containerWidth: number;
|
|
373
391
|
overflowTargetWidth: number;
|
|
374
|
-
selectedIds:
|
|
392
|
+
selectedIds: string[] | "all";
|
|
375
393
|
unselectedIds: string[];
|
|
376
394
|
cursorId: string;
|
|
377
395
|
columnCount: number;
|
|
@@ -396,7 +414,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
396
414
|
itemWidthCache: Record<string, number>;
|
|
397
415
|
containerWidth: number;
|
|
398
416
|
overflowTargetWidth: number;
|
|
399
|
-
selectedIds:
|
|
417
|
+
selectedIds: string[] | "all";
|
|
400
418
|
unselectedIds: string[];
|
|
401
419
|
cursorId: string;
|
|
402
420
|
columnCount: number;
|
|
@@ -421,7 +439,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
421
439
|
itemWidthCache: Record<string, number>;
|
|
422
440
|
containerWidth: number;
|
|
423
441
|
overflowTargetWidth: number;
|
|
424
|
-
selectedIds:
|
|
442
|
+
selectedIds: string[] | "all";
|
|
425
443
|
unselectedIds: string[];
|
|
426
444
|
cursorId: string;
|
|
427
445
|
columnCount: number;
|
|
@@ -446,7 +464,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
446
464
|
itemWidthCache: Record<string, number>;
|
|
447
465
|
containerWidth: number;
|
|
448
466
|
overflowTargetWidth: number;
|
|
449
|
-
selectedIds:
|
|
467
|
+
selectedIds: string[] | "all";
|
|
450
468
|
unselectedIds: string[];
|
|
451
469
|
cursorId: string;
|
|
452
470
|
columnCount: number;
|
|
@@ -471,7 +489,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
471
489
|
itemWidthCache: Record<string, number>;
|
|
472
490
|
containerWidth: number;
|
|
473
491
|
overflowTargetWidth: number;
|
|
474
|
-
selectedIds:
|
|
492
|
+
selectedIds: string[] | "all";
|
|
475
493
|
unselectedIds: string[];
|
|
476
494
|
cursorId: string;
|
|
477
495
|
columnCount: number;
|
|
@@ -496,7 +514,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
496
514
|
itemWidthCache: Record<string, number>;
|
|
497
515
|
containerWidth: number;
|
|
498
516
|
overflowTargetWidth: number;
|
|
499
|
-
selectedIds:
|
|
517
|
+
selectedIds: string[] | "all";
|
|
500
518
|
unselectedIds: string[];
|
|
501
519
|
cursorId: string;
|
|
502
520
|
columnCount: number;
|
|
@@ -521,7 +539,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
521
539
|
itemWidthCache: Record<string, number>;
|
|
522
540
|
containerWidth: number;
|
|
523
541
|
overflowTargetWidth: number;
|
|
524
|
-
selectedIds:
|
|
542
|
+
selectedIds: string[] | "all";
|
|
525
543
|
unselectedIds: string[];
|
|
526
544
|
cursorId: string;
|
|
527
545
|
columnCount: number;
|
|
@@ -546,7 +564,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
546
564
|
itemWidthCache: Record<string, number>;
|
|
547
565
|
containerWidth: number;
|
|
548
566
|
overflowTargetWidth: number;
|
|
549
|
-
selectedIds:
|
|
567
|
+
selectedIds: string[] | "all";
|
|
550
568
|
unselectedIds: string[];
|
|
551
569
|
cursorId: string;
|
|
552
570
|
columnCount: number;
|
|
@@ -571,7 +589,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
571
589
|
itemWidthCache: Record<string, number>;
|
|
572
590
|
containerWidth: number;
|
|
573
591
|
overflowTargetWidth: number;
|
|
574
|
-
selectedIds:
|
|
592
|
+
selectedIds: string[] | "all";
|
|
575
593
|
unselectedIds: string[];
|
|
576
594
|
cursorId: string;
|
|
577
595
|
columnCount: number;
|
|
@@ -598,7 +616,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
598
616
|
itemWidthCache: Record<string, number>;
|
|
599
617
|
containerWidth: number;
|
|
600
618
|
overflowTargetWidth: number;
|
|
601
|
-
selectedIds:
|
|
619
|
+
selectedIds: string[] | "all";
|
|
602
620
|
unselectedIds: string[];
|
|
603
621
|
cursorId: string;
|
|
604
622
|
columnCount: number;
|
|
@@ -625,7 +643,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
625
643
|
itemWidthCache: Record<string, number>;
|
|
626
644
|
containerWidth: number;
|
|
627
645
|
overflowTargetWidth: number;
|
|
628
|
-
selectedIds:
|
|
646
|
+
selectedIds: string[] | "all";
|
|
629
647
|
unselectedIds: string[];
|
|
630
648
|
cursorId: string;
|
|
631
649
|
columnCount: number;
|
|
@@ -653,7 +671,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
653
671
|
itemWidthCache: Record<string, number>;
|
|
654
672
|
containerWidth: number;
|
|
655
673
|
overflowTargetWidth: number;
|
|
656
|
-
selectedIds:
|
|
674
|
+
selectedIds: string[] | "all";
|
|
657
675
|
unselectedIds: string[];
|
|
658
676
|
cursorId: string;
|
|
659
677
|
columnCount: number;
|
|
@@ -680,7 +698,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
680
698
|
itemWidthCache: Record<string, number>;
|
|
681
699
|
containerWidth: number;
|
|
682
700
|
overflowTargetWidth: number;
|
|
683
|
-
selectedIds:
|
|
701
|
+
selectedIds: string[] | "all";
|
|
684
702
|
unselectedIds: string[];
|
|
685
703
|
cursorId: string;
|
|
686
704
|
columnCount: number;
|
|
@@ -707,7 +725,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
707
725
|
itemWidthCache: Record<string, number>;
|
|
708
726
|
containerWidth: number;
|
|
709
727
|
overflowTargetWidth: number;
|
|
710
|
-
selectedIds:
|
|
728
|
+
selectedIds: string[] | "all";
|
|
711
729
|
unselectedIds: string[];
|
|
712
730
|
cursorId: string;
|
|
713
731
|
columnCount: number;
|
|
@@ -735,7 +753,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
735
753
|
itemWidthCache: Record<string, number>;
|
|
736
754
|
containerWidth: number;
|
|
737
755
|
overflowTargetWidth: number;
|
|
738
|
-
selectedIds:
|
|
756
|
+
selectedIds: string[] | "all";
|
|
739
757
|
unselectedIds: string[];
|
|
740
758
|
cursorId: string;
|
|
741
759
|
columnCount: number;
|
|
@@ -762,7 +780,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
762
780
|
itemWidthCache: Record<string, number>;
|
|
763
781
|
containerWidth: number;
|
|
764
782
|
overflowTargetWidth: number;
|
|
765
|
-
selectedIds:
|
|
783
|
+
selectedIds: string[] | "all";
|
|
766
784
|
unselectedIds: string[];
|
|
767
785
|
cursorId: string;
|
|
768
786
|
columnCount: number;
|
|
@@ -789,7 +807,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
789
807
|
itemWidthCache: Record<string, number>;
|
|
790
808
|
containerWidth: number;
|
|
791
809
|
overflowTargetWidth: number;
|
|
792
|
-
selectedIds:
|
|
810
|
+
selectedIds: string[] | "all";
|
|
793
811
|
unselectedIds: string[];
|
|
794
812
|
cursorId: string;
|
|
795
813
|
columnCount: number;
|
|
@@ -816,7 +834,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
816
834
|
itemWidthCache: Record<string, number>;
|
|
817
835
|
containerWidth: number;
|
|
818
836
|
overflowTargetWidth: number;
|
|
819
|
-
selectedIds:
|
|
837
|
+
selectedIds: string[] | "all";
|
|
820
838
|
unselectedIds: string[];
|
|
821
839
|
cursorId: string;
|
|
822
840
|
columnCount: number;
|
|
@@ -841,7 +859,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
841
859
|
itemWidthCache: Record<string, number>;
|
|
842
860
|
containerWidth: number;
|
|
843
861
|
overflowTargetWidth: number;
|
|
844
|
-
selectedIds:
|
|
862
|
+
selectedIds: string[] | "all";
|
|
845
863
|
unselectedIds: string[];
|
|
846
864
|
cursorId: string;
|
|
847
865
|
columnCount: number;
|
|
@@ -866,7 +884,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
866
884
|
itemWidthCache: Record<string, number>;
|
|
867
885
|
containerWidth: number;
|
|
868
886
|
overflowTargetWidth: number;
|
|
869
|
-
selectedIds:
|
|
887
|
+
selectedIds: string[] | "all";
|
|
870
888
|
unselectedIds: string[];
|
|
871
889
|
cursorId: string;
|
|
872
890
|
columnCount: number;
|
|
@@ -894,7 +912,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
894
912
|
itemWidthCache: Record<string, number>;
|
|
895
913
|
containerWidth: number;
|
|
896
914
|
overflowTargetWidth: number;
|
|
897
|
-
selectedIds:
|
|
915
|
+
selectedIds: string[] | "all";
|
|
898
916
|
unselectedIds: string[];
|
|
899
917
|
cursorId: string;
|
|
900
918
|
columnCount: number;
|
|
@@ -921,7 +939,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
921
939
|
itemWidthCache: Record<string, number>;
|
|
922
940
|
containerWidth: number;
|
|
923
941
|
overflowTargetWidth: number;
|
|
924
|
-
selectedIds:
|
|
942
|
+
selectedIds: string[] | "all";
|
|
925
943
|
unselectedIds: string[];
|
|
926
944
|
cursorId: string;
|
|
927
945
|
columnCount: number;
|
|
@@ -946,7 +964,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
946
964
|
itemWidthCache: Record<string, number>;
|
|
947
965
|
containerWidth: number;
|
|
948
966
|
overflowTargetWidth: number;
|
|
949
|
-
selectedIds:
|
|
967
|
+
selectedIds: string[] | "all";
|
|
950
968
|
unselectedIds: string[];
|
|
951
969
|
cursorId: string;
|
|
952
970
|
columnCount: number;
|
|
@@ -971,7 +989,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
971
989
|
itemWidthCache: Record<string, number>;
|
|
972
990
|
containerWidth: number;
|
|
973
991
|
overflowTargetWidth: number;
|
|
974
|
-
selectedIds:
|
|
992
|
+
selectedIds: string[] | "all";
|
|
975
993
|
unselectedIds: string[];
|
|
976
994
|
cursorId: string;
|
|
977
995
|
columnCount: number;
|
|
@@ -996,7 +1014,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
996
1014
|
itemWidthCache: Record<string, number>;
|
|
997
1015
|
containerWidth: number;
|
|
998
1016
|
overflowTargetWidth: number;
|
|
999
|
-
selectedIds:
|
|
1017
|
+
selectedIds: string[] | "all";
|
|
1000
1018
|
unselectedIds: string[];
|
|
1001
1019
|
cursorId: string;
|
|
1002
1020
|
columnCount: number;
|
|
@@ -1021,7 +1039,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1021
1039
|
itemWidthCache: Record<string, number>;
|
|
1022
1040
|
containerWidth: number;
|
|
1023
1041
|
overflowTargetWidth: number;
|
|
1024
|
-
selectedIds:
|
|
1042
|
+
selectedIds: string[] | "all";
|
|
1025
1043
|
unselectedIds: string[];
|
|
1026
1044
|
cursorId: string;
|
|
1027
1045
|
columnCount: number;
|
|
@@ -1046,7 +1064,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1046
1064
|
itemWidthCache: Record<string, number>;
|
|
1047
1065
|
containerWidth: number;
|
|
1048
1066
|
overflowTargetWidth: number;
|
|
1049
|
-
selectedIds:
|
|
1067
|
+
selectedIds: string[] | "all";
|
|
1050
1068
|
unselectedIds: string[];
|
|
1051
1069
|
cursorId: string;
|
|
1052
1070
|
columnCount: number;
|
|
@@ -1071,7 +1089,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1071
1089
|
itemWidthCache: Record<string, number>;
|
|
1072
1090
|
containerWidth: number;
|
|
1073
1091
|
overflowTargetWidth: number;
|
|
1074
|
-
selectedIds:
|
|
1092
|
+
selectedIds: string[] | "all";
|
|
1075
1093
|
unselectedIds: string[];
|
|
1076
1094
|
cursorId: string;
|
|
1077
1095
|
columnCount: number;
|
|
@@ -1096,7 +1114,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1096
1114
|
itemWidthCache: Record<string, number>;
|
|
1097
1115
|
containerWidth: number;
|
|
1098
1116
|
overflowTargetWidth: number;
|
|
1099
|
-
selectedIds:
|
|
1117
|
+
selectedIds: string[] | "all";
|
|
1100
1118
|
unselectedIds: string[];
|
|
1101
1119
|
cursorId: string;
|
|
1102
1120
|
columnCount: number;
|
|
@@ -1121,7 +1139,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1121
1139
|
itemWidthCache: Record<string, number>;
|
|
1122
1140
|
containerWidth: number;
|
|
1123
1141
|
overflowTargetWidth: number;
|
|
1124
|
-
selectedIds:
|
|
1142
|
+
selectedIds: string[] | "all";
|
|
1125
1143
|
unselectedIds: string[];
|
|
1126
1144
|
cursorId: string;
|
|
1127
1145
|
columnCount: number;
|
|
@@ -1146,7 +1164,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1146
1164
|
itemWidthCache: Record<string, number>;
|
|
1147
1165
|
containerWidth: number;
|
|
1148
1166
|
overflowTargetWidth: number;
|
|
1149
|
-
selectedIds:
|
|
1167
|
+
selectedIds: string[] | "all";
|
|
1150
1168
|
unselectedIds: string[];
|
|
1151
1169
|
cursorId: string;
|
|
1152
1170
|
columnCount: number;
|
|
@@ -1171,7 +1189,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1171
1189
|
itemWidthCache: Record<string, number>;
|
|
1172
1190
|
containerWidth: number;
|
|
1173
1191
|
overflowTargetWidth: number;
|
|
1174
|
-
selectedIds:
|
|
1192
|
+
selectedIds: string[] | "all";
|
|
1175
1193
|
unselectedIds: string[];
|
|
1176
1194
|
cursorId: string;
|
|
1177
1195
|
columnCount: number;
|
|
@@ -1198,7 +1216,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1198
1216
|
itemWidthCache: Record<string, number>;
|
|
1199
1217
|
containerWidth: number;
|
|
1200
1218
|
overflowTargetWidth: number;
|
|
1201
|
-
selectedIds:
|
|
1219
|
+
selectedIds: string[] | "all";
|
|
1202
1220
|
unselectedIds: string[];
|
|
1203
1221
|
cursorId: string;
|
|
1204
1222
|
columnCount: number;
|
|
@@ -1225,7 +1243,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1225
1243
|
itemWidthCache: Record<string, number>;
|
|
1226
1244
|
containerWidth: number;
|
|
1227
1245
|
overflowTargetWidth: number;
|
|
1228
|
-
selectedIds:
|
|
1246
|
+
selectedIds: string[] | "all";
|
|
1229
1247
|
unselectedIds: string[];
|
|
1230
1248
|
cursorId: string;
|
|
1231
1249
|
columnCount: number;
|
|
@@ -1251,7 +1269,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1251
1269
|
itemWidthCache: Record<string, number>;
|
|
1252
1270
|
containerWidth: number;
|
|
1253
1271
|
overflowTargetWidth: number;
|
|
1254
|
-
selectedIds:
|
|
1272
|
+
selectedIds: string[] | "all";
|
|
1255
1273
|
unselectedIds: string[];
|
|
1256
1274
|
cursorId: string;
|
|
1257
1275
|
columnCount: number;
|
|
@@ -1326,8 +1344,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1326
1344
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1327
1345
|
placement: import("@popperjs/core").Placement;
|
|
1328
1346
|
id: string;
|
|
1329
|
-
visibility:
|
|
1330
|
-
selectedIds:
|
|
1347
|
+
visibility: "hidden" | "visible";
|
|
1348
|
+
selectedIds: string[] | "all";
|
|
1331
1349
|
unselectedIds: string[];
|
|
1332
1350
|
cursorId: string;
|
|
1333
1351
|
columnCount: number;
|
|
@@ -1340,7 +1358,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1340
1358
|
};
|
|
1341
1359
|
UNSTABLE_defaultItemHeight: number;
|
|
1342
1360
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1343
|
-
orientation:
|
|
1361
|
+
orientation: "horizontal" | "vertical";
|
|
1344
1362
|
indexRef: React.MutableRefObject<number>;
|
|
1345
1363
|
nonInteractiveIds: string[];
|
|
1346
1364
|
isVirtualized: boolean;
|
|
@@ -1390,7 +1408,23 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1390
1408
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1391
1409
|
getId: (item: any) => string;
|
|
1392
1410
|
}> & {
|
|
1393
|
-
|
|
1411
|
+
/**
|
|
1412
|
+
* `ActionBar.List` is a `HStack` element. It is a container for
|
|
1413
|
+
* {@link ActionBarItem ActionBar.Item} subcomponents. To render an overflow button for
|
|
1414
|
+
* ActionBar with overflow behavior `overflowButton` prop with overflow button component as a
|
|
1415
|
+
* value should be passed.
|
|
1416
|
+
*
|
|
1417
|
+
* ```tsx
|
|
1418
|
+
* // without overflow
|
|
1419
|
+
* <ActionBar.List>{ActionBar.Items}</ActionBar.List>
|
|
1420
|
+
*
|
|
1421
|
+
* // with overflow
|
|
1422
|
+
* <ActionBar.List overflowButton={<ActionBar.OverflowButton aria-label="More actions"/>}>
|
|
1423
|
+
* {ActionBar.Items}
|
|
1424
|
+
* </ActionBar.List>
|
|
1425
|
+
* ```
|
|
1426
|
+
*/
|
|
1427
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./ActionBarList").ActionBarListProps<any>, {
|
|
1394
1428
|
state: {
|
|
1395
1429
|
hiddenIds: string[];
|
|
1396
1430
|
nonInteractiveIds: string[];
|
|
@@ -1398,7 +1432,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1398
1432
|
itemWidthCache: Record<string, number>;
|
|
1399
1433
|
containerWidth: number;
|
|
1400
1434
|
overflowTargetWidth: number;
|
|
1401
|
-
selectedIds:
|
|
1435
|
+
selectedIds: string[] | "all";
|
|
1402
1436
|
unselectedIds: string[];
|
|
1403
1437
|
cursorId: string;
|
|
1404
1438
|
columnCount: number;
|
|
@@ -1473,8 +1507,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1473
1507
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1474
1508
|
placement: import("@popperjs/core").Placement;
|
|
1475
1509
|
id: string;
|
|
1476
|
-
visibility:
|
|
1477
|
-
selectedIds:
|
|
1510
|
+
visibility: "hidden" | "visible";
|
|
1511
|
+
selectedIds: string[] | "all";
|
|
1478
1512
|
unselectedIds: string[];
|
|
1479
1513
|
cursorId: string;
|
|
1480
1514
|
columnCount: number;
|
|
@@ -1487,7 +1521,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1487
1521
|
};
|
|
1488
1522
|
UNSTABLE_defaultItemHeight: number;
|
|
1489
1523
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1490
|
-
orientation:
|
|
1524
|
+
orientation: "horizontal" | "vertical";
|
|
1491
1525
|
indexRef: React.MutableRefObject<number>;
|
|
1492
1526
|
nonInteractiveIds: string[];
|
|
1493
1527
|
isVirtualized: boolean;
|
|
@@ -1537,7 +1571,17 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1537
1571
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1538
1572
|
getId: (item: any) => string;
|
|
1539
1573
|
}>;
|
|
1540
|
-
|
|
1574
|
+
/**
|
|
1575
|
+
* `ActionBar.Item` is a `button` element, by default it's a `SecondaryButton` unless an `as`
|
|
1576
|
+
* prop is passed.
|
|
1577
|
+
*
|
|
1578
|
+
* ```tsx
|
|
1579
|
+
* <ActionBar.Item as={PrimaryButton} onClick={() => console.log('first action')}>
|
|
1580
|
+
* First Action
|
|
1581
|
+
* </ActionBar.Item>
|
|
1582
|
+
* ```
|
|
1583
|
+
*/
|
|
1584
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("./ActionBarItem").ActionBarItemProps, {
|
|
1541
1585
|
state: {
|
|
1542
1586
|
hiddenIds: string[];
|
|
1543
1587
|
nonInteractiveIds: string[];
|
|
@@ -1545,7 +1589,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1545
1589
|
itemWidthCache: Record<string, number>;
|
|
1546
1590
|
containerWidth: number;
|
|
1547
1591
|
overflowTargetWidth: number;
|
|
1548
|
-
selectedIds:
|
|
1592
|
+
selectedIds: string[] | "all";
|
|
1549
1593
|
unselectedIds: string[];
|
|
1550
1594
|
cursorId: string;
|
|
1551
1595
|
columnCount: number;
|
|
@@ -1620,8 +1664,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1620
1664
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1621
1665
|
placement: import("@popperjs/core").Placement;
|
|
1622
1666
|
id: string;
|
|
1623
|
-
visibility:
|
|
1624
|
-
selectedIds:
|
|
1667
|
+
visibility: "hidden" | "visible";
|
|
1668
|
+
selectedIds: string[] | "all";
|
|
1625
1669
|
unselectedIds: string[];
|
|
1626
1670
|
cursorId: string;
|
|
1627
1671
|
columnCount: number;
|
|
@@ -1634,7 +1678,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1634
1678
|
};
|
|
1635
1679
|
UNSTABLE_defaultItemHeight: number;
|
|
1636
1680
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1637
|
-
orientation:
|
|
1681
|
+
orientation: "horizontal" | "vertical";
|
|
1638
1682
|
indexRef: React.MutableRefObject<number>;
|
|
1639
1683
|
nonInteractiveIds: string[];
|
|
1640
1684
|
isVirtualized: boolean;
|
|
@@ -1684,7 +1728,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1684
1728
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1685
1729
|
getId: (item: any) => string;
|
|
1686
1730
|
}>;
|
|
1687
|
-
OverflowButton: import("
|
|
1731
|
+
OverflowButton: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("./ActionBarOverflowButton").ActionBarOverflowButtonProps, {
|
|
1688
1732
|
state: {
|
|
1689
1733
|
hiddenIds: string[];
|
|
1690
1734
|
nonInteractiveIds: string[];
|
|
@@ -1692,7 +1736,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1692
1736
|
itemWidthCache: Record<string, number>;
|
|
1693
1737
|
containerWidth: number;
|
|
1694
1738
|
overflowTargetWidth: number;
|
|
1695
|
-
selectedIds:
|
|
1739
|
+
selectedIds: string[] | "all";
|
|
1696
1740
|
unselectedIds: string[];
|
|
1697
1741
|
cursorId: string;
|
|
1698
1742
|
columnCount: number;
|
|
@@ -1767,8 +1811,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1767
1811
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1768
1812
|
placement: import("@popperjs/core").Placement;
|
|
1769
1813
|
id: string;
|
|
1770
|
-
visibility:
|
|
1771
|
-
selectedIds:
|
|
1814
|
+
visibility: "hidden" | "visible";
|
|
1815
|
+
selectedIds: string[] | "all";
|
|
1772
1816
|
unselectedIds: string[];
|
|
1773
1817
|
cursorId: string;
|
|
1774
1818
|
columnCount: number;
|
|
@@ -1781,7 +1825,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1781
1825
|
};
|
|
1782
1826
|
UNSTABLE_defaultItemHeight: number;
|
|
1783
1827
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1784
|
-
orientation:
|
|
1828
|
+
orientation: "horizontal" | "vertical";
|
|
1785
1829
|
indexRef: React.MutableRefObject<number>;
|
|
1786
1830
|
nonInteractiveIds: string[];
|
|
1787
1831
|
isVirtualized: boolean;
|
|
@@ -1843,7 +1887,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1843
1887
|
* </ActionBar.Menu.Card>
|
|
1844
1888
|
* </ActionBar.Menu.Popper>
|
|
1845
1889
|
*/
|
|
1846
|
-
Menu: import("
|
|
1890
|
+
Menu: import("@workday/canvas-kit-react/common").ComponentM<import("../../menu/lib/Menu").MenuProps & Partial<{
|
|
1847
1891
|
mode: "multiple" | "single";
|
|
1848
1892
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1849
1893
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
@@ -1872,8 +1916,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1872
1916
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1873
1917
|
placement: import("@popperjs/core").Placement;
|
|
1874
1918
|
id: string;
|
|
1875
|
-
visibility:
|
|
1876
|
-
selectedIds:
|
|
1919
|
+
visibility: "hidden" | "visible";
|
|
1920
|
+
selectedIds: string[] | "all";
|
|
1877
1921
|
unselectedIds: string[];
|
|
1878
1922
|
cursorId: string;
|
|
1879
1923
|
columnCount: number;
|
|
@@ -1886,7 +1930,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1886
1930
|
};
|
|
1887
1931
|
UNSTABLE_defaultItemHeight: number;
|
|
1888
1932
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1889
|
-
orientation:
|
|
1933
|
+
orientation: "horizontal" | "vertical";
|
|
1890
1934
|
indexRef: React.MutableRefObject<number>;
|
|
1891
1935
|
nonInteractiveIds: string[];
|
|
1892
1936
|
isVirtualized: boolean;
|
|
@@ -1900,8 +1944,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1900
1944
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1901
1945
|
placement: import("@popperjs/core").Placement;
|
|
1902
1946
|
id: string;
|
|
1903
|
-
visibility:
|
|
1904
|
-
selectedIds:
|
|
1947
|
+
visibility: "hidden" | "visible";
|
|
1948
|
+
selectedIds: string[] | "all";
|
|
1905
1949
|
unselectedIds: string[];
|
|
1906
1950
|
cursorId: string;
|
|
1907
1951
|
columnCount: number;
|
|
@@ -1914,7 +1958,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1914
1958
|
};
|
|
1915
1959
|
UNSTABLE_defaultItemHeight: number;
|
|
1916
1960
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1917
|
-
orientation:
|
|
1961
|
+
orientation: "horizontal" | "vertical";
|
|
1918
1962
|
indexRef: React.MutableRefObject<number>;
|
|
1919
1963
|
nonInteractiveIds: string[];
|
|
1920
1964
|
isVirtualized: boolean;
|
|
@@ -1928,8 +1972,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1928
1972
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1929
1973
|
placement: import("@popperjs/core").Placement;
|
|
1930
1974
|
id: string;
|
|
1931
|
-
visibility:
|
|
1932
|
-
selectedIds:
|
|
1975
|
+
visibility: "hidden" | "visible";
|
|
1976
|
+
selectedIds: string[] | "all";
|
|
1933
1977
|
unselectedIds: string[];
|
|
1934
1978
|
cursorId: string;
|
|
1935
1979
|
columnCount: number;
|
|
@@ -1942,7 +1986,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1942
1986
|
};
|
|
1943
1987
|
UNSTABLE_defaultItemHeight: number;
|
|
1944
1988
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1945
|
-
orientation:
|
|
1989
|
+
orientation: "horizontal" | "vertical";
|
|
1946
1990
|
indexRef: React.MutableRefObject<number>;
|
|
1947
1991
|
nonInteractiveIds: string[];
|
|
1948
1992
|
isVirtualized: boolean;
|
|
@@ -1958,8 +2002,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1958
2002
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1959
2003
|
placement: import("@popperjs/core").Placement;
|
|
1960
2004
|
id: string;
|
|
1961
|
-
visibility:
|
|
1962
|
-
selectedIds:
|
|
2005
|
+
visibility: "hidden" | "visible";
|
|
2006
|
+
selectedIds: string[] | "all";
|
|
1963
2007
|
unselectedIds: string[];
|
|
1964
2008
|
cursorId: string;
|
|
1965
2009
|
columnCount: number;
|
|
@@ -1972,7 +2016,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1972
2016
|
};
|
|
1973
2017
|
UNSTABLE_defaultItemHeight: number;
|
|
1974
2018
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1975
|
-
orientation:
|
|
2019
|
+
orientation: "horizontal" | "vertical";
|
|
1976
2020
|
indexRef: React.MutableRefObject<number>;
|
|
1977
2021
|
nonInteractiveIds: string[];
|
|
1978
2022
|
isVirtualized: boolean;
|
|
@@ -1986,8 +2030,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1986
2030
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1987
2031
|
placement: import("@popperjs/core").Placement;
|
|
1988
2032
|
id: string;
|
|
1989
|
-
visibility:
|
|
1990
|
-
selectedIds:
|
|
2033
|
+
visibility: "hidden" | "visible";
|
|
2034
|
+
selectedIds: string[] | "all";
|
|
1991
2035
|
unselectedIds: string[];
|
|
1992
2036
|
cursorId: string;
|
|
1993
2037
|
columnCount: number;
|
|
@@ -2000,7 +2044,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2000
2044
|
};
|
|
2001
2045
|
UNSTABLE_defaultItemHeight: number;
|
|
2002
2046
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2003
|
-
orientation:
|
|
2047
|
+
orientation: "horizontal" | "vertical";
|
|
2004
2048
|
indexRef: React.MutableRefObject<number>;
|
|
2005
2049
|
nonInteractiveIds: string[];
|
|
2006
2050
|
isVirtualized: boolean;
|
|
@@ -2014,8 +2058,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2014
2058
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2015
2059
|
placement: import("@popperjs/core").Placement;
|
|
2016
2060
|
id: string;
|
|
2017
|
-
visibility:
|
|
2018
|
-
selectedIds:
|
|
2061
|
+
visibility: "hidden" | "visible";
|
|
2062
|
+
selectedIds: string[] | "all";
|
|
2019
2063
|
unselectedIds: string[];
|
|
2020
2064
|
cursorId: string;
|
|
2021
2065
|
columnCount: number;
|
|
@@ -2028,7 +2072,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2028
2072
|
};
|
|
2029
2073
|
UNSTABLE_defaultItemHeight: number;
|
|
2030
2074
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2031
|
-
orientation:
|
|
2075
|
+
orientation: "horizontal" | "vertical";
|
|
2032
2076
|
indexRef: React.MutableRefObject<number>;
|
|
2033
2077
|
nonInteractiveIds: string[];
|
|
2034
2078
|
isVirtualized: boolean;
|
|
@@ -2045,8 +2089,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2045
2089
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2046
2090
|
placement: import("@popperjs/core").Placement;
|
|
2047
2091
|
id: string;
|
|
2048
|
-
visibility:
|
|
2049
|
-
selectedIds:
|
|
2092
|
+
visibility: "hidden" | "visible";
|
|
2093
|
+
selectedIds: string[] | "all";
|
|
2050
2094
|
unselectedIds: string[];
|
|
2051
2095
|
cursorId: string;
|
|
2052
2096
|
columnCount: number;
|
|
@@ -2059,7 +2103,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2059
2103
|
};
|
|
2060
2104
|
UNSTABLE_defaultItemHeight: number;
|
|
2061
2105
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2062
|
-
orientation:
|
|
2106
|
+
orientation: "horizontal" | "vertical";
|
|
2063
2107
|
indexRef: React.MutableRefObject<number>;
|
|
2064
2108
|
nonInteractiveIds: string[];
|
|
2065
2109
|
isVirtualized: boolean;
|
|
@@ -2075,8 +2119,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2075
2119
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2076
2120
|
placement: import("@popperjs/core").Placement;
|
|
2077
2121
|
id: string;
|
|
2078
|
-
visibility:
|
|
2079
|
-
selectedIds:
|
|
2122
|
+
visibility: "hidden" | "visible";
|
|
2123
|
+
selectedIds: string[] | "all";
|
|
2080
2124
|
unselectedIds: string[];
|
|
2081
2125
|
cursorId: string;
|
|
2082
2126
|
columnCount: number;
|
|
@@ -2089,7 +2133,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2089
2133
|
};
|
|
2090
2134
|
UNSTABLE_defaultItemHeight: number;
|
|
2091
2135
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2092
|
-
orientation:
|
|
2136
|
+
orientation: "horizontal" | "vertical";
|
|
2093
2137
|
indexRef: React.MutableRefObject<number>;
|
|
2094
2138
|
nonInteractiveIds: string[];
|
|
2095
2139
|
isVirtualized: boolean;
|
|
@@ -2103,8 +2147,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2103
2147
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2104
2148
|
placement: import("@popperjs/core").Placement;
|
|
2105
2149
|
id: string;
|
|
2106
|
-
visibility:
|
|
2107
|
-
selectedIds:
|
|
2150
|
+
visibility: "hidden" | "visible";
|
|
2151
|
+
selectedIds: string[] | "all";
|
|
2108
2152
|
unselectedIds: string[];
|
|
2109
2153
|
cursorId: string;
|
|
2110
2154
|
columnCount: number;
|
|
@@ -2117,7 +2161,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2117
2161
|
};
|
|
2118
2162
|
UNSTABLE_defaultItemHeight: number;
|
|
2119
2163
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2120
|
-
orientation:
|
|
2164
|
+
orientation: "horizontal" | "vertical";
|
|
2121
2165
|
indexRef: React.MutableRefObject<number>;
|
|
2122
2166
|
nonInteractiveIds: string[];
|
|
2123
2167
|
isVirtualized: boolean;
|
|
@@ -2131,8 +2175,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2131
2175
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2132
2176
|
placement: import("@popperjs/core").Placement;
|
|
2133
2177
|
id: string;
|
|
2134
|
-
visibility:
|
|
2135
|
-
selectedIds:
|
|
2178
|
+
visibility: "hidden" | "visible";
|
|
2179
|
+
selectedIds: string[] | "all";
|
|
2136
2180
|
unselectedIds: string[];
|
|
2137
2181
|
cursorId: string;
|
|
2138
2182
|
columnCount: number;
|
|
@@ -2145,7 +2189,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2145
2189
|
};
|
|
2146
2190
|
UNSTABLE_defaultItemHeight: number;
|
|
2147
2191
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2148
|
-
orientation:
|
|
2192
|
+
orientation: "horizontal" | "vertical";
|
|
2149
2193
|
indexRef: React.MutableRefObject<number>;
|
|
2150
2194
|
nonInteractiveIds: string[];
|
|
2151
2195
|
isVirtualized: boolean;
|
|
@@ -2159,8 +2203,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2159
2203
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2160
2204
|
placement: import("@popperjs/core").Placement;
|
|
2161
2205
|
id: string;
|
|
2162
|
-
visibility:
|
|
2163
|
-
selectedIds:
|
|
2206
|
+
visibility: "hidden" | "visible";
|
|
2207
|
+
selectedIds: string[] | "all";
|
|
2164
2208
|
unselectedIds: string[];
|
|
2165
2209
|
cursorId: string;
|
|
2166
2210
|
columnCount: number;
|
|
@@ -2173,7 +2217,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2173
2217
|
};
|
|
2174
2218
|
UNSTABLE_defaultItemHeight: number;
|
|
2175
2219
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2176
|
-
orientation:
|
|
2220
|
+
orientation: "horizontal" | "vertical";
|
|
2177
2221
|
indexRef: React.MutableRefObject<number>;
|
|
2178
2222
|
nonInteractiveIds: string[];
|
|
2179
2223
|
isVirtualized: boolean;
|
|
@@ -2187,8 +2231,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2187
2231
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2188
2232
|
placement: import("@popperjs/core").Placement;
|
|
2189
2233
|
id: string;
|
|
2190
|
-
visibility:
|
|
2191
|
-
selectedIds:
|
|
2234
|
+
visibility: "hidden" | "visible";
|
|
2235
|
+
selectedIds: string[] | "all";
|
|
2192
2236
|
unselectedIds: string[];
|
|
2193
2237
|
cursorId: string;
|
|
2194
2238
|
columnCount: number;
|
|
@@ -2201,7 +2245,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2201
2245
|
};
|
|
2202
2246
|
UNSTABLE_defaultItemHeight: number;
|
|
2203
2247
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2204
|
-
orientation:
|
|
2248
|
+
orientation: "horizontal" | "vertical";
|
|
2205
2249
|
indexRef: React.MutableRefObject<number>;
|
|
2206
2250
|
nonInteractiveIds: string[];
|
|
2207
2251
|
isVirtualized: boolean;
|
|
@@ -2215,8 +2259,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2215
2259
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2216
2260
|
placement: import("@popperjs/core").Placement;
|
|
2217
2261
|
id: string;
|
|
2218
|
-
visibility:
|
|
2219
|
-
selectedIds:
|
|
2262
|
+
visibility: "hidden" | "visible";
|
|
2263
|
+
selectedIds: string[] | "all";
|
|
2220
2264
|
unselectedIds: string[];
|
|
2221
2265
|
cursorId: string;
|
|
2222
2266
|
columnCount: number;
|
|
@@ -2229,7 +2273,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2229
2273
|
};
|
|
2230
2274
|
UNSTABLE_defaultItemHeight: number;
|
|
2231
2275
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2232
|
-
orientation:
|
|
2276
|
+
orientation: "horizontal" | "vertical";
|
|
2233
2277
|
indexRef: React.MutableRefObject<number>;
|
|
2234
2278
|
nonInteractiveIds: string[];
|
|
2235
2279
|
isVirtualized: boolean;
|
|
@@ -2243,8 +2287,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2243
2287
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2244
2288
|
placement: import("@popperjs/core").Placement;
|
|
2245
2289
|
id: string;
|
|
2246
|
-
visibility:
|
|
2247
|
-
selectedIds:
|
|
2290
|
+
visibility: "hidden" | "visible";
|
|
2291
|
+
selectedIds: string[] | "all";
|
|
2248
2292
|
unselectedIds: string[];
|
|
2249
2293
|
cursorId: string;
|
|
2250
2294
|
columnCount: number;
|
|
@@ -2257,7 +2301,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2257
2301
|
};
|
|
2258
2302
|
UNSTABLE_defaultItemHeight: number;
|
|
2259
2303
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2260
|
-
orientation:
|
|
2304
|
+
orientation: "horizontal" | "vertical";
|
|
2261
2305
|
indexRef: React.MutableRefObject<number>;
|
|
2262
2306
|
nonInteractiveIds: string[];
|
|
2263
2307
|
isVirtualized: boolean;
|
|
@@ -2271,8 +2315,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2271
2315
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2272
2316
|
placement: import("@popperjs/core").Placement;
|
|
2273
2317
|
id: string;
|
|
2274
|
-
visibility:
|
|
2275
|
-
selectedIds:
|
|
2318
|
+
visibility: "hidden" | "visible";
|
|
2319
|
+
selectedIds: string[] | "all";
|
|
2276
2320
|
unselectedIds: string[];
|
|
2277
2321
|
cursorId: string;
|
|
2278
2322
|
columnCount: number;
|
|
@@ -2285,7 +2329,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2285
2329
|
};
|
|
2286
2330
|
UNSTABLE_defaultItemHeight: number;
|
|
2287
2331
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2288
|
-
orientation:
|
|
2332
|
+
orientation: "horizontal" | "vertical";
|
|
2289
2333
|
indexRef: React.MutableRefObject<number>;
|
|
2290
2334
|
nonInteractiveIds: string[];
|
|
2291
2335
|
isVirtualized: boolean;
|
|
@@ -2299,8 +2343,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2299
2343
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2300
2344
|
placement: import("@popperjs/core").Placement;
|
|
2301
2345
|
id: string;
|
|
2302
|
-
visibility:
|
|
2303
|
-
selectedIds:
|
|
2346
|
+
visibility: "hidden" | "visible";
|
|
2347
|
+
selectedIds: string[] | "all";
|
|
2304
2348
|
unselectedIds: string[];
|
|
2305
2349
|
cursorId: string;
|
|
2306
2350
|
columnCount: number;
|
|
@@ -2313,7 +2357,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2313
2357
|
};
|
|
2314
2358
|
UNSTABLE_defaultItemHeight: number;
|
|
2315
2359
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2316
|
-
orientation:
|
|
2360
|
+
orientation: "horizontal" | "vertical";
|
|
2317
2361
|
indexRef: React.MutableRefObject<number>;
|
|
2318
2362
|
nonInteractiveIds: string[];
|
|
2319
2363
|
isVirtualized: boolean;
|
|
@@ -2327,8 +2371,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2327
2371
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2328
2372
|
placement: import("@popperjs/core").Placement;
|
|
2329
2373
|
id: string;
|
|
2330
|
-
visibility:
|
|
2331
|
-
selectedIds:
|
|
2374
|
+
visibility: "hidden" | "visible";
|
|
2375
|
+
selectedIds: string[] | "all";
|
|
2332
2376
|
unselectedIds: string[];
|
|
2333
2377
|
cursorId: string;
|
|
2334
2378
|
columnCount: number;
|
|
@@ -2341,7 +2385,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2341
2385
|
};
|
|
2342
2386
|
UNSTABLE_defaultItemHeight: number;
|
|
2343
2387
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2344
|
-
orientation:
|
|
2388
|
+
orientation: "horizontal" | "vertical";
|
|
2345
2389
|
indexRef: React.MutableRefObject<number>;
|
|
2346
2390
|
nonInteractiveIds: string[];
|
|
2347
2391
|
isVirtualized: boolean;
|
|
@@ -2355,8 +2399,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2355
2399
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2356
2400
|
placement: import("@popperjs/core").Placement;
|
|
2357
2401
|
id: string;
|
|
2358
|
-
visibility:
|
|
2359
|
-
selectedIds:
|
|
2402
|
+
visibility: "hidden" | "visible";
|
|
2403
|
+
selectedIds: string[] | "all";
|
|
2360
2404
|
unselectedIds: string[];
|
|
2361
2405
|
cursorId: string;
|
|
2362
2406
|
columnCount: number;
|
|
@@ -2369,7 +2413,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2369
2413
|
};
|
|
2370
2414
|
UNSTABLE_defaultItemHeight: number;
|
|
2371
2415
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2372
|
-
orientation:
|
|
2416
|
+
orientation: "horizontal" | "vertical";
|
|
2373
2417
|
indexRef: React.MutableRefObject<number>;
|
|
2374
2418
|
nonInteractiveIds: string[];
|
|
2375
2419
|
isVirtualized: boolean;
|
|
@@ -2385,8 +2429,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2385
2429
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2386
2430
|
placement: import("@popperjs/core").Placement;
|
|
2387
2431
|
id: string;
|
|
2388
|
-
visibility:
|
|
2389
|
-
selectedIds:
|
|
2432
|
+
visibility: "hidden" | "visible";
|
|
2433
|
+
selectedIds: string[] | "all";
|
|
2390
2434
|
unselectedIds: string[];
|
|
2391
2435
|
cursorId: string;
|
|
2392
2436
|
columnCount: number;
|
|
@@ -2399,7 +2443,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2399
2443
|
};
|
|
2400
2444
|
UNSTABLE_defaultItemHeight: number;
|
|
2401
2445
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2402
|
-
orientation:
|
|
2446
|
+
orientation: "horizontal" | "vertical";
|
|
2403
2447
|
indexRef: React.MutableRefObject<number>;
|
|
2404
2448
|
nonInteractiveIds: string[];
|
|
2405
2449
|
isVirtualized: boolean;
|
|
@@ -2415,8 +2459,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2415
2459
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2416
2460
|
placement: import("@popperjs/core").Placement;
|
|
2417
2461
|
id: string;
|
|
2418
|
-
visibility:
|
|
2419
|
-
selectedIds:
|
|
2462
|
+
visibility: "hidden" | "visible";
|
|
2463
|
+
selectedIds: string[] | "all";
|
|
2420
2464
|
unselectedIds: string[];
|
|
2421
2465
|
cursorId: string;
|
|
2422
2466
|
columnCount: number;
|
|
@@ -2429,7 +2473,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2429
2473
|
};
|
|
2430
2474
|
UNSTABLE_defaultItemHeight: number;
|
|
2431
2475
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2432
|
-
orientation:
|
|
2476
|
+
orientation: "horizontal" | "vertical";
|
|
2433
2477
|
indexRef: React.MutableRefObject<number>;
|
|
2434
2478
|
nonInteractiveIds: string[];
|
|
2435
2479
|
isVirtualized: boolean;
|
|
@@ -2446,8 +2490,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2446
2490
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2447
2491
|
placement: import("@popperjs/core").Placement;
|
|
2448
2492
|
id: string;
|
|
2449
|
-
visibility:
|
|
2450
|
-
selectedIds:
|
|
2493
|
+
visibility: "hidden" | "visible";
|
|
2494
|
+
selectedIds: string[] | "all";
|
|
2451
2495
|
unselectedIds: string[];
|
|
2452
2496
|
cursorId: string;
|
|
2453
2497
|
columnCount: number;
|
|
@@ -2460,7 +2504,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2460
2504
|
};
|
|
2461
2505
|
UNSTABLE_defaultItemHeight: number;
|
|
2462
2506
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2463
|
-
orientation:
|
|
2507
|
+
orientation: "horizontal" | "vertical";
|
|
2464
2508
|
indexRef: React.MutableRefObject<number>;
|
|
2465
2509
|
nonInteractiveIds: string[];
|
|
2466
2510
|
isVirtualized: boolean;
|
|
@@ -2474,8 +2518,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2474
2518
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2475
2519
|
placement: import("@popperjs/core").Placement;
|
|
2476
2520
|
id: string;
|
|
2477
|
-
visibility:
|
|
2478
|
-
selectedIds:
|
|
2521
|
+
visibility: "hidden" | "visible";
|
|
2522
|
+
selectedIds: string[] | "all";
|
|
2479
2523
|
unselectedIds: string[];
|
|
2480
2524
|
cursorId: string;
|
|
2481
2525
|
columnCount: number;
|
|
@@ -2488,7 +2532,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2488
2532
|
};
|
|
2489
2533
|
UNSTABLE_defaultItemHeight: number;
|
|
2490
2534
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2491
|
-
orientation:
|
|
2535
|
+
orientation: "horizontal" | "vertical";
|
|
2492
2536
|
indexRef: React.MutableRefObject<number>;
|
|
2493
2537
|
nonInteractiveIds: string[];
|
|
2494
2538
|
isVirtualized: boolean;
|
|
@@ -2502,8 +2546,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2502
2546
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2503
2547
|
placement: import("@popperjs/core").Placement;
|
|
2504
2548
|
id: string;
|
|
2505
|
-
visibility:
|
|
2506
|
-
selectedIds:
|
|
2549
|
+
visibility: "hidden" | "visible";
|
|
2550
|
+
selectedIds: string[] | "all";
|
|
2507
2551
|
unselectedIds: string[];
|
|
2508
2552
|
cursorId: string;
|
|
2509
2553
|
columnCount: number;
|
|
@@ -2516,7 +2560,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2516
2560
|
};
|
|
2517
2561
|
UNSTABLE_defaultItemHeight: number;
|
|
2518
2562
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2519
|
-
orientation:
|
|
2563
|
+
orientation: "horizontal" | "vertical";
|
|
2520
2564
|
indexRef: React.MutableRefObject<number>;
|
|
2521
2565
|
nonInteractiveIds: string[];
|
|
2522
2566
|
isVirtualized: boolean;
|
|
@@ -2532,8 +2576,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2532
2576
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2533
2577
|
placement: import("@popperjs/core").Placement;
|
|
2534
2578
|
id: string;
|
|
2535
|
-
visibility:
|
|
2536
|
-
selectedIds:
|
|
2579
|
+
visibility: "hidden" | "visible";
|
|
2580
|
+
selectedIds: string[] | "all";
|
|
2537
2581
|
unselectedIds: string[];
|
|
2538
2582
|
cursorId: string;
|
|
2539
2583
|
columnCount: number;
|
|
@@ -2546,7 +2590,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2546
2590
|
};
|
|
2547
2591
|
UNSTABLE_defaultItemHeight: number;
|
|
2548
2592
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2549
|
-
orientation:
|
|
2593
|
+
orientation: "horizontal" | "vertical";
|
|
2550
2594
|
indexRef: React.MutableRefObject<number>;
|
|
2551
2595
|
nonInteractiveIds: string[];
|
|
2552
2596
|
isVirtualized: boolean;
|
|
@@ -2560,8 +2604,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2560
2604
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2561
2605
|
placement: import("@popperjs/core").Placement;
|
|
2562
2606
|
id: string;
|
|
2563
|
-
visibility:
|
|
2564
|
-
selectedIds:
|
|
2607
|
+
visibility: "hidden" | "visible";
|
|
2608
|
+
selectedIds: string[] | "all";
|
|
2565
2609
|
unselectedIds: string[];
|
|
2566
2610
|
cursorId: string;
|
|
2567
2611
|
columnCount: number;
|
|
@@ -2574,7 +2618,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2574
2618
|
};
|
|
2575
2619
|
UNSTABLE_defaultItemHeight: number;
|
|
2576
2620
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2577
|
-
orientation:
|
|
2621
|
+
orientation: "horizontal" | "vertical";
|
|
2578
2622
|
indexRef: React.MutableRefObject<number>;
|
|
2579
2623
|
nonInteractiveIds: string[];
|
|
2580
2624
|
isVirtualized: boolean;
|
|
@@ -2588,8 +2632,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2588
2632
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2589
2633
|
placement: import("@popperjs/core").Placement;
|
|
2590
2634
|
id: string;
|
|
2591
|
-
visibility:
|
|
2592
|
-
selectedIds:
|
|
2635
|
+
visibility: "hidden" | "visible";
|
|
2636
|
+
selectedIds: string[] | "all";
|
|
2593
2637
|
unselectedIds: string[];
|
|
2594
2638
|
cursorId: string;
|
|
2595
2639
|
columnCount: number;
|
|
@@ -2602,7 +2646,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2602
2646
|
};
|
|
2603
2647
|
UNSTABLE_defaultItemHeight: number;
|
|
2604
2648
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2605
|
-
orientation:
|
|
2649
|
+
orientation: "horizontal" | "vertical";
|
|
2606
2650
|
indexRef: React.MutableRefObject<number>;
|
|
2607
2651
|
nonInteractiveIds: string[];
|
|
2608
2652
|
isVirtualized: boolean;
|
|
@@ -2619,8 +2663,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2619
2663
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2620
2664
|
placement: import("@popperjs/core").Placement;
|
|
2621
2665
|
id: string;
|
|
2622
|
-
visibility:
|
|
2623
|
-
selectedIds:
|
|
2666
|
+
visibility: "hidden" | "visible";
|
|
2667
|
+
selectedIds: string[] | "all";
|
|
2624
2668
|
unselectedIds: string[];
|
|
2625
2669
|
cursorId: string;
|
|
2626
2670
|
columnCount: number;
|
|
@@ -2633,7 +2677,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2633
2677
|
};
|
|
2634
2678
|
UNSTABLE_defaultItemHeight: number;
|
|
2635
2679
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2636
|
-
orientation:
|
|
2680
|
+
orientation: "horizontal" | "vertical";
|
|
2637
2681
|
indexRef: React.MutableRefObject<number>;
|
|
2638
2682
|
nonInteractiveIds: string[];
|
|
2639
2683
|
isVirtualized: boolean;
|
|
@@ -2649,8 +2693,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2649
2693
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2650
2694
|
placement: import("@popperjs/core").Placement;
|
|
2651
2695
|
id: string;
|
|
2652
|
-
visibility:
|
|
2653
|
-
selectedIds:
|
|
2696
|
+
visibility: "hidden" | "visible";
|
|
2697
|
+
selectedIds: string[] | "all";
|
|
2654
2698
|
unselectedIds: string[];
|
|
2655
2699
|
cursorId: string;
|
|
2656
2700
|
columnCount: number;
|
|
@@ -2663,7 +2707,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2663
2707
|
};
|
|
2664
2708
|
UNSTABLE_defaultItemHeight: number;
|
|
2665
2709
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2666
|
-
orientation:
|
|
2710
|
+
orientation: "horizontal" | "vertical";
|
|
2667
2711
|
indexRef: React.MutableRefObject<number>;
|
|
2668
2712
|
nonInteractiveIds: string[];
|
|
2669
2713
|
isVirtualized: boolean;
|
|
@@ -2677,8 +2721,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2677
2721
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2678
2722
|
placement: import("@popperjs/core").Placement;
|
|
2679
2723
|
id: string;
|
|
2680
|
-
visibility:
|
|
2681
|
-
selectedIds:
|
|
2724
|
+
visibility: "hidden" | "visible";
|
|
2725
|
+
selectedIds: string[] | "all";
|
|
2682
2726
|
unselectedIds: string[];
|
|
2683
2727
|
cursorId: string;
|
|
2684
2728
|
columnCount: number;
|
|
@@ -2691,7 +2735,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2691
2735
|
};
|
|
2692
2736
|
UNSTABLE_defaultItemHeight: number;
|
|
2693
2737
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2694
|
-
orientation:
|
|
2738
|
+
orientation: "horizontal" | "vertical";
|
|
2695
2739
|
indexRef: React.MutableRefObject<number>;
|
|
2696
2740
|
nonInteractiveIds: string[];
|
|
2697
2741
|
isVirtualized: boolean;
|
|
@@ -2705,8 +2749,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2705
2749
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2706
2750
|
placement: import("@popperjs/core").Placement;
|
|
2707
2751
|
id: string;
|
|
2708
|
-
visibility:
|
|
2709
|
-
selectedIds:
|
|
2752
|
+
visibility: "hidden" | "visible";
|
|
2753
|
+
selectedIds: string[] | "all";
|
|
2710
2754
|
unselectedIds: string[];
|
|
2711
2755
|
cursorId: string;
|
|
2712
2756
|
columnCount: number;
|
|
@@ -2719,7 +2763,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2719
2763
|
};
|
|
2720
2764
|
UNSTABLE_defaultItemHeight: number;
|
|
2721
2765
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2722
|
-
orientation:
|
|
2766
|
+
orientation: "horizontal" | "vertical";
|
|
2723
2767
|
indexRef: React.MutableRefObject<number>;
|
|
2724
2768
|
nonInteractiveIds: string[];
|
|
2725
2769
|
isVirtualized: boolean;
|
|
@@ -2733,8 +2777,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2733
2777
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2734
2778
|
placement: import("@popperjs/core").Placement;
|
|
2735
2779
|
id: string;
|
|
2736
|
-
visibility:
|
|
2737
|
-
selectedIds:
|
|
2780
|
+
visibility: "hidden" | "visible";
|
|
2781
|
+
selectedIds: string[] | "all";
|
|
2738
2782
|
unselectedIds: string[];
|
|
2739
2783
|
cursorId: string;
|
|
2740
2784
|
columnCount: number;
|
|
@@ -2747,7 +2791,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2747
2791
|
};
|
|
2748
2792
|
UNSTABLE_defaultItemHeight: number;
|
|
2749
2793
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2750
|
-
orientation:
|
|
2794
|
+
orientation: "horizontal" | "vertical";
|
|
2751
2795
|
indexRef: React.MutableRefObject<number>;
|
|
2752
2796
|
nonInteractiveIds: string[];
|
|
2753
2797
|
isVirtualized: boolean;
|
|
@@ -2761,8 +2805,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2761
2805
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2762
2806
|
placement: import("@popperjs/core").Placement;
|
|
2763
2807
|
id: string;
|
|
2764
|
-
visibility:
|
|
2765
|
-
selectedIds:
|
|
2808
|
+
visibility: "hidden" | "visible";
|
|
2809
|
+
selectedIds: string[] | "all";
|
|
2766
2810
|
unselectedIds: string[];
|
|
2767
2811
|
cursorId: string;
|
|
2768
2812
|
columnCount: number;
|
|
@@ -2775,7 +2819,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2775
2819
|
};
|
|
2776
2820
|
UNSTABLE_defaultItemHeight: number;
|
|
2777
2821
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2778
|
-
orientation:
|
|
2822
|
+
orientation: "horizontal" | "vertical";
|
|
2779
2823
|
indexRef: React.MutableRefObject<number>;
|
|
2780
2824
|
nonInteractiveIds: string[];
|
|
2781
2825
|
isVirtualized: boolean;
|
|
@@ -2789,8 +2833,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2789
2833
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2790
2834
|
placement: import("@popperjs/core").Placement;
|
|
2791
2835
|
id: string;
|
|
2792
|
-
visibility:
|
|
2793
|
-
selectedIds:
|
|
2836
|
+
visibility: "hidden" | "visible";
|
|
2837
|
+
selectedIds: string[] | "all";
|
|
2794
2838
|
unselectedIds: string[];
|
|
2795
2839
|
cursorId: string;
|
|
2796
2840
|
columnCount: number;
|
|
@@ -2803,7 +2847,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2803
2847
|
};
|
|
2804
2848
|
UNSTABLE_defaultItemHeight: number;
|
|
2805
2849
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2806
|
-
orientation:
|
|
2850
|
+
orientation: "horizontal" | "vertical";
|
|
2807
2851
|
indexRef: React.MutableRefObject<number>;
|
|
2808
2852
|
nonInteractiveIds: string[];
|
|
2809
2853
|
isVirtualized: boolean;
|
|
@@ -2817,8 +2861,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2817
2861
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2818
2862
|
placement: import("@popperjs/core").Placement;
|
|
2819
2863
|
id: string;
|
|
2820
|
-
visibility:
|
|
2821
|
-
selectedIds:
|
|
2864
|
+
visibility: "hidden" | "visible";
|
|
2865
|
+
selectedIds: string[] | "all";
|
|
2822
2866
|
unselectedIds: string[];
|
|
2823
2867
|
cursorId: string;
|
|
2824
2868
|
columnCount: number;
|
|
@@ -2831,7 +2875,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2831
2875
|
};
|
|
2832
2876
|
UNSTABLE_defaultItemHeight: number;
|
|
2833
2877
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2834
|
-
orientation:
|
|
2878
|
+
orientation: "horizontal" | "vertical";
|
|
2835
2879
|
indexRef: React.MutableRefObject<number>;
|
|
2836
2880
|
nonInteractiveIds: string[];
|
|
2837
2881
|
isVirtualized: boolean;
|
|
@@ -2845,8 +2889,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2845
2889
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2846
2890
|
placement: import("@popperjs/core").Placement;
|
|
2847
2891
|
id: string;
|
|
2848
|
-
visibility:
|
|
2849
|
-
selectedIds:
|
|
2892
|
+
visibility: "hidden" | "visible";
|
|
2893
|
+
selectedIds: string[] | "all";
|
|
2850
2894
|
unselectedIds: string[];
|
|
2851
2895
|
cursorId: string;
|
|
2852
2896
|
columnCount: number;
|
|
@@ -2859,7 +2903,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2859
2903
|
};
|
|
2860
2904
|
UNSTABLE_defaultItemHeight: number;
|
|
2861
2905
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2862
|
-
orientation:
|
|
2906
|
+
orientation: "horizontal" | "vertical";
|
|
2863
2907
|
indexRef: React.MutableRefObject<number>;
|
|
2864
2908
|
nonInteractiveIds: string[];
|
|
2865
2909
|
isVirtualized: boolean;
|
|
@@ -2873,8 +2917,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2873
2917
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2874
2918
|
placement: import("@popperjs/core").Placement;
|
|
2875
2919
|
id: string;
|
|
2876
|
-
visibility:
|
|
2877
|
-
selectedIds:
|
|
2920
|
+
visibility: "hidden" | "visible";
|
|
2921
|
+
selectedIds: string[] | "all";
|
|
2878
2922
|
unselectedIds: string[];
|
|
2879
2923
|
cursorId: string;
|
|
2880
2924
|
columnCount: number;
|
|
@@ -2887,7 +2931,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2887
2931
|
};
|
|
2888
2932
|
UNSTABLE_defaultItemHeight: number;
|
|
2889
2933
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2890
|
-
orientation:
|
|
2934
|
+
orientation: "horizontal" | "vertical";
|
|
2891
2935
|
indexRef: React.MutableRefObject<number>;
|
|
2892
2936
|
nonInteractiveIds: string[];
|
|
2893
2937
|
isVirtualized: boolean;
|
|
@@ -2901,8 +2945,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2901
2945
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2902
2946
|
placement: import("@popperjs/core").Placement;
|
|
2903
2947
|
id: string;
|
|
2904
|
-
visibility:
|
|
2905
|
-
selectedIds:
|
|
2948
|
+
visibility: "hidden" | "visible";
|
|
2949
|
+
selectedIds: string[] | "all";
|
|
2906
2950
|
unselectedIds: string[];
|
|
2907
2951
|
cursorId: string;
|
|
2908
2952
|
columnCount: number;
|
|
@@ -2915,7 +2959,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2915
2959
|
};
|
|
2916
2960
|
UNSTABLE_defaultItemHeight: number;
|
|
2917
2961
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2918
|
-
orientation:
|
|
2962
|
+
orientation: "horizontal" | "vertical";
|
|
2919
2963
|
indexRef: React.MutableRefObject<number>;
|
|
2920
2964
|
nonInteractiveIds: string[];
|
|
2921
2965
|
isVirtualized: boolean;
|
|
@@ -2929,8 +2973,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2929
2973
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2930
2974
|
placement: import("@popperjs/core").Placement;
|
|
2931
2975
|
id: string;
|
|
2932
|
-
visibility:
|
|
2933
|
-
selectedIds:
|
|
2976
|
+
visibility: "hidden" | "visible";
|
|
2977
|
+
selectedIds: string[] | "all";
|
|
2934
2978
|
unselectedIds: string[];
|
|
2935
2979
|
cursorId: string;
|
|
2936
2980
|
columnCount: number;
|
|
@@ -2943,7 +2987,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2943
2987
|
};
|
|
2944
2988
|
UNSTABLE_defaultItemHeight: number;
|
|
2945
2989
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2946
|
-
orientation:
|
|
2990
|
+
orientation: "horizontal" | "vertical";
|
|
2947
2991
|
indexRef: React.MutableRefObject<number>;
|
|
2948
2992
|
nonInteractiveIds: string[];
|
|
2949
2993
|
isVirtualized: boolean;
|
|
@@ -2959,8 +3003,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2959
3003
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2960
3004
|
placement: import("@popperjs/core").Placement;
|
|
2961
3005
|
id: string;
|
|
2962
|
-
visibility:
|
|
2963
|
-
selectedIds:
|
|
3006
|
+
visibility: "hidden" | "visible";
|
|
3007
|
+
selectedIds: string[] | "all";
|
|
2964
3008
|
unselectedIds: string[];
|
|
2965
3009
|
cursorId: string;
|
|
2966
3010
|
columnCount: number;
|
|
@@ -2973,7 +3017,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2973
3017
|
};
|
|
2974
3018
|
UNSTABLE_defaultItemHeight: number;
|
|
2975
3019
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2976
|
-
orientation:
|
|
3020
|
+
orientation: "horizontal" | "vertical";
|
|
2977
3021
|
indexRef: React.MutableRefObject<number>;
|
|
2978
3022
|
nonInteractiveIds: string[];
|
|
2979
3023
|
isVirtualized: boolean;
|
|
@@ -2989,8 +3033,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2989
3033
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2990
3034
|
placement: import("@popperjs/core").Placement;
|
|
2991
3035
|
id: string;
|
|
2992
|
-
visibility:
|
|
2993
|
-
selectedIds:
|
|
3036
|
+
visibility: "hidden" | "visible";
|
|
3037
|
+
selectedIds: string[] | "all";
|
|
2994
3038
|
unselectedIds: string[];
|
|
2995
3039
|
cursorId: string;
|
|
2996
3040
|
columnCount: number;
|
|
@@ -3003,7 +3047,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3003
3047
|
};
|
|
3004
3048
|
UNSTABLE_defaultItemHeight: number;
|
|
3005
3049
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3006
|
-
orientation:
|
|
3050
|
+
orientation: "horizontal" | "vertical";
|
|
3007
3051
|
indexRef: React.MutableRefObject<number>;
|
|
3008
3052
|
nonInteractiveIds: string[];
|
|
3009
3053
|
isVirtualized: boolean;
|
|
@@ -3018,8 +3062,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3018
3062
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3019
3063
|
placement: import("@popperjs/core").Placement;
|
|
3020
3064
|
id: string;
|
|
3021
|
-
visibility:
|
|
3022
|
-
selectedIds:
|
|
3065
|
+
visibility: "hidden" | "visible";
|
|
3066
|
+
selectedIds: string[] | "all";
|
|
3023
3067
|
unselectedIds: string[];
|
|
3024
3068
|
cursorId: string;
|
|
3025
3069
|
columnCount: number;
|
|
@@ -3032,7 +3076,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3032
3076
|
};
|
|
3033
3077
|
UNSTABLE_defaultItemHeight: number;
|
|
3034
3078
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3035
|
-
orientation:
|
|
3079
|
+
orientation: "horizontal" | "vertical";
|
|
3036
3080
|
indexRef: React.MutableRefObject<number>;
|
|
3037
3081
|
nonInteractiveIds: string[];
|
|
3038
3082
|
isVirtualized: boolean;
|
|
@@ -3078,7 +3122,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3078
3122
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3079
3123
|
getId: (item: any) => string;
|
|
3080
3124
|
}> & {
|
|
3081
|
-
|
|
3125
|
+
Target: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3082
3126
|
state: {
|
|
3083
3127
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3084
3128
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3086,8 +3130,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3086
3130
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3087
3131
|
placement: import("@popperjs/core").Placement;
|
|
3088
3132
|
id: string;
|
|
3089
|
-
visibility:
|
|
3090
|
-
selectedIds:
|
|
3133
|
+
visibility: "hidden" | "visible";
|
|
3134
|
+
selectedIds: string[] | "all";
|
|
3091
3135
|
unselectedIds: string[];
|
|
3092
3136
|
cursorId: string;
|
|
3093
3137
|
columnCount: number;
|
|
@@ -3100,7 +3144,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3100
3144
|
};
|
|
3101
3145
|
UNSTABLE_defaultItemHeight: number;
|
|
3102
3146
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3103
|
-
orientation:
|
|
3147
|
+
orientation: "horizontal" | "vertical";
|
|
3104
3148
|
indexRef: React.MutableRefObject<number>;
|
|
3105
3149
|
nonInteractiveIds: string[];
|
|
3106
3150
|
isVirtualized: boolean;
|
|
@@ -3146,7 +3190,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3146
3190
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3147
3191
|
getId: (item: any) => string;
|
|
3148
3192
|
}>;
|
|
3149
|
-
|
|
3193
|
+
Card: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuCard").MenuCardProps, {
|
|
3150
3194
|
state: {
|
|
3151
3195
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3152
3196
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3154,8 +3198,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3154
3198
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3155
3199
|
placement: import("@popperjs/core").Placement;
|
|
3156
3200
|
id: string;
|
|
3157
|
-
visibility:
|
|
3158
|
-
selectedIds:
|
|
3201
|
+
visibility: "hidden" | "visible";
|
|
3202
|
+
selectedIds: string[] | "all";
|
|
3159
3203
|
unselectedIds: string[];
|
|
3160
3204
|
cursorId: string;
|
|
3161
3205
|
columnCount: number;
|
|
@@ -3168,7 +3212,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3168
3212
|
};
|
|
3169
3213
|
UNSTABLE_defaultItemHeight: number;
|
|
3170
3214
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3171
|
-
orientation:
|
|
3215
|
+
orientation: "horizontal" | "vertical";
|
|
3172
3216
|
indexRef: React.MutableRefObject<number>;
|
|
3173
3217
|
nonInteractiveIds: string[];
|
|
3174
3218
|
isVirtualized: boolean;
|
|
@@ -3214,7 +3258,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3214
3258
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3215
3259
|
getId: (item: any) => string;
|
|
3216
3260
|
}>;
|
|
3217
|
-
|
|
3261
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuList").MenuListProps<any>, {
|
|
3218
3262
|
state: {
|
|
3219
3263
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3220
3264
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3222,8 +3266,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3222
3266
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3223
3267
|
placement: import("@popperjs/core").Placement;
|
|
3224
3268
|
id: string;
|
|
3225
|
-
visibility:
|
|
3226
|
-
selectedIds:
|
|
3269
|
+
visibility: "hidden" | "visible";
|
|
3270
|
+
selectedIds: string[] | "all";
|
|
3227
3271
|
unselectedIds: string[];
|
|
3228
3272
|
cursorId: string;
|
|
3229
3273
|
columnCount: number;
|
|
@@ -3236,7 +3280,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3236
3280
|
};
|
|
3237
3281
|
UNSTABLE_defaultItemHeight: number;
|
|
3238
3282
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3239
|
-
orientation:
|
|
3283
|
+
orientation: "horizontal" | "vertical";
|
|
3240
3284
|
indexRef: React.MutableRefObject<number>;
|
|
3241
3285
|
nonInteractiveIds: string[];
|
|
3242
3286
|
isVirtualized: boolean;
|
|
@@ -3281,15 +3325,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3281
3325
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
3282
3326
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3283
3327
|
getId: (item: any) => string;
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
|
-
Text: import("@emotion/styled").StyledComponent<{
|
|
3287
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
3288
|
-
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;
|
|
3289
|
-
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3290
|
-
};
|
|
3291
|
-
Divider: import("../../common").ElementComponent<"hr", unknown>;
|
|
3292
|
-
Target: import("../../common").ElementComponentM<import("../../common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3328
|
+
}>;
|
|
3329
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("../../menu/lib/MenuItem").MenuItemProps, {
|
|
3293
3330
|
state: {
|
|
3294
3331
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3295
3332
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3297,8 +3334,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3297
3334
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3298
3335
|
placement: import("@popperjs/core").Placement;
|
|
3299
3336
|
id: string;
|
|
3300
|
-
visibility:
|
|
3301
|
-
selectedIds:
|
|
3337
|
+
visibility: "hidden" | "visible";
|
|
3338
|
+
selectedIds: string[] | "all";
|
|
3302
3339
|
unselectedIds: string[];
|
|
3303
3340
|
cursorId: string;
|
|
3304
3341
|
columnCount: number;
|
|
@@ -3311,7 +3348,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3311
3348
|
};
|
|
3312
3349
|
UNSTABLE_defaultItemHeight: number;
|
|
3313
3350
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3314
|
-
orientation:
|
|
3351
|
+
orientation: "horizontal" | "vertical";
|
|
3315
3352
|
indexRef: React.MutableRefObject<number>;
|
|
3316
3353
|
nonInteractiveIds: string[];
|
|
3317
3354
|
isVirtualized: boolean;
|
|
@@ -3356,8 +3393,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3356
3393
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
3357
3394
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3358
3395
|
getId: (item: any) => string;
|
|
3359
|
-
}
|
|
3360
|
-
|
|
3396
|
+
}> & {
|
|
3397
|
+
Icon: import("@workday/canvas-kit-react/common").ElementComponent<"span", import("../..").SystemIconProps>;
|
|
3398
|
+
Text: import("@emotion/styled").StyledComponent<{
|
|
3399
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
3400
|
+
as?: React.ElementType<any> | undefined;
|
|
3401
|
+
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3402
|
+
};
|
|
3403
|
+
Divider: import("@workday/canvas-kit-react/common").ElementComponent<"hr", unknown>;
|
|
3404
|
+
TargetContext: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3361
3405
|
state: {
|
|
3362
3406
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3363
3407
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3365,8 +3409,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3365
3409
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3366
3410
|
placement: import("@popperjs/core").Placement;
|
|
3367
3411
|
id: string;
|
|
3368
|
-
visibility:
|
|
3369
|
-
selectedIds:
|
|
3412
|
+
visibility: "hidden" | "visible";
|
|
3413
|
+
selectedIds: string[] | "all";
|
|
3370
3414
|
unselectedIds: string[];
|
|
3371
3415
|
cursorId: string;
|
|
3372
3416
|
columnCount: number;
|
|
@@ -3379,7 +3423,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3379
3423
|
};
|
|
3380
3424
|
UNSTABLE_defaultItemHeight: number;
|
|
3381
3425
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3382
|
-
orientation:
|
|
3426
|
+
orientation: "horizontal" | "vertical";
|
|
3383
3427
|
indexRef: React.MutableRefObject<number>;
|
|
3384
3428
|
nonInteractiveIds: string[];
|
|
3385
3429
|
isVirtualized: boolean;
|
|
@@ -3425,7 +3469,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3425
3469
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3426
3470
|
getId: (item: any) => string;
|
|
3427
3471
|
}>;
|
|
3428
|
-
Popper: import("
|
|
3472
|
+
Popper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuPopper").MenuPopperProps, {
|
|
3429
3473
|
state: {
|
|
3430
3474
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3431
3475
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3433,8 +3477,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3433
3477
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3434
3478
|
placement: import("@popperjs/core").Placement;
|
|
3435
3479
|
id: string;
|
|
3436
|
-
visibility:
|
|
3437
|
-
selectedIds:
|
|
3480
|
+
visibility: "hidden" | "visible";
|
|
3481
|
+
selectedIds: string[] | "all";
|
|
3438
3482
|
unselectedIds: string[];
|
|
3439
3483
|
cursorId: string;
|
|
3440
3484
|
columnCount: number;
|
|
@@ -3447,7 +3491,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3447
3491
|
};
|
|
3448
3492
|
UNSTABLE_defaultItemHeight: number;
|
|
3449
3493
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3450
|
-
orientation:
|
|
3494
|
+
orientation: "horizontal" | "vertical";
|
|
3451
3495
|
indexRef: React.MutableRefObject<number>;
|
|
3452
3496
|
nonInteractiveIds: string[];
|
|
3453
3497
|
isVirtualized: boolean;
|