@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
|
@@ -30,7 +30,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
30
30
|
itemWidthCache: Record<string, number>;
|
|
31
31
|
containerWidth: number;
|
|
32
32
|
overflowTargetWidth: number;
|
|
33
|
-
selectedIds:
|
|
33
|
+
selectedIds: string[] | "all";
|
|
34
34
|
unselectedIds: string[];
|
|
35
35
|
cursorId: string;
|
|
36
36
|
columnCount: number;
|
|
@@ -44,7 +44,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
44
44
|
UNSTABLE_defaultItemHeight: number;
|
|
45
45
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
46
46
|
id: string;
|
|
47
|
-
orientation:
|
|
47
|
+
orientation: "horizontal" | "vertical";
|
|
48
48
|
indexRef: React.MutableRefObject<number>;
|
|
49
49
|
nonInteractiveIds: string[];
|
|
50
50
|
isVirtualized: boolean;
|
|
@@ -57,7 +57,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
57
57
|
itemWidthCache: Record<string, number>;
|
|
58
58
|
containerWidth: number;
|
|
59
59
|
overflowTargetWidth: number;
|
|
60
|
-
selectedIds:
|
|
60
|
+
selectedIds: string[] | "all";
|
|
61
61
|
unselectedIds: string[];
|
|
62
62
|
cursorId: string;
|
|
63
63
|
columnCount: number;
|
|
@@ -71,7 +71,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
71
71
|
UNSTABLE_defaultItemHeight: number;
|
|
72
72
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
73
73
|
id: string;
|
|
74
|
-
orientation:
|
|
74
|
+
orientation: "horizontal" | "vertical";
|
|
75
75
|
indexRef: React.MutableRefObject<number>;
|
|
76
76
|
nonInteractiveIds: string[];
|
|
77
77
|
isVirtualized: boolean;
|
|
@@ -84,7 +84,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
84
84
|
itemWidthCache: Record<string, number>;
|
|
85
85
|
containerWidth: number;
|
|
86
86
|
overflowTargetWidth: number;
|
|
87
|
-
selectedIds:
|
|
87
|
+
selectedIds: string[] | "all";
|
|
88
88
|
unselectedIds: string[];
|
|
89
89
|
cursorId: string;
|
|
90
90
|
columnCount: number;
|
|
@@ -98,7 +98,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
98
98
|
UNSTABLE_defaultItemHeight: number;
|
|
99
99
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
100
100
|
id: string;
|
|
101
|
-
orientation:
|
|
101
|
+
orientation: "horizontal" | "vertical";
|
|
102
102
|
indexRef: React.MutableRefObject<number>;
|
|
103
103
|
nonInteractiveIds: string[];
|
|
104
104
|
isVirtualized: boolean;
|
|
@@ -112,7 +112,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
112
112
|
itemWidthCache: Record<string, number>;
|
|
113
113
|
containerWidth: number;
|
|
114
114
|
overflowTargetWidth: number;
|
|
115
|
-
selectedIds:
|
|
115
|
+
selectedIds: string[] | "all";
|
|
116
116
|
unselectedIds: string[];
|
|
117
117
|
cursorId: string;
|
|
118
118
|
columnCount: number;
|
|
@@ -126,7 +126,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
126
126
|
UNSTABLE_defaultItemHeight: number;
|
|
127
127
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
128
128
|
id: string;
|
|
129
|
-
orientation:
|
|
129
|
+
orientation: "horizontal" | "vertical";
|
|
130
130
|
indexRef: React.MutableRefObject<number>;
|
|
131
131
|
nonInteractiveIds: string[];
|
|
132
132
|
isVirtualized: boolean;
|
|
@@ -139,7 +139,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
139
139
|
itemWidthCache: Record<string, number>;
|
|
140
140
|
containerWidth: number;
|
|
141
141
|
overflowTargetWidth: number;
|
|
142
|
-
selectedIds:
|
|
142
|
+
selectedIds: string[] | "all";
|
|
143
143
|
unselectedIds: string[];
|
|
144
144
|
cursorId: string;
|
|
145
145
|
columnCount: number;
|
|
@@ -153,7 +153,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
153
153
|
UNSTABLE_defaultItemHeight: number;
|
|
154
154
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
155
155
|
id: string;
|
|
156
|
-
orientation:
|
|
156
|
+
orientation: "horizontal" | "vertical";
|
|
157
157
|
indexRef: React.MutableRefObject<number>;
|
|
158
158
|
nonInteractiveIds: string[];
|
|
159
159
|
isVirtualized: boolean;
|
|
@@ -166,7 +166,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
166
166
|
itemWidthCache: Record<string, number>;
|
|
167
167
|
containerWidth: number;
|
|
168
168
|
overflowTargetWidth: number;
|
|
169
|
-
selectedIds:
|
|
169
|
+
selectedIds: string[] | "all";
|
|
170
170
|
unselectedIds: string[];
|
|
171
171
|
cursorId: string;
|
|
172
172
|
columnCount: number;
|
|
@@ -180,7 +180,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
180
180
|
UNSTABLE_defaultItemHeight: number;
|
|
181
181
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
182
182
|
id: string;
|
|
183
|
-
orientation:
|
|
183
|
+
orientation: "horizontal" | "vertical";
|
|
184
184
|
indexRef: React.MutableRefObject<number>;
|
|
185
185
|
nonInteractiveIds: string[];
|
|
186
186
|
isVirtualized: boolean;
|
|
@@ -193,7 +193,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
193
193
|
itemWidthCache: Record<string, number>;
|
|
194
194
|
containerWidth: number;
|
|
195
195
|
overflowTargetWidth: number;
|
|
196
|
-
selectedIds:
|
|
196
|
+
selectedIds: string[] | "all";
|
|
197
197
|
unselectedIds: string[];
|
|
198
198
|
cursorId: string;
|
|
199
199
|
columnCount: number;
|
|
@@ -207,7 +207,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
207
207
|
UNSTABLE_defaultItemHeight: number;
|
|
208
208
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
209
209
|
id: string;
|
|
210
|
-
orientation:
|
|
210
|
+
orientation: "horizontal" | "vertical";
|
|
211
211
|
indexRef: React.MutableRefObject<number>;
|
|
212
212
|
nonInteractiveIds: string[];
|
|
213
213
|
isVirtualized: boolean;
|
|
@@ -218,7 +218,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
218
218
|
itemWidthCache: Record<string, number>;
|
|
219
219
|
containerWidth: number;
|
|
220
220
|
overflowTargetWidth: number;
|
|
221
|
-
selectedIds:
|
|
221
|
+
selectedIds: string[] | "all";
|
|
222
222
|
unselectedIds: string[];
|
|
223
223
|
cursorId: string;
|
|
224
224
|
columnCount: number;
|
|
@@ -232,7 +232,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
232
232
|
UNSTABLE_defaultItemHeight: number;
|
|
233
233
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
234
234
|
id: string;
|
|
235
|
-
orientation:
|
|
235
|
+
orientation: "horizontal" | "vertical";
|
|
236
236
|
indexRef: React.MutableRefObject<number>;
|
|
237
237
|
nonInteractiveIds: string[];
|
|
238
238
|
isVirtualized: boolean;
|
|
@@ -243,7 +243,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
243
243
|
itemWidthCache: Record<string, number>;
|
|
244
244
|
containerWidth: number;
|
|
245
245
|
overflowTargetWidth: number;
|
|
246
|
-
selectedIds:
|
|
246
|
+
selectedIds: string[] | "all";
|
|
247
247
|
unselectedIds: string[];
|
|
248
248
|
cursorId: string;
|
|
249
249
|
columnCount: number;
|
|
@@ -257,7 +257,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
257
257
|
UNSTABLE_defaultItemHeight: number;
|
|
258
258
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
259
259
|
id: string;
|
|
260
|
-
orientation:
|
|
260
|
+
orientation: "horizontal" | "vertical";
|
|
261
261
|
indexRef: React.MutableRefObject<number>;
|
|
262
262
|
nonInteractiveIds: string[];
|
|
263
263
|
isVirtualized: boolean;
|
|
@@ -271,7 +271,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
271
271
|
itemWidthCache: Record<string, number>;
|
|
272
272
|
containerWidth: number;
|
|
273
273
|
overflowTargetWidth: number;
|
|
274
|
-
selectedIds:
|
|
274
|
+
selectedIds: string[] | "all";
|
|
275
275
|
unselectedIds: string[];
|
|
276
276
|
cursorId: string;
|
|
277
277
|
columnCount: number;
|
|
@@ -285,7 +285,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
285
285
|
UNSTABLE_defaultItemHeight: number;
|
|
286
286
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
287
287
|
id: string;
|
|
288
|
-
orientation:
|
|
288
|
+
orientation: "horizontal" | "vertical";
|
|
289
289
|
indexRef: React.MutableRefObject<number>;
|
|
290
290
|
nonInteractiveIds: string[];
|
|
291
291
|
isVirtualized: boolean;
|
|
@@ -298,7 +298,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
298
298
|
itemWidthCache: Record<string, number>;
|
|
299
299
|
containerWidth: number;
|
|
300
300
|
overflowTargetWidth: number;
|
|
301
|
-
selectedIds:
|
|
301
|
+
selectedIds: string[] | "all";
|
|
302
302
|
unselectedIds: string[];
|
|
303
303
|
cursorId: string;
|
|
304
304
|
columnCount: number;
|
|
@@ -312,7 +312,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
312
312
|
UNSTABLE_defaultItemHeight: number;
|
|
313
313
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
314
314
|
id: string;
|
|
315
|
-
orientation:
|
|
315
|
+
orientation: "horizontal" | "vertical";
|
|
316
316
|
indexRef: React.MutableRefObject<number>;
|
|
317
317
|
nonInteractiveIds: string[];
|
|
318
318
|
isVirtualized: boolean;
|
|
@@ -323,7 +323,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
323
323
|
itemWidthCache: Record<string, number>;
|
|
324
324
|
containerWidth: number;
|
|
325
325
|
overflowTargetWidth: number;
|
|
326
|
-
selectedIds:
|
|
326
|
+
selectedIds: string[] | "all";
|
|
327
327
|
unselectedIds: string[];
|
|
328
328
|
cursorId: string;
|
|
329
329
|
columnCount: number;
|
|
@@ -337,7 +337,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
337
337
|
UNSTABLE_defaultItemHeight: number;
|
|
338
338
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
339
339
|
id: string;
|
|
340
|
-
orientation:
|
|
340
|
+
orientation: "horizontal" | "vertical";
|
|
341
341
|
indexRef: React.MutableRefObject<number>;
|
|
342
342
|
nonInteractiveIds: string[];
|
|
343
343
|
isVirtualized: boolean;
|
|
@@ -348,7 +348,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
348
348
|
itemWidthCache: Record<string, number>;
|
|
349
349
|
containerWidth: number;
|
|
350
350
|
overflowTargetWidth: number;
|
|
351
|
-
selectedIds:
|
|
351
|
+
selectedIds: string[] | "all";
|
|
352
352
|
unselectedIds: string[];
|
|
353
353
|
cursorId: string;
|
|
354
354
|
columnCount: number;
|
|
@@ -362,7 +362,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
362
362
|
UNSTABLE_defaultItemHeight: number;
|
|
363
363
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
364
364
|
id: string;
|
|
365
|
-
orientation:
|
|
365
|
+
orientation: "horizontal" | "vertical";
|
|
366
366
|
indexRef: React.MutableRefObject<number>;
|
|
367
367
|
nonInteractiveIds: string[];
|
|
368
368
|
isVirtualized: boolean;
|
|
@@ -373,7 +373,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
373
373
|
itemWidthCache: Record<string, number>;
|
|
374
374
|
containerWidth: number;
|
|
375
375
|
overflowTargetWidth: number;
|
|
376
|
-
selectedIds:
|
|
376
|
+
selectedIds: string[] | "all";
|
|
377
377
|
unselectedIds: string[];
|
|
378
378
|
cursorId: string;
|
|
379
379
|
columnCount: number;
|
|
@@ -387,7 +387,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
387
387
|
UNSTABLE_defaultItemHeight: number;
|
|
388
388
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
389
389
|
id: string;
|
|
390
|
-
orientation:
|
|
390
|
+
orientation: "horizontal" | "vertical";
|
|
391
391
|
indexRef: React.MutableRefObject<number>;
|
|
392
392
|
nonInteractiveIds: string[];
|
|
393
393
|
isVirtualized: boolean;
|
|
@@ -398,7 +398,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
398
398
|
itemWidthCache: Record<string, number>;
|
|
399
399
|
containerWidth: number;
|
|
400
400
|
overflowTargetWidth: number;
|
|
401
|
-
selectedIds:
|
|
401
|
+
selectedIds: string[] | "all";
|
|
402
402
|
unselectedIds: string[];
|
|
403
403
|
cursorId: string;
|
|
404
404
|
columnCount: number;
|
|
@@ -412,7 +412,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
412
412
|
UNSTABLE_defaultItemHeight: number;
|
|
413
413
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
414
414
|
id: string;
|
|
415
|
-
orientation:
|
|
415
|
+
orientation: "horizontal" | "vertical";
|
|
416
416
|
indexRef: React.MutableRefObject<number>;
|
|
417
417
|
nonInteractiveIds: string[];
|
|
418
418
|
isVirtualized: boolean;
|
|
@@ -423,7 +423,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
423
423
|
itemWidthCache: Record<string, number>;
|
|
424
424
|
containerWidth: number;
|
|
425
425
|
overflowTargetWidth: number;
|
|
426
|
-
selectedIds:
|
|
426
|
+
selectedIds: string[] | "all";
|
|
427
427
|
unselectedIds: string[];
|
|
428
428
|
cursorId: string;
|
|
429
429
|
columnCount: number;
|
|
@@ -437,7 +437,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
437
437
|
UNSTABLE_defaultItemHeight: number;
|
|
438
438
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
439
439
|
id: string;
|
|
440
|
-
orientation:
|
|
440
|
+
orientation: "horizontal" | "vertical";
|
|
441
441
|
indexRef: React.MutableRefObject<number>;
|
|
442
442
|
nonInteractiveIds: string[];
|
|
443
443
|
isVirtualized: boolean;
|
|
@@ -448,7 +448,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
448
448
|
itemWidthCache: Record<string, number>;
|
|
449
449
|
containerWidth: number;
|
|
450
450
|
overflowTargetWidth: number;
|
|
451
|
-
selectedIds:
|
|
451
|
+
selectedIds: string[] | "all";
|
|
452
452
|
unselectedIds: string[];
|
|
453
453
|
cursorId: string;
|
|
454
454
|
columnCount: number;
|
|
@@ -462,7 +462,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
462
462
|
UNSTABLE_defaultItemHeight: number;
|
|
463
463
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
464
464
|
id: string;
|
|
465
|
-
orientation:
|
|
465
|
+
orientation: "horizontal" | "vertical";
|
|
466
466
|
indexRef: React.MutableRefObject<number>;
|
|
467
467
|
nonInteractiveIds: string[];
|
|
468
468
|
isVirtualized: boolean;
|
|
@@ -473,7 +473,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
473
473
|
itemWidthCache: Record<string, number>;
|
|
474
474
|
containerWidth: number;
|
|
475
475
|
overflowTargetWidth: number;
|
|
476
|
-
selectedIds:
|
|
476
|
+
selectedIds: string[] | "all";
|
|
477
477
|
unselectedIds: string[];
|
|
478
478
|
cursorId: string;
|
|
479
479
|
columnCount: number;
|
|
@@ -487,7 +487,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
487
487
|
UNSTABLE_defaultItemHeight: number;
|
|
488
488
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
489
489
|
id: string;
|
|
490
|
-
orientation:
|
|
490
|
+
orientation: "horizontal" | "vertical";
|
|
491
491
|
indexRef: React.MutableRefObject<number>;
|
|
492
492
|
nonInteractiveIds: string[];
|
|
493
493
|
isVirtualized: boolean;
|
|
@@ -498,7 +498,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
498
498
|
itemWidthCache: Record<string, number>;
|
|
499
499
|
containerWidth: number;
|
|
500
500
|
overflowTargetWidth: number;
|
|
501
|
-
selectedIds:
|
|
501
|
+
selectedIds: string[] | "all";
|
|
502
502
|
unselectedIds: string[];
|
|
503
503
|
cursorId: string;
|
|
504
504
|
columnCount: number;
|
|
@@ -512,7 +512,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
512
512
|
UNSTABLE_defaultItemHeight: number;
|
|
513
513
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
514
514
|
id: string;
|
|
515
|
-
orientation:
|
|
515
|
+
orientation: "horizontal" | "vertical";
|
|
516
516
|
indexRef: React.MutableRefObject<number>;
|
|
517
517
|
nonInteractiveIds: string[];
|
|
518
518
|
isVirtualized: boolean;
|
|
@@ -523,7 +523,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
523
523
|
itemWidthCache: Record<string, number>;
|
|
524
524
|
containerWidth: number;
|
|
525
525
|
overflowTargetWidth: number;
|
|
526
|
-
selectedIds:
|
|
526
|
+
selectedIds: string[] | "all";
|
|
527
527
|
unselectedIds: string[];
|
|
528
528
|
cursorId: string;
|
|
529
529
|
columnCount: number;
|
|
@@ -537,7 +537,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
537
537
|
UNSTABLE_defaultItemHeight: number;
|
|
538
538
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
539
539
|
id: string;
|
|
540
|
-
orientation:
|
|
540
|
+
orientation: "horizontal" | "vertical";
|
|
541
541
|
indexRef: React.MutableRefObject<number>;
|
|
542
542
|
nonInteractiveIds: string[];
|
|
543
543
|
isVirtualized: boolean;
|
|
@@ -548,7 +548,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
548
548
|
itemWidthCache: Record<string, number>;
|
|
549
549
|
containerWidth: number;
|
|
550
550
|
overflowTargetWidth: number;
|
|
551
|
-
selectedIds:
|
|
551
|
+
selectedIds: string[] | "all";
|
|
552
552
|
unselectedIds: string[];
|
|
553
553
|
cursorId: string;
|
|
554
554
|
columnCount: number;
|
|
@@ -562,7 +562,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
562
562
|
UNSTABLE_defaultItemHeight: number;
|
|
563
563
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
564
564
|
id: string;
|
|
565
|
-
orientation:
|
|
565
|
+
orientation: "horizontal" | "vertical";
|
|
566
566
|
indexRef: React.MutableRefObject<number>;
|
|
567
567
|
nonInteractiveIds: string[];
|
|
568
568
|
isVirtualized: boolean;
|
|
@@ -575,7 +575,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
575
575
|
itemWidthCache: Record<string, number>;
|
|
576
576
|
containerWidth: number;
|
|
577
577
|
overflowTargetWidth: number;
|
|
578
|
-
selectedIds:
|
|
578
|
+
selectedIds: string[] | "all";
|
|
579
579
|
unselectedIds: string[];
|
|
580
580
|
cursorId: string;
|
|
581
581
|
columnCount: number;
|
|
@@ -589,7 +589,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
589
589
|
UNSTABLE_defaultItemHeight: number;
|
|
590
590
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
591
591
|
id: string;
|
|
592
|
-
orientation:
|
|
592
|
+
orientation: "horizontal" | "vertical";
|
|
593
593
|
indexRef: React.MutableRefObject<number>;
|
|
594
594
|
nonInteractiveIds: string[];
|
|
595
595
|
isVirtualized: boolean;
|
|
@@ -602,7 +602,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
602
602
|
itemWidthCache: Record<string, number>;
|
|
603
603
|
containerWidth: number;
|
|
604
604
|
overflowTargetWidth: number;
|
|
605
|
-
selectedIds:
|
|
605
|
+
selectedIds: string[] | "all";
|
|
606
606
|
unselectedIds: string[];
|
|
607
607
|
cursorId: string;
|
|
608
608
|
columnCount: number;
|
|
@@ -616,7 +616,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
616
616
|
UNSTABLE_defaultItemHeight: number;
|
|
617
617
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
618
618
|
id: string;
|
|
619
|
-
orientation:
|
|
619
|
+
orientation: "horizontal" | "vertical";
|
|
620
620
|
indexRef: React.MutableRefObject<number>;
|
|
621
621
|
nonInteractiveIds: string[];
|
|
622
622
|
isVirtualized: boolean;
|
|
@@ -630,7 +630,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
630
630
|
itemWidthCache: Record<string, number>;
|
|
631
631
|
containerWidth: number;
|
|
632
632
|
overflowTargetWidth: number;
|
|
633
|
-
selectedIds:
|
|
633
|
+
selectedIds: string[] | "all";
|
|
634
634
|
unselectedIds: string[];
|
|
635
635
|
cursorId: string;
|
|
636
636
|
columnCount: number;
|
|
@@ -644,7 +644,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
644
644
|
UNSTABLE_defaultItemHeight: number;
|
|
645
645
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
646
646
|
id: string;
|
|
647
|
-
orientation:
|
|
647
|
+
orientation: "horizontal" | "vertical";
|
|
648
648
|
indexRef: React.MutableRefObject<number>;
|
|
649
649
|
nonInteractiveIds: string[];
|
|
650
650
|
isVirtualized: boolean;
|
|
@@ -657,7 +657,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
657
657
|
itemWidthCache: Record<string, number>;
|
|
658
658
|
containerWidth: number;
|
|
659
659
|
overflowTargetWidth: number;
|
|
660
|
-
selectedIds:
|
|
660
|
+
selectedIds: string[] | "all";
|
|
661
661
|
unselectedIds: string[];
|
|
662
662
|
cursorId: string;
|
|
663
663
|
columnCount: number;
|
|
@@ -671,7 +671,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
671
671
|
UNSTABLE_defaultItemHeight: number;
|
|
672
672
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
673
673
|
id: string;
|
|
674
|
-
orientation:
|
|
674
|
+
orientation: "horizontal" | "vertical";
|
|
675
675
|
indexRef: React.MutableRefObject<number>;
|
|
676
676
|
nonInteractiveIds: string[];
|
|
677
677
|
isVirtualized: boolean;
|
|
@@ -684,7 +684,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
684
684
|
itemWidthCache: Record<string, number>;
|
|
685
685
|
containerWidth: number;
|
|
686
686
|
overflowTargetWidth: number;
|
|
687
|
-
selectedIds:
|
|
687
|
+
selectedIds: string[] | "all";
|
|
688
688
|
unselectedIds: string[];
|
|
689
689
|
cursorId: string;
|
|
690
690
|
columnCount: number;
|
|
@@ -698,7 +698,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
698
698
|
UNSTABLE_defaultItemHeight: number;
|
|
699
699
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
700
700
|
id: string;
|
|
701
|
-
orientation:
|
|
701
|
+
orientation: "horizontal" | "vertical";
|
|
702
702
|
indexRef: React.MutableRefObject<number>;
|
|
703
703
|
nonInteractiveIds: string[];
|
|
704
704
|
isVirtualized: boolean;
|
|
@@ -712,7 +712,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
712
712
|
itemWidthCache: Record<string, number>;
|
|
713
713
|
containerWidth: number;
|
|
714
714
|
overflowTargetWidth: number;
|
|
715
|
-
selectedIds:
|
|
715
|
+
selectedIds: string[] | "all";
|
|
716
716
|
unselectedIds: string[];
|
|
717
717
|
cursorId: string;
|
|
718
718
|
columnCount: number;
|
|
@@ -726,7 +726,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
726
726
|
UNSTABLE_defaultItemHeight: number;
|
|
727
727
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
728
728
|
id: string;
|
|
729
|
-
orientation:
|
|
729
|
+
orientation: "horizontal" | "vertical";
|
|
730
730
|
indexRef: React.MutableRefObject<number>;
|
|
731
731
|
nonInteractiveIds: string[];
|
|
732
732
|
isVirtualized: boolean;
|
|
@@ -739,7 +739,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
739
739
|
itemWidthCache: Record<string, number>;
|
|
740
740
|
containerWidth: number;
|
|
741
741
|
overflowTargetWidth: number;
|
|
742
|
-
selectedIds:
|
|
742
|
+
selectedIds: string[] | "all";
|
|
743
743
|
unselectedIds: string[];
|
|
744
744
|
cursorId: string;
|
|
745
745
|
columnCount: number;
|
|
@@ -753,7 +753,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
753
753
|
UNSTABLE_defaultItemHeight: number;
|
|
754
754
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
755
755
|
id: string;
|
|
756
|
-
orientation:
|
|
756
|
+
orientation: "horizontal" | "vertical";
|
|
757
757
|
indexRef: React.MutableRefObject<number>;
|
|
758
758
|
nonInteractiveIds: string[];
|
|
759
759
|
isVirtualized: boolean;
|
|
@@ -766,7 +766,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
766
766
|
itemWidthCache: Record<string, number>;
|
|
767
767
|
containerWidth: number;
|
|
768
768
|
overflowTargetWidth: number;
|
|
769
|
-
selectedIds:
|
|
769
|
+
selectedIds: string[] | "all";
|
|
770
770
|
unselectedIds: string[];
|
|
771
771
|
cursorId: string;
|
|
772
772
|
columnCount: number;
|
|
@@ -780,7 +780,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
780
780
|
UNSTABLE_defaultItemHeight: number;
|
|
781
781
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
782
782
|
id: string;
|
|
783
|
-
orientation:
|
|
783
|
+
orientation: "horizontal" | "vertical";
|
|
784
784
|
indexRef: React.MutableRefObject<number>;
|
|
785
785
|
nonInteractiveIds: string[];
|
|
786
786
|
isVirtualized: boolean;
|
|
@@ -793,7 +793,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
793
793
|
itemWidthCache: Record<string, number>;
|
|
794
794
|
containerWidth: number;
|
|
795
795
|
overflowTargetWidth: number;
|
|
796
|
-
selectedIds:
|
|
796
|
+
selectedIds: string[] | "all";
|
|
797
797
|
unselectedIds: string[];
|
|
798
798
|
cursorId: string;
|
|
799
799
|
columnCount: number;
|
|
@@ -807,7 +807,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
807
807
|
UNSTABLE_defaultItemHeight: number;
|
|
808
808
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
809
809
|
id: string;
|
|
810
|
-
orientation:
|
|
810
|
+
orientation: "horizontal" | "vertical";
|
|
811
811
|
indexRef: React.MutableRefObject<number>;
|
|
812
812
|
nonInteractiveIds: string[];
|
|
813
813
|
isVirtualized: boolean;
|
|
@@ -818,7 +818,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
818
818
|
itemWidthCache: Record<string, number>;
|
|
819
819
|
containerWidth: number;
|
|
820
820
|
overflowTargetWidth: number;
|
|
821
|
-
selectedIds:
|
|
821
|
+
selectedIds: string[] | "all";
|
|
822
822
|
unselectedIds: string[];
|
|
823
823
|
cursorId: string;
|
|
824
824
|
columnCount: number;
|
|
@@ -832,7 +832,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
832
832
|
UNSTABLE_defaultItemHeight: number;
|
|
833
833
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
834
834
|
id: string;
|
|
835
|
-
orientation:
|
|
835
|
+
orientation: "horizontal" | "vertical";
|
|
836
836
|
indexRef: React.MutableRefObject<number>;
|
|
837
837
|
nonInteractiveIds: string[];
|
|
838
838
|
isVirtualized: boolean;
|
|
@@ -843,7 +843,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
843
843
|
itemWidthCache: Record<string, number>;
|
|
844
844
|
containerWidth: number;
|
|
845
845
|
overflowTargetWidth: number;
|
|
846
|
-
selectedIds:
|
|
846
|
+
selectedIds: string[] | "all";
|
|
847
847
|
unselectedIds: string[];
|
|
848
848
|
cursorId: string;
|
|
849
849
|
columnCount: number;
|
|
@@ -857,7 +857,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
857
857
|
UNSTABLE_defaultItemHeight: number;
|
|
858
858
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
859
859
|
id: string;
|
|
860
|
-
orientation:
|
|
860
|
+
orientation: "horizontal" | "vertical";
|
|
861
861
|
indexRef: React.MutableRefObject<number>;
|
|
862
862
|
nonInteractiveIds: string[];
|
|
863
863
|
isVirtualized: boolean;
|
|
@@ -871,7 +871,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
871
871
|
itemWidthCache: Record<string, number>;
|
|
872
872
|
containerWidth: number;
|
|
873
873
|
overflowTargetWidth: number;
|
|
874
|
-
selectedIds:
|
|
874
|
+
selectedIds: string[] | "all";
|
|
875
875
|
unselectedIds: string[];
|
|
876
876
|
cursorId: string;
|
|
877
877
|
columnCount: number;
|
|
@@ -885,7 +885,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
885
885
|
UNSTABLE_defaultItemHeight: number;
|
|
886
886
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
887
887
|
id: string;
|
|
888
|
-
orientation:
|
|
888
|
+
orientation: "horizontal" | "vertical";
|
|
889
889
|
indexRef: React.MutableRefObject<number>;
|
|
890
890
|
nonInteractiveIds: string[];
|
|
891
891
|
isVirtualized: boolean;
|
|
@@ -898,7 +898,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
898
898
|
itemWidthCache: Record<string, number>;
|
|
899
899
|
containerWidth: number;
|
|
900
900
|
overflowTargetWidth: number;
|
|
901
|
-
selectedIds:
|
|
901
|
+
selectedIds: string[] | "all";
|
|
902
902
|
unselectedIds: string[];
|
|
903
903
|
cursorId: string;
|
|
904
904
|
columnCount: number;
|
|
@@ -912,7 +912,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
912
912
|
UNSTABLE_defaultItemHeight: number;
|
|
913
913
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
914
914
|
id: string;
|
|
915
|
-
orientation:
|
|
915
|
+
orientation: "horizontal" | "vertical";
|
|
916
916
|
indexRef: React.MutableRefObject<number>;
|
|
917
917
|
nonInteractiveIds: string[];
|
|
918
918
|
isVirtualized: boolean;
|
|
@@ -923,7 +923,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
923
923
|
itemWidthCache: Record<string, number>;
|
|
924
924
|
containerWidth: number;
|
|
925
925
|
overflowTargetWidth: number;
|
|
926
|
-
selectedIds:
|
|
926
|
+
selectedIds: string[] | "all";
|
|
927
927
|
unselectedIds: string[];
|
|
928
928
|
cursorId: string;
|
|
929
929
|
columnCount: number;
|
|
@@ -937,7 +937,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
937
937
|
UNSTABLE_defaultItemHeight: number;
|
|
938
938
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
939
939
|
id: string;
|
|
940
|
-
orientation:
|
|
940
|
+
orientation: "horizontal" | "vertical";
|
|
941
941
|
indexRef: React.MutableRefObject<number>;
|
|
942
942
|
nonInteractiveIds: string[];
|
|
943
943
|
isVirtualized: boolean;
|
|
@@ -948,7 +948,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
948
948
|
itemWidthCache: Record<string, number>;
|
|
949
949
|
containerWidth: number;
|
|
950
950
|
overflowTargetWidth: number;
|
|
951
|
-
selectedIds:
|
|
951
|
+
selectedIds: string[] | "all";
|
|
952
952
|
unselectedIds: string[];
|
|
953
953
|
cursorId: string;
|
|
954
954
|
columnCount: number;
|
|
@@ -962,7 +962,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
962
962
|
UNSTABLE_defaultItemHeight: number;
|
|
963
963
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
964
964
|
id: string;
|
|
965
|
-
orientation:
|
|
965
|
+
orientation: "horizontal" | "vertical";
|
|
966
966
|
indexRef: React.MutableRefObject<number>;
|
|
967
967
|
nonInteractiveIds: string[];
|
|
968
968
|
isVirtualized: boolean;
|
|
@@ -973,7 +973,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
973
973
|
itemWidthCache: Record<string, number>;
|
|
974
974
|
containerWidth: number;
|
|
975
975
|
overflowTargetWidth: number;
|
|
976
|
-
selectedIds:
|
|
976
|
+
selectedIds: string[] | "all";
|
|
977
977
|
unselectedIds: string[];
|
|
978
978
|
cursorId: string;
|
|
979
979
|
columnCount: number;
|
|
@@ -987,7 +987,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
987
987
|
UNSTABLE_defaultItemHeight: number;
|
|
988
988
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
989
989
|
id: string;
|
|
990
|
-
orientation:
|
|
990
|
+
orientation: "horizontal" | "vertical";
|
|
991
991
|
indexRef: React.MutableRefObject<number>;
|
|
992
992
|
nonInteractiveIds: string[];
|
|
993
993
|
isVirtualized: boolean;
|
|
@@ -998,7 +998,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
998
998
|
itemWidthCache: Record<string, number>;
|
|
999
999
|
containerWidth: number;
|
|
1000
1000
|
overflowTargetWidth: number;
|
|
1001
|
-
selectedIds:
|
|
1001
|
+
selectedIds: string[] | "all";
|
|
1002
1002
|
unselectedIds: string[];
|
|
1003
1003
|
cursorId: string;
|
|
1004
1004
|
columnCount: number;
|
|
@@ -1012,7 +1012,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1012
1012
|
UNSTABLE_defaultItemHeight: number;
|
|
1013
1013
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1014
1014
|
id: string;
|
|
1015
|
-
orientation:
|
|
1015
|
+
orientation: "horizontal" | "vertical";
|
|
1016
1016
|
indexRef: React.MutableRefObject<number>;
|
|
1017
1017
|
nonInteractiveIds: string[];
|
|
1018
1018
|
isVirtualized: boolean;
|
|
@@ -1023,7 +1023,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1023
1023
|
itemWidthCache: Record<string, number>;
|
|
1024
1024
|
containerWidth: number;
|
|
1025
1025
|
overflowTargetWidth: number;
|
|
1026
|
-
selectedIds:
|
|
1026
|
+
selectedIds: string[] | "all";
|
|
1027
1027
|
unselectedIds: string[];
|
|
1028
1028
|
cursorId: string;
|
|
1029
1029
|
columnCount: number;
|
|
@@ -1037,7 +1037,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1037
1037
|
UNSTABLE_defaultItemHeight: number;
|
|
1038
1038
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1039
1039
|
id: string;
|
|
1040
|
-
orientation:
|
|
1040
|
+
orientation: "horizontal" | "vertical";
|
|
1041
1041
|
indexRef: React.MutableRefObject<number>;
|
|
1042
1042
|
nonInteractiveIds: string[];
|
|
1043
1043
|
isVirtualized: boolean;
|
|
@@ -1048,7 +1048,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1048
1048
|
itemWidthCache: Record<string, number>;
|
|
1049
1049
|
containerWidth: number;
|
|
1050
1050
|
overflowTargetWidth: number;
|
|
1051
|
-
selectedIds:
|
|
1051
|
+
selectedIds: string[] | "all";
|
|
1052
1052
|
unselectedIds: string[];
|
|
1053
1053
|
cursorId: string;
|
|
1054
1054
|
columnCount: number;
|
|
@@ -1062,7 +1062,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1062
1062
|
UNSTABLE_defaultItemHeight: number;
|
|
1063
1063
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1064
1064
|
id: string;
|
|
1065
|
-
orientation:
|
|
1065
|
+
orientation: "horizontal" | "vertical";
|
|
1066
1066
|
indexRef: React.MutableRefObject<number>;
|
|
1067
1067
|
nonInteractiveIds: string[];
|
|
1068
1068
|
isVirtualized: boolean;
|
|
@@ -1073,7 +1073,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1073
1073
|
itemWidthCache: Record<string, number>;
|
|
1074
1074
|
containerWidth: number;
|
|
1075
1075
|
overflowTargetWidth: number;
|
|
1076
|
-
selectedIds:
|
|
1076
|
+
selectedIds: string[] | "all";
|
|
1077
1077
|
unselectedIds: string[];
|
|
1078
1078
|
cursorId: string;
|
|
1079
1079
|
columnCount: number;
|
|
@@ -1087,7 +1087,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1087
1087
|
UNSTABLE_defaultItemHeight: number;
|
|
1088
1088
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1089
1089
|
id: string;
|
|
1090
|
-
orientation:
|
|
1090
|
+
orientation: "horizontal" | "vertical";
|
|
1091
1091
|
indexRef: React.MutableRefObject<number>;
|
|
1092
1092
|
nonInteractiveIds: string[];
|
|
1093
1093
|
isVirtualized: boolean;
|
|
@@ -1098,7 +1098,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1098
1098
|
itemWidthCache: Record<string, number>;
|
|
1099
1099
|
containerWidth: number;
|
|
1100
1100
|
overflowTargetWidth: number;
|
|
1101
|
-
selectedIds:
|
|
1101
|
+
selectedIds: string[] | "all";
|
|
1102
1102
|
unselectedIds: string[];
|
|
1103
1103
|
cursorId: string;
|
|
1104
1104
|
columnCount: number;
|
|
@@ -1112,7 +1112,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1112
1112
|
UNSTABLE_defaultItemHeight: number;
|
|
1113
1113
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1114
1114
|
id: string;
|
|
1115
|
-
orientation:
|
|
1115
|
+
orientation: "horizontal" | "vertical";
|
|
1116
1116
|
indexRef: React.MutableRefObject<number>;
|
|
1117
1117
|
nonInteractiveIds: string[];
|
|
1118
1118
|
isVirtualized: boolean;
|
|
@@ -1123,7 +1123,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1123
1123
|
itemWidthCache: Record<string, number>;
|
|
1124
1124
|
containerWidth: number;
|
|
1125
1125
|
overflowTargetWidth: number;
|
|
1126
|
-
selectedIds:
|
|
1126
|
+
selectedIds: string[] | "all";
|
|
1127
1127
|
unselectedIds: string[];
|
|
1128
1128
|
cursorId: string;
|
|
1129
1129
|
columnCount: number;
|
|
@@ -1137,7 +1137,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1137
1137
|
UNSTABLE_defaultItemHeight: number;
|
|
1138
1138
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1139
1139
|
id: string;
|
|
1140
|
-
orientation:
|
|
1140
|
+
orientation: "horizontal" | "vertical";
|
|
1141
1141
|
indexRef: React.MutableRefObject<number>;
|
|
1142
1142
|
nonInteractiveIds: string[];
|
|
1143
1143
|
isVirtualized: boolean;
|
|
@@ -1148,7 +1148,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1148
1148
|
itemWidthCache: Record<string, number>;
|
|
1149
1149
|
containerWidth: number;
|
|
1150
1150
|
overflowTargetWidth: number;
|
|
1151
|
-
selectedIds:
|
|
1151
|
+
selectedIds: string[] | "all";
|
|
1152
1152
|
unselectedIds: string[];
|
|
1153
1153
|
cursorId: string;
|
|
1154
1154
|
columnCount: number;
|
|
@@ -1162,7 +1162,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1162
1162
|
UNSTABLE_defaultItemHeight: number;
|
|
1163
1163
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1164
1164
|
id: string;
|
|
1165
|
-
orientation:
|
|
1165
|
+
orientation: "horizontal" | "vertical";
|
|
1166
1166
|
indexRef: React.MutableRefObject<number>;
|
|
1167
1167
|
nonInteractiveIds: string[];
|
|
1168
1168
|
isVirtualized: boolean;
|
|
@@ -1175,7 +1175,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1175
1175
|
itemWidthCache: Record<string, number>;
|
|
1176
1176
|
containerWidth: number;
|
|
1177
1177
|
overflowTargetWidth: number;
|
|
1178
|
-
selectedIds:
|
|
1178
|
+
selectedIds: string[] | "all";
|
|
1179
1179
|
unselectedIds: string[];
|
|
1180
1180
|
cursorId: string;
|
|
1181
1181
|
columnCount: number;
|
|
@@ -1189,7 +1189,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1189
1189
|
UNSTABLE_defaultItemHeight: number;
|
|
1190
1190
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1191
1191
|
id: string;
|
|
1192
|
-
orientation:
|
|
1192
|
+
orientation: "horizontal" | "vertical";
|
|
1193
1193
|
indexRef: React.MutableRefObject<number>;
|
|
1194
1194
|
nonInteractiveIds: string[];
|
|
1195
1195
|
isVirtualized: boolean;
|
|
@@ -1202,7 +1202,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1202
1202
|
itemWidthCache: Record<string, number>;
|
|
1203
1203
|
containerWidth: number;
|
|
1204
1204
|
overflowTargetWidth: number;
|
|
1205
|
-
selectedIds:
|
|
1205
|
+
selectedIds: string[] | "all";
|
|
1206
1206
|
unselectedIds: string[];
|
|
1207
1207
|
cursorId: string;
|
|
1208
1208
|
columnCount: number;
|
|
@@ -1216,7 +1216,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1216
1216
|
UNSTABLE_defaultItemHeight: number;
|
|
1217
1217
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1218
1218
|
id: string;
|
|
1219
|
-
orientation:
|
|
1219
|
+
orientation: "horizontal" | "vertical";
|
|
1220
1220
|
indexRef: React.MutableRefObject<number>;
|
|
1221
1221
|
nonInteractiveIds: string[];
|
|
1222
1222
|
isVirtualized: boolean;
|
|
@@ -1228,7 +1228,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1228
1228
|
itemWidthCache: Record<string, number>;
|
|
1229
1229
|
containerWidth: number;
|
|
1230
1230
|
overflowTargetWidth: number;
|
|
1231
|
-
selectedIds:
|
|
1231
|
+
selectedIds: string[] | "all";
|
|
1232
1232
|
unselectedIds: string[];
|
|
1233
1233
|
cursorId: string;
|
|
1234
1234
|
columnCount: number;
|
|
@@ -1242,7 +1242,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1242
1242
|
UNSTABLE_defaultItemHeight: number;
|
|
1243
1243
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1244
1244
|
id: string;
|
|
1245
|
-
orientation:
|
|
1245
|
+
orientation: "horizontal" | "vertical";
|
|
1246
1246
|
indexRef: React.MutableRefObject<number>;
|
|
1247
1247
|
nonInteractiveIds: string[];
|
|
1248
1248
|
isVirtualized: boolean;
|
|
@@ -1300,7 +1300,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1300
1300
|
selection: import("./useSelectionListModel").SelectionManager;
|
|
1301
1301
|
navigation: import("./useCursorListModel").NavigationManager;
|
|
1302
1302
|
getId: (item: any) => string;
|
|
1303
|
-
}) & import("
|
|
1303
|
+
}) & import("@workday/canvas-kit-react/common").ModelExtras<{
|
|
1304
1304
|
initialHiddenIds: string[];
|
|
1305
1305
|
containerWidth: number;
|
|
1306
1306
|
/**
|
|
@@ -1327,7 +1327,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1327
1327
|
itemWidthCache: Record<string, number>;
|
|
1328
1328
|
containerWidth: number;
|
|
1329
1329
|
overflowTargetWidth: number;
|
|
1330
|
-
selectedIds:
|
|
1330
|
+
selectedIds: string[] | "all";
|
|
1331
1331
|
unselectedIds: string[];
|
|
1332
1332
|
cursorId: string;
|
|
1333
1333
|
columnCount: number;
|
|
@@ -1341,7 +1341,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1341
1341
|
UNSTABLE_defaultItemHeight: number;
|
|
1342
1342
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1343
1343
|
id: string;
|
|
1344
|
-
orientation:
|
|
1344
|
+
orientation: "horizontal" | "vertical";
|
|
1345
1345
|
indexRef: React.MutableRefObject<number>;
|
|
1346
1346
|
nonInteractiveIds: string[];
|
|
1347
1347
|
isVirtualized: boolean;
|
|
@@ -1400,7 +1400,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1400
1400
|
itemWidthCache: Record<string, number>;
|
|
1401
1401
|
containerWidth: number;
|
|
1402
1402
|
overflowTargetWidth: number;
|
|
1403
|
-
selectedIds:
|
|
1403
|
+
selectedIds: string[] | "all";
|
|
1404
1404
|
unselectedIds: string[];
|
|
1405
1405
|
cursorId: string;
|
|
1406
1406
|
columnCount: number;
|
|
@@ -1414,7 +1414,7 @@ export declare const useOverflowListModel: (<TT_Special_Generic>(config?: (Parti
|
|
|
1414
1414
|
UNSTABLE_defaultItemHeight: number;
|
|
1415
1415
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1416
1416
|
id: string;
|
|
1417
|
-
orientation:
|
|
1417
|
+
orientation: "horizontal" | "vertical";
|
|
1418
1418
|
indexRef: React.MutableRefObject<number>;
|
|
1419
1419
|
nonInteractiveIds: string[];
|
|
1420
1420
|
isVirtualized: boolean;
|