@workday/canvas-kit-react 7.1.4 → 7.2.0-427-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/ActionBarItem.tsx +2 -7
- package/action-bar/lib/ActionBarList.tsx +32 -19
- package/action-bar/lib/ActionBarOverflowButton.tsx +12 -8
- package/action-bar/lib/useActionBarModel.tsx +20 -3
- package/action-bar/package.json +2 -1
- package/avatar/index.ts +0 -4
- package/avatar/lib/Avatar.tsx +1 -3
- package/avatar/package.json +2 -1
- package/badge/index.ts +1 -1
- package/badge/lib/CountBadge.tsx +1 -3
- package/badge/package.json +2 -1
- package/banner/lib/Banner.tsx +59 -6
- package/banner/lib/BannerIcon.tsx +0 -1
- package/banner/lib/hooks/index.ts +2 -0
- package/banner/lib/hooks/useThemedPalette.ts +3 -3
- package/banner/package.json +2 -1
- package/breadcrumbs/LICENSE +52 -0
- package/breadcrumbs/README.md +9 -0
- package/breadcrumbs/index.ts +2 -0
- package/breadcrumbs/lib/Breadcrumbs.tsx +172 -0
- package/breadcrumbs/lib/BreadcrumbsCurrentItem.tsx +65 -0
- package/breadcrumbs/lib/BreadcrumbsItem.tsx +82 -0
- package/breadcrumbs/lib/BreadcrumbsLink.tsx +52 -0
- package/breadcrumbs/lib/BreadcrumbsList.tsx +50 -0
- package/breadcrumbs/lib/BreadcrumbsMenu.tsx +28 -0
- package/breadcrumbs/lib/BreadcrumbsOverflowButton.tsx +58 -0
- package/breadcrumbs/lib/hooks/useBreadcrumbsModel.tsx +76 -0
- package/breadcrumbs/lib/hooks/utils/index.ts +22 -0
- package/breadcrumbs/package.json +6 -0
- package/button/index.ts +7 -1
- package/button/lib/BaseButton.tsx +14 -9
- package/button/lib/DeleteButton.tsx +7 -3
- package/button/lib/ExternalHyperlink.tsx +6 -7
- package/button/lib/Hyperlink.tsx +6 -2
- package/button/lib/PrimaryButton.tsx +11 -7
- package/button/lib/SecondaryButton.tsx +11 -2
- package/button/lib/TertiaryButton.tsx +30 -18
- package/button/lib/deprecated_Button.tsx +1 -1
- package/button/lib/parts/ButtonLabelIcon.tsx +2 -9
- package/button/package.json +2 -1
- package/card/lib/Card.tsx +36 -0
- package/card/lib/CardBody.tsx +3 -6
- package/card/lib/CardHeading.tsx +13 -10
- package/card/package.json +2 -1
- package/checkbox/index.ts +0 -4
- package/checkbox/lib/Checkbox.tsx +10 -32
- package/checkbox/package.json +2 -1
- package/collection/index.ts +7 -1
- package/collection/lib/ListBox.tsx +31 -16
- package/collection/lib/keyUtils.ts +88 -0
- package/collection/lib/useBaseListModel.tsx +30 -16
- package/collection/lib/useCursorListModel.tsx +199 -101
- package/collection/lib/useGridModel.ts +38 -0
- package/collection/lib/useListActiveDescendant.ts +24 -0
- package/collection/lib/useListItemAllowChildStrings.ts +38 -0
- package/collection/lib/useListItemRegister.tsx +25 -7
- package/collection/lib/useListItemRovingFocus.tsx +60 -111
- package/collection/lib/useListItemSelect.tsx +16 -5
- package/collection/lib/useListKeyboardHandler.ts +28 -0
- package/collection/lib/useListLoader.ts +375 -0
- package/collection/lib/useListModel.tsx +20 -3
- package/collection/lib/useListRenderItem.tsx +38 -14
- package/collection/lib/useListResetCursorOnBlur.tsx +13 -2
- package/collection/lib/useOverflowListItemMeasure.tsx +13 -2
- package/collection/lib/useOverflowListMeasure.ts +15 -13
- package/collection/lib/useOverflowListTarget.tsx +32 -30
- package/collection/lib/useSelectionListModel.tsx +14 -1
- package/collection/package.json +2 -1
- package/color-picker/index.ts +0 -4
- package/color-picker/lib/ColorInput.tsx +1 -4
- package/color-picker/lib/ColorPreview.tsx +1 -3
- package/color-picker/package.json +2 -1
- package/combobox/LICENSE +52 -0
- package/combobox/README.md +7 -0
- package/combobox/index.ts +8 -0
- package/combobox/lib/Combobox.tsx +32 -0
- package/combobox/lib/ComboboxCard.tsx +33 -0
- package/combobox/lib/ComboboxInput.tsx +104 -0
- package/combobox/lib/ComboboxMenu.tsx +67 -0
- package/combobox/lib/ComboboxMenuItem.tsx +74 -0
- package/combobox/lib/ComboboxMenuList.tsx +45 -0
- package/combobox/lib/useComboboxInputOpenWithArrowKeys.ts +21 -0
- package/combobox/lib/useComboboxLoader.ts +72 -0
- package/combobox/lib/useComboboxModel.tsx +85 -0
- package/combobox/package.json +6 -0
- package/common/index.ts +1 -0
- package/common/lib/EllipsisText.tsx +11 -3
- package/common/lib/InputProvider.tsx +1 -6
- package/common/lib/responsive/useResponsiveContainerStyles.ts +128 -0
- package/common/lib/styles/focusRing.ts +1 -10
- package/common/lib/theming/README.md +97 -0
- package/common/lib/theming/createCanvasTheme.ts +39 -42
- package/common/lib/theming/getObjectProxy.ts +37 -0
- package/common/lib/theming/index.ts +3 -1
- package/common/lib/theming/styled.ts +6 -3
- package/common/lib/theming/useTheme.ts +79 -23
- package/common/lib/theming/useThemedRing.ts +114 -0
- package/common/lib/utils/changeFocus.ts +15 -3
- package/common/lib/utils/colorUtils.ts +20 -7
- package/common/lib/utils/components.ts +317 -218
- package/common/lib/utils/deepMerge.ts +21 -0
- package/common/lib/utils/dispatchInputEvent.ts +16 -0
- package/common/lib/utils/elements.ts +7 -12
- package/common/lib/utils/index.ts +2 -1
- package/common/lib/utils/isWithinBreakpoint.ts +6 -0
- package/common/lib/utils/memoize.ts +23 -0
- package/common/lib/utils/models.ts +21 -9
- package/common/lib/utils/slugify.ts +11 -0
- package/common/lib/utils/useModalityType.ts +27 -13
- package/common/package.json +2 -1
- package/dialog/lib/Dialog.tsx +66 -0
- package/dialog/lib/DialogPopper.tsx +3 -0
- package/dialog/package.json +2 -1
- package/disclosure/lib/useDisclosureModel.tsx +2 -2
- package/disclosure/package.json +2 -1
- package/dist/commonjs/action-bar/lib/ActionBar.d.ts +805 -349
- package/dist/commonjs/action-bar/lib/ActionBar.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBar.js +52 -9
- package/dist/commonjs/action-bar/lib/ActionBarItem.d.ts +79 -24
- package/dist/commonjs/action-bar/lib/ActionBarItem.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarItem.js +8 -19
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts +118 -16
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarList.js +17 -41
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts +113 -27
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.js +14 -25
- package/dist/commonjs/action-bar/lib/useActionBarModel.d.ts +381 -161
- package/dist/commonjs/action-bar/lib/useActionBarModel.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/useActionBarModel.js +55 -41
- package/dist/commonjs/avatar/index.d.ts +0 -3
- package/dist/commonjs/avatar/index.d.ts.map +1 -1
- package/dist/commonjs/avatar/index.js +0 -7
- package/dist/commonjs/avatar/lib/Avatar.d.ts +2 -2
- package/dist/commonjs/avatar/lib/Avatar.d.ts.map +1 -1
- package/dist/commonjs/avatar/lib/Avatar.js +55 -78
- package/dist/commonjs/badge/index.d.ts +1 -1
- package/dist/commonjs/badge/index.d.ts.map +1 -1
- package/dist/commonjs/badge/index.js +1 -4
- package/dist/commonjs/badge/lib/CountBadge.d.ts +1 -2
- package/dist/commonjs/badge/lib/CountBadge.d.ts.map +1 -1
- package/dist/commonjs/badge/lib/CountBadge.js +25 -44
- package/dist/commonjs/banner/lib/Banner.d.ts +60 -13
- package/dist/commonjs/banner/lib/Banner.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/Banner.js +88 -50
- package/dist/commonjs/banner/lib/BannerActionText.d.ts +1 -1
- package/dist/commonjs/banner/lib/BannerActionText.js +7 -30
- package/dist/commonjs/banner/lib/BannerIcon.d.ts +1 -2
- package/dist/commonjs/banner/lib/BannerIcon.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/BannerIcon.js +9 -31
- package/dist/commonjs/banner/lib/BannerLabel.d.ts +1 -1
- package/dist/commonjs/banner/lib/BannerLabel.js +6 -29
- package/dist/commonjs/banner/lib/hooks/index.d.ts +2 -0
- package/dist/commonjs/banner/lib/hooks/index.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/index.js +3 -0
- package/dist/commonjs/banner/lib/hooks/useBanner.d.ts +3 -5
- package/dist/commonjs/banner/lib/hooks/useBanner.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useBanner.js +5 -6
- package/dist/commonjs/banner/lib/hooks/useBannerActionText.d.ts +3 -5
- package/dist/commonjs/banner/lib/hooks/useBannerActionText.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerActionText.js +4 -5
- package/dist/commonjs/banner/lib/hooks/useBannerIcon.d.ts +3 -5
- package/dist/commonjs/banner/lib/hooks/useBannerIcon.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerIcon.js +6 -7
- package/dist/commonjs/banner/lib/hooks/useBannerLabel.d.ts +3 -5
- package/dist/commonjs/banner/lib/hooks/useBannerLabel.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerLabel.js +4 -5
- package/dist/commonjs/banner/lib/hooks/useBannerModel.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useBannerModel.js +8 -16
- package/dist/commonjs/banner/lib/hooks/useThemedPalette.d.ts +1 -1
- package/dist/commonjs/banner/lib/hooks/useThemedPalette.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/hooks/useThemedPalette.js +11 -11
- package/dist/commonjs/breadcrumbs/index.d.ts +3 -0
- package/dist/commonjs/breadcrumbs/index.d.ts.map +1 -0
- package/dist/commonjs/{pagination/lib/Pagination/GoTo → breadcrumbs}/index.js +2 -4
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts +4250 -0
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.js +175 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +334 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.js +33 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts +276 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.js +51 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.d.ts +17 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.js +25 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.d.ts +172 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.js +40 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts +1910 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.js +46 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +323 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.js +45 -0
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +1869 -0
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.js +68 -0
- package/dist/commonjs/breadcrumbs/lib/hooks/utils/index.d.ts +6 -0
- package/dist/commonjs/breadcrumbs/lib/hooks/utils/index.d.ts.map +1 -0
- package/dist/commonjs/breadcrumbs/lib/hooks/utils/index.js +22 -0
- package/dist/commonjs/button/index.d.ts +1 -1
- package/dist/commonjs/button/index.d.ts.map +1 -1
- package/dist/commonjs/button/index.js +3 -1
- package/dist/commonjs/button/lib/BaseButton.d.ts +15 -11
- package/dist/commonjs/button/lib/BaseButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/BaseButton.js +128 -78
- package/dist/commonjs/button/lib/DeleteButton.d.ts +8 -3
- package/dist/commonjs/button/lib/DeleteButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/DeleteButton.js +32 -58
- package/dist/commonjs/button/lib/ExternalHyperlink.d.ts +5 -1
- package/dist/commonjs/button/lib/ExternalHyperlink.d.ts.map +1 -1
- package/dist/commonjs/button/lib/ExternalHyperlink.js +29 -39
- package/dist/commonjs/button/lib/Hyperlink.d.ts +5 -1
- package/dist/commonjs/button/lib/Hyperlink.d.ts.map +1 -1
- package/dist/commonjs/button/lib/Hyperlink.js +13 -34
- package/dist/commonjs/button/lib/PrimaryButton.d.ts +12 -7
- package/dist/commonjs/button/lib/PrimaryButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/PrimaryButton.js +18 -32
- package/dist/commonjs/button/lib/SecondaryButton.d.ts +12 -2
- package/dist/commonjs/button/lib/SecondaryButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/SecondaryButton.js +18 -32
- package/dist/commonjs/button/lib/TertiaryButton.d.ts +21 -8
- package/dist/commonjs/button/lib/TertiaryButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/TertiaryButton.js +38 -53
- package/dist/commonjs/button/lib/ToolbarDropdownButton.d.ts +1 -1
- package/dist/commonjs/button/lib/ToolbarDropdownButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/ToolbarDropdownButton.js +14 -40
- package/dist/commonjs/button/lib/ToolbarIconButton.d.ts +1 -1
- package/dist/commonjs/button/lib/ToolbarIconButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/ToolbarIconButton.js +16 -43
- package/dist/commonjs/button/lib/deprecated_Button.d.ts +1 -1
- package/dist/commonjs/button/lib/deprecated_Button.d.ts.map +1 -1
- package/dist/commonjs/button/lib/deprecated_Button.js +54 -57
- package/dist/commonjs/button/lib/parts/ButtonLabel.d.ts +1 -1
- package/dist/commonjs/button/lib/parts/ButtonLabel.d.ts.map +1 -1
- package/dist/commonjs/button/lib/parts/ButtonLabel.js +6 -29
- package/dist/commonjs/button/lib/parts/ButtonLabelIcon.d.ts +3 -9
- package/dist/commonjs/button/lib/parts/ButtonLabelIcon.d.ts.map +1 -1
- package/dist/commonjs/button/lib/parts/ButtonLabelIcon.js +7 -30
- package/dist/commonjs/card/lib/Card.d.ts +39 -3
- package/dist/commonjs/card/lib/Card.d.ts.map +1 -1
- package/dist/commonjs/card/lib/Card.js +44 -31
- package/dist/commonjs/card/lib/CardBody.d.ts +1 -1
- package/dist/commonjs/card/lib/CardBody.d.ts.map +1 -1
- package/dist/commonjs/card/lib/CardBody.js +6 -34
- package/dist/commonjs/card/lib/CardHeading.d.ts +1 -1
- package/dist/commonjs/card/lib/CardHeading.d.ts.map +1 -1
- package/dist/commonjs/card/lib/CardHeading.js +5 -36
- package/dist/commonjs/checkbox/index.d.ts +0 -3
- package/dist/commonjs/checkbox/index.d.ts.map +1 -1
- package/dist/commonjs/checkbox/index.js +0 -7
- package/dist/commonjs/checkbox/lib/Checkbox.d.ts +2 -3
- package/dist/commonjs/checkbox/lib/Checkbox.d.ts.map +1 -1
- package/dist/commonjs/checkbox/lib/Checkbox.js +122 -143
- package/dist/commonjs/collection/index.d.ts +7 -1
- package/dist/commonjs/collection/index.d.ts.map +1 -1
- package/dist/commonjs/collection/index.js +9 -1
- package/dist/commonjs/collection/lib/ListBox.d.ts +351 -180
- package/dist/commonjs/collection/lib/ListBox.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/ListBox.js +34 -42
- package/dist/commonjs/collection/lib/keyUtils.d.ts +26 -0
- package/dist/commonjs/collection/lib/keyUtils.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/keyUtils.js +80 -0
- package/dist/commonjs/collection/lib/react-virtual.js +2 -2
- package/dist/commonjs/collection/lib/useBaseListModel.d.ts +30 -20
- package/dist/commonjs/collection/lib/useBaseListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useBaseListModel.js +78 -71
- package/dist/commonjs/collection/lib/useCursorListModel.d.ts +627 -194
- package/dist/commonjs/collection/lib/useCursorListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useCursorListModel.js +197 -158
- package/dist/commonjs/collection/lib/useGridModel.d.ts +1109 -0
- package/dist/commonjs/collection/lib/useGridModel.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useGridModel.js +38 -0
- package/dist/commonjs/collection/lib/useListActiveDescendant.d.ts +68 -0
- package/dist/commonjs/collection/lib/useListActiveDescendant.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListActiveDescendant.js +25 -0
- package/dist/commonjs/collection/lib/useListItemAllowChildStrings.d.ts +88 -0
- package/dist/commonjs/collection/lib/useListItemAllowChildStrings.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListItemAllowChildStrings.js +37 -0
- package/dist/commonjs/collection/lib/useListItemRegister.d.ts +25 -13
- package/dist/commonjs/collection/lib/useListItemRegister.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRegister.js +33 -21
- package/dist/commonjs/collection/lib/useListItemRovingFocus.d.ts +23 -38
- package/dist/commonjs/collection/lib/useListItemRovingFocus.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRovingFocus.js +66 -116
- package/dist/commonjs/collection/lib/useListItemSelect.d.ts +25 -11
- package/dist/commonjs/collection/lib/useListItemSelect.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemSelect.js +21 -12
- package/dist/commonjs/collection/lib/useListKeyboardHandler.d.ts +66 -0
- package/dist/commonjs/collection/lib/useListKeyboardHandler.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListKeyboardHandler.js +27 -0
- package/dist/commonjs/collection/lib/useListLoader.d.ts +106 -0
- package/dist/commonjs/collection/lib/useListLoader.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListLoader.js +239 -0
- package/dist/commonjs/collection/lib/useListModel.d.ts +289 -122
- package/dist/commonjs/collection/lib/useListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListModel.js +22 -5
- package/dist/commonjs/collection/lib/useListRenderItem.d.ts +15 -1
- package/dist/commonjs/collection/lib/useListRenderItem.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListRenderItem.js +41 -17
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.d.ts +25 -12
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.js +22 -12
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.d.ts +24 -11
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.js +21 -11
- package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts +18 -12
- package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListMeasure.js +12 -8
- package/dist/commonjs/collection/lib/useOverflowListModel.d.ts +341 -143
- package/dist/commonjs/collection/lib/useOverflowListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListModel.js +61 -56
- package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts +22 -13
- package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListTarget.js +15 -11
- package/dist/commonjs/collection/lib/useSelectionListModel.d.ts +282 -120
- package/dist/commonjs/collection/lib/useSelectionListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useSelectionListModel.js +32 -37
- package/dist/commonjs/color-picker/index.d.ts +0 -3
- package/dist/commonjs/color-picker/index.d.ts.map +1 -1
- package/dist/commonjs/color-picker/index.js +0 -8
- package/dist/commonjs/color-picker/lib/ColorInput.d.ts +1 -2
- package/dist/commonjs/color-picker/lib/ColorInput.d.ts.map +1 -1
- package/dist/commonjs/color-picker/lib/ColorInput.js +46 -78
- package/dist/commonjs/color-picker/lib/ColorPreview.d.ts +1 -2
- package/dist/commonjs/color-picker/lib/ColorPreview.d.ts.map +1 -1
- package/dist/commonjs/color-picker/lib/ColorPreview.js +7 -33
- package/dist/commonjs/color-picker/lib/parts/ColorSwatch.js +15 -43
- package/dist/commonjs/combobox/index.d.ts +9 -0
- package/dist/commonjs/combobox/index.d.ts.map +1 -0
- package/dist/commonjs/combobox/index.js +19 -0
- package/dist/commonjs/combobox/lib/Combobox.d.ts +2075 -0
- package/dist/commonjs/combobox/lib/Combobox.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/Combobox.js +29 -0
- package/dist/commonjs/combobox/lib/ComboboxCard.d.ts +166 -0
- package/dist/commonjs/combobox/lib/ComboboxCard.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxCard.js +25 -0
- package/dist/commonjs/combobox/lib/ComboboxInput.d.ts +186 -0
- package/dist/commonjs/combobox/lib/ComboboxInput.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxInput.js +84 -0
- package/dist/commonjs/combobox/lib/ComboboxMenu.d.ts +428 -0
- package/dist/commonjs/combobox/lib/ComboboxMenu.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxMenu.js +63 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuItem.d.ts +178 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuItem.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuItem.js +50 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuList.d.ts +164 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuList.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuList.js +31 -0
- package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts +84 -0
- package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.js +20 -0
- package/dist/commonjs/combobox/lib/useComboboxLoader.d.ts +28 -0
- package/dist/commonjs/combobox/lib/useComboboxLoader.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/useComboboxLoader.js +65 -0
- package/dist/commonjs/combobox/lib/useComboboxModel.d.ts +1998 -0
- package/dist/commonjs/combobox/lib/useComboboxModel.d.ts.map +1 -0
- package/dist/commonjs/combobox/lib/useComboboxModel.js +82 -0
- package/dist/commonjs/common/index.d.ts +1 -0
- package/dist/commonjs/common/index.d.ts.map +1 -1
- package/dist/commonjs/common/index.js +1 -0
- package/dist/commonjs/common/lib/CanvasProvider.js +15 -55
- package/dist/commonjs/common/lib/EllipsisText.d.ts +1 -2
- package/dist/commonjs/common/lib/EllipsisText.d.ts.map +1 -1
- package/dist/commonjs/common/lib/EllipsisText.js +10 -3
- package/dist/commonjs/common/lib/InputProvider.d.ts +2 -2
- package/dist/commonjs/common/lib/InputProvider.d.ts.map +1 -1
- package/dist/commonjs/common/lib/InputProvider.js +73 -98
- package/dist/commonjs/common/lib/parts/_brand-assets.js +6 -6
- package/dist/commonjs/common/lib/responsive/useResponsiveContainerStyles.d.ts +78 -0
- package/dist/commonjs/common/lib/responsive/useResponsiveContainerStyles.d.ts.map +1 -0
- package/dist/commonjs/common/lib/responsive/useResponsiveContainerStyles.js +110 -0
- package/dist/commonjs/common/lib/styles/errorRing.js +11 -10
- package/dist/commonjs/common/lib/styles/focusRing.d.ts +0 -3
- package/dist/commonjs/common/lib/styles/focusRing.d.ts.map +1 -1
- package/dist/commonjs/common/lib/styles/focusRing.js +20 -36
- package/dist/commonjs/common/lib/styles/hideMouseFocus.js +13 -9
- package/dist/commonjs/common/lib/theming/breakpoints.js +10 -10
- package/dist/commonjs/common/lib/theming/createCanvasTheme.d.ts +7 -6
- package/dist/commonjs/common/lib/theming/createCanvasTheme.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/createCanvasTheme.js +45 -70
- package/dist/commonjs/common/lib/theming/getObjectProxy.d.ts +15 -0
- package/dist/commonjs/common/lib/theming/getObjectProxy.d.ts.map +1 -0
- package/dist/commonjs/common/lib/theming/getObjectProxy.js +31 -0
- package/dist/commonjs/common/lib/theming/index.d.ts +3 -1
- package/dist/commonjs/common/lib/theming/index.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/index.js +2 -0
- package/dist/commonjs/common/lib/theming/styled.d.ts +2 -0
- package/dist/commonjs/common/lib/theming/styled.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/styled.js +10 -15
- package/dist/commonjs/common/lib/theming/theme.js +3 -3
- package/dist/commonjs/common/lib/theming/useIsRTL.js +5 -5
- package/dist/commonjs/common/lib/theming/useTheme.d.ts +49 -5
- package/dist/commonjs/common/lib/theming/useTheme.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/useTheme.js +82 -40
- package/dist/commonjs/common/lib/theming/useThemedRing.d.ts +43 -0
- package/dist/commonjs/common/lib/theming/useThemedRing.d.ts.map +1 -0
- package/dist/commonjs/common/lib/theming/useThemedRing.js +100 -0
- package/dist/commonjs/common/lib/utils/changeFocus.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/changeFocus.js +11 -5
- package/dist/commonjs/common/lib/utils/colorUtils.d.ts +7 -0
- package/dist/commonjs/common/lib/utils/colorUtils.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/colorUtils.js +28 -15
- package/dist/commonjs/common/lib/utils/components.d.ts +166 -100
- package/dist/commonjs/common/lib/utils/components.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/components.js +164 -120
- package/dist/commonjs/common/lib/utils/deepMerge.d.ts +2 -0
- package/dist/commonjs/common/lib/utils/deepMerge.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/deepMerge.js +24 -0
- package/dist/commonjs/common/lib/utils/dispatchInputEvent.d.ts +2 -0
- package/dist/commonjs/common/lib/utils/dispatchInputEvent.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/dispatchInputEvent.js +18 -0
- package/dist/commonjs/common/lib/utils/elements.d.ts +1 -1
- package/dist/commonjs/common/lib/utils/elements.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/elements.js +20 -26
- package/dist/commonjs/common/lib/utils/getTranslateFromOrigin.js +2 -2
- package/dist/commonjs/common/lib/utils/index.d.ts +2 -1
- package/dist/commonjs/common/lib/utils/index.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/index.js +2 -1
- package/dist/commonjs/common/lib/utils/isWithinBreakpoint.d.ts +5 -0
- package/dist/commonjs/common/lib/utils/isWithinBreakpoint.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/isWithinBreakpoint.js +10 -0
- package/dist/commonjs/common/lib/utils/makeMq.js +4 -4
- package/dist/commonjs/common/lib/utils/memoize.d.ts +6 -0
- package/dist/commonjs/common/lib/utils/memoize.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/memoize.js +20 -0
- package/dist/commonjs/common/lib/utils/mergeCallback.js +1 -5
- package/dist/commonjs/common/lib/utils/mergeProps.js +5 -16
- package/dist/commonjs/common/lib/utils/models.d.ts +16 -4
- package/dist/commonjs/common/lib/utils/models.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/models.js +56 -73
- package/dist/commonjs/common/lib/utils/slugify.d.ts +5 -0
- package/dist/commonjs/common/lib/utils/slugify.d.ts.map +1 -0
- package/dist/commonjs/common/lib/utils/slugify.js +15 -0
- package/dist/commonjs/common/lib/utils/useConstant.js +2 -2
- package/dist/commonjs/common/lib/utils/useIsFullscreen.js +7 -7
- package/dist/commonjs/common/lib/utils/useModalityType.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/useModalityType.js +35 -21
- package/dist/commonjs/common/lib/utils/useMount.js +3 -3
- package/dist/commonjs/common/lib/utils/useResizeObserver.js +9 -21
- package/dist/commonjs/common/lib/utils/useUniqueId.js +8 -8
- package/dist/commonjs/common/lib/utils/useWindowSize.js +10 -10
- package/dist/commonjs/dialog/lib/Dialog.d.ts +91 -26
- package/dist/commonjs/dialog/lib/Dialog.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/Dialog.js +72 -8
- package/dist/commonjs/dialog/lib/DialogCard.d.ts +4 -4
- package/dist/commonjs/dialog/lib/DialogCard.js +6 -17
- package/dist/commonjs/dialog/lib/DialogPopper.d.ts +4 -4
- package/dist/commonjs/dialog/lib/DialogPopper.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/DialogPopper.js +12 -32
- package/dist/commonjs/dialog/lib/hooks/useDialogCard.d.ts +8 -5
- package/dist/commonjs/dialog/lib/hooks/useDialogCard.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/hooks/useDialogCard.js +4 -5
- package/dist/commonjs/dialog/lib/hooks/useDialogModel.d.ts +10 -10
- package/dist/commonjs/dialog/lib/hooks/useDialogModel.js +4 -4
- package/dist/commonjs/dialog/lib/hooks/useDialogPopper.d.ts +4 -6
- package/dist/commonjs/dialog/lib/hooks/useDialogPopper.d.ts.map +1 -1
- package/dist/commonjs/dialog/lib/hooks/useDialogPopper.js +5 -6
- package/dist/commonjs/disclosure/lib/useDisclosureModel.d.ts +22 -22
- package/dist/commonjs/disclosure/lib/useDisclosureModel.js +14 -14
- package/dist/commonjs/form-field/index.d.ts +0 -5
- package/dist/commonjs/form-field/index.d.ts.map +1 -1
- package/dist/commonjs/form-field/index.js +0 -11
- 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 +48 -88
- package/dist/commonjs/form-field/lib/Hint.d.ts +1 -1
- package/dist/commonjs/form-field/lib/Hint.d.ts.map +1 -1
- package/dist/commonjs/form-field/lib/Hint.js +17 -56
- package/dist/commonjs/form-field/lib/Label.d.ts +6 -5
- package/dist/commonjs/form-field/lib/Label.d.ts.map +1 -1
- package/dist/commonjs/form-field/lib/Label.js +46 -90
- package/dist/commonjs/icon/index.d.ts +0 -7
- package/dist/commonjs/icon/index.d.ts.map +1 -1
- package/dist/commonjs/icon/index.js +0 -16
- package/dist/commonjs/icon/lib/AccentIcon.d.ts +4 -4
- package/dist/commonjs/icon/lib/AccentIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/AccentIcon.js +17 -47
- package/dist/commonjs/icon/lib/AppletIcon.d.ts +1 -2
- package/dist/commonjs/icon/lib/AppletIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/AppletIcon.js +16 -44
- package/dist/commonjs/icon/lib/Graphic.d.ts +1 -2
- package/dist/commonjs/icon/lib/Graphic.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Graphic.js +11 -39
- package/dist/commonjs/icon/lib/Icon.d.ts +1 -2
- package/dist/commonjs/icon/lib/Icon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Icon.js +12 -35
- package/dist/commonjs/icon/lib/Svg.d.ts +1 -2
- package/dist/commonjs/icon/lib/Svg.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Svg.js +11 -35
- package/dist/commonjs/icon/lib/SystemIcon.d.ts +11 -12
- package/dist/commonjs/icon/lib/SystemIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/SystemIcon.js +38 -68
- package/dist/commonjs/icon/lib/SystemIconCircle.d.ts +3 -3
- package/dist/commonjs/icon/lib/SystemIconCircle.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/SystemIconCircle.js +21 -51
- package/dist/commonjs/icon/lib/utils.js +1 -1
- package/dist/commonjs/index.d.ts +5 -1
- package/dist/commonjs/index.d.ts.map +1 -1
- package/dist/commonjs/index.js +5 -1
- package/dist/commonjs/layout/index.d.ts +14 -7
- package/dist/commonjs/layout/index.d.ts.map +1 -1
- package/dist/commonjs/layout/index.js +14 -9
- package/dist/commonjs/layout/lib/Box.d.ts +23 -11
- package/dist/commonjs/layout/lib/Box.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/Box.js +54 -53
- package/dist/commonjs/layout/lib/Flex.d.ts +6 -3
- package/dist/commonjs/layout/lib/Flex.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/Flex.js +13 -32
- package/dist/commonjs/layout/lib/Grid.d.ts +51 -0
- package/dist/commonjs/layout/lib/Grid.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/Grid.js +91 -0
- package/dist/commonjs/layout/lib/utils/background.d.ts +44 -0
- package/dist/commonjs/layout/lib/utils/background.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/background.js +57 -0
- package/dist/commonjs/layout/lib/utils/border/color.d.ts +47 -0
- package/dist/commonjs/layout/lib/utils/border/color.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/border/color.js +42 -0
- package/dist/commonjs/layout/lib/utils/border/index.d.ts +26 -0
- package/dist/commonjs/layout/lib/utils/border/index.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/border/index.js +40 -0
- package/dist/commonjs/layout/lib/utils/border/lineStyle.d.ts +38 -0
- package/dist/commonjs/layout/lib/utils/border/lineStyle.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/border/lineStyle.js +52 -0
- package/dist/commonjs/layout/lib/utils/border/radius.d.ts +33 -0
- package/dist/commonjs/layout/lib/utils/border/radius.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/border/radius.js +32 -0
- package/dist/commonjs/layout/lib/utils/border/shorthand.d.ts +34 -0
- package/dist/commonjs/layout/lib/utils/border/shorthand.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/border/shorthand.js +42 -0
- package/dist/commonjs/layout/lib/utils/border/width.d.ts +34 -0
- package/dist/commonjs/layout/lib/utils/border/width.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/border/width.js +42 -0
- package/dist/commonjs/layout/lib/utils/buildStyleFns.d.ts +12 -0
- package/dist/commonjs/layout/lib/utils/buildStyleFns.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/buildStyleFns.js +87 -0
- package/dist/commonjs/layout/lib/utils/color.d.ts +23 -16
- package/dist/commonjs/layout/lib/utils/color.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/color.js +25 -48
- package/dist/commonjs/layout/lib/utils/depth.d.ts +17 -11
- package/dist/commonjs/layout/lib/utils/depth.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/depth.js +20 -20
- package/dist/commonjs/layout/lib/utils/flex.d.ts +39 -20
- package/dist/commonjs/layout/lib/utils/flex.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/flex.js +58 -25
- package/dist/commonjs/layout/lib/utils/flexItem.d.ts +22 -19
- package/dist/commonjs/layout/lib/utils/flexItem.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/flexItem.js +43 -26
- package/dist/commonjs/layout/lib/utils/getValidChildren.d.ts +1 -1
- package/dist/commonjs/layout/lib/utils/getValidChildren.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/getValidChildren.js +2 -4
- package/dist/commonjs/layout/lib/utils/grid.d.ts +72 -0
- package/dist/commonjs/layout/lib/utils/grid.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/grid.js +112 -0
- package/dist/commonjs/layout/lib/utils/gridItem.d.ts +42 -0
- package/dist/commonjs/layout/lib/utils/gridItem.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/gridItem.js +71 -0
- package/dist/commonjs/layout/lib/utils/layout.d.ts +54 -32
- package/dist/commonjs/layout/lib/utils/layout.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/layout.js +71 -33
- package/dist/commonjs/layout/lib/utils/other.d.ts +46 -2
- package/dist/commonjs/layout/lib/utils/other.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/other.js +101 -17
- package/dist/commonjs/layout/lib/utils/position.d.ts +44 -23
- package/dist/commonjs/layout/lib/utils/position.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/position.js +54 -66
- package/dist/commonjs/layout/lib/utils/space.d.ts +107 -51
- package/dist/commonjs/layout/lib/utils/space.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/space.js +98 -148
- package/dist/commonjs/layout/lib/utils/styleProps.d.ts +41 -0
- package/dist/commonjs/layout/lib/utils/styleProps.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/systemProps.d.ts +31 -0
- package/dist/commonjs/layout/lib/utils/systemProps.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/systemProps.js +2 -0
- package/dist/commonjs/layout/lib/utils/text.d.ts +53 -0
- package/dist/commonjs/layout/lib/utils/text.d.ts.map +1 -0
- package/dist/commonjs/layout/lib/utils/text.js +84 -0
- package/dist/commonjs/loading-dots/index.d.ts +2 -0
- package/dist/commonjs/loading-dots/index.d.ts.map +1 -0
- package/dist/commonjs/{loading-animation → loading-dots}/index.js +0 -8
- package/dist/commonjs/{loading-animation → loading-dots}/lib/LoadingDots.d.ts +1 -1
- package/dist/commonjs/loading-dots/lib/LoadingDots.d.ts.map +1 -0
- package/dist/commonjs/loading-dots/lib/LoadingDots.js +78 -0
- package/dist/commonjs/menu/index.d.ts +1 -1
- package/dist/commonjs/menu/index.d.ts.map +1 -1
- package/dist/commonjs/menu/index.js +2 -1
- package/dist/commonjs/menu/lib/Menu.d.ts +474 -439
- package/dist/commonjs/menu/lib/Menu.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/Menu.js +53 -24
- package/dist/commonjs/menu/lib/MenuCard.d.ts +25 -19
- package/dist/commonjs/menu/lib/MenuCard.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuCard.js +14 -26
- package/dist/commonjs/menu/lib/MenuContextTarget.d.ts +142 -18
- package/dist/commonjs/menu/lib/MenuContextTarget.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuContextTarget.js +11 -36
- package/dist/commonjs/menu/lib/MenuDivider.d.ts +1 -1
- package/dist/commonjs/menu/lib/MenuDivider.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuDivider.js +9 -20
- package/dist/commonjs/menu/lib/MenuItem.d.ts +78 -21
- package/dist/commonjs/menu/lib/MenuItem.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuItem.js +84 -92
- package/dist/commonjs/menu/lib/MenuList.d.ts +31 -25
- package/dist/commonjs/menu/lib/MenuList.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuList.js +10 -32
- package/dist/commonjs/menu/lib/MenuPopper.d.ts +17 -15
- package/dist/commonjs/menu/lib/MenuPopper.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuPopper.js +6 -29
- package/dist/commonjs/menu/lib/MenuTarget.d.ts +227 -22
- package/dist/commonjs/menu/lib/MenuTarget.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuTarget.js +16 -42
- package/dist/commonjs/menu/lib/useMenuModel.d.ts +393 -219
- package/dist/commonjs/menu/lib/useMenuModel.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/useMenuModel.js +23 -27
- package/dist/commonjs/modal/lib/Modal.d.ts +203 -47
- package/dist/commonjs/modal/lib/Modal.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/Modal.js +86 -14
- package/dist/commonjs/modal/lib/ModalBody.d.ts +24 -0
- package/dist/commonjs/modal/lib/ModalBody.d.ts.map +1 -0
- package/dist/commonjs/modal/lib/ModalBody.js +42 -0
- package/dist/commonjs/modal/lib/ModalCard.d.ts +2 -2
- package/dist/commonjs/modal/lib/ModalCard.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/ModalCard.js +18 -17
- package/dist/commonjs/modal/lib/ModalHeading.d.ts +2 -2
- package/dist/commonjs/modal/lib/ModalHeading.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/ModalHeading.js +16 -17
- package/dist/commonjs/modal/lib/ModalOverflowOverlay.d.ts +4 -4
- package/dist/commonjs/modal/lib/ModalOverflowOverlay.js +9 -20
- package/dist/commonjs/modal/lib/ModalOverlay.d.ts +6 -9
- package/dist/commonjs/modal/lib/ModalOverlay.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/ModalOverlay.js +44 -51
- package/dist/commonjs/modal/lib/hooks/useCloseOnOverlayClick.d.ts +3 -5
- package/dist/commonjs/modal/lib/hooks/useCloseOnOverlayClick.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/hooks/useCloseOnOverlayClick.js +19 -17
- package/dist/commonjs/modal/lib/hooks/useModalCard.d.ts +8 -5
- package/dist/commonjs/modal/lib/hooks/useModalCard.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/hooks/useModalCard.js +3 -3
- package/dist/commonjs/modal/lib/hooks/useModalHeading.d.ts +8 -5
- package/dist/commonjs/modal/lib/hooks/useModalHeading.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/hooks/useModalHeading.js +7 -7
- package/dist/commonjs/modal/lib/hooks/useModalModel.d.ts +10 -10
- package/dist/commonjs/modal/lib/hooks/useModalModel.js +5 -5
- package/dist/commonjs/pagination/lib/Pagination/AdditionalDetails.d.ts +2 -3
- package/dist/commonjs/pagination/lib/Pagination/AdditionalDetails.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/AdditionalDetails.js +22 -38
- package/dist/commonjs/pagination/lib/Pagination/Controls.d.ts +12 -11
- package/dist/commonjs/pagination/lib/Pagination/Controls.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/Controls.js +82 -93
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.d.ts +5 -5
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Form.js +15 -31
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Label.d.ts +2 -3
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Label.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/Label.js +11 -31
- package/dist/commonjs/pagination/lib/Pagination/GoTo/TextInput.d.ts +4 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/TextInput.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/TextInput.js +11 -29
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.d.ts +10 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/useGoToForm.js +14 -14
- package/dist/commonjs/pagination/lib/Pagination/Nav.d.ts +1 -1
- package/dist/commonjs/pagination/lib/Pagination/Nav.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/Nav.js +4 -27
- package/dist/commonjs/pagination/lib/Pagination/PageButton.d.ts +4 -5
- package/dist/commonjs/pagination/lib/Pagination/PageButton.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/PageButton.js +23 -42
- package/dist/commonjs/pagination/lib/Pagination/PageList.d.ts +7 -6
- package/dist/commonjs/pagination/lib/Pagination/PageList.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/PageList.js +18 -35
- package/dist/commonjs/pagination/lib/Pagination/Pagination.d.ts +230 -38
- package/dist/commonjs/pagination/lib/Pagination/Pagination.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/Pagination.js +233 -104
- package/dist/commonjs/pagination/lib/Pagination/buildPageRange.js +9 -17
- package/dist/commonjs/pagination/lib/Pagination/common/List.d.ts +2 -2
- package/dist/commonjs/pagination/lib/Pagination/common/List.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/List.js +8 -32
- package/dist/commonjs/pagination/lib/Pagination/common/useLiveRegion.d.ts +0 -1
- package/dist/commonjs/pagination/lib/Pagination/common/useLiveRegion.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/useLiveRegion.js +8 -26
- package/dist/commonjs/pagination/lib/Pagination/common/utils/getValidChildren.d.ts +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/utils/getValidChildren.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/utils/getValidChildren.js +2 -4
- package/dist/commonjs/pagination/lib/Pagination/common/utils/helpers.d.ts +45 -15
- package/dist/commonjs/pagination/lib/Pagination/common/utils/helpers.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/common/utils/helpers.js +45 -15
- package/dist/commonjs/pagination/lib/Pagination/common/utils/useRTL.js +5 -5
- package/dist/commonjs/pagination/lib/Pagination/usePaginationModel.d.ts +3 -1
- package/dist/commonjs/pagination/lib/Pagination/usePaginationModel.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/usePaginationModel.js +38 -33
- package/dist/commonjs/popup/lib/Popper.d.ts +16 -1
- package/dist/commonjs/popup/lib/Popper.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/Popper.js +49 -58
- package/dist/commonjs/popup/lib/Popup.d.ts +103 -22
- package/dist/commonjs/popup/lib/Popup.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/Popup.js +96 -16
- package/dist/commonjs/popup/lib/PopupBody.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupBody.js +6 -17
- package/dist/commonjs/popup/lib/PopupCard.d.ts +5 -4
- package/dist/commonjs/popup/lib/PopupCard.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/PopupCard.js +60 -48
- package/dist/commonjs/popup/lib/PopupCloseButton.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupCloseButton.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/PopupCloseButton.js +6 -29
- package/dist/commonjs/popup/lib/PopupCloseIcon.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupCloseIcon.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/PopupCloseIcon.js +8 -36
- package/dist/commonjs/popup/lib/PopupHeading.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupHeading.js +6 -29
- package/dist/commonjs/popup/lib/PopupPopper.d.ts +4 -5
- package/dist/commonjs/popup/lib/PopupPopper.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/PopupPopper.js +6 -29
- package/dist/commonjs/popup/lib/PopupTarget.d.ts +2 -2
- package/dist/commonjs/popup/lib/PopupTarget.js +6 -17
- package/dist/commonjs/popup/lib/getTransformFromPlacement.js +6 -6
- package/dist/commonjs/popup/lib/hooks/focus-trap-js.js +23 -27
- package/dist/commonjs/popup/lib/hooks/index.d.ts +1 -0
- package/dist/commonjs/popup/lib/hooks/index.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/index.js +1 -0
- package/dist/commonjs/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useAlwaysCloseOnOutsideClick.js +9 -9
- package/dist/commonjs/popup/lib/hooks/useAssistiveHideSiblings.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useAssistiveHideSiblings.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useAssistiveHideSiblings.js +14 -19
- package/dist/commonjs/popup/lib/hooks/useBringToTopOnClick.d.ts +7 -9
- package/dist/commonjs/popup/lib/hooks/useBringToTopOnClick.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useBringToTopOnClick.js +15 -15
- package/dist/commonjs/popup/lib/hooks/useCloseOnEscape.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/useCloseOnEscape.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useCloseOnEscape.js +11 -11
- package/dist/commonjs/popup/lib/hooks/useCloseOnFullscreenExit.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useCloseOnFullscreenExit.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useCloseOnFullscreenExit.js +9 -9
- package/dist/commonjs/popup/lib/hooks/useCloseOnOutsideClick.d.ts +9 -11
- package/dist/commonjs/popup/lib/hooks/useCloseOnOutsideClick.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useCloseOnOutsideClick.js +18 -18
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.d.ts +29 -0
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.d.ts.map +1 -0
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.js +56 -0
- package/dist/commonjs/popup/lib/hooks/useDisableBodyScroll.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useDisableBodyScroll.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useDisableBodyScroll.js +10 -10
- package/dist/commonjs/popup/lib/hooks/useFocusRedirect.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useFocusRedirect.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useFocusRedirect.js +10 -10
- package/dist/commonjs/popup/lib/hooks/useFocusTrap.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useFocusTrap.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useFocusTrap.js +9 -9
- package/dist/commonjs/popup/lib/hooks/useInitialFocus.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/useInitialFocus.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useInitialFocus.js +12 -12
- package/dist/commonjs/popup/lib/hooks/usePopupCard.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/usePopupCard.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupCard.js +4 -5
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.d.ts +7 -8
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupCloseButton.js +6 -6
- package/dist/commonjs/popup/lib/hooks/usePopupHeading.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/usePopupHeading.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupHeading.js +4 -5
- package/dist/commonjs/popup/lib/hooks/usePopupModel.d.ts +13 -13
- package/dist/commonjs/popup/lib/hooks/usePopupModel.js +29 -34
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.d.ts +7 -8
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupPopper.js +10 -10
- package/dist/commonjs/popup/lib/hooks/usePopupStack.d.ts +27 -19
- package/dist/commonjs/popup/lib/hooks/usePopupStack.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupStack.js +41 -33
- package/dist/commonjs/popup/lib/hooks/usePopupTarget.d.ts +6 -8
- package/dist/commonjs/popup/lib/hooks/usePopupTarget.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupTarget.js +6 -7
- package/dist/commonjs/popup/lib/hooks/usePopupTargetContext.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/usePopupTargetContext.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/usePopupTargetContext.js +5 -6
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.d.ts +5 -7
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.js +117 -12
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenEnter.js +10 -10
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenExit.d.ts +3 -5
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenExit.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useTransferOnFullscreenExit.js +10 -10
- package/dist/commonjs/radio/index.d.ts +0 -4
- package/dist/commonjs/radio/index.d.ts.map +1 -1
- package/dist/commonjs/radio/index.js +0 -9
- package/dist/commonjs/radio/lib/Radio.d.ts +1 -2
- package/dist/commonjs/radio/lib/Radio.d.ts.map +1 -1
- package/dist/commonjs/radio/lib/Radio.js +115 -147
- 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 +36 -81
- package/dist/commonjs/segmented-control/index.d.ts +0 -3
- package/dist/commonjs/segmented-control/index.d.ts.map +1 -1
- package/dist/commonjs/segmented-control/index.js +0 -7
- package/dist/commonjs/segmented-control/lib/SegmentedControl.d.ts +2 -3
- package/dist/commonjs/segmented-control/lib/SegmentedControl.d.ts.map +1 -1
- package/dist/commonjs/segmented-control/lib/SegmentedControl.js +7 -31
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.d.ts +4 -2
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.d.ts.map +1 -1
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.js +46 -58
- package/dist/commonjs/select/index.d.ts +0 -4
- package/dist/commonjs/select/index.d.ts.map +1 -1
- package/dist/commonjs/select/index.js +0 -9
- package/dist/commonjs/select/lib/Select.d.ts +2 -3
- package/dist/commonjs/select/lib/Select.d.ts.map +1 -1
- package/dist/commonjs/select/lib/Select.js +47 -65
- package/dist/commonjs/select/lib/SelectOption.d.ts +1 -1
- package/dist/commonjs/select/lib/SelectOption.d.ts.map +1 -1
- package/dist/commonjs/select/lib/SelectOption.js +8 -47
- package/dist/commonjs/side-panel/index.d.ts +0 -3
- package/dist/commonjs/side-panel/index.d.ts.map +1 -1
- package/dist/commonjs/side-panel/index.js +0 -7
- package/dist/commonjs/side-panel/lib/SidePanel.d.ts +1 -1
- package/dist/commonjs/side-panel/lib/SidePanel.d.ts.map +1 -1
- package/dist/commonjs/side-panel/lib/SidePanel.js +64 -125
- package/dist/commonjs/skeleton/lib/parts/skeletonHeader.d.ts +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonHeader.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonHeader.js +5 -30
- package/dist/commonjs/skeleton/lib/parts/skeletonShape.d.ts +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonShape.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonShape.js +12 -40
- package/dist/commonjs/skeleton/lib/parts/skeletonText.d.ts +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonText.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/parts/skeletonText.js +12 -38
- package/dist/commonjs/skeleton/lib/skeleton.d.ts +30 -4
- package/dist/commonjs/skeleton/lib/skeleton.d.ts.map +1 -1
- package/dist/commonjs/skeleton/lib/skeleton.js +42 -41
- package/dist/commonjs/status-indicator/index.d.ts +0 -3
- package/dist/commonjs/status-indicator/index.d.ts.map +1 -1
- package/dist/commonjs/status-indicator/index.js +0 -7
- package/dist/commonjs/status-indicator/lib/StatusIndicator.d.ts +1 -1
- package/dist/commonjs/status-indicator/lib/StatusIndicator.d.ts.map +1 -1
- package/dist/commonjs/status-indicator/lib/StatusIndicator.js +30 -61
- package/dist/commonjs/switch/index.d.ts +0 -3
- package/dist/commonjs/switch/index.d.ts.map +1 -1
- package/dist/commonjs/switch/index.js +0 -7
- package/dist/commonjs/switch/lib/Switch.d.ts +1 -2
- package/dist/commonjs/switch/lib/Switch.d.ts.map +1 -1
- package/dist/commonjs/switch/lib/Switch.js +55 -66
- package/dist/commonjs/table/index.d.ts +0 -4
- package/dist/commonjs/table/index.d.ts.map +1 -1
- package/dist/commonjs/table/index.js +0 -9
- package/dist/commonjs/table/lib/Table.d.ts +1 -1
- package/dist/commonjs/table/lib/Table.d.ts.map +1 -1
- package/dist/commonjs/table/lib/Table.js +12 -52
- package/dist/commonjs/table/lib/TableRow.d.ts +2 -2
- package/dist/commonjs/table/lib/TableRow.d.ts.map +1 -1
- package/dist/commonjs/table/lib/TableRow.js +42 -70
- package/dist/commonjs/tabs/lib/Tabs.d.ts +2246 -392
- package/dist/commonjs/tabs/lib/Tabs.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/Tabs.js +105 -14
- package/dist/commonjs/tabs/lib/TabsItem.d.ts +179 -30
- package/dist/commonjs/tabs/lib/TabsItem.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsItem.js +80 -87
- package/dist/commonjs/tabs/lib/TabsList.d.ts +157 -29
- package/dist/commonjs/tabs/lib/TabsList.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsList.js +54 -49
- package/dist/commonjs/tabs/lib/TabsMenuPopper.d.ts +17 -15
- package/dist/commonjs/tabs/lib/TabsMenuPopper.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsMenuPopper.js +6 -29
- package/dist/commonjs/tabs/lib/TabsOverflowButton.d.ts +119 -27
- package/dist/commonjs/tabs/lib/TabsOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsOverflowButton.js +12 -35
- package/dist/commonjs/tabs/lib/TabsPanel.d.ts +47 -33
- package/dist/commonjs/tabs/lib/TabsPanel.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsPanel.js +17 -42
- package/dist/commonjs/tabs/lib/TabsPanels.d.ts +25 -17
- package/dist/commonjs/tabs/lib/TabsPanels.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsPanels.js +5 -6
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts +3442 -586
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/useTabsModel.js +63 -44
- package/dist/commonjs/testing/index.d.ts +5 -0
- package/dist/commonjs/testing/index.d.ts.map +1 -0
- package/dist/commonjs/testing/index.js +16 -0
- package/dist/commonjs/testing/lib/ComponentStatesTable.d.ts +26 -0
- package/dist/commonjs/testing/lib/ComponentStatesTable.d.ts.map +1 -0
- package/dist/commonjs/testing/lib/ComponentStatesTable.js +39 -0
- package/dist/commonjs/testing/lib/StaticStates.d.ts +7 -0
- package/dist/commonjs/testing/lib/StaticStates.d.ts.map +1 -0
- package/dist/commonjs/testing/lib/StaticStates.js +49 -0
- package/dist/commonjs/testing/lib/permutateProps.d.ts +5 -0
- package/dist/commonjs/testing/lib/permutateProps.d.ts.map +1 -0
- package/dist/commonjs/testing/lib/permutateProps.js +34 -0
- package/dist/commonjs/testing/lib/propTypes.d.ts +15 -0
- package/dist/commonjs/testing/lib/propTypes.d.ts.map +1 -0
- package/dist/commonjs/testing/lib/propTypes.js +2 -0
- package/dist/commonjs/text/index.d.ts +4 -0
- package/dist/commonjs/text/index.d.ts.map +1 -0
- package/dist/commonjs/text/index.js +15 -0
- package/dist/commonjs/text/lib/LabelText.d.ts +25 -0
- package/dist/commonjs/text/lib/LabelText.d.ts.map +1 -0
- package/dist/commonjs/text/lib/LabelText.js +49 -0
- package/dist/commonjs/text/lib/Text.d.ts +54 -0
- package/dist/commonjs/text/lib/Text.d.ts.map +1 -0
- package/dist/commonjs/text/lib/Text.js +95 -0
- package/dist/commonjs/text/lib/TypeLevelComponents.d.ts +112 -0
- package/dist/commonjs/text/lib/TypeLevelComponents.d.ts.map +1 -0
- package/dist/commonjs/text/lib/TypeLevelComponents.js +149 -0
- package/dist/commonjs/text-area/index.d.ts +0 -3
- package/dist/commonjs/text-area/index.d.ts.map +1 -1
- package/dist/commonjs/text-area/index.js +0 -7
- package/dist/commonjs/text-area/lib/TextArea.d.ts +1 -2
- package/dist/commonjs/text-area/lib/TextArea.d.ts.map +1 -1
- package/dist/commonjs/text-area/lib/TextArea.js +42 -56
- package/dist/commonjs/text-input/index.d.ts +1 -4
- package/dist/commonjs/text-input/index.d.ts.map +1 -1
- package/dist/commonjs/text-input/index.js +4 -9
- package/dist/commonjs/text-input/lib/InputGroup.d.ts +135 -0
- package/dist/commonjs/text-input/lib/InputGroup.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/InputGroup.js +200 -0
- package/dist/commonjs/text-input/lib/InputIconContainer.d.ts +1 -2
- package/dist/commonjs/text-input/lib/InputIconContainer.d.ts.map +1 -1
- package/dist/commonjs/text-input/lib/InputIconContainer.js +13 -18
- package/dist/commonjs/text-input/lib/TextInput.d.ts +1 -2
- package/dist/commonjs/text-input/lib/TextInput.d.ts.map +1 -1
- package/dist/commonjs/text-input/lib/TextInput.js +38 -52
- package/dist/commonjs/toast/index.d.ts +1 -3
- package/dist/commonjs/toast/index.d.ts.map +1 -1
- package/dist/commonjs/toast/index.js +1 -4
- package/dist/commonjs/toast/lib/Toast.d.ts +56 -22
- package/dist/commonjs/toast/lib/Toast.d.ts.map +1 -1
- package/dist/commonjs/toast/lib/Toast.js +94 -79
- package/dist/commonjs/toast/lib/ToastBody.d.ts +6 -0
- package/dist/commonjs/toast/lib/ToastBody.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastBody.js +15 -0
- package/dist/commonjs/toast/lib/ToastCloseIcon.d.ts +6 -0
- package/dist/commonjs/toast/lib/ToastCloseIcon.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastCloseIcon.js +15 -0
- package/dist/commonjs/toast/lib/ToastIcon.d.ts +5 -0
- package/dist/commonjs/toast/lib/ToastIcon.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastIcon.js +15 -0
- package/dist/commonjs/toast/lib/ToastLink.d.ts +5 -0
- package/dist/commonjs/toast/lib/ToastLink.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastLink.js +15 -0
- package/dist/commonjs/toast/lib/ToastMessage.d.ts +12 -0
- package/dist/commonjs/toast/lib/ToastMessage.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/ToastMessage.js +15 -0
- package/dist/commonjs/toast/lib/hooks/useToastModel.d.ts +75 -0
- package/dist/commonjs/toast/lib/hooks/useToastModel.d.ts.map +1 -0
- package/dist/commonjs/toast/lib/hooks/useToastModel.js +29 -0
- package/dist/commonjs/tokens/index.d.ts +3 -4
- package/dist/commonjs/tokens/index.d.ts.map +1 -1
- package/dist/commonjs/tokens/index.js +8 -9
- package/dist/commonjs/tokens/lib/colors.types.d.ts +4 -6
- package/dist/commonjs/tokens/lib/colors.types.d.ts.map +1 -1
- package/dist/commonjs/tokens/lib/depth.d.ts +6 -7
- package/dist/commonjs/tokens/lib/depth.d.ts.map +1 -1
- package/dist/commonjs/tokens/lib/depth.js +6 -6
- package/dist/commonjs/tokens/lib/radius.d.ts +1 -1
- package/dist/commonjs/tokens/lib/radius.d.ts.map +1 -1
- package/dist/commonjs/tokens/lib/radius.js +0 -1
- package/dist/commonjs/tokens/lib/type/fontFamilies.d.ts.map +1 -1
- package/dist/commonjs/tokens/lib/type/fontFamilies.js +5 -6
- package/dist/commonjs/tokens/lib/type/index.d.ts +7 -7
- package/dist/commonjs/tokens/lib/type/index.js +9 -9
- package/dist/commonjs/tokens/lib/type/levels.js +4 -4
- package/dist/commonjs/tokens/lib/type/variants.js +1 -1
- package/dist/commonjs/tooltip/index.d.ts +0 -2
- package/dist/commonjs/tooltip/index.d.ts.map +1 -1
- package/dist/commonjs/tooltip/index.js +0 -2
- package/dist/commonjs/tooltip/lib/OverflowTooltip.d.ts.map +1 -1
- package/dist/commonjs/tooltip/lib/OverflowTooltip.js +35 -58
- package/dist/commonjs/tooltip/lib/Tooltip.d.ts +1 -1
- package/dist/commonjs/tooltip/lib/Tooltip.d.ts.map +1 -1
- package/dist/commonjs/tooltip/lib/Tooltip.js +32 -51
- package/dist/commonjs/tooltip/lib/TooltipContainer.d.ts +1 -1
- package/dist/commonjs/tooltip/lib/TooltipContainer.d.ts.map +1 -1
- package/dist/commonjs/tooltip/lib/TooltipContainer.js +41 -34
- package/dist/commonjs/tooltip/lib/useTooltip.d.ts.map +1 -1
- package/dist/commonjs/tooltip/lib/useTooltip.js +45 -41
- package/dist/es6/action-bar/lib/ActionBar.d.ts +805 -349
- package/dist/es6/action-bar/lib/ActionBar.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBar.js +47 -4
- package/dist/es6/action-bar/lib/ActionBarItem.d.ts +79 -24
- package/dist/es6/action-bar/lib/ActionBarItem.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarItem.js +5 -16
- package/dist/es6/action-bar/lib/ActionBarList.d.ts +118 -16
- package/dist/es6/action-bar/lib/ActionBarList.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarList.js +13 -37
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts +113 -27
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.js +8 -19
- package/dist/es6/action-bar/lib/useActionBarModel.d.ts +381 -161
- package/dist/es6/action-bar/lib/useActionBarModel.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/useActionBarModel.js +52 -38
- package/dist/es6/avatar/index.d.ts +0 -3
- package/dist/es6/avatar/index.d.ts.map +1 -1
- package/dist/es6/avatar/index.js +0 -3
- package/dist/es6/avatar/lib/Avatar.d.ts +2 -2
- package/dist/es6/avatar/lib/Avatar.d.ts.map +1 -1
- package/dist/es6/avatar/lib/Avatar.js +46 -69
- package/dist/es6/badge/index.d.ts +1 -1
- package/dist/es6/badge/index.d.ts.map +1 -1
- package/dist/es6/badge/index.js +1 -1
- package/dist/es6/badge/lib/CountBadge.d.ts +1 -2
- package/dist/es6/badge/lib/CountBadge.d.ts.map +1 -1
- package/dist/es6/badge/lib/CountBadge.js +20 -41
- package/dist/es6/banner/lib/Banner.d.ts +60 -13
- package/dist/es6/banner/lib/Banner.d.ts.map +1 -1
- package/dist/es6/banner/lib/Banner.js +81 -43
- package/dist/es6/banner/lib/BannerActionText.d.ts +1 -1
- package/dist/es6/banner/lib/BannerActionText.js +4 -27
- package/dist/es6/banner/lib/BannerIcon.d.ts +1 -2
- package/dist/es6/banner/lib/BannerIcon.d.ts.map +1 -1
- package/dist/es6/banner/lib/BannerIcon.js +5 -27
- package/dist/es6/banner/lib/BannerLabel.d.ts +1 -1
- package/dist/es6/banner/lib/BannerLabel.js +3 -26
- package/dist/es6/banner/lib/hooks/index.d.ts +2 -0
- package/dist/es6/banner/lib/hooks/index.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/index.js +2 -0
- package/dist/es6/banner/lib/hooks/useBanner.d.ts +3 -5
- package/dist/es6/banner/lib/hooks/useBanner.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useBanner.js +3 -4
- package/dist/es6/banner/lib/hooks/useBannerActionText.d.ts +3 -5
- package/dist/es6/banner/lib/hooks/useBannerActionText.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useBannerActionText.js +2 -3
- package/dist/es6/banner/lib/hooks/useBannerIcon.d.ts +3 -5
- package/dist/es6/banner/lib/hooks/useBannerIcon.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useBannerIcon.js +2 -3
- package/dist/es6/banner/lib/hooks/useBannerLabel.d.ts +3 -5
- package/dist/es6/banner/lib/hooks/useBannerLabel.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useBannerLabel.js +2 -3
- package/dist/es6/banner/lib/hooks/useBannerModel.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useBannerModel.js +8 -16
- package/dist/es6/banner/lib/hooks/useThemedPalette.d.ts +1 -1
- package/dist/es6/banner/lib/hooks/useThemedPalette.d.ts.map +1 -1
- package/dist/es6/banner/lib/hooks/useThemedPalette.js +7 -7
- package/dist/es6/breadcrumbs/index.d.ts +3 -0
- package/dist/es6/breadcrumbs/index.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/index.js +2 -0
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts +4250 -0
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.js +153 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +334 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.js +27 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts +276 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.js +29 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.d.ts +17 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.js +19 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.d.ts +172 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.js +18 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts +1910 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.js +24 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +323 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.js +23 -0
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +1869 -0
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.js +62 -0
- package/dist/es6/breadcrumbs/lib/hooks/utils/index.d.ts +6 -0
- package/dist/es6/breadcrumbs/lib/hooks/utils/index.d.ts.map +1 -0
- package/dist/es6/breadcrumbs/lib/hooks/utils/index.js +18 -0
- package/dist/es6/button/index.d.ts +1 -1
- package/dist/es6/button/index.d.ts.map +1 -1
- package/dist/es6/button/index.js +1 -1
- package/dist/es6/button/lib/BaseButton.d.ts +16 -12
- package/dist/es6/button/lib/BaseButton.d.ts.map +1 -1
- package/dist/es6/button/lib/BaseButton.js +123 -73
- package/dist/es6/button/lib/DeleteButton.d.ts +8 -3
- package/dist/es6/button/lib/DeleteButton.d.ts.map +1 -1
- package/dist/es6/button/lib/DeleteButton.js +30 -56
- package/dist/es6/button/lib/ExternalHyperlink.d.ts +5 -1
- package/dist/es6/button/lib/ExternalHyperlink.d.ts.map +1 -1
- package/dist/es6/button/lib/ExternalHyperlink.js +25 -35
- package/dist/es6/button/lib/Hyperlink.d.ts +5 -1
- package/dist/es6/button/lib/Hyperlink.d.ts.map +1 -1
- package/dist/es6/button/lib/Hyperlink.js +11 -32
- package/dist/es6/button/lib/PrimaryButton.d.ts +12 -7
- package/dist/es6/button/lib/PrimaryButton.d.ts.map +1 -1
- package/dist/es6/button/lib/PrimaryButton.js +15 -29
- package/dist/es6/button/lib/SecondaryButton.d.ts +12 -2
- package/dist/es6/button/lib/SecondaryButton.d.ts.map +1 -1
- package/dist/es6/button/lib/SecondaryButton.js +15 -29
- package/dist/es6/button/lib/TertiaryButton.d.ts +21 -8
- package/dist/es6/button/lib/TertiaryButton.d.ts.map +1 -1
- package/dist/es6/button/lib/TertiaryButton.js +35 -50
- package/dist/es6/button/lib/ToolbarDropdownButton.d.ts +1 -1
- package/dist/es6/button/lib/ToolbarDropdownButton.d.ts.map +1 -1
- package/dist/es6/button/lib/ToolbarDropdownButton.js +10 -36
- package/dist/es6/button/lib/ToolbarIconButton.d.ts +1 -1
- package/dist/es6/button/lib/ToolbarIconButton.d.ts.map +1 -1
- package/dist/es6/button/lib/ToolbarIconButton.js +13 -40
- package/dist/es6/button/lib/deprecated_Button.d.ts +1 -1
- package/dist/es6/button/lib/deprecated_Button.d.ts.map +1 -1
- package/dist/es6/button/lib/deprecated_Button.js +50 -53
- package/dist/es6/button/lib/parts/ButtonLabel.d.ts +1 -1
- package/dist/es6/button/lib/parts/ButtonLabel.d.ts.map +1 -1
- package/dist/es6/button/lib/parts/ButtonLabel.js +4 -27
- package/dist/es6/button/lib/parts/ButtonLabelIcon.d.ts +3 -9
- package/dist/es6/button/lib/parts/ButtonLabelIcon.d.ts.map +1 -1
- package/dist/es6/button/lib/parts/ButtonLabelIcon.js +5 -28
- package/dist/es6/card/lib/Card.d.ts +39 -3
- package/dist/es6/card/lib/Card.d.ts.map +1 -1
- package/dist/es6/card/lib/Card.js +39 -26
- package/dist/es6/card/lib/CardBody.d.ts +1 -1
- package/dist/es6/card/lib/CardBody.d.ts.map +1 -1
- package/dist/es6/card/lib/CardBody.js +3 -28
- package/dist/es6/card/lib/CardHeading.d.ts +1 -1
- package/dist/es6/card/lib/CardHeading.d.ts.map +1 -1
- package/dist/es6/card/lib/CardHeading.js +4 -32
- package/dist/es6/checkbox/index.d.ts +0 -3
- package/dist/es6/checkbox/index.d.ts.map +1 -1
- package/dist/es6/checkbox/index.js +0 -3
- package/dist/es6/checkbox/lib/Checkbox.d.ts +2 -3
- package/dist/es6/checkbox/lib/Checkbox.d.ts.map +1 -1
- package/dist/es6/checkbox/lib/Checkbox.js +120 -141
- package/dist/es6/collection/index.d.ts +7 -1
- package/dist/es6/collection/index.d.ts.map +1 -1
- package/dist/es6/collection/index.js +6 -0
- package/dist/es6/collection/lib/ListBox.d.ts +351 -180
- package/dist/es6/collection/lib/ListBox.d.ts.map +1 -1
- package/dist/es6/collection/lib/ListBox.js +29 -37
- package/dist/es6/collection/lib/keyUtils.d.ts +26 -0
- package/dist/es6/collection/lib/keyUtils.d.ts.map +1 -0
- package/dist/es6/collection/lib/keyUtils.js +76 -0
- package/dist/es6/collection/lib/react-virtual.js +1 -1
- package/dist/es6/collection/lib/useBaseListModel.d.ts +30 -20
- package/dist/es6/collection/lib/useBaseListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useBaseListModel.js +77 -70
- package/dist/es6/collection/lib/useCursorListModel.d.ts +627 -194
- package/dist/es6/collection/lib/useCursorListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useCursorListModel.js +210 -171
- package/dist/es6/collection/lib/useGridModel.d.ts +1109 -0
- package/dist/es6/collection/lib/useGridModel.d.ts.map +1 -0
- package/dist/es6/collection/lib/useGridModel.js +35 -0
- package/dist/es6/collection/lib/useListActiveDescendant.d.ts +68 -0
- package/dist/es6/collection/lib/useListActiveDescendant.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListActiveDescendant.js +22 -0
- package/dist/es6/collection/lib/useListItemAllowChildStrings.d.ts +88 -0
- package/dist/es6/collection/lib/useListItemAllowChildStrings.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListItemAllowChildStrings.js +34 -0
- package/dist/es6/collection/lib/useListItemRegister.d.ts +25 -13
- package/dist/es6/collection/lib/useListItemRegister.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRegister.js +31 -19
- package/dist/es6/collection/lib/useListItemRovingFocus.d.ts +23 -38
- package/dist/es6/collection/lib/useListItemRovingFocus.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRovingFocus.js +62 -112
- package/dist/es6/collection/lib/useListItemSelect.d.ts +25 -11
- package/dist/es6/collection/lib/useListItemSelect.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemSelect.js +19 -10
- package/dist/es6/collection/lib/useListKeyboardHandler.d.ts +66 -0
- package/dist/es6/collection/lib/useListKeyboardHandler.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListKeyboardHandler.js +24 -0
- package/dist/es6/collection/lib/useListLoader.d.ts +106 -0
- package/dist/es6/collection/lib/useListLoader.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListLoader.js +230 -0
- package/dist/es6/collection/lib/useListModel.d.ts +289 -122
- package/dist/es6/collection/lib/useListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListModel.js +21 -4
- package/dist/es6/collection/lib/useListRenderItem.d.ts +15 -1
- package/dist/es6/collection/lib/useListRenderItem.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListRenderItem.js +40 -16
- package/dist/es6/collection/lib/useListResetCursorOnBlur.d.ts +25 -12
- package/dist/es6/collection/lib/useListResetCursorOnBlur.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListResetCursorOnBlur.js +18 -8
- package/dist/es6/collection/lib/useOverflowListItemMeasure.d.ts +24 -11
- package/dist/es6/collection/lib/useOverflowListItemMeasure.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListItemMeasure.js +19 -9
- package/dist/es6/collection/lib/useOverflowListMeasure.d.ts +18 -12
- package/dist/es6/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListMeasure.js +9 -5
- package/dist/es6/collection/lib/useOverflowListModel.d.ts +341 -143
- package/dist/es6/collection/lib/useOverflowListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListModel.js +59 -54
- package/dist/es6/collection/lib/useOverflowListTarget.d.ts +22 -13
- package/dist/es6/collection/lib/useOverflowListTarget.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListTarget.js +12 -8
- package/dist/es6/collection/lib/useSelectionListModel.d.ts +282 -120
- package/dist/es6/collection/lib/useSelectionListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useSelectionListModel.js +32 -37
- package/dist/es6/color-picker/index.d.ts +0 -3
- package/dist/es6/color-picker/index.d.ts.map +1 -1
- package/dist/es6/color-picker/index.js +0 -3
- package/dist/es6/color-picker/lib/ColorInput.d.ts +1 -2
- package/dist/es6/color-picker/lib/ColorInput.d.ts.map +1 -1
- package/dist/es6/color-picker/lib/ColorInput.js +42 -74
- package/dist/es6/color-picker/lib/ColorPreview.d.ts +1 -2
- package/dist/es6/color-picker/lib/ColorPreview.d.ts.map +1 -1
- package/dist/es6/color-picker/lib/ColorPreview.js +4 -30
- package/dist/es6/color-picker/lib/parts/ColorSwatch.js +8 -36
- package/dist/es6/combobox/index.d.ts +9 -0
- package/dist/es6/combobox/index.d.ts.map +1 -0
- package/dist/es6/combobox/index.js +8 -0
- package/dist/es6/combobox/lib/Combobox.d.ts +2075 -0
- package/dist/es6/combobox/lib/Combobox.d.ts.map +1 -0
- package/dist/es6/combobox/lib/Combobox.js +23 -0
- package/dist/es6/combobox/lib/ComboboxCard.d.ts +166 -0
- package/dist/es6/combobox/lib/ComboboxCard.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxCard.js +19 -0
- package/dist/es6/combobox/lib/ComboboxInput.d.ts +186 -0
- package/dist/es6/combobox/lib/ComboboxInput.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxInput.js +78 -0
- package/dist/es6/combobox/lib/ComboboxMenu.d.ts +428 -0
- package/dist/es6/combobox/lib/ComboboxMenu.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxMenu.js +57 -0
- package/dist/es6/combobox/lib/ComboboxMenuItem.d.ts +178 -0
- package/dist/es6/combobox/lib/ComboboxMenuItem.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxMenuItem.js +44 -0
- package/dist/es6/combobox/lib/ComboboxMenuList.d.ts +164 -0
- package/dist/es6/combobox/lib/ComboboxMenuList.d.ts.map +1 -0
- package/dist/es6/combobox/lib/ComboboxMenuList.js +25 -0
- package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts +84 -0
- package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts.map +1 -0
- package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.js +17 -0
- package/dist/es6/combobox/lib/useComboboxLoader.d.ts +28 -0
- package/dist/es6/combobox/lib/useComboboxLoader.d.ts.map +1 -0
- package/dist/es6/combobox/lib/useComboboxLoader.js +58 -0
- package/dist/es6/combobox/lib/useComboboxModel.d.ts +1998 -0
- package/dist/es6/combobox/lib/useComboboxModel.d.ts.map +1 -0
- package/dist/es6/combobox/lib/useComboboxModel.js +76 -0
- package/dist/es6/common/index.d.ts +1 -0
- package/dist/es6/common/index.d.ts.map +1 -1
- package/dist/es6/common/index.js +1 -0
- package/dist/es6/common/lib/CanvasProvider.js +11 -52
- package/dist/es6/common/lib/EllipsisText.d.ts +1 -2
- package/dist/es6/common/lib/EllipsisText.d.ts.map +1 -1
- package/dist/es6/common/lib/EllipsisText.js +10 -3
- package/dist/es6/common/lib/InputProvider.d.ts +2 -2
- package/dist/es6/common/lib/InputProvider.d.ts.map +1 -1
- package/dist/es6/common/lib/InputProvider.js +72 -95
- package/dist/es6/common/lib/parts/_brand-assets.js +6 -6
- package/dist/es6/common/lib/responsive/useResponsiveContainerStyles.d.ts +78 -0
- package/dist/es6/common/lib/responsive/useResponsiveContainerStyles.d.ts.map +1 -0
- package/dist/es6/common/lib/responsive/useResponsiveContainerStyles.js +106 -0
- package/dist/es6/common/lib/styles/accessibleHide.js +1 -1
- package/dist/es6/common/lib/styles/errorRing.js +8 -7
- package/dist/es6/common/lib/styles/focusRing.d.ts +0 -3
- package/dist/es6/common/lib/styles/focusRing.d.ts.map +1 -1
- package/dist/es6/common/lib/styles/focusRing.js +17 -30
- package/dist/es6/common/lib/styles/hideMouseFocus.js +13 -9
- package/dist/es6/common/lib/theming/breakpoints.js +12 -12
- package/dist/es6/common/lib/theming/createCanvasTheme.d.ts +7 -6
- package/dist/es6/common/lib/theming/createCanvasTheme.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/createCanvasTheme.js +39 -63
- package/dist/es6/common/lib/theming/getObjectProxy.d.ts +15 -0
- package/dist/es6/common/lib/theming/getObjectProxy.d.ts.map +1 -0
- package/dist/es6/common/lib/theming/getObjectProxy.js +27 -0
- package/dist/es6/common/lib/theming/index.d.ts +3 -1
- package/dist/es6/common/lib/theming/index.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/index.js +2 -0
- package/dist/es6/common/lib/theming/styled.d.ts +2 -0
- package/dist/es6/common/lib/theming/styled.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/styled.js +7 -12
- package/dist/es6/common/lib/theming/theme.js +5 -5
- package/dist/es6/common/lib/theming/useIsRTL.js +2 -2
- package/dist/es6/common/lib/theming/useTheme.d.ts +49 -5
- package/dist/es6/common/lib/theming/useTheme.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/useTheme.js +78 -34
- package/dist/es6/common/lib/theming/useThemedRing.d.ts +43 -0
- package/dist/es6/common/lib/theming/useThemedRing.d.ts.map +1 -0
- package/dist/es6/common/lib/theming/useThemedRing.js +92 -0
- package/dist/es6/common/lib/utils/changeFocus.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/changeFocus.js +11 -5
- package/dist/es6/common/lib/utils/colorUtils.d.ts +7 -0
- package/dist/es6/common/lib/utils/colorUtils.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/colorUtils.js +24 -12
- package/dist/es6/common/lib/utils/components.d.ts +166 -100
- package/dist/es6/common/lib/utils/components.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/components.js +158 -114
- package/dist/es6/common/lib/utils/deepMerge.d.ts +2 -0
- package/dist/es6/common/lib/utils/deepMerge.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/deepMerge.js +20 -0
- package/dist/es6/common/lib/utils/dispatchInputEvent.d.ts +2 -0
- package/dist/es6/common/lib/utils/dispatchInputEvent.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/dispatchInputEvent.js +14 -0
- package/dist/es6/common/lib/utils/elements.d.ts +1 -1
- package/dist/es6/common/lib/utils/elements.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/elements.js +20 -26
- package/dist/es6/common/lib/utils/getTranslateFromOrigin.js +2 -2
- package/dist/es6/common/lib/utils/index.d.ts +2 -1
- package/dist/es6/common/lib/utils/index.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/index.js +2 -1
- package/dist/es6/common/lib/utils/isWithinBreakpoint.d.ts +5 -0
- package/dist/es6/common/lib/utils/isWithinBreakpoint.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/isWithinBreakpoint.js +6 -0
- package/dist/es6/common/lib/utils/makeMq.js +4 -4
- package/dist/es6/common/lib/utils/memoize.d.ts +6 -0
- package/dist/es6/common/lib/utils/memoize.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/memoize.js +16 -0
- package/dist/es6/common/lib/utils/mergeCallback.js +1 -5
- package/dist/es6/common/lib/utils/mergeProps.js +4 -15
- package/dist/es6/common/lib/utils/models.d.ts +16 -4
- package/dist/es6/common/lib/utils/models.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/models.js +55 -72
- package/dist/es6/common/lib/utils/slugify.d.ts +5 -0
- package/dist/es6/common/lib/utils/slugify.d.ts.map +1 -0
- package/dist/es6/common/lib/utils/slugify.js +11 -0
- package/dist/es6/common/lib/utils/useConstant.js +1 -1
- package/dist/es6/common/lib/utils/useIsFullscreen.js +5 -5
- package/dist/es6/common/lib/utils/useModalityType.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/useModalityType.js +34 -20
- package/dist/es6/common/lib/utils/useMount.js +2 -2
- package/dist/es6/common/lib/utils/useResizeObserver.js +6 -18
- package/dist/es6/common/lib/utils/useUniqueId.js +8 -8
- package/dist/es6/common/lib/utils/useWindowSize.js +8 -8
- package/dist/es6/dialog/lib/Dialog.d.ts +91 -26
- package/dist/es6/dialog/lib/Dialog.d.ts.map +1 -1
- package/dist/es6/dialog/lib/Dialog.js +67 -3
- package/dist/es6/dialog/lib/DialogCard.d.ts +4 -4
- package/dist/es6/dialog/lib/DialogCard.js +3 -14
- package/dist/es6/dialog/lib/DialogPopper.d.ts +4 -4
- package/dist/es6/dialog/lib/DialogPopper.d.ts.map +1 -1
- package/dist/es6/dialog/lib/DialogPopper.js +9 -29
- package/dist/es6/dialog/lib/hooks/useDialogCard.d.ts +8 -5
- package/dist/es6/dialog/lib/hooks/useDialogCard.d.ts.map +1 -1
- package/dist/es6/dialog/lib/hooks/useDialogCard.js +2 -3
- package/dist/es6/dialog/lib/hooks/useDialogModel.d.ts +10 -10
- package/dist/es6/dialog/lib/hooks/useDialogModel.js +3 -3
- package/dist/es6/dialog/lib/hooks/useDialogPopper.d.ts +4 -6
- package/dist/es6/dialog/lib/hooks/useDialogPopper.d.ts.map +1 -1
- package/dist/es6/dialog/lib/hooks/useDialogPopper.js +3 -4
- package/dist/es6/disclosure/lib/useDisclosureModel.d.ts +22 -22
- package/dist/es6/disclosure/lib/useDisclosureModel.js +13 -13
- package/dist/es6/form-field/index.d.ts +0 -5
- package/dist/es6/form-field/index.d.ts.map +1 -1
- package/dist/es6/form-field/index.js +0 -5
- 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 +40 -79
- package/dist/es6/form-field/lib/Hint.d.ts +1 -1
- package/dist/es6/form-field/lib/Hint.d.ts.map +1 -1
- package/dist/es6/form-field/lib/Hint.js +14 -54
- package/dist/es6/form-field/lib/Label.d.ts +6 -5
- package/dist/es6/form-field/lib/Label.d.ts.map +1 -1
- package/dist/es6/form-field/lib/Label.js +41 -86
- package/dist/es6/icon/index.d.ts +0 -7
- package/dist/es6/icon/index.d.ts.map +1 -1
- package/dist/es6/icon/index.js +0 -7
- package/dist/es6/icon/lib/AccentIcon.d.ts +4 -4
- package/dist/es6/icon/lib/AccentIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/AccentIcon.js +13 -40
- package/dist/es6/icon/lib/AppletIcon.d.ts +1 -2
- package/dist/es6/icon/lib/AppletIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/AppletIcon.js +13 -38
- package/dist/es6/icon/lib/Graphic.d.ts +1 -2
- package/dist/es6/icon/lib/Graphic.d.ts.map +1 -1
- package/dist/es6/icon/lib/Graphic.js +7 -32
- package/dist/es6/icon/lib/Icon.d.ts +1 -2
- package/dist/es6/icon/lib/Icon.d.ts.map +1 -1
- package/dist/es6/icon/lib/Icon.js +11 -31
- package/dist/es6/icon/lib/Svg.d.ts +1 -2
- package/dist/es6/icon/lib/Svg.d.ts.map +1 -1
- package/dist/es6/icon/lib/Svg.js +8 -32
- package/dist/es6/icon/lib/SystemIcon.d.ts +11 -12
- package/dist/es6/icon/lib/SystemIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/SystemIcon.js +34 -61
- package/dist/es6/icon/lib/SystemIconCircle.d.ts +3 -3
- package/dist/es6/icon/lib/SystemIconCircle.d.ts.map +1 -1
- package/dist/es6/icon/lib/SystemIconCircle.js +15 -45
- package/dist/es6/icon/lib/utils.js +1 -1
- package/dist/es6/index.d.ts +5 -1
- package/dist/es6/index.d.ts.map +1 -1
- package/dist/es6/index.js +5 -1
- package/dist/es6/layout/index.d.ts +14 -7
- package/dist/es6/layout/index.d.ts.map +1 -1
- package/dist/es6/layout/index.js +11 -4
- package/dist/es6/layout/lib/Box.d.ts +23 -11
- package/dist/es6/layout/lib/Box.d.ts.map +1 -1
- package/dist/es6/layout/lib/Box.js +43 -42
- package/dist/es6/layout/lib/Flex.d.ts +6 -3
- package/dist/es6/layout/lib/Flex.d.ts.map +1 -1
- package/dist/es6/layout/lib/Flex.js +9 -28
- package/dist/es6/layout/lib/Grid.d.ts +51 -0
- package/dist/es6/layout/lib/Grid.d.ts.map +1 -0
- package/dist/es6/layout/lib/Grid.js +66 -0
- package/dist/es6/layout/lib/utils/background.d.ts +44 -0
- package/dist/es6/layout/lib/utils/background.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/background.js +54 -0
- package/dist/es6/layout/lib/utils/border/color.d.ts +47 -0
- package/dist/es6/layout/lib/utils/border/color.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/border/color.js +39 -0
- package/dist/es6/layout/lib/utils/border/index.d.ts +26 -0
- package/dist/es6/layout/lib/utils/border/index.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/border/index.js +37 -0
- package/dist/es6/layout/lib/utils/border/lineStyle.d.ts +38 -0
- package/dist/es6/layout/lib/utils/border/lineStyle.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/border/lineStyle.js +49 -0
- package/dist/es6/layout/lib/utils/border/radius.d.ts +33 -0
- package/dist/es6/layout/lib/utils/border/radius.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/border/radius.js +29 -0
- package/dist/es6/layout/lib/utils/border/shorthand.d.ts +34 -0
- package/dist/es6/layout/lib/utils/border/shorthand.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/border/shorthand.js +39 -0
- package/dist/es6/layout/lib/utils/border/width.d.ts +34 -0
- package/dist/es6/layout/lib/utils/border/width.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/border/width.js +39 -0
- package/dist/es6/layout/lib/utils/buildStyleFns.d.ts +12 -0
- package/dist/es6/layout/lib/utils/buildStyleFns.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/buildStyleFns.js +82 -0
- package/dist/es6/layout/lib/utils/color.d.ts +23 -16
- package/dist/es6/layout/lib/utils/color.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/color.js +24 -46
- package/dist/es6/layout/lib/utils/depth.d.ts +17 -11
- package/dist/es6/layout/lib/utils/depth.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/depth.js +19 -18
- package/dist/es6/layout/lib/utils/flex.d.ts +39 -20
- package/dist/es6/layout/lib/utils/flex.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/flex.js +57 -23
- package/dist/es6/layout/lib/utils/flexItem.d.ts +22 -19
- package/dist/es6/layout/lib/utils/flexItem.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/flexItem.js +42 -24
- package/dist/es6/layout/lib/utils/getValidChildren.d.ts +1 -1
- package/dist/es6/layout/lib/utils/getValidChildren.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/getValidChildren.js +1 -3
- package/dist/es6/layout/lib/utils/grid.d.ts +72 -0
- package/dist/es6/layout/lib/utils/grid.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/grid.js +109 -0
- package/dist/es6/layout/lib/utils/gridItem.d.ts +42 -0
- package/dist/es6/layout/lib/utils/gridItem.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/gridItem.js +68 -0
- package/dist/es6/layout/lib/utils/layout.d.ts +54 -32
- package/dist/es6/layout/lib/utils/layout.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/layout.js +70 -31
- package/dist/es6/layout/lib/utils/other.d.ts +46 -2
- package/dist/es6/layout/lib/utils/other.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/other.js +100 -15
- package/dist/es6/layout/lib/utils/position.d.ts +44 -23
- package/dist/es6/layout/lib/utils/position.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/position.js +53 -64
- package/dist/es6/layout/lib/utils/space.d.ts +107 -51
- package/dist/es6/layout/lib/utils/space.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/space.js +97 -146
- package/dist/es6/layout/lib/utils/styleProps.d.ts +41 -0
- package/dist/es6/layout/lib/utils/styleProps.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/systemProps.d.ts +31 -0
- package/dist/es6/layout/lib/utils/systemProps.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/systemProps.js +1 -0
- package/dist/es6/layout/lib/utils/text.d.ts +53 -0
- package/dist/es6/layout/lib/utils/text.d.ts.map +1 -0
- package/dist/es6/layout/lib/utils/text.js +81 -0
- package/dist/es6/loading-dots/index.d.ts +2 -0
- package/dist/es6/loading-dots/index.d.ts.map +1 -0
- package/dist/es6/loading-dots/index.js +1 -0
- package/dist/es6/{loading-animation → loading-dots}/lib/LoadingDots.d.ts +1 -1
- package/dist/es6/loading-dots/lib/LoadingDots.d.ts.map +1 -0
- package/dist/es6/loading-dots/lib/LoadingDots.js +55 -0
- package/dist/es6/menu/index.d.ts +1 -1
- package/dist/es6/menu/index.d.ts.map +1 -1
- package/dist/es6/menu/index.js +1 -1
- package/dist/es6/menu/lib/Menu.d.ts +474 -439
- package/dist/es6/menu/lib/Menu.d.ts.map +1 -1
- package/dist/es6/menu/lib/Menu.js +45 -16
- package/dist/es6/menu/lib/MenuCard.d.ts +25 -19
- package/dist/es6/menu/lib/MenuCard.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuCard.js +9 -21
- package/dist/es6/menu/lib/MenuContextTarget.d.ts +142 -18
- package/dist/es6/menu/lib/MenuContextTarget.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuContextTarget.js +9 -34
- package/dist/es6/menu/lib/MenuDivider.d.ts +1 -1
- package/dist/es6/menu/lib/MenuDivider.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuDivider.js +6 -17
- package/dist/es6/menu/lib/MenuItem.d.ts +78 -21
- package/dist/es6/menu/lib/MenuItem.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuItem.js +76 -84
- package/dist/es6/menu/lib/MenuList.d.ts +31 -25
- package/dist/es6/menu/lib/MenuList.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuList.js +7 -29
- package/dist/es6/menu/lib/MenuPopper.d.ts +17 -15
- package/dist/es6/menu/lib/MenuPopper.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuPopper.js +4 -27
- package/dist/es6/menu/lib/MenuTarget.d.ts +227 -22
- package/dist/es6/menu/lib/MenuTarget.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuTarget.js +12 -38
- package/dist/es6/menu/lib/useMenuModel.d.ts +393 -219
- package/dist/es6/menu/lib/useMenuModel.d.ts.map +1 -1
- package/dist/es6/menu/lib/useMenuModel.js +22 -26
- package/dist/es6/modal/lib/Modal.d.ts +203 -47
- package/dist/es6/modal/lib/Modal.d.ts.map +1 -1
- package/dist/es6/modal/lib/Modal.js +79 -7
- package/dist/es6/modal/lib/ModalBody.d.ts +24 -0
- package/dist/es6/modal/lib/ModalBody.d.ts.map +1 -0
- package/dist/es6/modal/lib/ModalBody.js +20 -0
- package/dist/es6/modal/lib/ModalCard.d.ts +2 -2
- package/dist/es6/modal/lib/ModalCard.d.ts.map +1 -1
- package/dist/es6/modal/lib/ModalCard.js +16 -15
- package/dist/es6/modal/lib/ModalHeading.d.ts +2 -2
- package/dist/es6/modal/lib/ModalHeading.d.ts.map +1 -1
- package/dist/es6/modal/lib/ModalHeading.js +14 -15
- package/dist/es6/modal/lib/ModalOverflowOverlay.d.ts +4 -4
- package/dist/es6/modal/lib/ModalOverflowOverlay.js +5 -16
- package/dist/es6/modal/lib/ModalOverlay.d.ts +6 -9
- package/dist/es6/modal/lib/ModalOverlay.d.ts.map +1 -1
- package/dist/es6/modal/lib/ModalOverlay.js +38 -45
- package/dist/es6/modal/lib/hooks/useCloseOnOverlayClick.d.ts +3 -5
- package/dist/es6/modal/lib/hooks/useCloseOnOverlayClick.d.ts.map +1 -1
- package/dist/es6/modal/lib/hooks/useCloseOnOverlayClick.js +16 -14
- package/dist/es6/modal/lib/hooks/useModalCard.d.ts +8 -5
- package/dist/es6/modal/lib/hooks/useModalCard.d.ts.map +1 -1
- package/dist/es6/modal/lib/hooks/useModalCard.js +1 -1
- package/dist/es6/modal/lib/hooks/useModalHeading.d.ts +8 -5
- package/dist/es6/modal/lib/hooks/useModalHeading.d.ts.map +1 -1
- package/dist/es6/modal/lib/hooks/useModalHeading.js +5 -5
- package/dist/es6/modal/lib/hooks/useModalModel.d.ts +10 -10
- package/dist/es6/modal/lib/hooks/useModalModel.js +4 -4
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.d.ts +2 -3
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.js +19 -34
- package/dist/es6/pagination/lib/Pagination/Controls.d.ts +12 -11
- package/dist/es6/pagination/lib/Pagination/Controls.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/Controls.js +77 -83
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.d.ts +5 -5
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/Form.js +14 -29
- package/dist/es6/pagination/lib/Pagination/GoTo/Label.d.ts +2 -3
- package/dist/es6/pagination/lib/Pagination/GoTo/Label.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/Label.js +10 -29
- package/dist/es6/pagination/lib/Pagination/GoTo/TextInput.d.ts +4 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/TextInput.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/TextInput.js +9 -26
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.d.ts +10 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/useGoToForm.js +12 -12
- package/dist/es6/pagination/lib/Pagination/Nav.d.ts +1 -1
- package/dist/es6/pagination/lib/Pagination/Nav.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/Nav.js +2 -25
- package/dist/es6/pagination/lib/Pagination/PageButton.d.ts +4 -5
- package/dist/es6/pagination/lib/Pagination/PageButton.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/PageButton.js +20 -38
- package/dist/es6/pagination/lib/Pagination/PageList.d.ts +7 -6
- package/dist/es6/pagination/lib/Pagination/PageList.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/PageList.js +16 -31
- package/dist/es6/pagination/lib/Pagination/Pagination.d.ts +230 -38
- package/dist/es6/pagination/lib/Pagination/Pagination.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/Pagination.js +229 -99
- package/dist/es6/pagination/lib/Pagination/buildPageRange.js +9 -17
- package/dist/es6/pagination/lib/Pagination/common/List.d.ts +2 -2
- package/dist/es6/pagination/lib/Pagination/common/List.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/common/List.js +7 -31
- package/dist/es6/pagination/lib/Pagination/common/useLiveRegion.d.ts +0 -1
- package/dist/es6/pagination/lib/Pagination/common/useLiveRegion.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/common/useLiveRegion.js +8 -26
- package/dist/es6/pagination/lib/Pagination/common/utils/getValidChildren.d.ts +1 -1
- package/dist/es6/pagination/lib/Pagination/common/utils/getValidChildren.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/common/utils/getValidChildren.js +1 -3
- package/dist/es6/pagination/lib/Pagination/common/utils/helpers.d.ts +45 -15
- package/dist/es6/pagination/lib/Pagination/common/utils/helpers.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/common/utils/helpers.js +45 -15
- package/dist/es6/pagination/lib/Pagination/common/utils/useRTL.js +4 -4
- package/dist/es6/pagination/lib/Pagination/usePaginationModel.d.ts +3 -1
- package/dist/es6/pagination/lib/Pagination/usePaginationModel.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/usePaginationModel.js +35 -30
- package/dist/es6/popup/lib/Popper.d.ts +16 -1
- package/dist/es6/popup/lib/Popper.d.ts.map +1 -1
- package/dist/es6/popup/lib/Popper.js +44 -53
- package/dist/es6/popup/lib/Popup.d.ts +103 -22
- package/dist/es6/popup/lib/Popup.d.ts.map +1 -1
- package/dist/es6/popup/lib/Popup.js +87 -7
- package/dist/es6/popup/lib/PopupBody.d.ts +2 -2
- package/dist/es6/popup/lib/PopupBody.js +3 -14
- package/dist/es6/popup/lib/PopupCard.d.ts +5 -4
- package/dist/es6/popup/lib/PopupCard.d.ts.map +1 -1
- package/dist/es6/popup/lib/PopupCard.js +54 -42
- package/dist/es6/popup/lib/PopupCloseButton.d.ts +2 -2
- package/dist/es6/popup/lib/PopupCloseButton.d.ts.map +1 -1
- package/dist/es6/popup/lib/PopupCloseButton.js +3 -26
- package/dist/es6/popup/lib/PopupCloseIcon.d.ts +2 -2
- package/dist/es6/popup/lib/PopupCloseIcon.d.ts.map +1 -1
- package/dist/es6/popup/lib/PopupCloseIcon.js +5 -33
- package/dist/es6/popup/lib/PopupHeading.d.ts +2 -2
- package/dist/es6/popup/lib/PopupHeading.js +3 -26
- package/dist/es6/popup/lib/PopupPopper.d.ts +4 -5
- package/dist/es6/popup/lib/PopupPopper.d.ts.map +1 -1
- package/dist/es6/popup/lib/PopupPopper.js +3 -26
- package/dist/es6/popup/lib/PopupTarget.d.ts +2 -2
- package/dist/es6/popup/lib/PopupTarget.js +3 -14
- package/dist/es6/popup/lib/getTransformFromPlacement.js +6 -6
- package/dist/es6/popup/lib/hooks/focus-trap-js.js +23 -27
- package/dist/es6/popup/lib/hooks/index.d.ts +1 -0
- package/dist/es6/popup/lib/hooks/index.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/index.js +1 -0
- package/dist/es6/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useAlwaysCloseOnOutsideClick.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useAlwaysCloseOnOutsideClick.js +5 -5
- package/dist/es6/popup/lib/hooks/useAssistiveHideSiblings.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useAssistiveHideSiblings.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useAssistiveHideSiblings.js +11 -16
- package/dist/es6/popup/lib/hooks/useBringToTopOnClick.d.ts +7 -9
- package/dist/es6/popup/lib/hooks/useBringToTopOnClick.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useBringToTopOnClick.js +11 -11
- package/dist/es6/popup/lib/hooks/useCloseOnEscape.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/useCloseOnEscape.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useCloseOnEscape.js +7 -7
- package/dist/es6/popup/lib/hooks/useCloseOnFullscreenExit.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useCloseOnFullscreenExit.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useCloseOnFullscreenExit.js +5 -5
- package/dist/es6/popup/lib/hooks/useCloseOnOutsideClick.d.ts +9 -11
- package/dist/es6/popup/lib/hooks/useCloseOnOutsideClick.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useCloseOnOutsideClick.js +14 -14
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.d.ts +29 -0
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.d.ts.map +1 -0
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.js +50 -0
- package/dist/es6/popup/lib/hooks/useDisableBodyScroll.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useDisableBodyScroll.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useDisableBodyScroll.js +7 -7
- package/dist/es6/popup/lib/hooks/useFocusRedirect.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useFocusRedirect.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useFocusRedirect.js +7 -7
- package/dist/es6/popup/lib/hooks/useFocusTrap.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useFocusTrap.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useFocusTrap.js +5 -5
- package/dist/es6/popup/lib/hooks/useInitialFocus.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/useInitialFocus.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useInitialFocus.js +9 -9
- package/dist/es6/popup/lib/hooks/usePopupCard.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/usePopupCard.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupCard.js +2 -3
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.d.ts +7 -8
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupCloseButton.js +4 -4
- package/dist/es6/popup/lib/hooks/usePopupHeading.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/usePopupHeading.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupHeading.js +2 -3
- package/dist/es6/popup/lib/hooks/usePopupModel.d.ts +13 -13
- package/dist/es6/popup/lib/hooks/usePopupModel.js +28 -33
- package/dist/es6/popup/lib/hooks/usePopupPopper.d.ts +7 -8
- package/dist/es6/popup/lib/hooks/usePopupPopper.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupPopper.js +7 -7
- package/dist/es6/popup/lib/hooks/usePopupStack.d.ts +27 -19
- package/dist/es6/popup/lib/hooks/usePopupStack.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupStack.js +38 -30
- package/dist/es6/popup/lib/hooks/usePopupTarget.d.ts +6 -8
- package/dist/es6/popup/lib/hooks/usePopupTarget.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupTarget.js +4 -5
- package/dist/es6/popup/lib/hooks/usePopupTargetContext.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/usePopupTargetContext.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/usePopupTargetContext.js +3 -4
- package/dist/es6/popup/lib/hooks/useReturnFocus.d.ts +5 -7
- package/dist/es6/popup/lib/hooks/useReturnFocus.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useReturnFocus.js +115 -10
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenEnter.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenEnter.js +5 -5
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenExit.d.ts +3 -5
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenExit.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useTransferOnFullscreenExit.js +5 -5
- package/dist/es6/radio/index.d.ts +0 -4
- package/dist/es6/radio/index.d.ts.map +1 -1
- package/dist/es6/radio/index.js +0 -4
- package/dist/es6/radio/lib/Radio.d.ts +1 -2
- package/dist/es6/radio/lib/Radio.d.ts.map +1 -1
- package/dist/es6/radio/lib/Radio.js +114 -146
- 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 +30 -74
- package/dist/es6/segmented-control/index.d.ts +0 -3
- package/dist/es6/segmented-control/index.d.ts.map +1 -1
- package/dist/es6/segmented-control/index.js +0 -3
- package/dist/es6/segmented-control/lib/SegmentedControl.d.ts +2 -3
- package/dist/es6/segmented-control/lib/SegmentedControl.d.ts.map +1 -1
- package/dist/es6/segmented-control/lib/SegmentedControl.js +5 -29
- package/dist/es6/segmented-control/lib/SegmentedControlButton.d.ts +4 -2
- package/dist/es6/segmented-control/lib/SegmentedControlButton.d.ts.map +1 -1
- package/dist/es6/segmented-control/lib/SegmentedControlButton.js +44 -56
- package/dist/es6/select/index.d.ts +0 -4
- package/dist/es6/select/index.d.ts.map +1 -1
- package/dist/es6/select/index.js +0 -4
- package/dist/es6/select/lib/Select.d.ts +2 -3
- package/dist/es6/select/lib/Select.d.ts.map +1 -1
- package/dist/es6/select/lib/Select.js +44 -62
- package/dist/es6/select/lib/SelectOption.d.ts +1 -1
- package/dist/es6/select/lib/SelectOption.d.ts.map +1 -1
- package/dist/es6/select/lib/SelectOption.js +5 -46
- package/dist/es6/side-panel/index.d.ts +0 -3
- package/dist/es6/side-panel/index.d.ts.map +1 -1
- package/dist/es6/side-panel/index.js +0 -3
- package/dist/es6/side-panel/lib/SidePanel.d.ts +1 -1
- package/dist/es6/side-panel/lib/SidePanel.d.ts.map +1 -1
- package/dist/es6/side-panel/lib/SidePanel.js +58 -120
- package/dist/es6/skeleton/lib/parts/skeletonHeader.d.ts +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonHeader.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonHeader.js +2 -27
- package/dist/es6/skeleton/lib/parts/skeletonShape.d.ts +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonShape.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonShape.js +9 -37
- package/dist/es6/skeleton/lib/parts/skeletonText.d.ts +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonText.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/parts/skeletonText.js +9 -35
- package/dist/es6/skeleton/lib/skeleton.d.ts +30 -4
- package/dist/es6/skeleton/lib/skeleton.d.ts.map +1 -1
- package/dist/es6/skeleton/lib/skeleton.js +36 -35
- package/dist/es6/status-indicator/index.d.ts +0 -3
- package/dist/es6/status-indicator/index.d.ts.map +1 -1
- package/dist/es6/status-indicator/index.js +0 -3
- package/dist/es6/status-indicator/lib/StatusIndicator.d.ts +1 -1
- package/dist/es6/status-indicator/lib/StatusIndicator.d.ts.map +1 -1
- package/dist/es6/status-indicator/lib/StatusIndicator.js +25 -57
- package/dist/es6/switch/index.d.ts +0 -3
- package/dist/es6/switch/index.d.ts.map +1 -1
- package/dist/es6/switch/index.js +0 -3
- package/dist/es6/switch/lib/Switch.d.ts +1 -2
- package/dist/es6/switch/lib/Switch.d.ts.map +1 -1
- package/dist/es6/switch/lib/Switch.js +54 -65
- package/dist/es6/table/index.d.ts +0 -4
- package/dist/es6/table/index.d.ts.map +1 -1
- package/dist/es6/table/index.js +0 -4
- package/dist/es6/table/lib/Table.d.ts +1 -1
- package/dist/es6/table/lib/Table.d.ts.map +1 -1
- package/dist/es6/table/lib/Table.js +9 -50
- package/dist/es6/table/lib/TableRow.d.ts +2 -2
- package/dist/es6/table/lib/TableRow.d.ts.map +1 -1
- package/dist/es6/table/lib/TableRow.js +35 -63
- package/dist/es6/tabs/lib/Tabs.d.ts +2246 -392
- package/dist/es6/tabs/lib/Tabs.d.ts.map +1 -1
- package/dist/es6/tabs/lib/Tabs.js +96 -5
- package/dist/es6/tabs/lib/TabsItem.d.ts +179 -30
- package/dist/es6/tabs/lib/TabsItem.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsItem.js +73 -80
- package/dist/es6/tabs/lib/TabsList.d.ts +157 -29
- package/dist/es6/tabs/lib/TabsList.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsList.js +48 -44
- package/dist/es6/tabs/lib/TabsMenuPopper.d.ts +17 -15
- package/dist/es6/tabs/lib/TabsMenuPopper.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsMenuPopper.js +4 -27
- package/dist/es6/tabs/lib/TabsOverflowButton.d.ts +119 -27
- package/dist/es6/tabs/lib/TabsOverflowButton.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsOverflowButton.js +6 -29
- package/dist/es6/tabs/lib/TabsPanel.d.ts +47 -33
- package/dist/es6/tabs/lib/TabsPanel.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsPanel.js +14 -39
- package/dist/es6/tabs/lib/TabsPanels.d.ts +25 -17
- package/dist/es6/tabs/lib/TabsPanels.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsPanels.js +2 -3
- package/dist/es6/tabs/lib/useTabsModel.d.ts +3442 -586
- package/dist/es6/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/es6/tabs/lib/useTabsModel.js +60 -41
- package/dist/es6/testing/index.d.ts +5 -0
- package/dist/es6/testing/index.d.ts.map +1 -0
- package/dist/es6/testing/index.js +4 -0
- package/dist/es6/testing/lib/ComponentStatesTable.d.ts +26 -0
- package/dist/es6/testing/lib/ComponentStatesTable.d.ts.map +1 -0
- package/dist/es6/testing/lib/ComponentStatesTable.js +32 -0
- package/dist/es6/testing/lib/StaticStates.d.ts +7 -0
- package/dist/es6/testing/lib/StaticStates.d.ts.map +1 -0
- package/dist/es6/testing/lib/StaticStates.js +25 -0
- package/dist/es6/testing/lib/permutateProps.d.ts +5 -0
- package/dist/es6/testing/lib/permutateProps.d.ts.map +1 -0
- package/dist/es6/testing/lib/permutateProps.js +30 -0
- package/dist/es6/testing/lib/propTypes.d.ts +15 -0
- package/dist/es6/testing/lib/propTypes.d.ts.map +1 -0
- package/dist/es6/testing/lib/propTypes.js +1 -0
- package/dist/es6/text/index.d.ts +4 -0
- package/dist/es6/text/index.d.ts.map +1 -0
- package/dist/es6/text/index.js +3 -0
- package/dist/es6/text/lib/LabelText.d.ts +25 -0
- package/dist/es6/text/lib/LabelText.d.ts.map +1 -0
- package/dist/es6/text/lib/LabelText.js +27 -0
- package/dist/es6/text/lib/Text.d.ts +54 -0
- package/dist/es6/text/lib/Text.d.ts.map +1 -0
- package/dist/es6/text/lib/Text.js +73 -0
- package/dist/es6/text/lib/TypeLevelComponents.d.ts +112 -0
- package/dist/es6/text/lib/TypeLevelComponents.d.ts.map +1 -0
- package/dist/es6/text/lib/TypeLevelComponents.js +127 -0
- package/dist/es6/text-area/index.d.ts +0 -3
- package/dist/es6/text-area/index.d.ts.map +1 -1
- package/dist/es6/text-area/index.js +0 -3
- package/dist/es6/text-area/lib/TextArea.d.ts +1 -2
- package/dist/es6/text-area/lib/TextArea.d.ts.map +1 -1
- package/dist/es6/text-area/lib/TextArea.js +41 -55
- package/dist/es6/text-input/index.d.ts +1 -4
- package/dist/es6/text-input/index.d.ts.map +1 -1
- package/dist/es6/text-input/index.js +1 -4
- package/dist/es6/text-input/lib/InputGroup.d.ts +135 -0
- package/dist/es6/text-input/lib/InputGroup.d.ts.map +1 -0
- package/dist/es6/text-input/lib/InputGroup.js +194 -0
- package/dist/es6/text-input/lib/InputIconContainer.d.ts +1 -2
- package/dist/es6/text-input/lib/InputIconContainer.d.ts.map +1 -1
- package/dist/es6/text-input/lib/InputIconContainer.js +8 -15
- package/dist/es6/text-input/lib/TextInput.d.ts +1 -2
- package/dist/es6/text-input/lib/TextInput.d.ts.map +1 -1
- package/dist/es6/text-input/lib/TextInput.js +37 -51
- package/dist/es6/toast/index.d.ts +1 -3
- package/dist/es6/toast/index.d.ts.map +1 -1
- package/dist/es6/toast/index.js +1 -3
- package/dist/es6/toast/lib/Toast.d.ts +56 -22
- package/dist/es6/toast/lib/Toast.d.ts.map +1 -1
- package/dist/es6/toast/lib/Toast.js +90 -59
- package/dist/es6/toast/lib/ToastBody.d.ts +6 -0
- package/dist/es6/toast/lib/ToastBody.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastBody.js +9 -0
- package/dist/es6/toast/lib/ToastCloseIcon.d.ts +6 -0
- package/dist/es6/toast/lib/ToastCloseIcon.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastCloseIcon.js +9 -0
- package/dist/es6/toast/lib/ToastIcon.d.ts +5 -0
- package/dist/es6/toast/lib/ToastIcon.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastIcon.js +9 -0
- package/dist/es6/toast/lib/ToastLink.d.ts +5 -0
- package/dist/es6/toast/lib/ToastLink.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastLink.js +9 -0
- package/dist/es6/toast/lib/ToastMessage.d.ts +12 -0
- package/dist/es6/toast/lib/ToastMessage.d.ts.map +1 -0
- package/dist/es6/toast/lib/ToastMessage.js +9 -0
- package/dist/es6/toast/lib/hooks/useToastModel.d.ts +75 -0
- package/dist/es6/toast/lib/hooks/useToastModel.d.ts.map +1 -0
- package/dist/es6/toast/lib/hooks/useToastModel.js +26 -0
- package/dist/es6/tokens/index.d.ts +3 -4
- package/dist/es6/tokens/index.d.ts.map +1 -1
- package/dist/es6/tokens/index.js +16 -17
- package/dist/es6/tokens/lib/colors.types.d.ts +4 -6
- package/dist/es6/tokens/lib/colors.types.d.ts.map +1 -1
- package/dist/es6/tokens/lib/depth.d.ts +6 -7
- package/dist/es6/tokens/lib/depth.d.ts.map +1 -1
- package/dist/es6/tokens/lib/depth.js +7 -7
- package/dist/es6/tokens/lib/radius.d.ts +1 -1
- package/dist/es6/tokens/lib/radius.d.ts.map +1 -1
- package/dist/es6/tokens/lib/radius.js +1 -2
- package/dist/es6/tokens/lib/space.js +2 -2
- package/dist/es6/tokens/lib/type/fontFamilies.d.ts.map +1 -1
- package/dist/es6/tokens/lib/type/fontFamilies.js +8 -6
- package/dist/es6/tokens/lib/type/fontSizes.js +1 -1
- package/dist/es6/tokens/lib/type/fontWeights.js +1 -1
- package/dist/es6/tokens/lib/type/index.d.ts +7 -7
- package/dist/es6/tokens/lib/type/index.js +10 -10
- package/dist/es6/tokens/lib/type/levels.js +1 -1
- package/dist/es6/tokens/lib/type/variants.js +1 -1
- package/dist/es6/tooltip/index.d.ts +0 -2
- package/dist/es6/tooltip/index.d.ts.map +1 -1
- package/dist/es6/tooltip/index.js +0 -2
- package/dist/es6/tooltip/lib/OverflowTooltip.d.ts.map +1 -1
- package/dist/es6/tooltip/lib/OverflowTooltip.js +30 -53
- package/dist/es6/tooltip/lib/Tooltip.d.ts +1 -1
- package/dist/es6/tooltip/lib/Tooltip.d.ts.map +1 -1
- package/dist/es6/tooltip/lib/Tooltip.js +27 -45
- package/dist/es6/tooltip/lib/TooltipContainer.d.ts +1 -1
- package/dist/es6/tooltip/lib/TooltipContainer.d.ts.map +1 -1
- package/dist/es6/tooltip/lib/TooltipContainer.js +37 -30
- package/dist/es6/tooltip/lib/useTooltip.d.ts.map +1 -1
- package/dist/es6/tooltip/lib/useTooltip.js +43 -39
- package/form-field/index.ts +0 -6
- package/form-field/lib/FormField.tsx +7 -5
- package/form-field/lib/Hint.tsx +9 -20
- package/form-field/lib/Label.tsx +12 -12
- package/form-field/package.json +2 -1
- package/icon/index.ts +0 -9
- package/icon/lib/AccentIcon.tsx +7 -10
- package/icon/lib/AppletIcon.tsx +1 -3
- package/icon/lib/Graphic.tsx +2 -4
- package/icon/lib/Icon.tsx +1 -3
- package/icon/lib/Svg.tsx +0 -2
- package/icon/lib/SystemIcon.tsx +19 -21
- package/icon/lib/SystemIconCircle.tsx +6 -7
- package/icon/package.json +2 -1
- package/index.ts +5 -1
- package/layout/README.md +30 -35
- package/layout/index.ts +14 -8
- package/layout/lib/Box.tsx +63 -45
- package/layout/lib/Flex.tsx +6 -2
- package/layout/lib/Grid.tsx +85 -0
- package/layout/lib/utils/background.ts +83 -0
- package/layout/lib/utils/border/color.ts +85 -0
- package/layout/lib/utils/border/index.ts +49 -0
- package/layout/lib/utils/border/lineStyle.ts +87 -0
- package/layout/lib/utils/border/radius.ts +61 -0
- package/layout/lib/utils/border/shorthand.ts +73 -0
- package/layout/lib/utils/border/width.ts +73 -0
- package/layout/lib/utils/buildStyleFns.ts +117 -0
- package/layout/lib/utils/color.ts +40 -50
- package/layout/lib/utils/depth.ts +28 -24
- package/layout/lib/utils/flex.ts +91 -47
- package/layout/lib/utils/flexItem.ts +58 -40
- package/layout/lib/utils/grid.ts +166 -0
- package/layout/lib/utils/gridItem.ts +96 -0
- package/layout/lib/utils/layout.ts +116 -64
- package/layout/lib/utils/other.ts +144 -15
- package/layout/lib/utils/position.ts +91 -76
- package/layout/lib/utils/space.ts +202 -196
- package/layout/lib/utils/styleProps.ts +56 -0
- package/layout/lib/utils/systemProps.ts +46 -0
- package/layout/lib/utils/text.ts +122 -0
- package/layout/package.json +2 -1
- package/loading-dots/README.md +7 -0
- package/loading-dots/index.ts +1 -0
- package/{loading-animation → loading-dots}/lib/LoadingDots.tsx +2 -2
- package/loading-dots/package.json +6 -0
- package/menu/index.ts +1 -1
- package/menu/lib/Menu.tsx +43 -13
- package/menu/lib/MenuCard.tsx +1 -0
- package/menu/lib/MenuContextTarget.tsx +3 -5
- package/menu/lib/MenuItem.tsx +30 -31
- package/menu/lib/MenuList.tsx +17 -11
- package/menu/lib/MenuTarget.tsx +4 -6
- package/menu/lib/useMenuModel.tsx +4 -7
- package/menu/package.json +2 -1
- package/modal/lib/Modal.tsx +77 -5
- package/modal/lib/ModalBody.tsx +32 -0
- package/modal/lib/ModalCard.tsx +21 -4
- package/modal/lib/ModalHeading.tsx +19 -2
- package/modal/lib/ModalOverlay.tsx +22 -22
- package/modal/lib/hooks/useCloseOnOverlayClick.ts +4 -2
- package/modal/lib/hooks/useModalHeading.ts +2 -2
- package/modal/lib/hooks/useModalModel.ts +1 -1
- package/modal/package.json +2 -1
- package/package.json +5 -9
- package/pagination/lib/Pagination/AdditionalDetails.tsx +32 -23
- package/pagination/lib/Pagination/Controls.tsx +122 -99
- package/pagination/lib/Pagination/GoTo/Form.tsx +33 -22
- package/pagination/lib/Pagination/GoTo/Label.tsx +21 -17
- package/pagination/lib/Pagination/GoTo/TextInput.tsx +11 -7
- package/pagination/lib/Pagination/GoTo/useGoToForm.tsx +3 -1
- package/pagination/lib/Pagination/Nav.tsx +1 -2
- package/pagination/lib/Pagination/PageButton.tsx +34 -31
- package/pagination/lib/Pagination/PageList.tsx +36 -22
- package/pagination/lib/Pagination/Pagination.tsx +256 -139
- package/pagination/lib/Pagination/common/useLiveRegion.tsx +0 -2
- package/pagination/lib/Pagination/common/utils/helpers.ts +45 -15
- package/pagination/lib/Pagination/usePaginationModel.ts +9 -9
- package/pagination/package.json +2 -1
- package/popup/lib/Popper.tsx +16 -1
- package/popup/lib/Popup.tsx +85 -4
- package/popup/lib/PopupBody.tsx +1 -1
- package/popup/lib/PopupCard.tsx +47 -13
- package/popup/lib/PopupCloseButton.tsx +5 -1
- package/popup/lib/PopupCloseIcon.tsx +14 -15
- package/popup/lib/PopupHeading.tsx +1 -1
- package/popup/lib/PopupPopper.tsx +2 -3
- package/popup/lib/hooks/index.ts +1 -0
- package/popup/lib/hooks/useBringToTopOnClick.ts +4 -4
- package/popup/lib/hooks/useCloseOnEscape.ts +2 -2
- package/popup/lib/hooks/useCloseOnFullscreenExit.ts +1 -1
- package/popup/lib/hooks/useCloseOnOutsideClick.ts +6 -6
- package/popup/lib/hooks/useCloseOnTargetHidden.ts +66 -0
- 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 +127 -6
- package/popup/lib/hooks/useTransferOnFullscreenEnter.ts +1 -1
- package/popup/lib/hooks/useTransferOnFullscreenExit.ts +1 -1
- package/popup/package.json +2 -1
- package/radio/index.ts +0 -5
- package/radio/lib/Radio.tsx +9 -25
- package/radio/lib/RadioGroup.tsx +2 -4
- package/radio/package.json +2 -1
- package/segmented-control/index.ts +0 -4
- package/segmented-control/lib/SegmentedControl.tsx +0 -2
- package/segmented-control/lib/SegmentedControlButton.tsx +24 -5
- package/segmented-control/package.json +2 -1
- package/select/index.ts +0 -5
- package/select/lib/Select.tsx +4 -19
- package/select/lib/SelectOption.tsx +1 -1
- package/select/package.json +2 -1
- package/side-panel/README.md +1 -1
- package/side-panel/index.ts +0 -4
- package/side-panel/lib/SidePanel.tsx +9 -10
- package/side-panel/package.json +2 -1
- package/skeleton/lib/skeleton.tsx +27 -1
- package/skeleton/package.json +2 -1
- package/status-indicator/index.ts +0 -4
- package/status-indicator/lib/StatusIndicator.tsx +1 -1
- package/status-indicator/package.json +2 -1
- package/switch/index.ts +0 -4
- package/switch/lib/Switch.tsx +0 -2
- package/switch/package.json +2 -1
- package/table/index.ts +0 -5
- package/table/lib/Table.tsx +1 -1
- package/table/lib/TableRow.tsx +1 -3
- package/table/package.json +2 -1
- package/tabs/lib/Tabs.tsx +95 -3
- package/tabs/lib/TabsItem.tsx +16 -21
- package/tabs/lib/TabsList.tsx +51 -18
- package/tabs/lib/TabsOverflowButton.tsx +4 -4
- package/tabs/lib/TabsPanel.tsx +7 -10
- package/tabs/lib/TabsPanels.tsx +1 -1
- package/tabs/lib/useTabsModel.tsx +19 -2
- package/tabs/package.json +2 -1
- package/testing/LICENSE +52 -0
- package/testing/README.md +6 -0
- package/testing/index.ts +4 -0
- package/testing/lib/ComponentStatesTable.tsx +80 -0
- package/{common/lib/utils → testing/lib}/StaticStates.tsx +7 -6
- package/testing/lib/permutateProps.ts +47 -0
- package/testing/lib/propTypes.ts +15 -0
- package/testing/package.json +6 -0
- package/text/LICENSE +52 -0
- package/text/README.md +5 -0
- package/text/index.ts +3 -0
- package/text/lib/LabelText.tsx +45 -0
- package/text/lib/Text.tsx +106 -0
- package/text/lib/TypeLevelComponents.tsx +142 -0
- package/text/package.json +6 -0
- package/text-area/index.ts +0 -4
- package/text-area/lib/TextArea.tsx +0 -2
- package/text-area/package.json +2 -1
- package/text-input/index.ts +1 -5
- package/text-input/lib/InputGroup.tsx +250 -0
- package/text-input/lib/InputIconContainer.tsx +3 -7
- package/text-input/lib/TextInput.tsx +0 -2
- package/text-input/package.json +2 -1
- package/toast/LICENSE +1 -0
- package/toast/README.md +3 -5
- package/toast/index.ts +1 -4
- package/toast/lib/Toast.tsx +104 -110
- package/toast/lib/ToastBody.tsx +28 -0
- package/toast/lib/ToastCloseIcon.tsx +14 -0
- package/toast/lib/ToastIcon.tsx +23 -0
- package/toast/lib/ToastLink.tsx +17 -0
- package/toast/lib/ToastMessage.tsx +24 -0
- package/toast/lib/hooks/useToastModel.tsx +29 -0
- package/toast/package.json +2 -1
- package/tokens/index.ts +4 -5
- package/tokens/lib/colors.types.ts +4 -7
- package/tokens/lib/depth.ts +12 -13
- package/tokens/lib/radius.ts +0 -2
- package/tokens/lib/type/fontFamilies.ts +5 -4
- package/tokens/lib/type/index.ts +8 -8
- package/tokens/package.json +2 -1
- package/tooltip/index.ts +0 -3
- package/tooltip/lib/OverflowTooltip.tsx +1 -4
- package/tooltip/lib/Tooltip.tsx +42 -39
- package/tooltip/lib/TooltipContainer.tsx +6 -0
- package/tooltip/lib/useTooltip.tsx +20 -11
- package/tooltip/package.json +2 -1
- package/dist/commonjs/common/lib/utils/StaticStates.d.ts +0 -8
- package/dist/commonjs/common/lib/utils/StaticStates.d.ts.map +0 -1
- package/dist/commonjs/common/lib/utils/StaticStates.js +0 -73
- package/dist/commonjs/layout/lib/Column.d.ts +0 -24
- package/dist/commonjs/layout/lib/Column.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/Column.js +0 -105
- package/dist/commonjs/layout/lib/Layout.d.ts +0 -29
- package/dist/commonjs/layout/lib/Layout.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/Layout.js +0 -119
- package/dist/commonjs/layout/lib/Stack.d.ts +0 -27
- package/dist/commonjs/layout/lib/Stack.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/Stack.js +0 -99
- package/dist/commonjs/layout/lib/utils/border.d.ts +0 -103
- package/dist/commonjs/layout/lib/utils/border.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/utils/border.js +0 -153
- package/dist/commonjs/layout/lib/utils/stack.d.ts +0 -26
- package/dist/commonjs/layout/lib/utils/stack.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/utils/stack.js +0 -55
- package/dist/commonjs/layout/lib/utils/types.d.ts +0 -20
- package/dist/commonjs/layout/lib/utils/types.d.ts.map +0 -1
- package/dist/commonjs/loading-animation/index.d.ts +0 -5
- package/dist/commonjs/loading-animation/index.d.ts.map +0 -1
- package/dist/commonjs/loading-animation/lib/LoadingDots.d.ts.map +0 -1
- package/dist/commonjs/loading-animation/lib/LoadingDots.js +0 -99
- 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/es6/common/lib/utils/StaticStates.d.ts +0 -8
- package/dist/es6/common/lib/utils/StaticStates.d.ts.map +0 -1
- package/dist/es6/common/lib/utils/StaticStates.js +0 -49
- package/dist/es6/layout/lib/Column.d.ts +0 -24
- package/dist/es6/layout/lib/Column.d.ts.map +0 -1
- package/dist/es6/layout/lib/Column.js +0 -81
- package/dist/es6/layout/lib/Layout.d.ts +0 -29
- package/dist/es6/layout/lib/Layout.d.ts.map +0 -1
- package/dist/es6/layout/lib/Layout.js +0 -95
- package/dist/es6/layout/lib/Stack.d.ts +0 -27
- package/dist/es6/layout/lib/Stack.d.ts.map +0 -1
- package/dist/es6/layout/lib/Stack.js +0 -74
- package/dist/es6/layout/lib/utils/border.d.ts +0 -103
- package/dist/es6/layout/lib/utils/border.d.ts.map +0 -1
- package/dist/es6/layout/lib/utils/border.js +0 -149
- package/dist/es6/layout/lib/utils/stack.d.ts +0 -26
- package/dist/es6/layout/lib/utils/stack.d.ts.map +0 -1
- package/dist/es6/layout/lib/utils/stack.js +0 -51
- package/dist/es6/layout/lib/utils/types.d.ts +0 -20
- package/dist/es6/layout/lib/utils/types.d.ts.map +0 -1
- package/dist/es6/loading-animation/index.d.ts +0 -5
- package/dist/es6/loading-animation/index.d.ts.map +0 -1
- package/dist/es6/loading-animation/index.js +0 -4
- package/dist/es6/loading-animation/lib/LoadingDots.d.ts.map +0 -1
- package/dist/es6/loading-animation/lib/LoadingDots.js +0 -77
- package/dist/es6/pagination/lib/Pagination/GoTo/GoTo.d.ts +0 -17
- package/dist/es6/pagination/lib/Pagination/GoTo/GoTo.d.ts.map +0 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/GoTo.js +0 -35
- package/dist/es6/pagination/lib/Pagination/GoTo/index.d.ts +0 -4
- package/dist/es6/pagination/lib/Pagination/GoTo/index.d.ts.map +0 -1
- package/dist/es6/pagination/lib/Pagination/GoTo/index.js +0 -3
- package/layout/lib/Column.tsx +0 -71
- package/layout/lib/Layout.tsx +0 -101
- package/layout/lib/Stack.tsx +0 -97
- package/layout/lib/utils/border.ts +0 -263
- package/layout/lib/utils/stack.ts +0 -78
- package/layout/lib/utils/types.ts +0 -148
- package/loading-animation/README.md +0 -7
- package/loading-animation/index.ts +0 -5
- package/loading-animation/package.json +0 -5
- package/pagination/lib/Pagination/GoTo/GoTo.tsx +0 -36
- package/pagination/lib/Pagination/GoTo/index.ts +0 -4
- /package/dist/commonjs/layout/lib/utils/{types.js → styleProps.js} +0 -0
- /package/dist/es6/layout/lib/utils/{types.js → styleProps.js} +0 -0
- /package/{loading-animation → loading-dots}/LICENSE +0 -0
|
@@ -5,12 +5,39 @@ export interface TabsProps {
|
|
|
5
5
|
*/
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
/**
|
|
9
|
+
* `Tabs` is a container component that is responsible for creating a {@link TabsModel} and sharing
|
|
10
|
+
* it with its subcomponents using React context. It does not represent a real element.
|
|
11
|
+
*
|
|
12
|
+
* ```tsx
|
|
13
|
+
* <Tabs onSelect={data => console.log('Selected tab', data.id)}>
|
|
14
|
+
* {child components}
|
|
15
|
+
* </Tabs>
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* Alternatively, you may pass in a model using the hoisted model pattern.
|
|
19
|
+
*
|
|
20
|
+
* ```tsx
|
|
21
|
+
* const model = useTabsModel({
|
|
22
|
+
* onSelect(data) {
|
|
23
|
+
* console.log('Activated Tab', data.id);
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
*
|
|
27
|
+
* <Tabs model={model}>{child components}</Tabs>
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* See [Configuring a
|
|
31
|
+
* Model](/getting-started/for-developers/resources/compound-components/#configuring-a-model) for
|
|
32
|
+
* more information on model configuration.
|
|
33
|
+
*/
|
|
34
|
+
export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM<TabsProps & Partial<{
|
|
9
35
|
id: string;
|
|
10
36
|
initialTab: string;
|
|
11
37
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
12
38
|
menuConfig: Partial<{
|
|
13
39
|
mode: "multiple" | "single";
|
|
40
|
+
shouldVirtualize: boolean;
|
|
14
41
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
15
42
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
16
43
|
id: string;
|
|
@@ -21,14 +48,1331 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
21
48
|
initialCursorId: string;
|
|
22
49
|
columnCount: number;
|
|
23
50
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
51
|
+
pageSize: number;
|
|
24
52
|
getId: (item: any) => string;
|
|
25
53
|
getTextValue: (item: any) => string;
|
|
26
54
|
nonInteractiveIds: string[];
|
|
27
55
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
28
56
|
defaultItemHeight: number;
|
|
29
|
-
shouldVirtualize: boolean;
|
|
30
57
|
items: any[];
|
|
31
|
-
}
|
|
58
|
+
}> & {
|
|
59
|
+
onUpdatePlacement?: ((data: {
|
|
60
|
+
placement: import("@popperjs/core").Placement;
|
|
61
|
+
}, prevState: {
|
|
62
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
63
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
64
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
65
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
66
|
+
placement: import("@popperjs/core").Placement;
|
|
67
|
+
id: string;
|
|
68
|
+
visibility: "hidden" | "visible";
|
|
69
|
+
selectedIds: string[] | "all";
|
|
70
|
+
unselectedIds: string[];
|
|
71
|
+
cursorId: string;
|
|
72
|
+
columnCount: number;
|
|
73
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
74
|
+
cursorIndexRef: {
|
|
75
|
+
readonly current: number;
|
|
76
|
+
};
|
|
77
|
+
UNSTABLE_virtual: {
|
|
78
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
79
|
+
totalSize: number;
|
|
80
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
81
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
82
|
+
measure: () => void;
|
|
83
|
+
};
|
|
84
|
+
UNSTABLE_defaultItemHeight: number;
|
|
85
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
86
|
+
orientation: "horizontal" | "vertical";
|
|
87
|
+
indexRef: React.MutableRefObject<number>;
|
|
88
|
+
nonInteractiveIds: string[];
|
|
89
|
+
isVirtualized: boolean;
|
|
90
|
+
items: import("../..").Item<any>[];
|
|
91
|
+
mode: "multiple" | "single";
|
|
92
|
+
}) => void) | undefined;
|
|
93
|
+
onShow?: ((data: Event | React.SyntheticEvent<Element, Event> | undefined, prevState: {
|
|
94
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
95
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
96
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
97
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
98
|
+
placement: import("@popperjs/core").Placement;
|
|
99
|
+
id: string;
|
|
100
|
+
visibility: "hidden" | "visible";
|
|
101
|
+
selectedIds: string[] | "all";
|
|
102
|
+
unselectedIds: string[];
|
|
103
|
+
cursorId: string;
|
|
104
|
+
columnCount: number;
|
|
105
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
106
|
+
cursorIndexRef: {
|
|
107
|
+
readonly current: number;
|
|
108
|
+
};
|
|
109
|
+
UNSTABLE_virtual: {
|
|
110
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
111
|
+
totalSize: number;
|
|
112
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
113
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
114
|
+
measure: () => void;
|
|
115
|
+
};
|
|
116
|
+
UNSTABLE_defaultItemHeight: number;
|
|
117
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
118
|
+
orientation: "horizontal" | "vertical";
|
|
119
|
+
indexRef: React.MutableRefObject<number>;
|
|
120
|
+
nonInteractiveIds: string[];
|
|
121
|
+
isVirtualized: boolean;
|
|
122
|
+
items: import("../..").Item<any>[];
|
|
123
|
+
mode: "multiple" | "single";
|
|
124
|
+
}) => void) | undefined;
|
|
125
|
+
onHide?: ((data: Event | React.SyntheticEvent<Element, Event> | undefined, prevState: {
|
|
126
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
127
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
128
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
129
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
130
|
+
placement: import("@popperjs/core").Placement;
|
|
131
|
+
id: string;
|
|
132
|
+
visibility: "hidden" | "visible";
|
|
133
|
+
selectedIds: string[] | "all";
|
|
134
|
+
unselectedIds: string[];
|
|
135
|
+
cursorId: string;
|
|
136
|
+
columnCount: number;
|
|
137
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
138
|
+
cursorIndexRef: {
|
|
139
|
+
readonly current: number;
|
|
140
|
+
};
|
|
141
|
+
UNSTABLE_virtual: {
|
|
142
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
143
|
+
totalSize: number;
|
|
144
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
145
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
146
|
+
measure: () => void;
|
|
147
|
+
};
|
|
148
|
+
UNSTABLE_defaultItemHeight: number;
|
|
149
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
150
|
+
orientation: "horizontal" | "vertical";
|
|
151
|
+
indexRef: React.MutableRefObject<number>;
|
|
152
|
+
nonInteractiveIds: string[];
|
|
153
|
+
isVirtualized: boolean;
|
|
154
|
+
items: import("../..").Item<any>[];
|
|
155
|
+
mode: "multiple" | "single";
|
|
156
|
+
}) => void) | undefined;
|
|
157
|
+
onSelect?: ((data: {
|
|
158
|
+
id: string;
|
|
159
|
+
}, prevState: {
|
|
160
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
161
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
162
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
163
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
164
|
+
placement: import("@popperjs/core").Placement;
|
|
165
|
+
id: string;
|
|
166
|
+
visibility: "hidden" | "visible";
|
|
167
|
+
selectedIds: string[] | "all";
|
|
168
|
+
unselectedIds: string[];
|
|
169
|
+
cursorId: string;
|
|
170
|
+
columnCount: number;
|
|
171
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
172
|
+
cursorIndexRef: {
|
|
173
|
+
readonly current: number;
|
|
174
|
+
};
|
|
175
|
+
UNSTABLE_virtual: {
|
|
176
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
177
|
+
totalSize: number;
|
|
178
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
179
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
180
|
+
measure: () => void;
|
|
181
|
+
};
|
|
182
|
+
UNSTABLE_defaultItemHeight: number;
|
|
183
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
184
|
+
orientation: "horizontal" | "vertical";
|
|
185
|
+
indexRef: React.MutableRefObject<number>;
|
|
186
|
+
nonInteractiveIds: string[];
|
|
187
|
+
isVirtualized: boolean;
|
|
188
|
+
items: import("../..").Item<any>[];
|
|
189
|
+
mode: "multiple" | "single";
|
|
190
|
+
}) => void) | undefined;
|
|
191
|
+
onSelectAll?: ((data: undefined, prevState: {
|
|
192
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
193
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
194
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
195
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
196
|
+
placement: import("@popperjs/core").Placement;
|
|
197
|
+
id: string;
|
|
198
|
+
visibility: "hidden" | "visible";
|
|
199
|
+
selectedIds: string[] | "all";
|
|
200
|
+
unselectedIds: string[];
|
|
201
|
+
cursorId: string;
|
|
202
|
+
columnCount: number;
|
|
203
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
204
|
+
cursorIndexRef: {
|
|
205
|
+
readonly current: number;
|
|
206
|
+
};
|
|
207
|
+
UNSTABLE_virtual: {
|
|
208
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
209
|
+
totalSize: number;
|
|
210
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
211
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
212
|
+
measure: () => void;
|
|
213
|
+
};
|
|
214
|
+
UNSTABLE_defaultItemHeight: number;
|
|
215
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
216
|
+
orientation: "horizontal" | "vertical";
|
|
217
|
+
indexRef: React.MutableRefObject<number>;
|
|
218
|
+
nonInteractiveIds: string[];
|
|
219
|
+
isVirtualized: boolean;
|
|
220
|
+
items: import("../..").Item<any>[];
|
|
221
|
+
mode: "multiple" | "single";
|
|
222
|
+
}) => void) | undefined;
|
|
223
|
+
onUnselectAll?: ((data: undefined, prevState: {
|
|
224
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
225
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
226
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
227
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
228
|
+
placement: import("@popperjs/core").Placement;
|
|
229
|
+
id: string;
|
|
230
|
+
visibility: "hidden" | "visible";
|
|
231
|
+
selectedIds: string[] | "all";
|
|
232
|
+
unselectedIds: string[];
|
|
233
|
+
cursorId: string;
|
|
234
|
+
columnCount: number;
|
|
235
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
236
|
+
cursorIndexRef: {
|
|
237
|
+
readonly current: number;
|
|
238
|
+
};
|
|
239
|
+
UNSTABLE_virtual: {
|
|
240
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
241
|
+
totalSize: number;
|
|
242
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
243
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
244
|
+
measure: () => void;
|
|
245
|
+
};
|
|
246
|
+
UNSTABLE_defaultItemHeight: number;
|
|
247
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
248
|
+
orientation: "horizontal" | "vertical";
|
|
249
|
+
indexRef: React.MutableRefObject<number>;
|
|
250
|
+
nonInteractiveIds: string[];
|
|
251
|
+
isVirtualized: boolean;
|
|
252
|
+
items: import("../..").Item<any>[];
|
|
253
|
+
mode: "multiple" | "single";
|
|
254
|
+
}) => void) | undefined;
|
|
255
|
+
onGoTo?: ((data: {
|
|
256
|
+
id: string;
|
|
257
|
+
}, prevState: {
|
|
258
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
259
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
260
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
261
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
262
|
+
placement: import("@popperjs/core").Placement;
|
|
263
|
+
id: string;
|
|
264
|
+
visibility: "hidden" | "visible";
|
|
265
|
+
selectedIds: string[] | "all";
|
|
266
|
+
unselectedIds: string[];
|
|
267
|
+
cursorId: string;
|
|
268
|
+
columnCount: number;
|
|
269
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
270
|
+
cursorIndexRef: {
|
|
271
|
+
readonly current: number;
|
|
272
|
+
};
|
|
273
|
+
UNSTABLE_virtual: {
|
|
274
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
275
|
+
totalSize: number;
|
|
276
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
277
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
278
|
+
measure: () => void;
|
|
279
|
+
};
|
|
280
|
+
UNSTABLE_defaultItemHeight: number;
|
|
281
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
282
|
+
orientation: "horizontal" | "vertical";
|
|
283
|
+
indexRef: React.MutableRefObject<number>;
|
|
284
|
+
nonInteractiveIds: string[];
|
|
285
|
+
isVirtualized: boolean;
|
|
286
|
+
items: import("../..").Item<any>[];
|
|
287
|
+
mode: "multiple" | "single";
|
|
288
|
+
}) => void) | undefined;
|
|
289
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
290
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
291
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
292
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
293
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
294
|
+
placement: import("@popperjs/core").Placement;
|
|
295
|
+
id: string;
|
|
296
|
+
visibility: "hidden" | "visible";
|
|
297
|
+
selectedIds: string[] | "all";
|
|
298
|
+
unselectedIds: string[];
|
|
299
|
+
cursorId: string;
|
|
300
|
+
columnCount: number;
|
|
301
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
302
|
+
cursorIndexRef: {
|
|
303
|
+
readonly current: number;
|
|
304
|
+
};
|
|
305
|
+
UNSTABLE_virtual: {
|
|
306
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
307
|
+
totalSize: number;
|
|
308
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
309
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
310
|
+
measure: () => void;
|
|
311
|
+
};
|
|
312
|
+
UNSTABLE_defaultItemHeight: number;
|
|
313
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
314
|
+
orientation: "horizontal" | "vertical";
|
|
315
|
+
indexRef: React.MutableRefObject<number>;
|
|
316
|
+
nonInteractiveIds: string[];
|
|
317
|
+
isVirtualized: boolean;
|
|
318
|
+
items: import("../..").Item<any>[];
|
|
319
|
+
mode: "multiple" | "single";
|
|
320
|
+
}) => void) | undefined;
|
|
321
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
322
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
323
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
324
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
325
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
326
|
+
placement: import("@popperjs/core").Placement;
|
|
327
|
+
id: string;
|
|
328
|
+
visibility: "hidden" | "visible";
|
|
329
|
+
selectedIds: string[] | "all";
|
|
330
|
+
unselectedIds: string[];
|
|
331
|
+
cursorId: string;
|
|
332
|
+
columnCount: number;
|
|
333
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
334
|
+
cursorIndexRef: {
|
|
335
|
+
readonly current: number;
|
|
336
|
+
};
|
|
337
|
+
UNSTABLE_virtual: {
|
|
338
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
339
|
+
totalSize: number;
|
|
340
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
341
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
342
|
+
measure: () => void;
|
|
343
|
+
};
|
|
344
|
+
UNSTABLE_defaultItemHeight: number;
|
|
345
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
346
|
+
orientation: "horizontal" | "vertical";
|
|
347
|
+
indexRef: React.MutableRefObject<number>;
|
|
348
|
+
nonInteractiveIds: string[];
|
|
349
|
+
isVirtualized: boolean;
|
|
350
|
+
items: import("../..").Item<any>[];
|
|
351
|
+
mode: "multiple" | "single";
|
|
352
|
+
}) => void) | undefined;
|
|
353
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
354
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
355
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
356
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
357
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
358
|
+
placement: import("@popperjs/core").Placement;
|
|
359
|
+
id: string;
|
|
360
|
+
visibility: "hidden" | "visible";
|
|
361
|
+
selectedIds: string[] | "all";
|
|
362
|
+
unselectedIds: string[];
|
|
363
|
+
cursorId: string;
|
|
364
|
+
columnCount: number;
|
|
365
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
366
|
+
cursorIndexRef: {
|
|
367
|
+
readonly current: number;
|
|
368
|
+
};
|
|
369
|
+
UNSTABLE_virtual: {
|
|
370
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
371
|
+
totalSize: number;
|
|
372
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
373
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
374
|
+
measure: () => void;
|
|
375
|
+
};
|
|
376
|
+
UNSTABLE_defaultItemHeight: number;
|
|
377
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
378
|
+
orientation: "horizontal" | "vertical";
|
|
379
|
+
indexRef: React.MutableRefObject<number>;
|
|
380
|
+
nonInteractiveIds: string[];
|
|
381
|
+
isVirtualized: boolean;
|
|
382
|
+
items: import("../..").Item<any>[];
|
|
383
|
+
mode: "multiple" | "single";
|
|
384
|
+
}) => void) | undefined;
|
|
385
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
386
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
387
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
388
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
389
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
390
|
+
placement: import("@popperjs/core").Placement;
|
|
391
|
+
id: string;
|
|
392
|
+
visibility: "hidden" | "visible";
|
|
393
|
+
selectedIds: string[] | "all";
|
|
394
|
+
unselectedIds: string[];
|
|
395
|
+
cursorId: string;
|
|
396
|
+
columnCount: number;
|
|
397
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
398
|
+
cursorIndexRef: {
|
|
399
|
+
readonly current: number;
|
|
400
|
+
};
|
|
401
|
+
UNSTABLE_virtual: {
|
|
402
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
403
|
+
totalSize: number;
|
|
404
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
405
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
406
|
+
measure: () => void;
|
|
407
|
+
};
|
|
408
|
+
UNSTABLE_defaultItemHeight: number;
|
|
409
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
410
|
+
orientation: "horizontal" | "vertical";
|
|
411
|
+
indexRef: React.MutableRefObject<number>;
|
|
412
|
+
nonInteractiveIds: string[];
|
|
413
|
+
isVirtualized: boolean;
|
|
414
|
+
items: import("../..").Item<any>[];
|
|
415
|
+
mode: "multiple" | "single";
|
|
416
|
+
}) => void) | undefined;
|
|
417
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
418
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
419
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
420
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
421
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
422
|
+
placement: import("@popperjs/core").Placement;
|
|
423
|
+
id: string;
|
|
424
|
+
visibility: "hidden" | "visible";
|
|
425
|
+
selectedIds: string[] | "all";
|
|
426
|
+
unselectedIds: string[];
|
|
427
|
+
cursorId: string;
|
|
428
|
+
columnCount: number;
|
|
429
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
430
|
+
cursorIndexRef: {
|
|
431
|
+
readonly current: number;
|
|
432
|
+
};
|
|
433
|
+
UNSTABLE_virtual: {
|
|
434
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
435
|
+
totalSize: number;
|
|
436
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
437
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
438
|
+
measure: () => void;
|
|
439
|
+
};
|
|
440
|
+
UNSTABLE_defaultItemHeight: number;
|
|
441
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
442
|
+
orientation: "horizontal" | "vertical";
|
|
443
|
+
indexRef: React.MutableRefObject<number>;
|
|
444
|
+
nonInteractiveIds: string[];
|
|
445
|
+
isVirtualized: boolean;
|
|
446
|
+
items: import("../..").Item<any>[];
|
|
447
|
+
mode: "multiple" | "single";
|
|
448
|
+
}) => void) | undefined;
|
|
449
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
450
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
451
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
452
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
453
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
454
|
+
placement: import("@popperjs/core").Placement;
|
|
455
|
+
id: string;
|
|
456
|
+
visibility: "hidden" | "visible";
|
|
457
|
+
selectedIds: string[] | "all";
|
|
458
|
+
unselectedIds: string[];
|
|
459
|
+
cursorId: string;
|
|
460
|
+
columnCount: number;
|
|
461
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
462
|
+
cursorIndexRef: {
|
|
463
|
+
readonly current: number;
|
|
464
|
+
};
|
|
465
|
+
UNSTABLE_virtual: {
|
|
466
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
467
|
+
totalSize: number;
|
|
468
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
469
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
470
|
+
measure: () => void;
|
|
471
|
+
};
|
|
472
|
+
UNSTABLE_defaultItemHeight: number;
|
|
473
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
474
|
+
orientation: "horizontal" | "vertical";
|
|
475
|
+
indexRef: React.MutableRefObject<number>;
|
|
476
|
+
nonInteractiveIds: string[];
|
|
477
|
+
isVirtualized: boolean;
|
|
478
|
+
items: import("../..").Item<any>[];
|
|
479
|
+
mode: "multiple" | "single";
|
|
480
|
+
}) => void) | undefined;
|
|
481
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
482
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
483
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
484
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
485
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
486
|
+
placement: import("@popperjs/core").Placement;
|
|
487
|
+
id: string;
|
|
488
|
+
visibility: "hidden" | "visible";
|
|
489
|
+
selectedIds: string[] | "all";
|
|
490
|
+
unselectedIds: string[];
|
|
491
|
+
cursorId: string;
|
|
492
|
+
columnCount: number;
|
|
493
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
494
|
+
cursorIndexRef: {
|
|
495
|
+
readonly current: number;
|
|
496
|
+
};
|
|
497
|
+
UNSTABLE_virtual: {
|
|
498
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
499
|
+
totalSize: number;
|
|
500
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
501
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
502
|
+
measure: () => void;
|
|
503
|
+
};
|
|
504
|
+
UNSTABLE_defaultItemHeight: number;
|
|
505
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
506
|
+
orientation: "horizontal" | "vertical";
|
|
507
|
+
indexRef: React.MutableRefObject<number>;
|
|
508
|
+
nonInteractiveIds: string[];
|
|
509
|
+
isVirtualized: boolean;
|
|
510
|
+
items: import("../..").Item<any>[];
|
|
511
|
+
mode: "multiple" | "single";
|
|
512
|
+
}) => void) | undefined;
|
|
513
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
514
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
515
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
516
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
517
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
518
|
+
placement: import("@popperjs/core").Placement;
|
|
519
|
+
id: string;
|
|
520
|
+
visibility: "hidden" | "visible";
|
|
521
|
+
selectedIds: string[] | "all";
|
|
522
|
+
unselectedIds: string[];
|
|
523
|
+
cursorId: string;
|
|
524
|
+
columnCount: number;
|
|
525
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
526
|
+
cursorIndexRef: {
|
|
527
|
+
readonly current: number;
|
|
528
|
+
};
|
|
529
|
+
UNSTABLE_virtual: {
|
|
530
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
531
|
+
totalSize: number;
|
|
532
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
533
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
534
|
+
measure: () => void;
|
|
535
|
+
};
|
|
536
|
+
UNSTABLE_defaultItemHeight: number;
|
|
537
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
538
|
+
orientation: "horizontal" | "vertical";
|
|
539
|
+
indexRef: React.MutableRefObject<number>;
|
|
540
|
+
nonInteractiveIds: string[];
|
|
541
|
+
isVirtualized: boolean;
|
|
542
|
+
items: import("../..").Item<any>[];
|
|
543
|
+
mode: "multiple" | "single";
|
|
544
|
+
}) => void) | undefined;
|
|
545
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
546
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
547
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
548
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
549
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
550
|
+
placement: import("@popperjs/core").Placement;
|
|
551
|
+
id: string;
|
|
552
|
+
visibility: "hidden" | "visible";
|
|
553
|
+
selectedIds: string[] | "all";
|
|
554
|
+
unselectedIds: string[];
|
|
555
|
+
cursorId: string;
|
|
556
|
+
columnCount: number;
|
|
557
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
558
|
+
cursorIndexRef: {
|
|
559
|
+
readonly current: number;
|
|
560
|
+
};
|
|
561
|
+
UNSTABLE_virtual: {
|
|
562
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
563
|
+
totalSize: number;
|
|
564
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
565
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
566
|
+
measure: () => void;
|
|
567
|
+
};
|
|
568
|
+
UNSTABLE_defaultItemHeight: number;
|
|
569
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
570
|
+
orientation: "horizontal" | "vertical";
|
|
571
|
+
indexRef: React.MutableRefObject<number>;
|
|
572
|
+
nonInteractiveIds: string[];
|
|
573
|
+
isVirtualized: boolean;
|
|
574
|
+
items: import("../..").Item<any>[];
|
|
575
|
+
mode: "multiple" | "single";
|
|
576
|
+
}) => void) | undefined;
|
|
577
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
578
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
579
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
580
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
581
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
582
|
+
placement: import("@popperjs/core").Placement;
|
|
583
|
+
id: string;
|
|
584
|
+
visibility: "hidden" | "visible";
|
|
585
|
+
selectedIds: string[] | "all";
|
|
586
|
+
unselectedIds: string[];
|
|
587
|
+
cursorId: string;
|
|
588
|
+
columnCount: number;
|
|
589
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
590
|
+
cursorIndexRef: {
|
|
591
|
+
readonly current: number;
|
|
592
|
+
};
|
|
593
|
+
UNSTABLE_virtual: {
|
|
594
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
595
|
+
totalSize: number;
|
|
596
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
597
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
598
|
+
measure: () => void;
|
|
599
|
+
};
|
|
600
|
+
UNSTABLE_defaultItemHeight: number;
|
|
601
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
602
|
+
orientation: "horizontal" | "vertical";
|
|
603
|
+
indexRef: React.MutableRefObject<number>;
|
|
604
|
+
nonInteractiveIds: string[];
|
|
605
|
+
isVirtualized: boolean;
|
|
606
|
+
items: import("../..").Item<any>[];
|
|
607
|
+
mode: "multiple" | "single";
|
|
608
|
+
}) => void) | undefined;
|
|
609
|
+
onRegisterItem?: ((data: {
|
|
610
|
+
item: any;
|
|
611
|
+
textValue: string;
|
|
612
|
+
}, prevState: {
|
|
613
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
614
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
615
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
616
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
617
|
+
placement: import("@popperjs/core").Placement;
|
|
618
|
+
id: string;
|
|
619
|
+
visibility: "hidden" | "visible";
|
|
620
|
+
selectedIds: string[] | "all";
|
|
621
|
+
unselectedIds: string[];
|
|
622
|
+
cursorId: string;
|
|
623
|
+
columnCount: number;
|
|
624
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
625
|
+
cursorIndexRef: {
|
|
626
|
+
readonly current: number;
|
|
627
|
+
};
|
|
628
|
+
UNSTABLE_virtual: {
|
|
629
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
630
|
+
totalSize: number;
|
|
631
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
632
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
633
|
+
measure: () => void;
|
|
634
|
+
};
|
|
635
|
+
UNSTABLE_defaultItemHeight: number;
|
|
636
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
637
|
+
orientation: "horizontal" | "vertical";
|
|
638
|
+
indexRef: React.MutableRefObject<number>;
|
|
639
|
+
nonInteractiveIds: string[];
|
|
640
|
+
isVirtualized: boolean;
|
|
641
|
+
items: import("../..").Item<any>[];
|
|
642
|
+
mode: "multiple" | "single";
|
|
643
|
+
}) => void) | undefined;
|
|
644
|
+
onUnregisterItem?: ((data: {
|
|
645
|
+
id: string;
|
|
646
|
+
}, prevState: {
|
|
647
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
648
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
649
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
650
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
651
|
+
placement: import("@popperjs/core").Placement;
|
|
652
|
+
id: string;
|
|
653
|
+
visibility: "hidden" | "visible";
|
|
654
|
+
selectedIds: string[] | "all";
|
|
655
|
+
unselectedIds: string[];
|
|
656
|
+
cursorId: string;
|
|
657
|
+
columnCount: number;
|
|
658
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
659
|
+
cursorIndexRef: {
|
|
660
|
+
readonly current: number;
|
|
661
|
+
};
|
|
662
|
+
UNSTABLE_virtual: {
|
|
663
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
664
|
+
totalSize: number;
|
|
665
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
666
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
667
|
+
measure: () => void;
|
|
668
|
+
};
|
|
669
|
+
UNSTABLE_defaultItemHeight: number;
|
|
670
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
671
|
+
orientation: "horizontal" | "vertical";
|
|
672
|
+
indexRef: React.MutableRefObject<number>;
|
|
673
|
+
nonInteractiveIds: string[];
|
|
674
|
+
isVirtualized: boolean;
|
|
675
|
+
items: import("../..").Item<any>[];
|
|
676
|
+
mode: "multiple" | "single";
|
|
677
|
+
}) => void) | undefined;
|
|
678
|
+
onUpdateItemHeight?: ((data: {
|
|
679
|
+
value: number;
|
|
680
|
+
}, prevState: {
|
|
681
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
682
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
683
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
684
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
685
|
+
placement: import("@popperjs/core").Placement;
|
|
686
|
+
id: string;
|
|
687
|
+
visibility: "hidden" | "visible";
|
|
688
|
+
selectedIds: string[] | "all";
|
|
689
|
+
unselectedIds: string[];
|
|
690
|
+
cursorId: string;
|
|
691
|
+
columnCount: number;
|
|
692
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
693
|
+
cursorIndexRef: {
|
|
694
|
+
readonly current: number;
|
|
695
|
+
};
|
|
696
|
+
UNSTABLE_virtual: {
|
|
697
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
698
|
+
totalSize: number;
|
|
699
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
700
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
701
|
+
measure: () => void;
|
|
702
|
+
};
|
|
703
|
+
UNSTABLE_defaultItemHeight: number;
|
|
704
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
705
|
+
orientation: "horizontal" | "vertical";
|
|
706
|
+
indexRef: React.MutableRefObject<number>;
|
|
707
|
+
nonInteractiveIds: string[];
|
|
708
|
+
isVirtualized: boolean;
|
|
709
|
+
items: import("../..").Item<any>[];
|
|
710
|
+
mode: "multiple" | "single";
|
|
711
|
+
}) => void) | undefined;
|
|
712
|
+
} & {
|
|
713
|
+
shouldUpdatePlacement?: ((data: {
|
|
714
|
+
placement: import("@popperjs/core").Placement;
|
|
715
|
+
}, state: {
|
|
716
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
717
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
718
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
719
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
720
|
+
placement: import("@popperjs/core").Placement;
|
|
721
|
+
id: string;
|
|
722
|
+
visibility: "hidden" | "visible";
|
|
723
|
+
selectedIds: string[] | "all";
|
|
724
|
+
unselectedIds: string[];
|
|
725
|
+
cursorId: string;
|
|
726
|
+
columnCount: number;
|
|
727
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
728
|
+
cursorIndexRef: {
|
|
729
|
+
readonly current: number;
|
|
730
|
+
};
|
|
731
|
+
UNSTABLE_virtual: {
|
|
732
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
733
|
+
totalSize: number;
|
|
734
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
735
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
736
|
+
measure: () => void;
|
|
737
|
+
};
|
|
738
|
+
UNSTABLE_defaultItemHeight: number;
|
|
739
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
740
|
+
orientation: "horizontal" | "vertical";
|
|
741
|
+
indexRef: React.MutableRefObject<number>;
|
|
742
|
+
nonInteractiveIds: string[];
|
|
743
|
+
isVirtualized: boolean;
|
|
744
|
+
items: import("../..").Item<any>[];
|
|
745
|
+
mode: "multiple" | "single";
|
|
746
|
+
}) => boolean) | undefined;
|
|
747
|
+
shouldShow?: ((data: Event | React.SyntheticEvent<Element, Event> | undefined, state: {
|
|
748
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
749
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
750
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
751
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
752
|
+
placement: import("@popperjs/core").Placement;
|
|
753
|
+
id: string;
|
|
754
|
+
visibility: "hidden" | "visible";
|
|
755
|
+
selectedIds: string[] | "all";
|
|
756
|
+
unselectedIds: string[];
|
|
757
|
+
cursorId: string;
|
|
758
|
+
columnCount: number;
|
|
759
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
760
|
+
cursorIndexRef: {
|
|
761
|
+
readonly current: number;
|
|
762
|
+
};
|
|
763
|
+
UNSTABLE_virtual: {
|
|
764
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
765
|
+
totalSize: number;
|
|
766
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
767
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
768
|
+
measure: () => void;
|
|
769
|
+
};
|
|
770
|
+
UNSTABLE_defaultItemHeight: number;
|
|
771
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
772
|
+
orientation: "horizontal" | "vertical";
|
|
773
|
+
indexRef: React.MutableRefObject<number>;
|
|
774
|
+
nonInteractiveIds: string[];
|
|
775
|
+
isVirtualized: boolean;
|
|
776
|
+
items: import("../..").Item<any>[];
|
|
777
|
+
mode: "multiple" | "single";
|
|
778
|
+
}) => boolean) | undefined;
|
|
779
|
+
shouldHide?: ((data: Event | React.SyntheticEvent<Element, Event> | undefined, state: {
|
|
780
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
781
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
782
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
783
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
784
|
+
placement: import("@popperjs/core").Placement;
|
|
785
|
+
id: string;
|
|
786
|
+
visibility: "hidden" | "visible";
|
|
787
|
+
selectedIds: string[] | "all";
|
|
788
|
+
unselectedIds: string[];
|
|
789
|
+
cursorId: string;
|
|
790
|
+
columnCount: number;
|
|
791
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
792
|
+
cursorIndexRef: {
|
|
793
|
+
readonly current: number;
|
|
794
|
+
};
|
|
795
|
+
UNSTABLE_virtual: {
|
|
796
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
797
|
+
totalSize: number;
|
|
798
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
799
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
800
|
+
measure: () => void;
|
|
801
|
+
};
|
|
802
|
+
UNSTABLE_defaultItemHeight: number;
|
|
803
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
804
|
+
orientation: "horizontal" | "vertical";
|
|
805
|
+
indexRef: React.MutableRefObject<number>;
|
|
806
|
+
nonInteractiveIds: string[];
|
|
807
|
+
isVirtualized: boolean;
|
|
808
|
+
items: import("../..").Item<any>[];
|
|
809
|
+
mode: "multiple" | "single";
|
|
810
|
+
}) => boolean) | undefined;
|
|
811
|
+
shouldSelect?: ((data: {
|
|
812
|
+
id: string;
|
|
813
|
+
}, state: {
|
|
814
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
815
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
816
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
817
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
818
|
+
placement: import("@popperjs/core").Placement;
|
|
819
|
+
id: string;
|
|
820
|
+
visibility: "hidden" | "visible";
|
|
821
|
+
selectedIds: string[] | "all";
|
|
822
|
+
unselectedIds: string[];
|
|
823
|
+
cursorId: string;
|
|
824
|
+
columnCount: number;
|
|
825
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
826
|
+
cursorIndexRef: {
|
|
827
|
+
readonly current: number;
|
|
828
|
+
};
|
|
829
|
+
UNSTABLE_virtual: {
|
|
830
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
831
|
+
totalSize: number;
|
|
832
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
833
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
834
|
+
measure: () => void;
|
|
835
|
+
};
|
|
836
|
+
UNSTABLE_defaultItemHeight: number;
|
|
837
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
838
|
+
orientation: "horizontal" | "vertical";
|
|
839
|
+
indexRef: React.MutableRefObject<number>;
|
|
840
|
+
nonInteractiveIds: string[];
|
|
841
|
+
isVirtualized: boolean;
|
|
842
|
+
items: import("../..").Item<any>[];
|
|
843
|
+
mode: "multiple" | "single";
|
|
844
|
+
}) => boolean) | undefined;
|
|
845
|
+
shouldSelectAll?: ((data: undefined, state: {
|
|
846
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
847
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
848
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
849
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
850
|
+
placement: import("@popperjs/core").Placement;
|
|
851
|
+
id: string;
|
|
852
|
+
visibility: "hidden" | "visible";
|
|
853
|
+
selectedIds: string[] | "all";
|
|
854
|
+
unselectedIds: string[];
|
|
855
|
+
cursorId: string;
|
|
856
|
+
columnCount: number;
|
|
857
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
858
|
+
cursorIndexRef: {
|
|
859
|
+
readonly current: number;
|
|
860
|
+
};
|
|
861
|
+
UNSTABLE_virtual: {
|
|
862
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
863
|
+
totalSize: number;
|
|
864
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
865
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
866
|
+
measure: () => void;
|
|
867
|
+
};
|
|
868
|
+
UNSTABLE_defaultItemHeight: number;
|
|
869
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
870
|
+
orientation: "horizontal" | "vertical";
|
|
871
|
+
indexRef: React.MutableRefObject<number>;
|
|
872
|
+
nonInteractiveIds: string[];
|
|
873
|
+
isVirtualized: boolean;
|
|
874
|
+
items: import("../..").Item<any>[];
|
|
875
|
+
mode: "multiple" | "single";
|
|
876
|
+
}) => boolean) | undefined;
|
|
877
|
+
shouldUnselectAll?: ((data: undefined, state: {
|
|
878
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
879
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
880
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
881
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
882
|
+
placement: import("@popperjs/core").Placement;
|
|
883
|
+
id: string;
|
|
884
|
+
visibility: "hidden" | "visible";
|
|
885
|
+
selectedIds: string[] | "all";
|
|
886
|
+
unselectedIds: string[];
|
|
887
|
+
cursorId: string;
|
|
888
|
+
columnCount: number;
|
|
889
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
890
|
+
cursorIndexRef: {
|
|
891
|
+
readonly current: number;
|
|
892
|
+
};
|
|
893
|
+
UNSTABLE_virtual: {
|
|
894
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
895
|
+
totalSize: number;
|
|
896
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
897
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
898
|
+
measure: () => void;
|
|
899
|
+
};
|
|
900
|
+
UNSTABLE_defaultItemHeight: number;
|
|
901
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
902
|
+
orientation: "horizontal" | "vertical";
|
|
903
|
+
indexRef: React.MutableRefObject<number>;
|
|
904
|
+
nonInteractiveIds: string[];
|
|
905
|
+
isVirtualized: boolean;
|
|
906
|
+
items: import("../..").Item<any>[];
|
|
907
|
+
mode: "multiple" | "single";
|
|
908
|
+
}) => boolean) | undefined;
|
|
909
|
+
shouldGoTo?: ((data: {
|
|
910
|
+
id: string;
|
|
911
|
+
}, state: {
|
|
912
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
913
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
914
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
915
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
916
|
+
placement: import("@popperjs/core").Placement;
|
|
917
|
+
id: string;
|
|
918
|
+
visibility: "hidden" | "visible";
|
|
919
|
+
selectedIds: string[] | "all";
|
|
920
|
+
unselectedIds: string[];
|
|
921
|
+
cursorId: string;
|
|
922
|
+
columnCount: number;
|
|
923
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
924
|
+
cursorIndexRef: {
|
|
925
|
+
readonly current: number;
|
|
926
|
+
};
|
|
927
|
+
UNSTABLE_virtual: {
|
|
928
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
929
|
+
totalSize: number;
|
|
930
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
931
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
932
|
+
measure: () => void;
|
|
933
|
+
};
|
|
934
|
+
UNSTABLE_defaultItemHeight: number;
|
|
935
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
936
|
+
orientation: "horizontal" | "vertical";
|
|
937
|
+
indexRef: React.MutableRefObject<number>;
|
|
938
|
+
nonInteractiveIds: string[];
|
|
939
|
+
isVirtualized: boolean;
|
|
940
|
+
items: import("../..").Item<any>[];
|
|
941
|
+
mode: "multiple" | "single";
|
|
942
|
+
}) => boolean) | undefined;
|
|
943
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
944
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
945
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
946
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
947
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
948
|
+
placement: import("@popperjs/core").Placement;
|
|
949
|
+
id: string;
|
|
950
|
+
visibility: "hidden" | "visible";
|
|
951
|
+
selectedIds: string[] | "all";
|
|
952
|
+
unselectedIds: string[];
|
|
953
|
+
cursorId: string;
|
|
954
|
+
columnCount: number;
|
|
955
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
956
|
+
cursorIndexRef: {
|
|
957
|
+
readonly current: number;
|
|
958
|
+
};
|
|
959
|
+
UNSTABLE_virtual: {
|
|
960
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
961
|
+
totalSize: number;
|
|
962
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
963
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
964
|
+
measure: () => void;
|
|
965
|
+
};
|
|
966
|
+
UNSTABLE_defaultItemHeight: number;
|
|
967
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
968
|
+
orientation: "horizontal" | "vertical";
|
|
969
|
+
indexRef: React.MutableRefObject<number>;
|
|
970
|
+
nonInteractiveIds: string[];
|
|
971
|
+
isVirtualized: boolean;
|
|
972
|
+
items: import("../..").Item<any>[];
|
|
973
|
+
mode: "multiple" | "single";
|
|
974
|
+
}) => boolean) | undefined;
|
|
975
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
976
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
977
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
978
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
979
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
980
|
+
placement: import("@popperjs/core").Placement;
|
|
981
|
+
id: string;
|
|
982
|
+
visibility: "hidden" | "visible";
|
|
983
|
+
selectedIds: string[] | "all";
|
|
984
|
+
unselectedIds: string[];
|
|
985
|
+
cursorId: string;
|
|
986
|
+
columnCount: number;
|
|
987
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
988
|
+
cursorIndexRef: {
|
|
989
|
+
readonly current: number;
|
|
990
|
+
};
|
|
991
|
+
UNSTABLE_virtual: {
|
|
992
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
993
|
+
totalSize: number;
|
|
994
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
995
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
996
|
+
measure: () => void;
|
|
997
|
+
};
|
|
998
|
+
UNSTABLE_defaultItemHeight: number;
|
|
999
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1000
|
+
orientation: "horizontal" | "vertical";
|
|
1001
|
+
indexRef: React.MutableRefObject<number>;
|
|
1002
|
+
nonInteractiveIds: string[];
|
|
1003
|
+
isVirtualized: boolean;
|
|
1004
|
+
items: import("../..").Item<any>[];
|
|
1005
|
+
mode: "multiple" | "single";
|
|
1006
|
+
}) => boolean) | undefined;
|
|
1007
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
1008
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1009
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1010
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1011
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1012
|
+
placement: import("@popperjs/core").Placement;
|
|
1013
|
+
id: string;
|
|
1014
|
+
visibility: "hidden" | "visible";
|
|
1015
|
+
selectedIds: string[] | "all";
|
|
1016
|
+
unselectedIds: string[];
|
|
1017
|
+
cursorId: string;
|
|
1018
|
+
columnCount: number;
|
|
1019
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1020
|
+
cursorIndexRef: {
|
|
1021
|
+
readonly current: number;
|
|
1022
|
+
};
|
|
1023
|
+
UNSTABLE_virtual: {
|
|
1024
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1025
|
+
totalSize: number;
|
|
1026
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1027
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1028
|
+
measure: () => void;
|
|
1029
|
+
};
|
|
1030
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1031
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1032
|
+
orientation: "horizontal" | "vertical";
|
|
1033
|
+
indexRef: React.MutableRefObject<number>;
|
|
1034
|
+
nonInteractiveIds: string[];
|
|
1035
|
+
isVirtualized: boolean;
|
|
1036
|
+
items: import("../..").Item<any>[];
|
|
1037
|
+
mode: "multiple" | "single";
|
|
1038
|
+
}) => boolean) | undefined;
|
|
1039
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
1040
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1041
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1042
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1043
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1044
|
+
placement: import("@popperjs/core").Placement;
|
|
1045
|
+
id: string;
|
|
1046
|
+
visibility: "hidden" | "visible";
|
|
1047
|
+
selectedIds: string[] | "all";
|
|
1048
|
+
unselectedIds: string[];
|
|
1049
|
+
cursorId: string;
|
|
1050
|
+
columnCount: number;
|
|
1051
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1052
|
+
cursorIndexRef: {
|
|
1053
|
+
readonly current: number;
|
|
1054
|
+
};
|
|
1055
|
+
UNSTABLE_virtual: {
|
|
1056
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1057
|
+
totalSize: number;
|
|
1058
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1059
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1060
|
+
measure: () => void;
|
|
1061
|
+
};
|
|
1062
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1063
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1064
|
+
orientation: "horizontal" | "vertical";
|
|
1065
|
+
indexRef: React.MutableRefObject<number>;
|
|
1066
|
+
nonInteractiveIds: string[];
|
|
1067
|
+
isVirtualized: boolean;
|
|
1068
|
+
items: import("../..").Item<any>[];
|
|
1069
|
+
mode: "multiple" | "single";
|
|
1070
|
+
}) => boolean) | undefined;
|
|
1071
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
1072
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1073
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1074
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1075
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1076
|
+
placement: import("@popperjs/core").Placement;
|
|
1077
|
+
id: string;
|
|
1078
|
+
visibility: "hidden" | "visible";
|
|
1079
|
+
selectedIds: string[] | "all";
|
|
1080
|
+
unselectedIds: string[];
|
|
1081
|
+
cursorId: string;
|
|
1082
|
+
columnCount: number;
|
|
1083
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1084
|
+
cursorIndexRef: {
|
|
1085
|
+
readonly current: number;
|
|
1086
|
+
};
|
|
1087
|
+
UNSTABLE_virtual: {
|
|
1088
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1089
|
+
totalSize: number;
|
|
1090
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1091
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1092
|
+
measure: () => void;
|
|
1093
|
+
};
|
|
1094
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1095
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1096
|
+
orientation: "horizontal" | "vertical";
|
|
1097
|
+
indexRef: React.MutableRefObject<number>;
|
|
1098
|
+
nonInteractiveIds: string[];
|
|
1099
|
+
isVirtualized: boolean;
|
|
1100
|
+
items: import("../..").Item<any>[];
|
|
1101
|
+
mode: "multiple" | "single";
|
|
1102
|
+
}) => boolean) | undefined;
|
|
1103
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
1104
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1105
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1106
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1107
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1108
|
+
placement: import("@popperjs/core").Placement;
|
|
1109
|
+
id: string;
|
|
1110
|
+
visibility: "hidden" | "visible";
|
|
1111
|
+
selectedIds: string[] | "all";
|
|
1112
|
+
unselectedIds: string[];
|
|
1113
|
+
cursorId: string;
|
|
1114
|
+
columnCount: number;
|
|
1115
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1116
|
+
cursorIndexRef: {
|
|
1117
|
+
readonly current: number;
|
|
1118
|
+
};
|
|
1119
|
+
UNSTABLE_virtual: {
|
|
1120
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1121
|
+
totalSize: number;
|
|
1122
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1123
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1124
|
+
measure: () => void;
|
|
1125
|
+
};
|
|
1126
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1127
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1128
|
+
orientation: "horizontal" | "vertical";
|
|
1129
|
+
indexRef: React.MutableRefObject<number>;
|
|
1130
|
+
nonInteractiveIds: string[];
|
|
1131
|
+
isVirtualized: boolean;
|
|
1132
|
+
items: import("../..").Item<any>[];
|
|
1133
|
+
mode: "multiple" | "single";
|
|
1134
|
+
}) => boolean) | undefined;
|
|
1135
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
1136
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1137
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1138
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1139
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1140
|
+
placement: import("@popperjs/core").Placement;
|
|
1141
|
+
id: string;
|
|
1142
|
+
visibility: "hidden" | "visible";
|
|
1143
|
+
selectedIds: string[] | "all";
|
|
1144
|
+
unselectedIds: string[];
|
|
1145
|
+
cursorId: string;
|
|
1146
|
+
columnCount: number;
|
|
1147
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1148
|
+
cursorIndexRef: {
|
|
1149
|
+
readonly current: number;
|
|
1150
|
+
};
|
|
1151
|
+
UNSTABLE_virtual: {
|
|
1152
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1153
|
+
totalSize: number;
|
|
1154
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1155
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1156
|
+
measure: () => void;
|
|
1157
|
+
};
|
|
1158
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1159
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1160
|
+
orientation: "horizontal" | "vertical";
|
|
1161
|
+
indexRef: React.MutableRefObject<number>;
|
|
1162
|
+
nonInteractiveIds: string[];
|
|
1163
|
+
isVirtualized: boolean;
|
|
1164
|
+
items: import("../..").Item<any>[];
|
|
1165
|
+
mode: "multiple" | "single";
|
|
1166
|
+
}) => boolean) | undefined;
|
|
1167
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
1168
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1169
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1170
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1171
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1172
|
+
placement: import("@popperjs/core").Placement;
|
|
1173
|
+
id: string;
|
|
1174
|
+
visibility: "hidden" | "visible";
|
|
1175
|
+
selectedIds: string[] | "all";
|
|
1176
|
+
unselectedIds: string[];
|
|
1177
|
+
cursorId: string;
|
|
1178
|
+
columnCount: number;
|
|
1179
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1180
|
+
cursorIndexRef: {
|
|
1181
|
+
readonly current: number;
|
|
1182
|
+
};
|
|
1183
|
+
UNSTABLE_virtual: {
|
|
1184
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1185
|
+
totalSize: number;
|
|
1186
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1187
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1188
|
+
measure: () => void;
|
|
1189
|
+
};
|
|
1190
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1191
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1192
|
+
orientation: "horizontal" | "vertical";
|
|
1193
|
+
indexRef: React.MutableRefObject<number>;
|
|
1194
|
+
nonInteractiveIds: string[];
|
|
1195
|
+
isVirtualized: boolean;
|
|
1196
|
+
items: import("../..").Item<any>[];
|
|
1197
|
+
mode: "multiple" | "single";
|
|
1198
|
+
}) => boolean) | undefined;
|
|
1199
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
1200
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1201
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1202
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1203
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1204
|
+
placement: import("@popperjs/core").Placement;
|
|
1205
|
+
id: string;
|
|
1206
|
+
visibility: "hidden" | "visible";
|
|
1207
|
+
selectedIds: string[] | "all";
|
|
1208
|
+
unselectedIds: string[];
|
|
1209
|
+
cursorId: string;
|
|
1210
|
+
columnCount: number;
|
|
1211
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1212
|
+
cursorIndexRef: {
|
|
1213
|
+
readonly current: number;
|
|
1214
|
+
};
|
|
1215
|
+
UNSTABLE_virtual: {
|
|
1216
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1217
|
+
totalSize: number;
|
|
1218
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1219
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1220
|
+
measure: () => void;
|
|
1221
|
+
};
|
|
1222
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1223
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1224
|
+
orientation: "horizontal" | "vertical";
|
|
1225
|
+
indexRef: React.MutableRefObject<number>;
|
|
1226
|
+
nonInteractiveIds: string[];
|
|
1227
|
+
isVirtualized: boolean;
|
|
1228
|
+
items: import("../..").Item<any>[];
|
|
1229
|
+
mode: "multiple" | "single";
|
|
1230
|
+
}) => boolean) | undefined;
|
|
1231
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
1232
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1233
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1234
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1235
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1236
|
+
placement: import("@popperjs/core").Placement;
|
|
1237
|
+
id: string;
|
|
1238
|
+
visibility: "hidden" | "visible";
|
|
1239
|
+
selectedIds: string[] | "all";
|
|
1240
|
+
unselectedIds: string[];
|
|
1241
|
+
cursorId: string;
|
|
1242
|
+
columnCount: number;
|
|
1243
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1244
|
+
cursorIndexRef: {
|
|
1245
|
+
readonly current: number;
|
|
1246
|
+
};
|
|
1247
|
+
UNSTABLE_virtual: {
|
|
1248
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1249
|
+
totalSize: number;
|
|
1250
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1251
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1252
|
+
measure: () => void;
|
|
1253
|
+
};
|
|
1254
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1255
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1256
|
+
orientation: "horizontal" | "vertical";
|
|
1257
|
+
indexRef: React.MutableRefObject<number>;
|
|
1258
|
+
nonInteractiveIds: string[];
|
|
1259
|
+
isVirtualized: boolean;
|
|
1260
|
+
items: import("../..").Item<any>[];
|
|
1261
|
+
mode: "multiple" | "single";
|
|
1262
|
+
}) => boolean) | undefined;
|
|
1263
|
+
shouldRegisterItem?: ((data: {
|
|
1264
|
+
item: any;
|
|
1265
|
+
textValue: string;
|
|
1266
|
+
}, state: {
|
|
1267
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1268
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1269
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1270
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1271
|
+
placement: import("@popperjs/core").Placement;
|
|
1272
|
+
id: string;
|
|
1273
|
+
visibility: "hidden" | "visible";
|
|
1274
|
+
selectedIds: string[] | "all";
|
|
1275
|
+
unselectedIds: string[];
|
|
1276
|
+
cursorId: string;
|
|
1277
|
+
columnCount: number;
|
|
1278
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1279
|
+
cursorIndexRef: {
|
|
1280
|
+
readonly current: number;
|
|
1281
|
+
};
|
|
1282
|
+
UNSTABLE_virtual: {
|
|
1283
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1284
|
+
totalSize: number;
|
|
1285
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1286
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1287
|
+
measure: () => void;
|
|
1288
|
+
};
|
|
1289
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1290
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1291
|
+
orientation: "horizontal" | "vertical";
|
|
1292
|
+
indexRef: React.MutableRefObject<number>;
|
|
1293
|
+
nonInteractiveIds: string[];
|
|
1294
|
+
isVirtualized: boolean;
|
|
1295
|
+
items: import("../..").Item<any>[];
|
|
1296
|
+
mode: "multiple" | "single";
|
|
1297
|
+
}) => boolean) | undefined;
|
|
1298
|
+
shouldUnregisterItem?: ((data: {
|
|
1299
|
+
id: string;
|
|
1300
|
+
}, state: {
|
|
1301
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1302
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1303
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1304
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1305
|
+
placement: import("@popperjs/core").Placement;
|
|
1306
|
+
id: string;
|
|
1307
|
+
visibility: "hidden" | "visible";
|
|
1308
|
+
selectedIds: string[] | "all";
|
|
1309
|
+
unselectedIds: string[];
|
|
1310
|
+
cursorId: string;
|
|
1311
|
+
columnCount: number;
|
|
1312
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1313
|
+
cursorIndexRef: {
|
|
1314
|
+
readonly current: number;
|
|
1315
|
+
};
|
|
1316
|
+
UNSTABLE_virtual: {
|
|
1317
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1318
|
+
totalSize: number;
|
|
1319
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1320
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1321
|
+
measure: () => void;
|
|
1322
|
+
};
|
|
1323
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1324
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1325
|
+
orientation: "horizontal" | "vertical";
|
|
1326
|
+
indexRef: React.MutableRefObject<number>;
|
|
1327
|
+
nonInteractiveIds: string[];
|
|
1328
|
+
isVirtualized: boolean;
|
|
1329
|
+
items: import("../..").Item<any>[];
|
|
1330
|
+
mode: "multiple" | "single";
|
|
1331
|
+
}) => boolean) | undefined;
|
|
1332
|
+
shouldUpdateItemHeight?: ((data: {
|
|
1333
|
+
value: number;
|
|
1334
|
+
}, state: {
|
|
1335
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1336
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1337
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1338
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1339
|
+
placement: import("@popperjs/core").Placement;
|
|
1340
|
+
id: string;
|
|
1341
|
+
visibility: "hidden" | "visible";
|
|
1342
|
+
selectedIds: string[] | "all";
|
|
1343
|
+
unselectedIds: string[];
|
|
1344
|
+
cursorId: string;
|
|
1345
|
+
columnCount: number;
|
|
1346
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1347
|
+
cursorIndexRef: {
|
|
1348
|
+
readonly current: number;
|
|
1349
|
+
};
|
|
1350
|
+
UNSTABLE_virtual: {
|
|
1351
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1352
|
+
totalSize: number;
|
|
1353
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1354
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1355
|
+
measure: () => void;
|
|
1356
|
+
};
|
|
1357
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1358
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1359
|
+
orientation: "horizontal" | "vertical";
|
|
1360
|
+
indexRef: React.MutableRefObject<number>;
|
|
1361
|
+
nonInteractiveIds: string[];
|
|
1362
|
+
isVirtualized: boolean;
|
|
1363
|
+
items: import("../..").Item<any>[];
|
|
1364
|
+
mode: "multiple" | "single";
|
|
1365
|
+
}) => boolean) | undefined;
|
|
1366
|
+
};
|
|
1367
|
+
/**
|
|
1368
|
+
* `Tabs.Item` is a `<button role="tab">` element. Each `Tabs.Item` is associated with a
|
|
1369
|
+
* `Tabs.Panel` either by a `data-id` attribute or by the position in the list. If a `data-id`
|
|
1370
|
+
* is provided, it must match the `data-id` passed to the corresponding `Tabs.Panel` component.
|
|
1371
|
+
*
|
|
1372
|
+
* ```tsx
|
|
1373
|
+
* <Tabs.Item data-id="first">First Tab</Tabs.Item>
|
|
1374
|
+
* ```
|
|
1375
|
+
*/
|
|
32
1376
|
initialHiddenIds: string[];
|
|
33
1377
|
containerWidth: number;
|
|
34
1378
|
shouldCalculateOverflow: boolean;
|
|
@@ -38,6 +1382,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
38
1382
|
initialCursorId: string;
|
|
39
1383
|
columnCount: number;
|
|
40
1384
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1385
|
+
pageSize: number;
|
|
41
1386
|
getId: (item: any) => string;
|
|
42
1387
|
getTextValue: (item: any) => string;
|
|
43
1388
|
nonInteractiveIds: string[];
|
|
@@ -57,10 +1402,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
57
1402
|
itemWidthCache: Record<string, number>;
|
|
58
1403
|
containerWidth: number;
|
|
59
1404
|
overflowTargetWidth: number;
|
|
60
|
-
selectedIds:
|
|
1405
|
+
selectedIds: string[] | "all";
|
|
61
1406
|
unselectedIds: string[];
|
|
62
1407
|
cursorId: string;
|
|
63
1408
|
columnCount: number;
|
|
1409
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1410
|
+
cursorIndexRef: {
|
|
1411
|
+
readonly current: number;
|
|
1412
|
+
};
|
|
64
1413
|
UNSTABLE_virtual: {
|
|
65
1414
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
66
1415
|
totalSize: number;
|
|
@@ -87,10 +1436,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
87
1436
|
itemWidthCache: Record<string, number>;
|
|
88
1437
|
containerWidth: number;
|
|
89
1438
|
overflowTargetWidth: number;
|
|
90
|
-
selectedIds:
|
|
1439
|
+
selectedIds: string[] | "all";
|
|
91
1440
|
unselectedIds: string[];
|
|
92
1441
|
cursorId: string;
|
|
93
1442
|
columnCount: number;
|
|
1443
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1444
|
+
cursorIndexRef: {
|
|
1445
|
+
readonly current: number;
|
|
1446
|
+
};
|
|
94
1447
|
UNSTABLE_virtual: {
|
|
95
1448
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
96
1449
|
totalSize: number;
|
|
@@ -117,10 +1470,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
117
1470
|
itemWidthCache: Record<string, number>;
|
|
118
1471
|
containerWidth: number;
|
|
119
1472
|
overflowTargetWidth: number;
|
|
120
|
-
selectedIds:
|
|
1473
|
+
selectedIds: string[] | "all";
|
|
121
1474
|
unselectedIds: string[];
|
|
122
1475
|
cursorId: string;
|
|
123
1476
|
columnCount: number;
|
|
1477
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1478
|
+
cursorIndexRef: {
|
|
1479
|
+
readonly current: number;
|
|
1480
|
+
};
|
|
124
1481
|
UNSTABLE_virtual: {
|
|
125
1482
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
126
1483
|
totalSize: number;
|
|
@@ -147,10 +1504,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
147
1504
|
itemWidthCache: Record<string, number>;
|
|
148
1505
|
containerWidth: number;
|
|
149
1506
|
overflowTargetWidth: number;
|
|
150
|
-
selectedIds:
|
|
1507
|
+
selectedIds: string[] | "all";
|
|
151
1508
|
unselectedIds: string[];
|
|
152
1509
|
cursorId: string;
|
|
153
1510
|
columnCount: number;
|
|
1511
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1512
|
+
cursorIndexRef: {
|
|
1513
|
+
readonly current: number;
|
|
1514
|
+
};
|
|
154
1515
|
UNSTABLE_virtual: {
|
|
155
1516
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
156
1517
|
totalSize: number;
|
|
@@ -177,10 +1538,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
177
1538
|
itemWidthCache: Record<string, number>;
|
|
178
1539
|
containerWidth: number;
|
|
179
1540
|
overflowTargetWidth: number;
|
|
180
|
-
selectedIds:
|
|
1541
|
+
selectedIds: string[] | "all";
|
|
181
1542
|
unselectedIds: string[];
|
|
182
1543
|
cursorId: string;
|
|
183
1544
|
columnCount: number;
|
|
1545
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1546
|
+
cursorIndexRef: {
|
|
1547
|
+
readonly current: number;
|
|
1548
|
+
};
|
|
184
1549
|
UNSTABLE_virtual: {
|
|
185
1550
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
186
1551
|
totalSize: number;
|
|
@@ -208,10 +1573,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
208
1573
|
itemWidthCache: Record<string, number>;
|
|
209
1574
|
containerWidth: number;
|
|
210
1575
|
overflowTargetWidth: number;
|
|
211
|
-
selectedIds:
|
|
1576
|
+
selectedIds: string[] | "all";
|
|
212
1577
|
unselectedIds: string[];
|
|
213
1578
|
cursorId: string;
|
|
214
1579
|
columnCount: number;
|
|
1580
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1581
|
+
cursorIndexRef: {
|
|
1582
|
+
readonly current: number;
|
|
1583
|
+
};
|
|
215
1584
|
UNSTABLE_virtual: {
|
|
216
1585
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
217
1586
|
totalSize: number;
|
|
@@ -238,10 +1607,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
238
1607
|
itemWidthCache: Record<string, number>;
|
|
239
1608
|
containerWidth: number;
|
|
240
1609
|
overflowTargetWidth: number;
|
|
241
|
-
selectedIds:
|
|
1610
|
+
selectedIds: string[] | "all";
|
|
242
1611
|
unselectedIds: string[];
|
|
243
1612
|
cursorId: string;
|
|
244
1613
|
columnCount: number;
|
|
1614
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1615
|
+
cursorIndexRef: {
|
|
1616
|
+
readonly current: number;
|
|
1617
|
+
};
|
|
245
1618
|
UNSTABLE_virtual: {
|
|
246
1619
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
247
1620
|
totalSize: number;
|
|
@@ -268,10 +1641,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
268
1641
|
itemWidthCache: Record<string, number>;
|
|
269
1642
|
containerWidth: number;
|
|
270
1643
|
overflowTargetWidth: number;
|
|
271
|
-
selectedIds:
|
|
1644
|
+
selectedIds: string[] | "all";
|
|
272
1645
|
unselectedIds: string[];
|
|
273
1646
|
cursorId: string;
|
|
274
1647
|
columnCount: number;
|
|
1648
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1649
|
+
cursorIndexRef: {
|
|
1650
|
+
readonly current: number;
|
|
1651
|
+
};
|
|
275
1652
|
UNSTABLE_virtual: {
|
|
276
1653
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
277
1654
|
totalSize: number;
|
|
@@ -298,10 +1675,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
298
1675
|
itemWidthCache: Record<string, number>;
|
|
299
1676
|
containerWidth: number;
|
|
300
1677
|
overflowTargetWidth: number;
|
|
301
|
-
selectedIds:
|
|
1678
|
+
selectedIds: string[] | "all";
|
|
302
1679
|
unselectedIds: string[];
|
|
303
1680
|
cursorId: string;
|
|
304
1681
|
columnCount: number;
|
|
1682
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1683
|
+
cursorIndexRef: {
|
|
1684
|
+
readonly current: number;
|
|
1685
|
+
};
|
|
305
1686
|
UNSTABLE_virtual: {
|
|
306
1687
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
307
1688
|
totalSize: number;
|
|
@@ -326,10 +1707,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
326
1707
|
itemWidthCache: Record<string, number>;
|
|
327
1708
|
containerWidth: number;
|
|
328
1709
|
overflowTargetWidth: number;
|
|
329
|
-
selectedIds:
|
|
1710
|
+
selectedIds: string[] | "all";
|
|
330
1711
|
unselectedIds: string[];
|
|
331
1712
|
cursorId: string;
|
|
332
1713
|
columnCount: number;
|
|
1714
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1715
|
+
cursorIndexRef: {
|
|
1716
|
+
readonly current: number;
|
|
1717
|
+
};
|
|
333
1718
|
UNSTABLE_virtual: {
|
|
334
1719
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
335
1720
|
totalSize: number;
|
|
@@ -354,10 +1739,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
354
1739
|
itemWidthCache: Record<string, number>;
|
|
355
1740
|
containerWidth: number;
|
|
356
1741
|
overflowTargetWidth: number;
|
|
357
|
-
selectedIds:
|
|
1742
|
+
selectedIds: string[] | "all";
|
|
358
1743
|
unselectedIds: string[];
|
|
359
1744
|
cursorId: string;
|
|
360
1745
|
columnCount: number;
|
|
1746
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1747
|
+
cursorIndexRef: {
|
|
1748
|
+
readonly current: number;
|
|
1749
|
+
};
|
|
361
1750
|
UNSTABLE_virtual: {
|
|
362
1751
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
363
1752
|
totalSize: number;
|
|
@@ -373,9 +1762,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
373
1762
|
isVirtualized: boolean;
|
|
374
1763
|
items: import("../..").Item<any>[];
|
|
375
1764
|
}) => void) | undefined;
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
textValue: string;
|
|
1765
|
+
onGoTo?: ((data: {
|
|
1766
|
+
id: string;
|
|
379
1767
|
}, prevState: {
|
|
380
1768
|
getId: (item: any) => string;
|
|
381
1769
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -385,10 +1773,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
385
1773
|
itemWidthCache: Record<string, number>;
|
|
386
1774
|
containerWidth: number;
|
|
387
1775
|
overflowTargetWidth: number;
|
|
388
|
-
selectedIds:
|
|
1776
|
+
selectedIds: string[] | "all";
|
|
389
1777
|
unselectedIds: string[];
|
|
390
1778
|
cursorId: string;
|
|
391
1779
|
columnCount: number;
|
|
1780
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1781
|
+
cursorIndexRef: {
|
|
1782
|
+
readonly current: number;
|
|
1783
|
+
};
|
|
392
1784
|
UNSTABLE_virtual: {
|
|
393
1785
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
394
1786
|
totalSize: number;
|
|
@@ -404,9 +1796,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
404
1796
|
isVirtualized: boolean;
|
|
405
1797
|
items: import("../..").Item<any>[];
|
|
406
1798
|
}) => void) | undefined;
|
|
407
|
-
|
|
408
|
-
id: string;
|
|
409
|
-
}, prevState: {
|
|
1799
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
410
1800
|
getId: (item: any) => string;
|
|
411
1801
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
412
1802
|
panels: import("../..").Item<any>[];
|
|
@@ -415,10 +1805,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
415
1805
|
itemWidthCache: Record<string, number>;
|
|
416
1806
|
containerWidth: number;
|
|
417
1807
|
overflowTargetWidth: number;
|
|
418
|
-
selectedIds:
|
|
1808
|
+
selectedIds: string[] | "all";
|
|
419
1809
|
unselectedIds: string[];
|
|
420
1810
|
cursorId: string;
|
|
421
1811
|
columnCount: number;
|
|
1812
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1813
|
+
cursorIndexRef: {
|
|
1814
|
+
readonly current: number;
|
|
1815
|
+
};
|
|
422
1816
|
UNSTABLE_virtual: {
|
|
423
1817
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
424
1818
|
totalSize: number;
|
|
@@ -434,7 +1828,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
434
1828
|
isVirtualized: boolean;
|
|
435
1829
|
items: import("../..").Item<any>[];
|
|
436
1830
|
}) => void) | undefined;
|
|
437
|
-
|
|
1831
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
438
1832
|
getId: (item: any) => string;
|
|
439
1833
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
440
1834
|
panels: import("../..").Item<any>[];
|
|
@@ -443,10 +1837,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
443
1837
|
itemWidthCache: Record<string, number>;
|
|
444
1838
|
containerWidth: number;
|
|
445
1839
|
overflowTargetWidth: number;
|
|
446
|
-
selectedIds:
|
|
1840
|
+
selectedIds: string[] | "all";
|
|
447
1841
|
unselectedIds: string[];
|
|
448
1842
|
cursorId: string;
|
|
449
1843
|
columnCount: number;
|
|
1844
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1845
|
+
cursorIndexRef: {
|
|
1846
|
+
readonly current: number;
|
|
1847
|
+
};
|
|
450
1848
|
UNSTABLE_virtual: {
|
|
451
1849
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
452
1850
|
totalSize: number;
|
|
@@ -462,7 +1860,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
462
1860
|
isVirtualized: boolean;
|
|
463
1861
|
items: import("../..").Item<any>[];
|
|
464
1862
|
}) => void) | undefined;
|
|
465
|
-
|
|
1863
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
466
1864
|
getId: (item: any) => string;
|
|
467
1865
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
468
1866
|
panels: import("../..").Item<any>[];
|
|
@@ -471,10 +1869,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
471
1869
|
itemWidthCache: Record<string, number>;
|
|
472
1870
|
containerWidth: number;
|
|
473
1871
|
overflowTargetWidth: number;
|
|
474
|
-
selectedIds:
|
|
1872
|
+
selectedIds: string[] | "all";
|
|
475
1873
|
unselectedIds: string[];
|
|
476
1874
|
cursorId: string;
|
|
477
1875
|
columnCount: number;
|
|
1876
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1877
|
+
cursorIndexRef: {
|
|
1878
|
+
readonly current: number;
|
|
1879
|
+
};
|
|
478
1880
|
UNSTABLE_virtual: {
|
|
479
1881
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
480
1882
|
totalSize: number;
|
|
@@ -490,7 +1892,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
490
1892
|
isVirtualized: boolean;
|
|
491
1893
|
items: import("../..").Item<any>[];
|
|
492
1894
|
}) => void) | undefined;
|
|
493
|
-
|
|
1895
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
494
1896
|
getId: (item: any) => string;
|
|
495
1897
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
496
1898
|
panels: import("../..").Item<any>[];
|
|
@@ -499,10 +1901,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
499
1901
|
itemWidthCache: Record<string, number>;
|
|
500
1902
|
containerWidth: number;
|
|
501
1903
|
overflowTargetWidth: number;
|
|
502
|
-
selectedIds:
|
|
1904
|
+
selectedIds: string[] | "all";
|
|
503
1905
|
unselectedIds: string[];
|
|
504
1906
|
cursorId: string;
|
|
505
1907
|
columnCount: number;
|
|
1908
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1909
|
+
cursorIndexRef: {
|
|
1910
|
+
readonly current: number;
|
|
1911
|
+
};
|
|
506
1912
|
UNSTABLE_virtual: {
|
|
507
1913
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
508
1914
|
totalSize: number;
|
|
@@ -518,7 +1924,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
518
1924
|
isVirtualized: boolean;
|
|
519
1925
|
items: import("../..").Item<any>[];
|
|
520
1926
|
}) => void) | undefined;
|
|
521
|
-
|
|
1927
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
522
1928
|
getId: (item: any) => string;
|
|
523
1929
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
524
1930
|
panels: import("../..").Item<any>[];
|
|
@@ -527,10 +1933,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
527
1933
|
itemWidthCache: Record<string, number>;
|
|
528
1934
|
containerWidth: number;
|
|
529
1935
|
overflowTargetWidth: number;
|
|
530
|
-
selectedIds:
|
|
1936
|
+
selectedIds: string[] | "all";
|
|
531
1937
|
unselectedIds: string[];
|
|
532
1938
|
cursorId: string;
|
|
533
1939
|
columnCount: number;
|
|
1940
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1941
|
+
cursorIndexRef: {
|
|
1942
|
+
readonly current: number;
|
|
1943
|
+
};
|
|
534
1944
|
UNSTABLE_virtual: {
|
|
535
1945
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
536
1946
|
totalSize: number;
|
|
@@ -546,7 +1956,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
546
1956
|
isVirtualized: boolean;
|
|
547
1957
|
items: import("../..").Item<any>[];
|
|
548
1958
|
}) => void) | undefined;
|
|
549
|
-
|
|
1959
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
550
1960
|
getId: (item: any) => string;
|
|
551
1961
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
552
1962
|
panels: import("../..").Item<any>[];
|
|
@@ -555,10 +1965,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
555
1965
|
itemWidthCache: Record<string, number>;
|
|
556
1966
|
containerWidth: number;
|
|
557
1967
|
overflowTargetWidth: number;
|
|
558
|
-
selectedIds:
|
|
1968
|
+
selectedIds: string[] | "all";
|
|
559
1969
|
unselectedIds: string[];
|
|
560
1970
|
cursorId: string;
|
|
561
1971
|
columnCount: number;
|
|
1972
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1973
|
+
cursorIndexRef: {
|
|
1974
|
+
readonly current: number;
|
|
1975
|
+
};
|
|
562
1976
|
UNSTABLE_virtual: {
|
|
563
1977
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
564
1978
|
totalSize: number;
|
|
@@ -574,7 +1988,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
574
1988
|
isVirtualized: boolean;
|
|
575
1989
|
items: import("../..").Item<any>[];
|
|
576
1990
|
}) => void) | undefined;
|
|
577
|
-
|
|
1991
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
578
1992
|
getId: (item: any) => string;
|
|
579
1993
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
580
1994
|
panels: import("../..").Item<any>[];
|
|
@@ -583,10 +1997,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
583
1997
|
itemWidthCache: Record<string, number>;
|
|
584
1998
|
containerWidth: number;
|
|
585
1999
|
overflowTargetWidth: number;
|
|
586
|
-
selectedIds:
|
|
2000
|
+
selectedIds: string[] | "all";
|
|
587
2001
|
unselectedIds: string[];
|
|
588
2002
|
cursorId: string;
|
|
589
2003
|
columnCount: number;
|
|
2004
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2005
|
+
cursorIndexRef: {
|
|
2006
|
+
readonly current: number;
|
|
2007
|
+
};
|
|
590
2008
|
UNSTABLE_virtual: {
|
|
591
2009
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
592
2010
|
totalSize: number;
|
|
@@ -602,7 +2020,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
602
2020
|
isVirtualized: boolean;
|
|
603
2021
|
items: import("../..").Item<any>[];
|
|
604
2022
|
}) => void) | undefined;
|
|
605
|
-
|
|
2023
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
606
2024
|
getId: (item: any) => string;
|
|
607
2025
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
608
2026
|
panels: import("../..").Item<any>[];
|
|
@@ -611,10 +2029,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
611
2029
|
itemWidthCache: Record<string, number>;
|
|
612
2030
|
containerWidth: number;
|
|
613
2031
|
overflowTargetWidth: number;
|
|
614
|
-
selectedIds:
|
|
2032
|
+
selectedIds: string[] | "all";
|
|
615
2033
|
unselectedIds: string[];
|
|
616
2034
|
cursorId: string;
|
|
617
2035
|
columnCount: number;
|
|
2036
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2037
|
+
cursorIndexRef: {
|
|
2038
|
+
readonly current: number;
|
|
2039
|
+
};
|
|
618
2040
|
UNSTABLE_virtual: {
|
|
619
2041
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
620
2042
|
totalSize: number;
|
|
@@ -630,7 +2052,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
630
2052
|
isVirtualized: boolean;
|
|
631
2053
|
items: import("../..").Item<any>[];
|
|
632
2054
|
}) => void) | undefined;
|
|
633
|
-
|
|
2055
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
634
2056
|
getId: (item: any) => string;
|
|
635
2057
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
636
2058
|
panels: import("../..").Item<any>[];
|
|
@@ -639,10 +2061,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
639
2061
|
itemWidthCache: Record<string, number>;
|
|
640
2062
|
containerWidth: number;
|
|
641
2063
|
overflowTargetWidth: number;
|
|
642
|
-
selectedIds:
|
|
2064
|
+
selectedIds: string[] | "all";
|
|
643
2065
|
unselectedIds: string[];
|
|
644
2066
|
cursorId: string;
|
|
645
2067
|
columnCount: number;
|
|
2068
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2069
|
+
cursorIndexRef: {
|
|
2070
|
+
readonly current: number;
|
|
2071
|
+
};
|
|
646
2072
|
UNSTABLE_virtual: {
|
|
647
2073
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
648
2074
|
totalSize: number;
|
|
@@ -658,7 +2084,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
658
2084
|
isVirtualized: boolean;
|
|
659
2085
|
items: import("../..").Item<any>[];
|
|
660
2086
|
}) => void) | undefined;
|
|
661
|
-
|
|
2087
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
662
2088
|
getId: (item: any) => string;
|
|
663
2089
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
664
2090
|
panels: import("../..").Item<any>[];
|
|
@@ -667,10 +2093,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
667
2093
|
itemWidthCache: Record<string, number>;
|
|
668
2094
|
containerWidth: number;
|
|
669
2095
|
overflowTargetWidth: number;
|
|
670
|
-
selectedIds:
|
|
2096
|
+
selectedIds: string[] | "all";
|
|
671
2097
|
unselectedIds: string[];
|
|
672
2098
|
cursorId: string;
|
|
673
2099
|
columnCount: number;
|
|
2100
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2101
|
+
cursorIndexRef: {
|
|
2102
|
+
readonly current: number;
|
|
2103
|
+
};
|
|
674
2104
|
UNSTABLE_virtual: {
|
|
675
2105
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
676
2106
|
totalSize: number;
|
|
@@ -686,7 +2116,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
686
2116
|
isVirtualized: boolean;
|
|
687
2117
|
items: import("../..").Item<any>[];
|
|
688
2118
|
}) => void) | undefined;
|
|
689
|
-
|
|
2119
|
+
onRegisterItem?: ((data: {
|
|
2120
|
+
item: any;
|
|
2121
|
+
textValue: string;
|
|
2122
|
+
}, prevState: {
|
|
690
2123
|
getId: (item: any) => string;
|
|
691
2124
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
692
2125
|
panels: import("../..").Item<any>[];
|
|
@@ -695,10 +2128,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
695
2128
|
itemWidthCache: Record<string, number>;
|
|
696
2129
|
containerWidth: number;
|
|
697
2130
|
overflowTargetWidth: number;
|
|
698
|
-
selectedIds:
|
|
2131
|
+
selectedIds: string[] | "all";
|
|
699
2132
|
unselectedIds: string[];
|
|
700
2133
|
cursorId: string;
|
|
701
2134
|
columnCount: number;
|
|
2135
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2136
|
+
cursorIndexRef: {
|
|
2137
|
+
readonly current: number;
|
|
2138
|
+
};
|
|
702
2139
|
UNSTABLE_virtual: {
|
|
703
2140
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
704
2141
|
totalSize: number;
|
|
@@ -725,10 +2162,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
725
2162
|
itemWidthCache: Record<string, number>;
|
|
726
2163
|
containerWidth: number;
|
|
727
2164
|
overflowTargetWidth: number;
|
|
728
|
-
selectedIds:
|
|
2165
|
+
selectedIds: string[] | "all";
|
|
729
2166
|
unselectedIds: string[];
|
|
730
2167
|
cursorId: string;
|
|
731
2168
|
columnCount: number;
|
|
2169
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2170
|
+
cursorIndexRef: {
|
|
2171
|
+
readonly current: number;
|
|
2172
|
+
};
|
|
732
2173
|
UNSTABLE_virtual: {
|
|
733
2174
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
734
2175
|
totalSize: number;
|
|
@@ -755,10 +2196,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
755
2196
|
itemWidthCache: Record<string, number>;
|
|
756
2197
|
containerWidth: number;
|
|
757
2198
|
overflowTargetWidth: number;
|
|
758
|
-
selectedIds:
|
|
2199
|
+
selectedIds: string[] | "all";
|
|
759
2200
|
unselectedIds: string[];
|
|
760
2201
|
cursorId: string;
|
|
761
2202
|
columnCount: number;
|
|
2203
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2204
|
+
cursorIndexRef: {
|
|
2205
|
+
readonly current: number;
|
|
2206
|
+
};
|
|
762
2207
|
UNSTABLE_virtual: {
|
|
763
2208
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
764
2209
|
totalSize: number;
|
|
@@ -787,10 +2232,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
787
2232
|
itemWidthCache: Record<string, number>;
|
|
788
2233
|
containerWidth: number;
|
|
789
2234
|
overflowTargetWidth: number;
|
|
790
|
-
selectedIds:
|
|
2235
|
+
selectedIds: string[] | "all";
|
|
791
2236
|
unselectedIds: string[];
|
|
792
2237
|
cursorId: string;
|
|
793
2238
|
columnCount: number;
|
|
2239
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2240
|
+
cursorIndexRef: {
|
|
2241
|
+
readonly current: number;
|
|
2242
|
+
};
|
|
794
2243
|
UNSTABLE_virtual: {
|
|
795
2244
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
796
2245
|
totalSize: number;
|
|
@@ -817,10 +2266,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
817
2266
|
itemWidthCache: Record<string, number>;
|
|
818
2267
|
containerWidth: number;
|
|
819
2268
|
overflowTargetWidth: number;
|
|
820
|
-
selectedIds:
|
|
2269
|
+
selectedIds: string[] | "all";
|
|
821
2270
|
unselectedIds: string[];
|
|
822
2271
|
cursorId: string;
|
|
823
2272
|
columnCount: number;
|
|
2273
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2274
|
+
cursorIndexRef: {
|
|
2275
|
+
readonly current: number;
|
|
2276
|
+
};
|
|
824
2277
|
UNSTABLE_virtual: {
|
|
825
2278
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
826
2279
|
totalSize: number;
|
|
@@ -847,10 +2300,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
847
2300
|
itemWidthCache: Record<string, number>;
|
|
848
2301
|
containerWidth: number;
|
|
849
2302
|
overflowTargetWidth: number;
|
|
850
|
-
selectedIds:
|
|
2303
|
+
selectedIds: string[] | "all";
|
|
851
2304
|
unselectedIds: string[];
|
|
852
2305
|
cursorId: string;
|
|
853
2306
|
columnCount: number;
|
|
2307
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2308
|
+
cursorIndexRef: {
|
|
2309
|
+
readonly current: number;
|
|
2310
|
+
};
|
|
854
2311
|
UNSTABLE_virtual: {
|
|
855
2312
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
856
2313
|
totalSize: number;
|
|
@@ -877,10 +2334,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
877
2334
|
itemWidthCache: Record<string, number>;
|
|
878
2335
|
containerWidth: number;
|
|
879
2336
|
overflowTargetWidth: number;
|
|
880
|
-
selectedIds:
|
|
2337
|
+
selectedIds: string[] | "all";
|
|
881
2338
|
unselectedIds: string[];
|
|
882
2339
|
cursorId: string;
|
|
883
2340
|
columnCount: number;
|
|
2341
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2342
|
+
cursorIndexRef: {
|
|
2343
|
+
readonly current: number;
|
|
2344
|
+
};
|
|
884
2345
|
UNSTABLE_virtual: {
|
|
885
2346
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
886
2347
|
totalSize: number;
|
|
@@ -907,10 +2368,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
907
2368
|
itemWidthCache: Record<string, number>;
|
|
908
2369
|
containerWidth: number;
|
|
909
2370
|
overflowTargetWidth: number;
|
|
910
|
-
selectedIds:
|
|
2371
|
+
selectedIds: string[] | "all";
|
|
911
2372
|
unselectedIds: string[];
|
|
912
2373
|
cursorId: string;
|
|
913
2374
|
columnCount: number;
|
|
2375
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2376
|
+
cursorIndexRef: {
|
|
2377
|
+
readonly current: number;
|
|
2378
|
+
};
|
|
914
2379
|
UNSTABLE_virtual: {
|
|
915
2380
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
916
2381
|
totalSize: number;
|
|
@@ -938,10 +2403,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
938
2403
|
itemWidthCache: Record<string, number>;
|
|
939
2404
|
containerWidth: number;
|
|
940
2405
|
overflowTargetWidth: number;
|
|
941
|
-
selectedIds:
|
|
2406
|
+
selectedIds: string[] | "all";
|
|
942
2407
|
unselectedIds: string[];
|
|
943
2408
|
cursorId: string;
|
|
944
2409
|
columnCount: number;
|
|
2410
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2411
|
+
cursorIndexRef: {
|
|
2412
|
+
readonly current: number;
|
|
2413
|
+
};
|
|
945
2414
|
UNSTABLE_virtual: {
|
|
946
2415
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
947
2416
|
totalSize: number;
|
|
@@ -968,10 +2437,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
968
2437
|
itemWidthCache: Record<string, number>;
|
|
969
2438
|
containerWidth: number;
|
|
970
2439
|
overflowTargetWidth: number;
|
|
971
|
-
selectedIds:
|
|
2440
|
+
selectedIds: string[] | "all";
|
|
972
2441
|
unselectedIds: string[];
|
|
973
2442
|
cursorId: string;
|
|
974
2443
|
columnCount: number;
|
|
2444
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2445
|
+
cursorIndexRef: {
|
|
2446
|
+
readonly current: number;
|
|
2447
|
+
};
|
|
975
2448
|
UNSTABLE_virtual: {
|
|
976
2449
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
977
2450
|
totalSize: number;
|
|
@@ -998,10 +2471,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
998
2471
|
itemWidthCache: Record<string, number>;
|
|
999
2472
|
containerWidth: number;
|
|
1000
2473
|
overflowTargetWidth: number;
|
|
1001
|
-
selectedIds:
|
|
2474
|
+
selectedIds: string[] | "all";
|
|
1002
2475
|
unselectedIds: string[];
|
|
1003
2476
|
cursorId: string;
|
|
1004
2477
|
columnCount: number;
|
|
2478
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2479
|
+
cursorIndexRef: {
|
|
2480
|
+
readonly current: number;
|
|
2481
|
+
};
|
|
1005
2482
|
UNSTABLE_virtual: {
|
|
1006
2483
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1007
2484
|
totalSize: number;
|
|
@@ -1028,10 +2505,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1028
2505
|
itemWidthCache: Record<string, number>;
|
|
1029
2506
|
containerWidth: number;
|
|
1030
2507
|
overflowTargetWidth: number;
|
|
1031
|
-
selectedIds:
|
|
2508
|
+
selectedIds: string[] | "all";
|
|
1032
2509
|
unselectedIds: string[];
|
|
1033
2510
|
cursorId: string;
|
|
1034
2511
|
columnCount: number;
|
|
2512
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2513
|
+
cursorIndexRef: {
|
|
2514
|
+
readonly current: number;
|
|
2515
|
+
};
|
|
1035
2516
|
UNSTABLE_virtual: {
|
|
1036
2517
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1037
2518
|
totalSize: number;
|
|
@@ -1056,10 +2537,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1056
2537
|
itemWidthCache: Record<string, number>;
|
|
1057
2538
|
containerWidth: number;
|
|
1058
2539
|
overflowTargetWidth: number;
|
|
1059
|
-
selectedIds:
|
|
2540
|
+
selectedIds: string[] | "all";
|
|
1060
2541
|
unselectedIds: string[];
|
|
1061
2542
|
cursorId: string;
|
|
1062
2543
|
columnCount: number;
|
|
2544
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2545
|
+
cursorIndexRef: {
|
|
2546
|
+
readonly current: number;
|
|
2547
|
+
};
|
|
1063
2548
|
UNSTABLE_virtual: {
|
|
1064
2549
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1065
2550
|
totalSize: number;
|
|
@@ -1084,10 +2569,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1084
2569
|
itemWidthCache: Record<string, number>;
|
|
1085
2570
|
containerWidth: number;
|
|
1086
2571
|
overflowTargetWidth: number;
|
|
1087
|
-
selectedIds:
|
|
2572
|
+
selectedIds: string[] | "all";
|
|
1088
2573
|
unselectedIds: string[];
|
|
1089
2574
|
cursorId: string;
|
|
1090
2575
|
columnCount: number;
|
|
2576
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2577
|
+
cursorIndexRef: {
|
|
2578
|
+
readonly current: number;
|
|
2579
|
+
};
|
|
1091
2580
|
UNSTABLE_virtual: {
|
|
1092
2581
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1093
2582
|
totalSize: number;
|
|
@@ -1103,9 +2592,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1103
2592
|
isVirtualized: boolean;
|
|
1104
2593
|
items: import("../..").Item<any>[];
|
|
1105
2594
|
}) => boolean) | undefined;
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
textValue: string;
|
|
2595
|
+
shouldGoTo?: ((data: {
|
|
2596
|
+
id: string;
|
|
1109
2597
|
}, state: {
|
|
1110
2598
|
getId: (item: any) => string;
|
|
1111
2599
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -1115,10 +2603,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1115
2603
|
itemWidthCache: Record<string, number>;
|
|
1116
2604
|
containerWidth: number;
|
|
1117
2605
|
overflowTargetWidth: number;
|
|
1118
|
-
selectedIds:
|
|
2606
|
+
selectedIds: string[] | "all";
|
|
1119
2607
|
unselectedIds: string[];
|
|
1120
2608
|
cursorId: string;
|
|
1121
2609
|
columnCount: number;
|
|
2610
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2611
|
+
cursorIndexRef: {
|
|
2612
|
+
readonly current: number;
|
|
2613
|
+
};
|
|
1122
2614
|
UNSTABLE_virtual: {
|
|
1123
2615
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1124
2616
|
totalSize: number;
|
|
@@ -1134,9 +2626,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1134
2626
|
isVirtualized: boolean;
|
|
1135
2627
|
items: import("../..").Item<any>[];
|
|
1136
2628
|
}) => boolean) | undefined;
|
|
1137
|
-
|
|
1138
|
-
id: string;
|
|
1139
|
-
}, state: {
|
|
2629
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
1140
2630
|
getId: (item: any) => string;
|
|
1141
2631
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1142
2632
|
panels: import("../..").Item<any>[];
|
|
@@ -1145,10 +2635,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1145
2635
|
itemWidthCache: Record<string, number>;
|
|
1146
2636
|
containerWidth: number;
|
|
1147
2637
|
overflowTargetWidth: number;
|
|
1148
|
-
selectedIds:
|
|
2638
|
+
selectedIds: string[] | "all";
|
|
1149
2639
|
unselectedIds: string[];
|
|
1150
2640
|
cursorId: string;
|
|
1151
2641
|
columnCount: number;
|
|
2642
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2643
|
+
cursorIndexRef: {
|
|
2644
|
+
readonly current: number;
|
|
2645
|
+
};
|
|
1152
2646
|
UNSTABLE_virtual: {
|
|
1153
2647
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1154
2648
|
totalSize: number;
|
|
@@ -1164,7 +2658,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1164
2658
|
isVirtualized: boolean;
|
|
1165
2659
|
items: import("../..").Item<any>[];
|
|
1166
2660
|
}) => boolean) | undefined;
|
|
1167
|
-
|
|
2661
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
1168
2662
|
getId: (item: any) => string;
|
|
1169
2663
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1170
2664
|
panels: import("../..").Item<any>[];
|
|
@@ -1173,10 +2667,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1173
2667
|
itemWidthCache: Record<string, number>;
|
|
1174
2668
|
containerWidth: number;
|
|
1175
2669
|
overflowTargetWidth: number;
|
|
1176
|
-
selectedIds:
|
|
2670
|
+
selectedIds: string[] | "all";
|
|
1177
2671
|
unselectedIds: string[];
|
|
1178
2672
|
cursorId: string;
|
|
1179
2673
|
columnCount: number;
|
|
2674
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2675
|
+
cursorIndexRef: {
|
|
2676
|
+
readonly current: number;
|
|
2677
|
+
};
|
|
1180
2678
|
UNSTABLE_virtual: {
|
|
1181
2679
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1182
2680
|
totalSize: number;
|
|
@@ -1192,7 +2690,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1192
2690
|
isVirtualized: boolean;
|
|
1193
2691
|
items: import("../..").Item<any>[];
|
|
1194
2692
|
}) => boolean) | undefined;
|
|
1195
|
-
|
|
2693
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
1196
2694
|
getId: (item: any) => string;
|
|
1197
2695
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1198
2696
|
panels: import("../..").Item<any>[];
|
|
@@ -1201,10 +2699,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1201
2699
|
itemWidthCache: Record<string, number>;
|
|
1202
2700
|
containerWidth: number;
|
|
1203
2701
|
overflowTargetWidth: number;
|
|
1204
|
-
selectedIds:
|
|
2702
|
+
selectedIds: string[] | "all";
|
|
1205
2703
|
unselectedIds: string[];
|
|
1206
2704
|
cursorId: string;
|
|
1207
2705
|
columnCount: number;
|
|
2706
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2707
|
+
cursorIndexRef: {
|
|
2708
|
+
readonly current: number;
|
|
2709
|
+
};
|
|
1208
2710
|
UNSTABLE_virtual: {
|
|
1209
2711
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1210
2712
|
totalSize: number;
|
|
@@ -1220,7 +2722,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1220
2722
|
isVirtualized: boolean;
|
|
1221
2723
|
items: import("../..").Item<any>[];
|
|
1222
2724
|
}) => boolean) | undefined;
|
|
1223
|
-
|
|
2725
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
1224
2726
|
getId: (item: any) => string;
|
|
1225
2727
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1226
2728
|
panels: import("../..").Item<any>[];
|
|
@@ -1229,10 +2731,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1229
2731
|
itemWidthCache: Record<string, number>;
|
|
1230
2732
|
containerWidth: number;
|
|
1231
2733
|
overflowTargetWidth: number;
|
|
1232
|
-
selectedIds:
|
|
2734
|
+
selectedIds: string[] | "all";
|
|
1233
2735
|
unselectedIds: string[];
|
|
1234
2736
|
cursorId: string;
|
|
1235
2737
|
columnCount: number;
|
|
2738
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2739
|
+
cursorIndexRef: {
|
|
2740
|
+
readonly current: number;
|
|
2741
|
+
};
|
|
1236
2742
|
UNSTABLE_virtual: {
|
|
1237
2743
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1238
2744
|
totalSize: number;
|
|
@@ -1248,7 +2754,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1248
2754
|
isVirtualized: boolean;
|
|
1249
2755
|
items: import("../..").Item<any>[];
|
|
1250
2756
|
}) => boolean) | undefined;
|
|
1251
|
-
|
|
2757
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
1252
2758
|
getId: (item: any) => string;
|
|
1253
2759
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1254
2760
|
panels: import("../..").Item<any>[];
|
|
@@ -1257,10 +2763,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1257
2763
|
itemWidthCache: Record<string, number>;
|
|
1258
2764
|
containerWidth: number;
|
|
1259
2765
|
overflowTargetWidth: number;
|
|
1260
|
-
selectedIds:
|
|
2766
|
+
selectedIds: string[] | "all";
|
|
1261
2767
|
unselectedIds: string[];
|
|
1262
2768
|
cursorId: string;
|
|
1263
2769
|
columnCount: number;
|
|
2770
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2771
|
+
cursorIndexRef: {
|
|
2772
|
+
readonly current: number;
|
|
2773
|
+
};
|
|
1264
2774
|
UNSTABLE_virtual: {
|
|
1265
2775
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1266
2776
|
totalSize: number;
|
|
@@ -1276,7 +2786,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1276
2786
|
isVirtualized: boolean;
|
|
1277
2787
|
items: import("../..").Item<any>[];
|
|
1278
2788
|
}) => boolean) | undefined;
|
|
1279
|
-
|
|
2789
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
1280
2790
|
getId: (item: any) => string;
|
|
1281
2791
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1282
2792
|
panels: import("../..").Item<any>[];
|
|
@@ -1285,10 +2795,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1285
2795
|
itemWidthCache: Record<string, number>;
|
|
1286
2796
|
containerWidth: number;
|
|
1287
2797
|
overflowTargetWidth: number;
|
|
1288
|
-
selectedIds:
|
|
2798
|
+
selectedIds: string[] | "all";
|
|
1289
2799
|
unselectedIds: string[];
|
|
1290
2800
|
cursorId: string;
|
|
1291
2801
|
columnCount: number;
|
|
2802
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2803
|
+
cursorIndexRef: {
|
|
2804
|
+
readonly current: number;
|
|
2805
|
+
};
|
|
1292
2806
|
UNSTABLE_virtual: {
|
|
1293
2807
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1294
2808
|
totalSize: number;
|
|
@@ -1304,7 +2818,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1304
2818
|
isVirtualized: boolean;
|
|
1305
2819
|
items: import("../..").Item<any>[];
|
|
1306
2820
|
}) => boolean) | undefined;
|
|
1307
|
-
|
|
2821
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
1308
2822
|
getId: (item: any) => string;
|
|
1309
2823
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1310
2824
|
panels: import("../..").Item<any>[];
|
|
@@ -1313,10 +2827,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1313
2827
|
itemWidthCache: Record<string, number>;
|
|
1314
2828
|
containerWidth: number;
|
|
1315
2829
|
overflowTargetWidth: number;
|
|
1316
|
-
selectedIds:
|
|
2830
|
+
selectedIds: string[] | "all";
|
|
1317
2831
|
unselectedIds: string[];
|
|
1318
2832
|
cursorId: string;
|
|
1319
2833
|
columnCount: number;
|
|
2834
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2835
|
+
cursorIndexRef: {
|
|
2836
|
+
readonly current: number;
|
|
2837
|
+
};
|
|
1320
2838
|
UNSTABLE_virtual: {
|
|
1321
2839
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1322
2840
|
totalSize: number;
|
|
@@ -1332,7 +2850,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1332
2850
|
isVirtualized: boolean;
|
|
1333
2851
|
items: import("../..").Item<any>[];
|
|
1334
2852
|
}) => boolean) | undefined;
|
|
1335
|
-
|
|
2853
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
1336
2854
|
getId: (item: any) => string;
|
|
1337
2855
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1338
2856
|
panels: import("../..").Item<any>[];
|
|
@@ -1341,10 +2859,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1341
2859
|
itemWidthCache: Record<string, number>;
|
|
1342
2860
|
containerWidth: number;
|
|
1343
2861
|
overflowTargetWidth: number;
|
|
1344
|
-
selectedIds:
|
|
2862
|
+
selectedIds: string[] | "all";
|
|
1345
2863
|
unselectedIds: string[];
|
|
1346
2864
|
cursorId: string;
|
|
1347
2865
|
columnCount: number;
|
|
2866
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2867
|
+
cursorIndexRef: {
|
|
2868
|
+
readonly current: number;
|
|
2869
|
+
};
|
|
1348
2870
|
UNSTABLE_virtual: {
|
|
1349
2871
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1350
2872
|
totalSize: number;
|
|
@@ -1360,7 +2882,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1360
2882
|
isVirtualized: boolean;
|
|
1361
2883
|
items: import("../..").Item<any>[];
|
|
1362
2884
|
}) => boolean) | undefined;
|
|
1363
|
-
|
|
2885
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
1364
2886
|
getId: (item: any) => string;
|
|
1365
2887
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1366
2888
|
panels: import("../..").Item<any>[];
|
|
@@ -1369,10 +2891,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1369
2891
|
itemWidthCache: Record<string, number>;
|
|
1370
2892
|
containerWidth: number;
|
|
1371
2893
|
overflowTargetWidth: number;
|
|
1372
|
-
selectedIds:
|
|
2894
|
+
selectedIds: string[] | "all";
|
|
1373
2895
|
unselectedIds: string[];
|
|
1374
2896
|
cursorId: string;
|
|
1375
2897
|
columnCount: number;
|
|
2898
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2899
|
+
cursorIndexRef: {
|
|
2900
|
+
readonly current: number;
|
|
2901
|
+
};
|
|
1376
2902
|
UNSTABLE_virtual: {
|
|
1377
2903
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1378
2904
|
totalSize: number;
|
|
@@ -1388,7 +2914,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1388
2914
|
isVirtualized: boolean;
|
|
1389
2915
|
items: import("../..").Item<any>[];
|
|
1390
2916
|
}) => boolean) | undefined;
|
|
1391
|
-
|
|
2917
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
1392
2918
|
getId: (item: any) => string;
|
|
1393
2919
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1394
2920
|
panels: import("../..").Item<any>[];
|
|
@@ -1397,10 +2923,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1397
2923
|
itemWidthCache: Record<string, number>;
|
|
1398
2924
|
containerWidth: number;
|
|
1399
2925
|
overflowTargetWidth: number;
|
|
1400
|
-
selectedIds:
|
|
2926
|
+
selectedIds: string[] | "all";
|
|
1401
2927
|
unselectedIds: string[];
|
|
1402
2928
|
cursorId: string;
|
|
1403
2929
|
columnCount: number;
|
|
2930
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2931
|
+
cursorIndexRef: {
|
|
2932
|
+
readonly current: number;
|
|
2933
|
+
};
|
|
1404
2934
|
UNSTABLE_virtual: {
|
|
1405
2935
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1406
2936
|
totalSize: number;
|
|
@@ -1416,7 +2946,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1416
2946
|
isVirtualized: boolean;
|
|
1417
2947
|
items: import("../..").Item<any>[];
|
|
1418
2948
|
}) => boolean) | undefined;
|
|
1419
|
-
|
|
2949
|
+
shouldRegisterItem?: ((data: {
|
|
2950
|
+
item: any;
|
|
2951
|
+
textValue: string;
|
|
2952
|
+
}, state: {
|
|
1420
2953
|
getId: (item: any) => string;
|
|
1421
2954
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1422
2955
|
panels: import("../..").Item<any>[];
|
|
@@ -1425,10 +2958,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1425
2958
|
itemWidthCache: Record<string, number>;
|
|
1426
2959
|
containerWidth: number;
|
|
1427
2960
|
overflowTargetWidth: number;
|
|
1428
|
-
selectedIds:
|
|
2961
|
+
selectedIds: string[] | "all";
|
|
1429
2962
|
unselectedIds: string[];
|
|
1430
2963
|
cursorId: string;
|
|
1431
2964
|
columnCount: number;
|
|
2965
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2966
|
+
cursorIndexRef: {
|
|
2967
|
+
readonly current: number;
|
|
2968
|
+
};
|
|
1432
2969
|
UNSTABLE_virtual: {
|
|
1433
2970
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1434
2971
|
totalSize: number;
|
|
@@ -1455,10 +2992,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1455
2992
|
itemWidthCache: Record<string, number>;
|
|
1456
2993
|
containerWidth: number;
|
|
1457
2994
|
overflowTargetWidth: number;
|
|
1458
|
-
selectedIds:
|
|
2995
|
+
selectedIds: string[] | "all";
|
|
1459
2996
|
unselectedIds: string[];
|
|
1460
2997
|
cursorId: string;
|
|
1461
2998
|
columnCount: number;
|
|
2999
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3000
|
+
cursorIndexRef: {
|
|
3001
|
+
readonly current: number;
|
|
3002
|
+
};
|
|
1462
3003
|
UNSTABLE_virtual: {
|
|
1463
3004
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1464
3005
|
totalSize: number;
|
|
@@ -1485,10 +3026,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1485
3026
|
itemWidthCache: Record<string, number>;
|
|
1486
3027
|
containerWidth: number;
|
|
1487
3028
|
overflowTargetWidth: number;
|
|
1488
|
-
selectedIds:
|
|
3029
|
+
selectedIds: string[] | "all";
|
|
1489
3030
|
unselectedIds: string[];
|
|
1490
3031
|
cursorId: string;
|
|
1491
3032
|
columnCount: number;
|
|
3033
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3034
|
+
cursorIndexRef: {
|
|
3035
|
+
readonly current: number;
|
|
3036
|
+
};
|
|
1492
3037
|
UNSTABLE_virtual: {
|
|
1493
3038
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1494
3039
|
totalSize: number;
|
|
@@ -1514,10 +3059,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1514
3059
|
itemWidthCache: Record<string, number>;
|
|
1515
3060
|
containerWidth: number;
|
|
1516
3061
|
overflowTargetWidth: number;
|
|
1517
|
-
selectedIds:
|
|
3062
|
+
selectedIds: string[] | "all";
|
|
1518
3063
|
unselectedIds: string[];
|
|
1519
3064
|
cursorId: string;
|
|
1520
3065
|
columnCount: number;
|
|
3066
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3067
|
+
cursorIndexRef: {
|
|
3068
|
+
readonly current: number;
|
|
3069
|
+
};
|
|
1521
3070
|
UNSTABLE_virtual: {
|
|
1522
3071
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1523
3072
|
totalSize: number;
|
|
@@ -1565,10 +3114,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1565
3114
|
}): void;
|
|
1566
3115
|
selectAll(): void;
|
|
1567
3116
|
unselectAll(): void;
|
|
1568
|
-
registerItem(data: {
|
|
1569
|
-
item: any;
|
|
1570
|
-
textValue: string;
|
|
1571
|
-
}): void;
|
|
1572
3117
|
goTo(data: {
|
|
1573
3118
|
id: string;
|
|
1574
3119
|
}): void;
|
|
@@ -1582,6 +3127,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1582
3127
|
goToLastOfRow(): void;
|
|
1583
3128
|
goToNextPage(): void;
|
|
1584
3129
|
goToPreviousPage(): void;
|
|
3130
|
+
registerItem(data: {
|
|
3131
|
+
item: any;
|
|
3132
|
+
textValue: string;
|
|
3133
|
+
}): void;
|
|
1585
3134
|
unregisterItem(data: {
|
|
1586
3135
|
id: string;
|
|
1587
3136
|
}): void;
|
|
@@ -1597,11 +3146,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1597
3146
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1598
3147
|
placement: import("@popperjs/core").Placement;
|
|
1599
3148
|
id: string;
|
|
1600
|
-
visibility:
|
|
1601
|
-
selectedIds:
|
|
3149
|
+
visibility: "hidden" | "visible";
|
|
3150
|
+
selectedIds: string[] | "all";
|
|
1602
3151
|
unselectedIds: string[];
|
|
1603
3152
|
cursorId: string;
|
|
1604
3153
|
columnCount: number;
|
|
3154
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3155
|
+
cursorIndexRef: {
|
|
3156
|
+
readonly current: number;
|
|
3157
|
+
};
|
|
1605
3158
|
UNSTABLE_virtual: {
|
|
1606
3159
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1607
3160
|
totalSize: number;
|
|
@@ -1611,7 +3164,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1611
3164
|
};
|
|
1612
3165
|
UNSTABLE_defaultItemHeight: number;
|
|
1613
3166
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1614
|
-
orientation:
|
|
3167
|
+
orientation: "horizontal" | "vertical";
|
|
1615
3168
|
indexRef: React.MutableRefObject<number>;
|
|
1616
3169
|
nonInteractiveIds: string[];
|
|
1617
3170
|
isVirtualized: boolean;
|
|
@@ -1629,10 +3182,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1629
3182
|
}): void;
|
|
1630
3183
|
selectAll(): void;
|
|
1631
3184
|
unselectAll(): void;
|
|
1632
|
-
registerItem(data: {
|
|
1633
|
-
item: any;
|
|
1634
|
-
textValue: string;
|
|
1635
|
-
}): void;
|
|
1636
3185
|
goTo(data: {
|
|
1637
3186
|
id: string;
|
|
1638
3187
|
}): void;
|
|
@@ -1646,6 +3195,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1646
3195
|
goToLastOfRow(): void;
|
|
1647
3196
|
goToNextPage(): void;
|
|
1648
3197
|
goToPreviousPage(): void;
|
|
3198
|
+
registerItem(data: {
|
|
3199
|
+
item: any;
|
|
3200
|
+
textValue: string;
|
|
3201
|
+
}): void;
|
|
1649
3202
|
unregisterItem(data: {
|
|
1650
3203
|
id: string;
|
|
1651
3204
|
}): void;
|
|
@@ -1661,7 +3214,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1661
3214
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1662
3215
|
getId: (item: any) => string;
|
|
1663
3216
|
}> & {
|
|
1664
|
-
|
|
3217
|
+
/**
|
|
3218
|
+
* `Tabs.List` is a `<div role="tablist">` element. It is a container for {@link TabsItem Tabs.Item}
|
|
3219
|
+
* subcomponents.
|
|
3220
|
+
*
|
|
3221
|
+
* ```tsx
|
|
3222
|
+
* <Tabs.List>{Tabs.Items}</Tabs.List>
|
|
3223
|
+
* ```
|
|
3224
|
+
*/
|
|
3225
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./TabsList").TabListProps<any>, {
|
|
1665
3226
|
state: {
|
|
1666
3227
|
getId: (item: any) => string;
|
|
1667
3228
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -1671,10 +3232,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1671
3232
|
itemWidthCache: Record<string, number>;
|
|
1672
3233
|
containerWidth: number;
|
|
1673
3234
|
overflowTargetWidth: number;
|
|
1674
|
-
selectedIds:
|
|
3235
|
+
selectedIds: string[] | "all";
|
|
1675
3236
|
unselectedIds: string[];
|
|
1676
3237
|
cursorId: string;
|
|
1677
3238
|
columnCount: number;
|
|
3239
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3240
|
+
cursorIndexRef: {
|
|
3241
|
+
readonly current: number;
|
|
3242
|
+
};
|
|
1678
3243
|
UNSTABLE_virtual: {
|
|
1679
3244
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1680
3245
|
totalSize: number;
|
|
@@ -1722,10 +3287,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1722
3287
|
}): void;
|
|
1723
3288
|
selectAll(): void;
|
|
1724
3289
|
unselectAll(): void;
|
|
1725
|
-
registerItem(data: {
|
|
1726
|
-
item: any;
|
|
1727
|
-
textValue: string;
|
|
1728
|
-
}): void;
|
|
1729
3290
|
goTo(data: {
|
|
1730
3291
|
id: string;
|
|
1731
3292
|
}): void;
|
|
@@ -1739,6 +3300,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1739
3300
|
goToLastOfRow(): void;
|
|
1740
3301
|
goToNextPage(): void;
|
|
1741
3302
|
goToPreviousPage(): void;
|
|
3303
|
+
registerItem(data: {
|
|
3304
|
+
item: any;
|
|
3305
|
+
textValue: string;
|
|
3306
|
+
}): void;
|
|
1742
3307
|
unregisterItem(data: {
|
|
1743
3308
|
id: string;
|
|
1744
3309
|
}): void;
|
|
@@ -1754,11 +3319,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1754
3319
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1755
3320
|
placement: import("@popperjs/core").Placement;
|
|
1756
3321
|
id: string;
|
|
1757
|
-
visibility:
|
|
1758
|
-
selectedIds:
|
|
3322
|
+
visibility: "hidden" | "visible";
|
|
3323
|
+
selectedIds: string[] | "all";
|
|
1759
3324
|
unselectedIds: string[];
|
|
1760
3325
|
cursorId: string;
|
|
1761
3326
|
columnCount: number;
|
|
3327
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3328
|
+
cursorIndexRef: {
|
|
3329
|
+
readonly current: number;
|
|
3330
|
+
};
|
|
1762
3331
|
UNSTABLE_virtual: {
|
|
1763
3332
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1764
3333
|
totalSize: number;
|
|
@@ -1768,7 +3337,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1768
3337
|
};
|
|
1769
3338
|
UNSTABLE_defaultItemHeight: number;
|
|
1770
3339
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1771
|
-
orientation:
|
|
3340
|
+
orientation: "horizontal" | "vertical";
|
|
1772
3341
|
indexRef: React.MutableRefObject<number>;
|
|
1773
3342
|
nonInteractiveIds: string[];
|
|
1774
3343
|
isVirtualized: boolean;
|
|
@@ -1786,10 +3355,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1786
3355
|
}): void;
|
|
1787
3356
|
selectAll(): void;
|
|
1788
3357
|
unselectAll(): void;
|
|
1789
|
-
registerItem(data: {
|
|
1790
|
-
item: any;
|
|
1791
|
-
textValue: string;
|
|
1792
|
-
}): void;
|
|
1793
3358
|
goTo(data: {
|
|
1794
3359
|
id: string;
|
|
1795
3360
|
}): void;
|
|
@@ -1803,6 +3368,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1803
3368
|
goToLastOfRow(): void;
|
|
1804
3369
|
goToNextPage(): void;
|
|
1805
3370
|
goToPreviousPage(): void;
|
|
3371
|
+
registerItem(data: {
|
|
3372
|
+
item: any;
|
|
3373
|
+
textValue: string;
|
|
3374
|
+
}): void;
|
|
1806
3375
|
unregisterItem(data: {
|
|
1807
3376
|
id: string;
|
|
1808
3377
|
}): void;
|
|
@@ -1818,7 +3387,16 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1818
3387
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1819
3388
|
getId: (item: any) => string;
|
|
1820
3389
|
}>;
|
|
1821
|
-
|
|
3390
|
+
/**
|
|
3391
|
+
* `Tabs.Item` is a `<button role="tab">` element. Each `Tabs.Item` is associated with a
|
|
3392
|
+
* `Tabs.Panel` either by a `data-id` attribute or by the position in the list. If a `data-id`
|
|
3393
|
+
* is provided, it must match the `data-id` passed to the corresponding `Tabs.Panel` component.
|
|
3394
|
+
*
|
|
3395
|
+
* ```tsx
|
|
3396
|
+
* <Tabs.Item data-id="first">First Tab</Tabs.Item>
|
|
3397
|
+
* ```
|
|
3398
|
+
*/
|
|
3399
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("./TabsItem").TabsItemProps, {
|
|
1822
3400
|
state: {
|
|
1823
3401
|
getId: (item: any) => string;
|
|
1824
3402
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -1828,10 +3406,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1828
3406
|
itemWidthCache: Record<string, number>;
|
|
1829
3407
|
containerWidth: number;
|
|
1830
3408
|
overflowTargetWidth: number;
|
|
1831
|
-
selectedIds:
|
|
3409
|
+
selectedIds: string[] | "all";
|
|
1832
3410
|
unselectedIds: string[];
|
|
1833
3411
|
cursorId: string;
|
|
1834
3412
|
columnCount: number;
|
|
3413
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3414
|
+
cursorIndexRef: {
|
|
3415
|
+
readonly current: number;
|
|
3416
|
+
};
|
|
1835
3417
|
UNSTABLE_virtual: {
|
|
1836
3418
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1837
3419
|
totalSize: number;
|
|
@@ -1879,10 +3461,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1879
3461
|
}): void;
|
|
1880
3462
|
selectAll(): void;
|
|
1881
3463
|
unselectAll(): void;
|
|
1882
|
-
registerItem(data: {
|
|
1883
|
-
item: any;
|
|
1884
|
-
textValue: string;
|
|
1885
|
-
}): void;
|
|
1886
3464
|
goTo(data: {
|
|
1887
3465
|
id: string;
|
|
1888
3466
|
}): void;
|
|
@@ -1896,6 +3474,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1896
3474
|
goToLastOfRow(): void;
|
|
1897
3475
|
goToNextPage(): void;
|
|
1898
3476
|
goToPreviousPage(): void;
|
|
3477
|
+
registerItem(data: {
|
|
3478
|
+
item: any;
|
|
3479
|
+
textValue: string;
|
|
3480
|
+
}): void;
|
|
1899
3481
|
unregisterItem(data: {
|
|
1900
3482
|
id: string;
|
|
1901
3483
|
}): void;
|
|
@@ -1911,11 +3493,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1911
3493
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1912
3494
|
placement: import("@popperjs/core").Placement;
|
|
1913
3495
|
id: string;
|
|
1914
|
-
visibility:
|
|
1915
|
-
selectedIds:
|
|
3496
|
+
visibility: "hidden" | "visible";
|
|
3497
|
+
selectedIds: string[] | "all";
|
|
1916
3498
|
unselectedIds: string[];
|
|
1917
3499
|
cursorId: string;
|
|
1918
3500
|
columnCount: number;
|
|
3501
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3502
|
+
cursorIndexRef: {
|
|
3503
|
+
readonly current: number;
|
|
3504
|
+
};
|
|
1919
3505
|
UNSTABLE_virtual: {
|
|
1920
3506
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1921
3507
|
totalSize: number;
|
|
@@ -1925,7 +3511,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1925
3511
|
};
|
|
1926
3512
|
UNSTABLE_defaultItemHeight: number;
|
|
1927
3513
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1928
|
-
orientation:
|
|
3514
|
+
orientation: "horizontal" | "vertical";
|
|
1929
3515
|
indexRef: React.MutableRefObject<number>;
|
|
1930
3516
|
nonInteractiveIds: string[];
|
|
1931
3517
|
isVirtualized: boolean;
|
|
@@ -1943,10 +3529,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1943
3529
|
}): void;
|
|
1944
3530
|
selectAll(): void;
|
|
1945
3531
|
unselectAll(): void;
|
|
1946
|
-
registerItem(data: {
|
|
1947
|
-
item: any;
|
|
1948
|
-
textValue: string;
|
|
1949
|
-
}): void;
|
|
1950
3532
|
goTo(data: {
|
|
1951
3533
|
id: string;
|
|
1952
3534
|
}): void;
|
|
@@ -1960,6 +3542,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1960
3542
|
goToLastOfRow(): void;
|
|
1961
3543
|
goToNextPage(): void;
|
|
1962
3544
|
goToPreviousPage(): void;
|
|
3545
|
+
registerItem(data: {
|
|
3546
|
+
item: any;
|
|
3547
|
+
textValue: string;
|
|
3548
|
+
}): void;
|
|
1963
3549
|
unregisterItem(data: {
|
|
1964
3550
|
id: string;
|
|
1965
3551
|
}): void;
|
|
@@ -1975,10 +3561,22 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1975
3561
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1976
3562
|
getId: (item: any) => string;
|
|
1977
3563
|
}> & {
|
|
1978
|
-
Icon: import("
|
|
1979
|
-
Text: import("
|
|
3564
|
+
Icon: import("@workday/canvas-kit-react/common").ElementComponent<"span", import("../..").SystemIconProps>;
|
|
3565
|
+
Text: import("@workday/canvas-kit-react/common").ElementComponent<"span", unknown>;
|
|
1980
3566
|
};
|
|
1981
|
-
|
|
3567
|
+
/**
|
|
3568
|
+
* `Tabs.Panel` is a `<div role="tabpanel">` element. It is focusable by default. Each
|
|
3569
|
+
* `Tabs.Panel` is controlled by a `Tabs.Item` either by a `data-id` attribute or by the
|
|
3570
|
+
* position in the list. If a `data-id` is provided, it must match the `data-id` passed to the
|
|
3571
|
+
* corresponding `Tabs.Item` component.
|
|
3572
|
+
*
|
|
3573
|
+
* ```tsx
|
|
3574
|
+
* <Tabs.Panel data-id="first">
|
|
3575
|
+
* {contents of tab panel}
|
|
3576
|
+
* </Tabs.Panel>
|
|
3577
|
+
* ```
|
|
3578
|
+
*/
|
|
3579
|
+
Panel: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./TabsPanel").TabPanelProps, {
|
|
1982
3580
|
state: {
|
|
1983
3581
|
getId: (item: any) => string;
|
|
1984
3582
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -1988,10 +3586,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1988
3586
|
itemWidthCache: Record<string, number>;
|
|
1989
3587
|
containerWidth: number;
|
|
1990
3588
|
overflowTargetWidth: number;
|
|
1991
|
-
selectedIds:
|
|
3589
|
+
selectedIds: string[] | "all";
|
|
1992
3590
|
unselectedIds: string[];
|
|
1993
3591
|
cursorId: string;
|
|
1994
3592
|
columnCount: number;
|
|
3593
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3594
|
+
cursorIndexRef: {
|
|
3595
|
+
readonly current: number;
|
|
3596
|
+
};
|
|
1995
3597
|
UNSTABLE_virtual: {
|
|
1996
3598
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1997
3599
|
totalSize: number;
|
|
@@ -2039,10 +3641,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2039
3641
|
}): void;
|
|
2040
3642
|
selectAll(): void;
|
|
2041
3643
|
unselectAll(): void;
|
|
2042
|
-
registerItem(data: {
|
|
2043
|
-
item: any;
|
|
2044
|
-
textValue: string;
|
|
2045
|
-
}): void;
|
|
2046
3644
|
goTo(data: {
|
|
2047
3645
|
id: string;
|
|
2048
3646
|
}): void;
|
|
@@ -2056,6 +3654,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2056
3654
|
goToLastOfRow(): void;
|
|
2057
3655
|
goToNextPage(): void;
|
|
2058
3656
|
goToPreviousPage(): void;
|
|
3657
|
+
registerItem(data: {
|
|
3658
|
+
item: any;
|
|
3659
|
+
textValue: string;
|
|
3660
|
+
}): void;
|
|
2059
3661
|
unregisterItem(data: {
|
|
2060
3662
|
id: string;
|
|
2061
3663
|
}): void;
|
|
@@ -2071,11 +3673,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2071
3673
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2072
3674
|
placement: import("@popperjs/core").Placement;
|
|
2073
3675
|
id: string;
|
|
2074
|
-
visibility:
|
|
2075
|
-
selectedIds:
|
|
3676
|
+
visibility: "hidden" | "visible";
|
|
3677
|
+
selectedIds: string[] | "all";
|
|
2076
3678
|
unselectedIds: string[];
|
|
2077
3679
|
cursorId: string;
|
|
2078
3680
|
columnCount: number;
|
|
3681
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3682
|
+
cursorIndexRef: {
|
|
3683
|
+
readonly current: number;
|
|
3684
|
+
};
|
|
2079
3685
|
UNSTABLE_virtual: {
|
|
2080
3686
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2081
3687
|
totalSize: number;
|
|
@@ -2085,7 +3691,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2085
3691
|
};
|
|
2086
3692
|
UNSTABLE_defaultItemHeight: number;
|
|
2087
3693
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2088
|
-
orientation:
|
|
3694
|
+
orientation: "horizontal" | "vertical";
|
|
2089
3695
|
indexRef: React.MutableRefObject<number>;
|
|
2090
3696
|
nonInteractiveIds: string[];
|
|
2091
3697
|
isVirtualized: boolean;
|
|
@@ -2103,10 +3709,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2103
3709
|
}): void;
|
|
2104
3710
|
selectAll(): void;
|
|
2105
3711
|
unselectAll(): void;
|
|
2106
|
-
registerItem(data: {
|
|
2107
|
-
item: any;
|
|
2108
|
-
textValue: string;
|
|
2109
|
-
}): void;
|
|
2110
3712
|
goTo(data: {
|
|
2111
3713
|
id: string;
|
|
2112
3714
|
}): void;
|
|
@@ -2120,6 +3722,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2120
3722
|
goToLastOfRow(): void;
|
|
2121
3723
|
goToNextPage(): void;
|
|
2122
3724
|
goToPreviousPage(): void;
|
|
3725
|
+
registerItem(data: {
|
|
3726
|
+
item: any;
|
|
3727
|
+
textValue: string;
|
|
3728
|
+
}): void;
|
|
2123
3729
|
unregisterItem(data: {
|
|
2124
3730
|
id: string;
|
|
2125
3731
|
}): void;
|
|
@@ -2135,7 +3741,21 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2135
3741
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2136
3742
|
getId: (item: any) => string;
|
|
2137
3743
|
}>;
|
|
2138
|
-
|
|
3744
|
+
/**
|
|
3745
|
+
* Optional subcomponent of tabs that makes dealing with dynamic tabs easier. `Tabs.Panels` only
|
|
3746
|
+
* works if the model is given an array of items.
|
|
3747
|
+
*
|
|
3748
|
+
* ```tsx
|
|
3749
|
+
* const items = [{ id: '1', name: 'first' }]
|
|
3750
|
+
* <Tabs items={items}>
|
|
3751
|
+
* {tab list}
|
|
3752
|
+
* <Tabs.Panels>
|
|
3753
|
+
* {item => <Tabs.Panel>Contents of {item.name}</Tabs.Panel>}
|
|
3754
|
+
* </Tabs.Panels>
|
|
3755
|
+
* </Tabs>
|
|
3756
|
+
* ```
|
|
3757
|
+
*/
|
|
3758
|
+
Panels: import("@workday/canvas-kit-react/common").ElementComponentM<React.FC<{}>, import("./TabsPanels").TabsPanelsProps<any>, {
|
|
2139
3759
|
state: {
|
|
2140
3760
|
getId: (item: any) => string;
|
|
2141
3761
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -2145,10 +3765,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2145
3765
|
itemWidthCache: Record<string, number>;
|
|
2146
3766
|
containerWidth: number;
|
|
2147
3767
|
overflowTargetWidth: number;
|
|
2148
|
-
selectedIds:
|
|
3768
|
+
selectedIds: string[] | "all";
|
|
2149
3769
|
unselectedIds: string[];
|
|
2150
3770
|
cursorId: string;
|
|
2151
3771
|
columnCount: number;
|
|
3772
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3773
|
+
cursorIndexRef: {
|
|
3774
|
+
readonly current: number;
|
|
3775
|
+
};
|
|
2152
3776
|
UNSTABLE_virtual: {
|
|
2153
3777
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2154
3778
|
totalSize: number;
|
|
@@ -2196,10 +3820,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2196
3820
|
}): void;
|
|
2197
3821
|
selectAll(): void;
|
|
2198
3822
|
unselectAll(): void;
|
|
2199
|
-
registerItem(data: {
|
|
2200
|
-
item: any;
|
|
2201
|
-
textValue: string;
|
|
2202
|
-
}): void;
|
|
2203
3823
|
goTo(data: {
|
|
2204
3824
|
id: string;
|
|
2205
3825
|
}): void;
|
|
@@ -2213,6 +3833,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2213
3833
|
goToLastOfRow(): void;
|
|
2214
3834
|
goToNextPage(): void;
|
|
2215
3835
|
goToPreviousPage(): void;
|
|
3836
|
+
registerItem(data: {
|
|
3837
|
+
item: any;
|
|
3838
|
+
textValue: string;
|
|
3839
|
+
}): void;
|
|
2216
3840
|
unregisterItem(data: {
|
|
2217
3841
|
id: string;
|
|
2218
3842
|
}): void;
|
|
@@ -2228,11 +3852,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2228
3852
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2229
3853
|
placement: import("@popperjs/core").Placement;
|
|
2230
3854
|
id: string;
|
|
2231
|
-
visibility:
|
|
2232
|
-
selectedIds:
|
|
3855
|
+
visibility: "hidden" | "visible";
|
|
3856
|
+
selectedIds: string[] | "all";
|
|
2233
3857
|
unselectedIds: string[];
|
|
2234
3858
|
cursorId: string;
|
|
2235
3859
|
columnCount: number;
|
|
3860
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3861
|
+
cursorIndexRef: {
|
|
3862
|
+
readonly current: number;
|
|
3863
|
+
};
|
|
2236
3864
|
UNSTABLE_virtual: {
|
|
2237
3865
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2238
3866
|
totalSize: number;
|
|
@@ -2242,7 +3870,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2242
3870
|
};
|
|
2243
3871
|
UNSTABLE_defaultItemHeight: number;
|
|
2244
3872
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2245
|
-
orientation:
|
|
3873
|
+
orientation: "horizontal" | "vertical";
|
|
2246
3874
|
indexRef: React.MutableRefObject<number>;
|
|
2247
3875
|
nonInteractiveIds: string[];
|
|
2248
3876
|
isVirtualized: boolean;
|
|
@@ -2260,10 +3888,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2260
3888
|
}): void;
|
|
2261
3889
|
selectAll(): void;
|
|
2262
3890
|
unselectAll(): void;
|
|
2263
|
-
registerItem(data: {
|
|
2264
|
-
item: any;
|
|
2265
|
-
textValue: string;
|
|
2266
|
-
}): void;
|
|
2267
3891
|
goTo(data: {
|
|
2268
3892
|
id: string;
|
|
2269
3893
|
}): void;
|
|
@@ -2277,6 +3901,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2277
3901
|
goToLastOfRow(): void;
|
|
2278
3902
|
goToNextPage(): void;
|
|
2279
3903
|
goToPreviousPage(): void;
|
|
3904
|
+
registerItem(data: {
|
|
3905
|
+
item: any;
|
|
3906
|
+
textValue: string;
|
|
3907
|
+
}): void;
|
|
2280
3908
|
unregisterItem(data: {
|
|
2281
3909
|
id: string;
|
|
2282
3910
|
}): void;
|
|
@@ -2292,7 +3920,21 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2292
3920
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2293
3921
|
getId: (item: any) => string;
|
|
2294
3922
|
}>;
|
|
2295
|
-
|
|
3923
|
+
/**
|
|
3924
|
+
* The overflow button of a `Tabs.List`. When a tab list overflows, this overflow button is
|
|
3925
|
+
* rendered. Overflow only works when the model is given an array of `items`.
|
|
3926
|
+
*
|
|
3927
|
+
* ```tsx
|
|
3928
|
+
* <Tabs items={items}>
|
|
3929
|
+
* <Tabs.List overflowButton={
|
|
3930
|
+
* <Tabs.OverflowButton>More</Tabs.OverflowButton>
|
|
3931
|
+
* }>
|
|
3932
|
+
* {dynamic tab items}
|
|
3933
|
+
* </Tabs.List>
|
|
3934
|
+
* </Tabs>
|
|
3935
|
+
* ```
|
|
3936
|
+
*/
|
|
3937
|
+
OverflowButton: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("./TabsOverflowButton").OverflowButtonProps, {
|
|
2296
3938
|
state: {
|
|
2297
3939
|
getId: (item: any) => string;
|
|
2298
3940
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -2302,10 +3944,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2302
3944
|
itemWidthCache: Record<string, number>;
|
|
2303
3945
|
containerWidth: number;
|
|
2304
3946
|
overflowTargetWidth: number;
|
|
2305
|
-
selectedIds:
|
|
3947
|
+
selectedIds: string[] | "all";
|
|
2306
3948
|
unselectedIds: string[];
|
|
2307
3949
|
cursorId: string;
|
|
2308
3950
|
columnCount: number;
|
|
3951
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3952
|
+
cursorIndexRef: {
|
|
3953
|
+
readonly current: number;
|
|
3954
|
+
};
|
|
2309
3955
|
UNSTABLE_virtual: {
|
|
2310
3956
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2311
3957
|
totalSize: number;
|
|
@@ -2353,10 +3999,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2353
3999
|
}): void;
|
|
2354
4000
|
selectAll(): void;
|
|
2355
4001
|
unselectAll(): void;
|
|
2356
|
-
registerItem(data: {
|
|
2357
|
-
item: any;
|
|
2358
|
-
textValue: string;
|
|
2359
|
-
}): void;
|
|
2360
4002
|
goTo(data: {
|
|
2361
4003
|
id: string;
|
|
2362
4004
|
}): void;
|
|
@@ -2370,6 +4012,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2370
4012
|
goToLastOfRow(): void;
|
|
2371
4013
|
goToNextPage(): void;
|
|
2372
4014
|
goToPreviousPage(): void;
|
|
4015
|
+
registerItem(data: {
|
|
4016
|
+
item: any;
|
|
4017
|
+
textValue: string;
|
|
4018
|
+
}): void;
|
|
2373
4019
|
unregisterItem(data: {
|
|
2374
4020
|
id: string;
|
|
2375
4021
|
}): void;
|
|
@@ -2385,11 +4031,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2385
4031
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2386
4032
|
placement: import("@popperjs/core").Placement;
|
|
2387
4033
|
id: string;
|
|
2388
|
-
visibility:
|
|
2389
|
-
selectedIds:
|
|
4034
|
+
visibility: "hidden" | "visible";
|
|
4035
|
+
selectedIds: string[] | "all";
|
|
2390
4036
|
unselectedIds: string[];
|
|
2391
4037
|
cursorId: string;
|
|
2392
4038
|
columnCount: number;
|
|
4039
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4040
|
+
cursorIndexRef: {
|
|
4041
|
+
readonly current: number;
|
|
4042
|
+
};
|
|
2393
4043
|
UNSTABLE_virtual: {
|
|
2394
4044
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2395
4045
|
totalSize: number;
|
|
@@ -2399,7 +4049,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2399
4049
|
};
|
|
2400
4050
|
UNSTABLE_defaultItemHeight: number;
|
|
2401
4051
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2402
|
-
orientation:
|
|
4052
|
+
orientation: "horizontal" | "vertical";
|
|
2403
4053
|
indexRef: React.MutableRefObject<number>;
|
|
2404
4054
|
nonInteractiveIds: string[];
|
|
2405
4055
|
isVirtualized: boolean;
|
|
@@ -2417,10 +4067,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2417
4067
|
}): void;
|
|
2418
4068
|
selectAll(): void;
|
|
2419
4069
|
unselectAll(): void;
|
|
2420
|
-
registerItem(data: {
|
|
2421
|
-
item: any;
|
|
2422
|
-
textValue: string;
|
|
2423
|
-
}): void;
|
|
2424
4070
|
goTo(data: {
|
|
2425
4071
|
id: string;
|
|
2426
4072
|
}): void;
|
|
@@ -2434,6 +4080,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2434
4080
|
goToLastOfRow(): void;
|
|
2435
4081
|
goToNextPage(): void;
|
|
2436
4082
|
goToPreviousPage(): void;
|
|
4083
|
+
registerItem(data: {
|
|
4084
|
+
item: any;
|
|
4085
|
+
textValue: string;
|
|
4086
|
+
}): void;
|
|
2437
4087
|
unregisterItem(data: {
|
|
2438
4088
|
id: string;
|
|
2439
4089
|
}): void;
|
|
@@ -2449,7 +4099,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2449
4099
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2450
4100
|
getId: (item: any) => string;
|
|
2451
4101
|
}>;
|
|
2452
|
-
|
|
4102
|
+
/**
|
|
4103
|
+
* @deprecated Use `Tabs.Menu.Popper` instead
|
|
4104
|
+
*/
|
|
4105
|
+
MenuPopper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./TabsMenuPopper").MenuPopperProps, {
|
|
2453
4106
|
state: {
|
|
2454
4107
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2455
4108
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -2457,11 +4110,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2457
4110
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2458
4111
|
placement: import("@popperjs/core").Placement;
|
|
2459
4112
|
id: string;
|
|
2460
|
-
visibility:
|
|
2461
|
-
selectedIds:
|
|
4113
|
+
visibility: "hidden" | "visible";
|
|
4114
|
+
selectedIds: string[] | "all";
|
|
2462
4115
|
unselectedIds: string[];
|
|
2463
4116
|
cursorId: string;
|
|
2464
4117
|
columnCount: number;
|
|
4118
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4119
|
+
cursorIndexRef: {
|
|
4120
|
+
readonly current: number;
|
|
4121
|
+
};
|
|
2465
4122
|
UNSTABLE_virtual: {
|
|
2466
4123
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2467
4124
|
totalSize: number;
|
|
@@ -2471,7 +4128,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2471
4128
|
};
|
|
2472
4129
|
UNSTABLE_defaultItemHeight: number;
|
|
2473
4130
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2474
|
-
orientation:
|
|
4131
|
+
orientation: "horizontal" | "vertical";
|
|
2475
4132
|
indexRef: React.MutableRefObject<number>;
|
|
2476
4133
|
nonInteractiveIds: string[];
|
|
2477
4134
|
isVirtualized: boolean;
|
|
@@ -2489,10 +4146,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2489
4146
|
}): void;
|
|
2490
4147
|
selectAll(): void;
|
|
2491
4148
|
unselectAll(): void;
|
|
2492
|
-
registerItem(data: {
|
|
2493
|
-
item: any;
|
|
2494
|
-
textValue: string;
|
|
2495
|
-
}): void;
|
|
2496
4149
|
goTo(data: {
|
|
2497
4150
|
id: string;
|
|
2498
4151
|
}): void;
|
|
@@ -2506,6 +4159,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2506
4159
|
goToLastOfRow(): void;
|
|
2507
4160
|
goToNextPage(): void;
|
|
2508
4161
|
goToPreviousPage(): void;
|
|
4162
|
+
registerItem(data: {
|
|
4163
|
+
item: any;
|
|
4164
|
+
textValue: string;
|
|
4165
|
+
}): void;
|
|
2509
4166
|
unregisterItem(data: {
|
|
2510
4167
|
id: string;
|
|
2511
4168
|
}): void;
|
|
@@ -2520,17 +4177,22 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2520
4177
|
/**
|
|
2521
4178
|
* The overflow menu of the Tabs component. If there isn't enough room to render all the tab
|
|
2522
4179
|
* items, the extra tabs that don't fit will be overflowed into this menu.
|
|
2523
|
-
*
|
|
4180
|
+
*
|
|
4181
|
+
* ```tsx
|
|
2524
4182
|
* <Tabs.Menu.Popper>
|
|
2525
4183
|
* <Tabs.Menu.Card>
|
|
2526
4184
|
* <Tabs.Menu.List>
|
|
2527
|
-
* {(item: MyTabItem) => <Tabs.Menu.Item data-id={item.id}>
|
|
4185
|
+
* {(item: MyTabItem) => <Tabs.Menu.Item data-id={item.id}>
|
|
4186
|
+
* {item.text}
|
|
4187
|
+
* </Tabs.Menu.Item>}
|
|
2528
4188
|
* </Tabs.Menu.List>
|
|
2529
4189
|
* </Tabs.Menu.Card>
|
|
2530
4190
|
* </Tabs.Menu.Popper>
|
|
4191
|
+
* ```
|
|
2531
4192
|
*/
|
|
2532
|
-
Menu: import("
|
|
4193
|
+
Menu: import("@workday/canvas-kit-react/common").ComponentM<import("../../menu/lib/Menu").MenuProps & Partial<{
|
|
2533
4194
|
mode: "multiple" | "single";
|
|
4195
|
+
shouldVirtualize: boolean;
|
|
2534
4196
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2535
4197
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2536
4198
|
id: string;
|
|
@@ -2541,12 +4203,12 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2541
4203
|
initialCursorId: string;
|
|
2542
4204
|
columnCount: number;
|
|
2543
4205
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
4206
|
+
pageSize: number;
|
|
2544
4207
|
getId: (item: any) => string;
|
|
2545
4208
|
getTextValue: (item: any) => string;
|
|
2546
4209
|
nonInteractiveIds: string[];
|
|
2547
4210
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2548
4211
|
defaultItemHeight: number;
|
|
2549
|
-
shouldVirtualize: boolean;
|
|
2550
4212
|
items: any[];
|
|
2551
4213
|
}> & {
|
|
2552
4214
|
onUpdatePlacement?: ((data: {
|
|
@@ -2558,11 +4220,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2558
4220
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2559
4221
|
placement: import("@popperjs/core").Placement;
|
|
2560
4222
|
id: string;
|
|
2561
|
-
visibility:
|
|
2562
|
-
selectedIds:
|
|
4223
|
+
visibility: "hidden" | "visible";
|
|
4224
|
+
selectedIds: string[] | "all";
|
|
2563
4225
|
unselectedIds: string[];
|
|
2564
4226
|
cursorId: string;
|
|
2565
4227
|
columnCount: number;
|
|
4228
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4229
|
+
cursorIndexRef: {
|
|
4230
|
+
readonly current: number;
|
|
4231
|
+
};
|
|
2566
4232
|
UNSTABLE_virtual: {
|
|
2567
4233
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2568
4234
|
totalSize: number;
|
|
@@ -2572,7 +4238,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2572
4238
|
};
|
|
2573
4239
|
UNSTABLE_defaultItemHeight: number;
|
|
2574
4240
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2575
|
-
orientation:
|
|
4241
|
+
orientation: "horizontal" | "vertical";
|
|
2576
4242
|
indexRef: React.MutableRefObject<number>;
|
|
2577
4243
|
nonInteractiveIds: string[];
|
|
2578
4244
|
isVirtualized: boolean;
|
|
@@ -2586,11 +4252,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2586
4252
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2587
4253
|
placement: import("@popperjs/core").Placement;
|
|
2588
4254
|
id: string;
|
|
2589
|
-
visibility:
|
|
2590
|
-
selectedIds:
|
|
4255
|
+
visibility: "hidden" | "visible";
|
|
4256
|
+
selectedIds: string[] | "all";
|
|
2591
4257
|
unselectedIds: string[];
|
|
2592
4258
|
cursorId: string;
|
|
2593
4259
|
columnCount: number;
|
|
4260
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4261
|
+
cursorIndexRef: {
|
|
4262
|
+
readonly current: number;
|
|
4263
|
+
};
|
|
2594
4264
|
UNSTABLE_virtual: {
|
|
2595
4265
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2596
4266
|
totalSize: number;
|
|
@@ -2600,7 +4270,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2600
4270
|
};
|
|
2601
4271
|
UNSTABLE_defaultItemHeight: number;
|
|
2602
4272
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2603
|
-
orientation:
|
|
4273
|
+
orientation: "horizontal" | "vertical";
|
|
2604
4274
|
indexRef: React.MutableRefObject<number>;
|
|
2605
4275
|
nonInteractiveIds: string[];
|
|
2606
4276
|
isVirtualized: boolean;
|
|
@@ -2614,11 +4284,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2614
4284
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2615
4285
|
placement: import("@popperjs/core").Placement;
|
|
2616
4286
|
id: string;
|
|
2617
|
-
visibility:
|
|
2618
|
-
selectedIds:
|
|
4287
|
+
visibility: "hidden" | "visible";
|
|
4288
|
+
selectedIds: string[] | "all";
|
|
2619
4289
|
unselectedIds: string[];
|
|
2620
4290
|
cursorId: string;
|
|
2621
4291
|
columnCount: number;
|
|
4292
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4293
|
+
cursorIndexRef: {
|
|
4294
|
+
readonly current: number;
|
|
4295
|
+
};
|
|
2622
4296
|
UNSTABLE_virtual: {
|
|
2623
4297
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2624
4298
|
totalSize: number;
|
|
@@ -2628,7 +4302,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2628
4302
|
};
|
|
2629
4303
|
UNSTABLE_defaultItemHeight: number;
|
|
2630
4304
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2631
|
-
orientation:
|
|
4305
|
+
orientation: "horizontal" | "vertical";
|
|
2632
4306
|
indexRef: React.MutableRefObject<number>;
|
|
2633
4307
|
nonInteractiveIds: string[];
|
|
2634
4308
|
isVirtualized: boolean;
|
|
@@ -2644,11 +4318,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2644
4318
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2645
4319
|
placement: import("@popperjs/core").Placement;
|
|
2646
4320
|
id: string;
|
|
2647
|
-
visibility:
|
|
2648
|
-
selectedIds:
|
|
4321
|
+
visibility: "hidden" | "visible";
|
|
4322
|
+
selectedIds: string[] | "all";
|
|
2649
4323
|
unselectedIds: string[];
|
|
2650
4324
|
cursorId: string;
|
|
2651
4325
|
columnCount: number;
|
|
4326
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4327
|
+
cursorIndexRef: {
|
|
4328
|
+
readonly current: number;
|
|
4329
|
+
};
|
|
2652
4330
|
UNSTABLE_virtual: {
|
|
2653
4331
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2654
4332
|
totalSize: number;
|
|
@@ -2658,7 +4336,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2658
4336
|
};
|
|
2659
4337
|
UNSTABLE_defaultItemHeight: number;
|
|
2660
4338
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2661
|
-
orientation:
|
|
4339
|
+
orientation: "horizontal" | "vertical";
|
|
2662
4340
|
indexRef: React.MutableRefObject<number>;
|
|
2663
4341
|
nonInteractiveIds: string[];
|
|
2664
4342
|
isVirtualized: boolean;
|
|
@@ -2672,11 +4350,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2672
4350
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2673
4351
|
placement: import("@popperjs/core").Placement;
|
|
2674
4352
|
id: string;
|
|
2675
|
-
visibility:
|
|
2676
|
-
selectedIds:
|
|
4353
|
+
visibility: "hidden" | "visible";
|
|
4354
|
+
selectedIds: string[] | "all";
|
|
2677
4355
|
unselectedIds: string[];
|
|
2678
4356
|
cursorId: string;
|
|
2679
4357
|
columnCount: number;
|
|
4358
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4359
|
+
cursorIndexRef: {
|
|
4360
|
+
readonly current: number;
|
|
4361
|
+
};
|
|
2680
4362
|
UNSTABLE_virtual: {
|
|
2681
4363
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2682
4364
|
totalSize: number;
|
|
@@ -2686,7 +4368,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2686
4368
|
};
|
|
2687
4369
|
UNSTABLE_defaultItemHeight: number;
|
|
2688
4370
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2689
|
-
orientation:
|
|
4371
|
+
orientation: "horizontal" | "vertical";
|
|
2690
4372
|
indexRef: React.MutableRefObject<number>;
|
|
2691
4373
|
nonInteractiveIds: string[];
|
|
2692
4374
|
isVirtualized: boolean;
|
|
@@ -2700,11 +4382,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2700
4382
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2701
4383
|
placement: import("@popperjs/core").Placement;
|
|
2702
4384
|
id: string;
|
|
2703
|
-
visibility:
|
|
2704
|
-
selectedIds:
|
|
4385
|
+
visibility: "hidden" | "visible";
|
|
4386
|
+
selectedIds: string[] | "all";
|
|
2705
4387
|
unselectedIds: string[];
|
|
2706
4388
|
cursorId: string;
|
|
2707
4389
|
columnCount: number;
|
|
4390
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4391
|
+
cursorIndexRef: {
|
|
4392
|
+
readonly current: number;
|
|
4393
|
+
};
|
|
2708
4394
|
UNSTABLE_virtual: {
|
|
2709
4395
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2710
4396
|
totalSize: number;
|
|
@@ -2714,16 +4400,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2714
4400
|
};
|
|
2715
4401
|
UNSTABLE_defaultItemHeight: number;
|
|
2716
4402
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2717
|
-
orientation:
|
|
4403
|
+
orientation: "horizontal" | "vertical";
|
|
2718
4404
|
indexRef: React.MutableRefObject<number>;
|
|
2719
4405
|
nonInteractiveIds: string[];
|
|
2720
4406
|
isVirtualized: boolean;
|
|
2721
4407
|
items: import("../..").Item<any>[];
|
|
2722
4408
|
mode: "multiple" | "single";
|
|
2723
4409
|
}) => void) | undefined;
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
textValue: string;
|
|
4410
|
+
onGoTo?: ((data: {
|
|
4411
|
+
id: string;
|
|
2727
4412
|
}, prevState: {
|
|
2728
4413
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2729
4414
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -2731,11 +4416,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2731
4416
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2732
4417
|
placement: import("@popperjs/core").Placement;
|
|
2733
4418
|
id: string;
|
|
2734
|
-
visibility:
|
|
2735
|
-
selectedIds:
|
|
4419
|
+
visibility: "hidden" | "visible";
|
|
4420
|
+
selectedIds: string[] | "all";
|
|
2736
4421
|
unselectedIds: string[];
|
|
2737
4422
|
cursorId: string;
|
|
2738
4423
|
columnCount: number;
|
|
4424
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4425
|
+
cursorIndexRef: {
|
|
4426
|
+
readonly current: number;
|
|
4427
|
+
};
|
|
2739
4428
|
UNSTABLE_virtual: {
|
|
2740
4429
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2741
4430
|
totalSize: number;
|
|
@@ -2745,27 +4434,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2745
4434
|
};
|
|
2746
4435
|
UNSTABLE_defaultItemHeight: number;
|
|
2747
4436
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2748
|
-
orientation:
|
|
4437
|
+
orientation: "horizontal" | "vertical";
|
|
2749
4438
|
indexRef: React.MutableRefObject<number>;
|
|
2750
4439
|
nonInteractiveIds: string[];
|
|
2751
4440
|
isVirtualized: boolean;
|
|
2752
4441
|
items: import("../..").Item<any>[];
|
|
2753
4442
|
mode: "multiple" | "single";
|
|
2754
4443
|
}) => void) | undefined;
|
|
2755
|
-
|
|
2756
|
-
id: string;
|
|
2757
|
-
}, prevState: {
|
|
4444
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
2758
4445
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2759
4446
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2760
4447
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2761
4448
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2762
4449
|
placement: import("@popperjs/core").Placement;
|
|
2763
4450
|
id: string;
|
|
2764
|
-
visibility:
|
|
2765
|
-
selectedIds:
|
|
4451
|
+
visibility: "hidden" | "visible";
|
|
4452
|
+
selectedIds: string[] | "all";
|
|
2766
4453
|
unselectedIds: string[];
|
|
2767
4454
|
cursorId: string;
|
|
2768
4455
|
columnCount: number;
|
|
4456
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4457
|
+
cursorIndexRef: {
|
|
4458
|
+
readonly current: number;
|
|
4459
|
+
};
|
|
2769
4460
|
UNSTABLE_virtual: {
|
|
2770
4461
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2771
4462
|
totalSize: number;
|
|
@@ -2775,25 +4466,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2775
4466
|
};
|
|
2776
4467
|
UNSTABLE_defaultItemHeight: number;
|
|
2777
4468
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2778
|
-
orientation:
|
|
4469
|
+
orientation: "horizontal" | "vertical";
|
|
2779
4470
|
indexRef: React.MutableRefObject<number>;
|
|
2780
4471
|
nonInteractiveIds: string[];
|
|
2781
4472
|
isVirtualized: boolean;
|
|
2782
4473
|
items: import("../..").Item<any>[];
|
|
2783
4474
|
mode: "multiple" | "single";
|
|
2784
4475
|
}) => void) | undefined;
|
|
2785
|
-
|
|
4476
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
2786
4477
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2787
4478
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2788
4479
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2789
4480
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2790
4481
|
placement: import("@popperjs/core").Placement;
|
|
2791
4482
|
id: string;
|
|
2792
|
-
visibility:
|
|
2793
|
-
selectedIds:
|
|
4483
|
+
visibility: "hidden" | "visible";
|
|
4484
|
+
selectedIds: string[] | "all";
|
|
2794
4485
|
unselectedIds: string[];
|
|
2795
4486
|
cursorId: string;
|
|
2796
4487
|
columnCount: number;
|
|
4488
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4489
|
+
cursorIndexRef: {
|
|
4490
|
+
readonly current: number;
|
|
4491
|
+
};
|
|
2797
4492
|
UNSTABLE_virtual: {
|
|
2798
4493
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2799
4494
|
totalSize: number;
|
|
@@ -2803,25 +4498,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2803
4498
|
};
|
|
2804
4499
|
UNSTABLE_defaultItemHeight: number;
|
|
2805
4500
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2806
|
-
orientation:
|
|
4501
|
+
orientation: "horizontal" | "vertical";
|
|
2807
4502
|
indexRef: React.MutableRefObject<number>;
|
|
2808
4503
|
nonInteractiveIds: string[];
|
|
2809
4504
|
isVirtualized: boolean;
|
|
2810
4505
|
items: import("../..").Item<any>[];
|
|
2811
4506
|
mode: "multiple" | "single";
|
|
2812
4507
|
}) => void) | undefined;
|
|
2813
|
-
|
|
4508
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
2814
4509
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2815
4510
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2816
4511
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2817
4512
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2818
4513
|
placement: import("@popperjs/core").Placement;
|
|
2819
4514
|
id: string;
|
|
2820
|
-
visibility:
|
|
2821
|
-
selectedIds:
|
|
4515
|
+
visibility: "hidden" | "visible";
|
|
4516
|
+
selectedIds: string[] | "all";
|
|
2822
4517
|
unselectedIds: string[];
|
|
2823
4518
|
cursorId: string;
|
|
2824
4519
|
columnCount: number;
|
|
4520
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4521
|
+
cursorIndexRef: {
|
|
4522
|
+
readonly current: number;
|
|
4523
|
+
};
|
|
2825
4524
|
UNSTABLE_virtual: {
|
|
2826
4525
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2827
4526
|
totalSize: number;
|
|
@@ -2831,25 +4530,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2831
4530
|
};
|
|
2832
4531
|
UNSTABLE_defaultItemHeight: number;
|
|
2833
4532
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2834
|
-
orientation:
|
|
4533
|
+
orientation: "horizontal" | "vertical";
|
|
2835
4534
|
indexRef: React.MutableRefObject<number>;
|
|
2836
4535
|
nonInteractiveIds: string[];
|
|
2837
4536
|
isVirtualized: boolean;
|
|
2838
4537
|
items: import("../..").Item<any>[];
|
|
2839
4538
|
mode: "multiple" | "single";
|
|
2840
4539
|
}) => void) | undefined;
|
|
2841
|
-
|
|
4540
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
2842
4541
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2843
4542
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2844
4543
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2845
4544
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2846
4545
|
placement: import("@popperjs/core").Placement;
|
|
2847
4546
|
id: string;
|
|
2848
|
-
visibility:
|
|
2849
|
-
selectedIds:
|
|
4547
|
+
visibility: "hidden" | "visible";
|
|
4548
|
+
selectedIds: string[] | "all";
|
|
2850
4549
|
unselectedIds: string[];
|
|
2851
4550
|
cursorId: string;
|
|
2852
4551
|
columnCount: number;
|
|
4552
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4553
|
+
cursorIndexRef: {
|
|
4554
|
+
readonly current: number;
|
|
4555
|
+
};
|
|
2853
4556
|
UNSTABLE_virtual: {
|
|
2854
4557
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2855
4558
|
totalSize: number;
|
|
@@ -2859,25 +4562,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2859
4562
|
};
|
|
2860
4563
|
UNSTABLE_defaultItemHeight: number;
|
|
2861
4564
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2862
|
-
orientation:
|
|
4565
|
+
orientation: "horizontal" | "vertical";
|
|
2863
4566
|
indexRef: React.MutableRefObject<number>;
|
|
2864
4567
|
nonInteractiveIds: string[];
|
|
2865
4568
|
isVirtualized: boolean;
|
|
2866
4569
|
items: import("../..").Item<any>[];
|
|
2867
4570
|
mode: "multiple" | "single";
|
|
2868
4571
|
}) => void) | undefined;
|
|
2869
|
-
|
|
4572
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
2870
4573
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2871
4574
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2872
4575
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2873
4576
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2874
4577
|
placement: import("@popperjs/core").Placement;
|
|
2875
4578
|
id: string;
|
|
2876
|
-
visibility:
|
|
2877
|
-
selectedIds:
|
|
4579
|
+
visibility: "hidden" | "visible";
|
|
4580
|
+
selectedIds: string[] | "all";
|
|
2878
4581
|
unselectedIds: string[];
|
|
2879
4582
|
cursorId: string;
|
|
2880
4583
|
columnCount: number;
|
|
4584
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4585
|
+
cursorIndexRef: {
|
|
4586
|
+
readonly current: number;
|
|
4587
|
+
};
|
|
2881
4588
|
UNSTABLE_virtual: {
|
|
2882
4589
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2883
4590
|
totalSize: number;
|
|
@@ -2887,25 +4594,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2887
4594
|
};
|
|
2888
4595
|
UNSTABLE_defaultItemHeight: number;
|
|
2889
4596
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2890
|
-
orientation:
|
|
4597
|
+
orientation: "horizontal" | "vertical";
|
|
2891
4598
|
indexRef: React.MutableRefObject<number>;
|
|
2892
4599
|
nonInteractiveIds: string[];
|
|
2893
4600
|
isVirtualized: boolean;
|
|
2894
4601
|
items: import("../..").Item<any>[];
|
|
2895
4602
|
mode: "multiple" | "single";
|
|
2896
4603
|
}) => void) | undefined;
|
|
2897
|
-
|
|
4604
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
2898
4605
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2899
4606
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2900
4607
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2901
4608
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2902
4609
|
placement: import("@popperjs/core").Placement;
|
|
2903
4610
|
id: string;
|
|
2904
|
-
visibility:
|
|
2905
|
-
selectedIds:
|
|
4611
|
+
visibility: "hidden" | "visible";
|
|
4612
|
+
selectedIds: string[] | "all";
|
|
2906
4613
|
unselectedIds: string[];
|
|
2907
4614
|
cursorId: string;
|
|
2908
4615
|
columnCount: number;
|
|
4616
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4617
|
+
cursorIndexRef: {
|
|
4618
|
+
readonly current: number;
|
|
4619
|
+
};
|
|
2909
4620
|
UNSTABLE_virtual: {
|
|
2910
4621
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2911
4622
|
totalSize: number;
|
|
@@ -2915,25 +4626,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2915
4626
|
};
|
|
2916
4627
|
UNSTABLE_defaultItemHeight: number;
|
|
2917
4628
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2918
|
-
orientation:
|
|
4629
|
+
orientation: "horizontal" | "vertical";
|
|
2919
4630
|
indexRef: React.MutableRefObject<number>;
|
|
2920
4631
|
nonInteractiveIds: string[];
|
|
2921
4632
|
isVirtualized: boolean;
|
|
2922
4633
|
items: import("../..").Item<any>[];
|
|
2923
4634
|
mode: "multiple" | "single";
|
|
2924
4635
|
}) => void) | undefined;
|
|
2925
|
-
|
|
4636
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
2926
4637
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2927
4638
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2928
4639
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2929
4640
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2930
4641
|
placement: import("@popperjs/core").Placement;
|
|
2931
4642
|
id: string;
|
|
2932
|
-
visibility:
|
|
2933
|
-
selectedIds:
|
|
4643
|
+
visibility: "hidden" | "visible";
|
|
4644
|
+
selectedIds: string[] | "all";
|
|
2934
4645
|
unselectedIds: string[];
|
|
2935
4646
|
cursorId: string;
|
|
2936
4647
|
columnCount: number;
|
|
4648
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4649
|
+
cursorIndexRef: {
|
|
4650
|
+
readonly current: number;
|
|
4651
|
+
};
|
|
2937
4652
|
UNSTABLE_virtual: {
|
|
2938
4653
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2939
4654
|
totalSize: number;
|
|
@@ -2943,25 +4658,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2943
4658
|
};
|
|
2944
4659
|
UNSTABLE_defaultItemHeight: number;
|
|
2945
4660
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2946
|
-
orientation:
|
|
4661
|
+
orientation: "horizontal" | "vertical";
|
|
2947
4662
|
indexRef: React.MutableRefObject<number>;
|
|
2948
4663
|
nonInteractiveIds: string[];
|
|
2949
4664
|
isVirtualized: boolean;
|
|
2950
4665
|
items: import("../..").Item<any>[];
|
|
2951
4666
|
mode: "multiple" | "single";
|
|
2952
4667
|
}) => void) | undefined;
|
|
2953
|
-
|
|
4668
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
2954
4669
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2955
4670
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2956
4671
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2957
4672
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2958
4673
|
placement: import("@popperjs/core").Placement;
|
|
2959
4674
|
id: string;
|
|
2960
|
-
visibility:
|
|
2961
|
-
selectedIds:
|
|
4675
|
+
visibility: "hidden" | "visible";
|
|
4676
|
+
selectedIds: string[] | "all";
|
|
2962
4677
|
unselectedIds: string[];
|
|
2963
4678
|
cursorId: string;
|
|
2964
4679
|
columnCount: number;
|
|
4680
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4681
|
+
cursorIndexRef: {
|
|
4682
|
+
readonly current: number;
|
|
4683
|
+
};
|
|
2965
4684
|
UNSTABLE_virtual: {
|
|
2966
4685
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2967
4686
|
totalSize: number;
|
|
@@ -2971,25 +4690,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2971
4690
|
};
|
|
2972
4691
|
UNSTABLE_defaultItemHeight: number;
|
|
2973
4692
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2974
|
-
orientation:
|
|
4693
|
+
orientation: "horizontal" | "vertical";
|
|
2975
4694
|
indexRef: React.MutableRefObject<number>;
|
|
2976
4695
|
nonInteractiveIds: string[];
|
|
2977
4696
|
isVirtualized: boolean;
|
|
2978
4697
|
items: import("../..").Item<any>[];
|
|
2979
4698
|
mode: "multiple" | "single";
|
|
2980
4699
|
}) => void) | undefined;
|
|
2981
|
-
|
|
4700
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
2982
4701
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2983
4702
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2984
4703
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2985
4704
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2986
4705
|
placement: import("@popperjs/core").Placement;
|
|
2987
4706
|
id: string;
|
|
2988
|
-
visibility:
|
|
2989
|
-
selectedIds:
|
|
4707
|
+
visibility: "hidden" | "visible";
|
|
4708
|
+
selectedIds: string[] | "all";
|
|
2990
4709
|
unselectedIds: string[];
|
|
2991
4710
|
cursorId: string;
|
|
2992
4711
|
columnCount: number;
|
|
4712
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4713
|
+
cursorIndexRef: {
|
|
4714
|
+
readonly current: number;
|
|
4715
|
+
};
|
|
2993
4716
|
UNSTABLE_virtual: {
|
|
2994
4717
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2995
4718
|
totalSize: number;
|
|
@@ -2999,25 +4722,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2999
4722
|
};
|
|
3000
4723
|
UNSTABLE_defaultItemHeight: number;
|
|
3001
4724
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3002
|
-
orientation:
|
|
4725
|
+
orientation: "horizontal" | "vertical";
|
|
3003
4726
|
indexRef: React.MutableRefObject<number>;
|
|
3004
4727
|
nonInteractiveIds: string[];
|
|
3005
4728
|
isVirtualized: boolean;
|
|
3006
4729
|
items: import("../..").Item<any>[];
|
|
3007
4730
|
mode: "multiple" | "single";
|
|
3008
4731
|
}) => void) | undefined;
|
|
3009
|
-
|
|
4732
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
3010
4733
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3011
4734
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3012
4735
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3013
4736
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3014
4737
|
placement: import("@popperjs/core").Placement;
|
|
3015
4738
|
id: string;
|
|
3016
|
-
visibility:
|
|
3017
|
-
selectedIds:
|
|
4739
|
+
visibility: "hidden" | "visible";
|
|
4740
|
+
selectedIds: string[] | "all";
|
|
3018
4741
|
unselectedIds: string[];
|
|
3019
4742
|
cursorId: string;
|
|
3020
4743
|
columnCount: number;
|
|
4744
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4745
|
+
cursorIndexRef: {
|
|
4746
|
+
readonly current: number;
|
|
4747
|
+
};
|
|
3021
4748
|
UNSTABLE_virtual: {
|
|
3022
4749
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3023
4750
|
totalSize: number;
|
|
@@ -3027,25 +4754,32 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3027
4754
|
};
|
|
3028
4755
|
UNSTABLE_defaultItemHeight: number;
|
|
3029
4756
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3030
|
-
orientation:
|
|
4757
|
+
orientation: "horizontal" | "vertical";
|
|
3031
4758
|
indexRef: React.MutableRefObject<number>;
|
|
3032
4759
|
nonInteractiveIds: string[];
|
|
3033
4760
|
isVirtualized: boolean;
|
|
3034
4761
|
items: import("../..").Item<any>[];
|
|
3035
4762
|
mode: "multiple" | "single";
|
|
3036
4763
|
}) => void) | undefined;
|
|
3037
|
-
|
|
4764
|
+
onRegisterItem?: ((data: {
|
|
4765
|
+
item: any;
|
|
4766
|
+
textValue: string;
|
|
4767
|
+
}, prevState: {
|
|
3038
4768
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3039
4769
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3040
4770
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3041
4771
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3042
4772
|
placement: import("@popperjs/core").Placement;
|
|
3043
4773
|
id: string;
|
|
3044
|
-
visibility:
|
|
3045
|
-
selectedIds:
|
|
4774
|
+
visibility: "hidden" | "visible";
|
|
4775
|
+
selectedIds: string[] | "all";
|
|
3046
4776
|
unselectedIds: string[];
|
|
3047
4777
|
cursorId: string;
|
|
3048
4778
|
columnCount: number;
|
|
4779
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4780
|
+
cursorIndexRef: {
|
|
4781
|
+
readonly current: number;
|
|
4782
|
+
};
|
|
3049
4783
|
UNSTABLE_virtual: {
|
|
3050
4784
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3051
4785
|
totalSize: number;
|
|
@@ -3055,7 +4789,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3055
4789
|
};
|
|
3056
4790
|
UNSTABLE_defaultItemHeight: number;
|
|
3057
4791
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3058
|
-
orientation:
|
|
4792
|
+
orientation: "horizontal" | "vertical";
|
|
3059
4793
|
indexRef: React.MutableRefObject<number>;
|
|
3060
4794
|
nonInteractiveIds: string[];
|
|
3061
4795
|
isVirtualized: boolean;
|
|
@@ -3071,11 +4805,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3071
4805
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3072
4806
|
placement: import("@popperjs/core").Placement;
|
|
3073
4807
|
id: string;
|
|
3074
|
-
visibility:
|
|
3075
|
-
selectedIds:
|
|
4808
|
+
visibility: "hidden" | "visible";
|
|
4809
|
+
selectedIds: string[] | "all";
|
|
3076
4810
|
unselectedIds: string[];
|
|
3077
4811
|
cursorId: string;
|
|
3078
4812
|
columnCount: number;
|
|
4813
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4814
|
+
cursorIndexRef: {
|
|
4815
|
+
readonly current: number;
|
|
4816
|
+
};
|
|
3079
4817
|
UNSTABLE_virtual: {
|
|
3080
4818
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3081
4819
|
totalSize: number;
|
|
@@ -3085,7 +4823,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3085
4823
|
};
|
|
3086
4824
|
UNSTABLE_defaultItemHeight: number;
|
|
3087
4825
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3088
|
-
orientation:
|
|
4826
|
+
orientation: "horizontal" | "vertical";
|
|
3089
4827
|
indexRef: React.MutableRefObject<number>;
|
|
3090
4828
|
nonInteractiveIds: string[];
|
|
3091
4829
|
isVirtualized: boolean;
|
|
@@ -3101,11 +4839,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3101
4839
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3102
4840
|
placement: import("@popperjs/core").Placement;
|
|
3103
4841
|
id: string;
|
|
3104
|
-
visibility:
|
|
3105
|
-
selectedIds:
|
|
4842
|
+
visibility: "hidden" | "visible";
|
|
4843
|
+
selectedIds: string[] | "all";
|
|
3106
4844
|
unselectedIds: string[];
|
|
3107
4845
|
cursorId: string;
|
|
3108
4846
|
columnCount: number;
|
|
4847
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4848
|
+
cursorIndexRef: {
|
|
4849
|
+
readonly current: number;
|
|
4850
|
+
};
|
|
3109
4851
|
UNSTABLE_virtual: {
|
|
3110
4852
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3111
4853
|
totalSize: number;
|
|
@@ -3115,7 +4857,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3115
4857
|
};
|
|
3116
4858
|
UNSTABLE_defaultItemHeight: number;
|
|
3117
4859
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3118
|
-
orientation:
|
|
4860
|
+
orientation: "horizontal" | "vertical";
|
|
3119
4861
|
indexRef: React.MutableRefObject<number>;
|
|
3120
4862
|
nonInteractiveIds: string[];
|
|
3121
4863
|
isVirtualized: boolean;
|
|
@@ -3132,11 +4874,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3132
4874
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3133
4875
|
placement: import("@popperjs/core").Placement;
|
|
3134
4876
|
id: string;
|
|
3135
|
-
visibility:
|
|
3136
|
-
selectedIds:
|
|
4877
|
+
visibility: "hidden" | "visible";
|
|
4878
|
+
selectedIds: string[] | "all";
|
|
3137
4879
|
unselectedIds: string[];
|
|
3138
4880
|
cursorId: string;
|
|
3139
4881
|
columnCount: number;
|
|
4882
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4883
|
+
cursorIndexRef: {
|
|
4884
|
+
readonly current: number;
|
|
4885
|
+
};
|
|
3140
4886
|
UNSTABLE_virtual: {
|
|
3141
4887
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3142
4888
|
totalSize: number;
|
|
@@ -3146,7 +4892,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3146
4892
|
};
|
|
3147
4893
|
UNSTABLE_defaultItemHeight: number;
|
|
3148
4894
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3149
|
-
orientation:
|
|
4895
|
+
orientation: "horizontal" | "vertical";
|
|
3150
4896
|
indexRef: React.MutableRefObject<number>;
|
|
3151
4897
|
nonInteractiveIds: string[];
|
|
3152
4898
|
isVirtualized: boolean;
|
|
@@ -3160,11 +4906,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3160
4906
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3161
4907
|
placement: import("@popperjs/core").Placement;
|
|
3162
4908
|
id: string;
|
|
3163
|
-
visibility:
|
|
3164
|
-
selectedIds:
|
|
4909
|
+
visibility: "hidden" | "visible";
|
|
4910
|
+
selectedIds: string[] | "all";
|
|
3165
4911
|
unselectedIds: string[];
|
|
3166
4912
|
cursorId: string;
|
|
3167
4913
|
columnCount: number;
|
|
4914
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4915
|
+
cursorIndexRef: {
|
|
4916
|
+
readonly current: number;
|
|
4917
|
+
};
|
|
3168
4918
|
UNSTABLE_virtual: {
|
|
3169
4919
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3170
4920
|
totalSize: number;
|
|
@@ -3174,7 +4924,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3174
4924
|
};
|
|
3175
4925
|
UNSTABLE_defaultItemHeight: number;
|
|
3176
4926
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3177
|
-
orientation:
|
|
4927
|
+
orientation: "horizontal" | "vertical";
|
|
3178
4928
|
indexRef: React.MutableRefObject<number>;
|
|
3179
4929
|
nonInteractiveIds: string[];
|
|
3180
4930
|
isVirtualized: boolean;
|
|
@@ -3188,11 +4938,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3188
4938
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3189
4939
|
placement: import("@popperjs/core").Placement;
|
|
3190
4940
|
id: string;
|
|
3191
|
-
visibility:
|
|
3192
|
-
selectedIds:
|
|
4941
|
+
visibility: "hidden" | "visible";
|
|
4942
|
+
selectedIds: string[] | "all";
|
|
3193
4943
|
unselectedIds: string[];
|
|
3194
4944
|
cursorId: string;
|
|
3195
4945
|
columnCount: number;
|
|
4946
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4947
|
+
cursorIndexRef: {
|
|
4948
|
+
readonly current: number;
|
|
4949
|
+
};
|
|
3196
4950
|
UNSTABLE_virtual: {
|
|
3197
4951
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3198
4952
|
totalSize: number;
|
|
@@ -3202,7 +4956,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3202
4956
|
};
|
|
3203
4957
|
UNSTABLE_defaultItemHeight: number;
|
|
3204
4958
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3205
|
-
orientation:
|
|
4959
|
+
orientation: "horizontal" | "vertical";
|
|
3206
4960
|
indexRef: React.MutableRefObject<number>;
|
|
3207
4961
|
nonInteractiveIds: string[];
|
|
3208
4962
|
isVirtualized: boolean;
|
|
@@ -3218,11 +4972,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3218
4972
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3219
4973
|
placement: import("@popperjs/core").Placement;
|
|
3220
4974
|
id: string;
|
|
3221
|
-
visibility:
|
|
3222
|
-
selectedIds:
|
|
4975
|
+
visibility: "hidden" | "visible";
|
|
4976
|
+
selectedIds: string[] | "all";
|
|
3223
4977
|
unselectedIds: string[];
|
|
3224
4978
|
cursorId: string;
|
|
3225
4979
|
columnCount: number;
|
|
4980
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4981
|
+
cursorIndexRef: {
|
|
4982
|
+
readonly current: number;
|
|
4983
|
+
};
|
|
3226
4984
|
UNSTABLE_virtual: {
|
|
3227
4985
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3228
4986
|
totalSize: number;
|
|
@@ -3232,7 +4990,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3232
4990
|
};
|
|
3233
4991
|
UNSTABLE_defaultItemHeight: number;
|
|
3234
4992
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3235
|
-
orientation:
|
|
4993
|
+
orientation: "horizontal" | "vertical";
|
|
3236
4994
|
indexRef: React.MutableRefObject<number>;
|
|
3237
4995
|
nonInteractiveIds: string[];
|
|
3238
4996
|
isVirtualized: boolean;
|
|
@@ -3246,11 +5004,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3246
5004
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3247
5005
|
placement: import("@popperjs/core").Placement;
|
|
3248
5006
|
id: string;
|
|
3249
|
-
visibility:
|
|
3250
|
-
selectedIds:
|
|
5007
|
+
visibility: "hidden" | "visible";
|
|
5008
|
+
selectedIds: string[] | "all";
|
|
3251
5009
|
unselectedIds: string[];
|
|
3252
5010
|
cursorId: string;
|
|
3253
5011
|
columnCount: number;
|
|
5012
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5013
|
+
cursorIndexRef: {
|
|
5014
|
+
readonly current: number;
|
|
5015
|
+
};
|
|
3254
5016
|
UNSTABLE_virtual: {
|
|
3255
5017
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3256
5018
|
totalSize: number;
|
|
@@ -3260,7 +5022,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3260
5022
|
};
|
|
3261
5023
|
UNSTABLE_defaultItemHeight: number;
|
|
3262
5024
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3263
|
-
orientation:
|
|
5025
|
+
orientation: "horizontal" | "vertical";
|
|
3264
5026
|
indexRef: React.MutableRefObject<number>;
|
|
3265
5027
|
nonInteractiveIds: string[];
|
|
3266
5028
|
isVirtualized: boolean;
|
|
@@ -3274,11 +5036,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3274
5036
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3275
5037
|
placement: import("@popperjs/core").Placement;
|
|
3276
5038
|
id: string;
|
|
3277
|
-
visibility:
|
|
3278
|
-
selectedIds:
|
|
5039
|
+
visibility: "hidden" | "visible";
|
|
5040
|
+
selectedIds: string[] | "all";
|
|
3279
5041
|
unselectedIds: string[];
|
|
3280
5042
|
cursorId: string;
|
|
3281
5043
|
columnCount: number;
|
|
5044
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5045
|
+
cursorIndexRef: {
|
|
5046
|
+
readonly current: number;
|
|
5047
|
+
};
|
|
3282
5048
|
UNSTABLE_virtual: {
|
|
3283
5049
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3284
5050
|
totalSize: number;
|
|
@@ -3288,16 +5054,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3288
5054
|
};
|
|
3289
5055
|
UNSTABLE_defaultItemHeight: number;
|
|
3290
5056
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3291
|
-
orientation:
|
|
5057
|
+
orientation: "horizontal" | "vertical";
|
|
3292
5058
|
indexRef: React.MutableRefObject<number>;
|
|
3293
5059
|
nonInteractiveIds: string[];
|
|
3294
5060
|
isVirtualized: boolean;
|
|
3295
5061
|
items: import("../..").Item<any>[];
|
|
3296
5062
|
mode: "multiple" | "single";
|
|
3297
5063
|
}) => boolean) | undefined;
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
textValue: string;
|
|
5064
|
+
shouldGoTo?: ((data: {
|
|
5065
|
+
id: string;
|
|
3301
5066
|
}, state: {
|
|
3302
5067
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3303
5068
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3305,11 +5070,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3305
5070
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3306
5071
|
placement: import("@popperjs/core").Placement;
|
|
3307
5072
|
id: string;
|
|
3308
|
-
visibility:
|
|
3309
|
-
selectedIds:
|
|
5073
|
+
visibility: "hidden" | "visible";
|
|
5074
|
+
selectedIds: string[] | "all";
|
|
3310
5075
|
unselectedIds: string[];
|
|
3311
5076
|
cursorId: string;
|
|
3312
5077
|
columnCount: number;
|
|
5078
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5079
|
+
cursorIndexRef: {
|
|
5080
|
+
readonly current: number;
|
|
5081
|
+
};
|
|
3313
5082
|
UNSTABLE_virtual: {
|
|
3314
5083
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3315
5084
|
totalSize: number;
|
|
@@ -3319,27 +5088,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3319
5088
|
};
|
|
3320
5089
|
UNSTABLE_defaultItemHeight: number;
|
|
3321
5090
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3322
|
-
orientation:
|
|
5091
|
+
orientation: "horizontal" | "vertical";
|
|
3323
5092
|
indexRef: React.MutableRefObject<number>;
|
|
3324
5093
|
nonInteractiveIds: string[];
|
|
3325
5094
|
isVirtualized: boolean;
|
|
3326
5095
|
items: import("../..").Item<any>[];
|
|
3327
5096
|
mode: "multiple" | "single";
|
|
3328
5097
|
}) => boolean) | undefined;
|
|
3329
|
-
|
|
3330
|
-
id: string;
|
|
3331
|
-
}, state: {
|
|
5098
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
3332
5099
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3333
5100
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3334
5101
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3335
5102
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3336
5103
|
placement: import("@popperjs/core").Placement;
|
|
3337
5104
|
id: string;
|
|
3338
|
-
visibility:
|
|
3339
|
-
selectedIds:
|
|
5105
|
+
visibility: "hidden" | "visible";
|
|
5106
|
+
selectedIds: string[] | "all";
|
|
3340
5107
|
unselectedIds: string[];
|
|
3341
5108
|
cursorId: string;
|
|
3342
5109
|
columnCount: number;
|
|
5110
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5111
|
+
cursorIndexRef: {
|
|
5112
|
+
readonly current: number;
|
|
5113
|
+
};
|
|
3343
5114
|
UNSTABLE_virtual: {
|
|
3344
5115
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3345
5116
|
totalSize: number;
|
|
@@ -3349,25 +5120,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3349
5120
|
};
|
|
3350
5121
|
UNSTABLE_defaultItemHeight: number;
|
|
3351
5122
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3352
|
-
orientation:
|
|
5123
|
+
orientation: "horizontal" | "vertical";
|
|
3353
5124
|
indexRef: React.MutableRefObject<number>;
|
|
3354
5125
|
nonInteractiveIds: string[];
|
|
3355
5126
|
isVirtualized: boolean;
|
|
3356
5127
|
items: import("../..").Item<any>[];
|
|
3357
5128
|
mode: "multiple" | "single";
|
|
3358
5129
|
}) => boolean) | undefined;
|
|
3359
|
-
|
|
5130
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
3360
5131
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3361
5132
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3362
5133
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3363
5134
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3364
5135
|
placement: import("@popperjs/core").Placement;
|
|
3365
5136
|
id: string;
|
|
3366
|
-
visibility:
|
|
3367
|
-
selectedIds:
|
|
5137
|
+
visibility: "hidden" | "visible";
|
|
5138
|
+
selectedIds: string[] | "all";
|
|
3368
5139
|
unselectedIds: string[];
|
|
3369
5140
|
cursorId: string;
|
|
3370
5141
|
columnCount: number;
|
|
5142
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5143
|
+
cursorIndexRef: {
|
|
5144
|
+
readonly current: number;
|
|
5145
|
+
};
|
|
3371
5146
|
UNSTABLE_virtual: {
|
|
3372
5147
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3373
5148
|
totalSize: number;
|
|
@@ -3377,25 +5152,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3377
5152
|
};
|
|
3378
5153
|
UNSTABLE_defaultItemHeight: number;
|
|
3379
5154
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3380
|
-
orientation:
|
|
5155
|
+
orientation: "horizontal" | "vertical";
|
|
3381
5156
|
indexRef: React.MutableRefObject<number>;
|
|
3382
5157
|
nonInteractiveIds: string[];
|
|
3383
5158
|
isVirtualized: boolean;
|
|
3384
5159
|
items: import("../..").Item<any>[];
|
|
3385
5160
|
mode: "multiple" | "single";
|
|
3386
5161
|
}) => boolean) | undefined;
|
|
3387
|
-
|
|
5162
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
3388
5163
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3389
5164
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3390
5165
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3391
5166
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3392
5167
|
placement: import("@popperjs/core").Placement;
|
|
3393
5168
|
id: string;
|
|
3394
|
-
visibility:
|
|
3395
|
-
selectedIds:
|
|
5169
|
+
visibility: "hidden" | "visible";
|
|
5170
|
+
selectedIds: string[] | "all";
|
|
3396
5171
|
unselectedIds: string[];
|
|
3397
5172
|
cursorId: string;
|
|
3398
5173
|
columnCount: number;
|
|
5174
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5175
|
+
cursorIndexRef: {
|
|
5176
|
+
readonly current: number;
|
|
5177
|
+
};
|
|
3399
5178
|
UNSTABLE_virtual: {
|
|
3400
5179
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3401
5180
|
totalSize: number;
|
|
@@ -3405,25 +5184,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3405
5184
|
};
|
|
3406
5185
|
UNSTABLE_defaultItemHeight: number;
|
|
3407
5186
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3408
|
-
orientation:
|
|
5187
|
+
orientation: "horizontal" | "vertical";
|
|
3409
5188
|
indexRef: React.MutableRefObject<number>;
|
|
3410
5189
|
nonInteractiveIds: string[];
|
|
3411
5190
|
isVirtualized: boolean;
|
|
3412
5191
|
items: import("../..").Item<any>[];
|
|
3413
5192
|
mode: "multiple" | "single";
|
|
3414
5193
|
}) => boolean) | undefined;
|
|
3415
|
-
|
|
5194
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
3416
5195
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3417
5196
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3418
5197
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3419
5198
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3420
5199
|
placement: import("@popperjs/core").Placement;
|
|
3421
5200
|
id: string;
|
|
3422
|
-
visibility:
|
|
3423
|
-
selectedIds:
|
|
5201
|
+
visibility: "hidden" | "visible";
|
|
5202
|
+
selectedIds: string[] | "all";
|
|
3424
5203
|
unselectedIds: string[];
|
|
3425
5204
|
cursorId: string;
|
|
3426
5205
|
columnCount: number;
|
|
5206
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5207
|
+
cursorIndexRef: {
|
|
5208
|
+
readonly current: number;
|
|
5209
|
+
};
|
|
3427
5210
|
UNSTABLE_virtual: {
|
|
3428
5211
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3429
5212
|
totalSize: number;
|
|
@@ -3433,25 +5216,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3433
5216
|
};
|
|
3434
5217
|
UNSTABLE_defaultItemHeight: number;
|
|
3435
5218
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3436
|
-
orientation:
|
|
5219
|
+
orientation: "horizontal" | "vertical";
|
|
3437
5220
|
indexRef: React.MutableRefObject<number>;
|
|
3438
5221
|
nonInteractiveIds: string[];
|
|
3439
5222
|
isVirtualized: boolean;
|
|
3440
5223
|
items: import("../..").Item<any>[];
|
|
3441
5224
|
mode: "multiple" | "single";
|
|
3442
5225
|
}) => boolean) | undefined;
|
|
3443
|
-
|
|
5226
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
3444
5227
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3445
5228
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3446
5229
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3447
5230
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3448
5231
|
placement: import("@popperjs/core").Placement;
|
|
3449
5232
|
id: string;
|
|
3450
|
-
visibility:
|
|
3451
|
-
selectedIds:
|
|
5233
|
+
visibility: "hidden" | "visible";
|
|
5234
|
+
selectedIds: string[] | "all";
|
|
3452
5235
|
unselectedIds: string[];
|
|
3453
5236
|
cursorId: string;
|
|
3454
5237
|
columnCount: number;
|
|
5238
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5239
|
+
cursorIndexRef: {
|
|
5240
|
+
readonly current: number;
|
|
5241
|
+
};
|
|
3455
5242
|
UNSTABLE_virtual: {
|
|
3456
5243
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3457
5244
|
totalSize: number;
|
|
@@ -3461,25 +5248,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3461
5248
|
};
|
|
3462
5249
|
UNSTABLE_defaultItemHeight: number;
|
|
3463
5250
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3464
|
-
orientation:
|
|
5251
|
+
orientation: "horizontal" | "vertical";
|
|
3465
5252
|
indexRef: React.MutableRefObject<number>;
|
|
3466
5253
|
nonInteractiveIds: string[];
|
|
3467
5254
|
isVirtualized: boolean;
|
|
3468
5255
|
items: import("../..").Item<any>[];
|
|
3469
5256
|
mode: "multiple" | "single";
|
|
3470
5257
|
}) => boolean) | undefined;
|
|
3471
|
-
|
|
5258
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
3472
5259
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3473
5260
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3474
5261
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3475
5262
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3476
5263
|
placement: import("@popperjs/core").Placement;
|
|
3477
5264
|
id: string;
|
|
3478
|
-
visibility:
|
|
3479
|
-
selectedIds:
|
|
5265
|
+
visibility: "hidden" | "visible";
|
|
5266
|
+
selectedIds: string[] | "all";
|
|
3480
5267
|
unselectedIds: string[];
|
|
3481
5268
|
cursorId: string;
|
|
3482
5269
|
columnCount: number;
|
|
5270
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5271
|
+
cursorIndexRef: {
|
|
5272
|
+
readonly current: number;
|
|
5273
|
+
};
|
|
3483
5274
|
UNSTABLE_virtual: {
|
|
3484
5275
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3485
5276
|
totalSize: number;
|
|
@@ -3489,25 +5280,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3489
5280
|
};
|
|
3490
5281
|
UNSTABLE_defaultItemHeight: number;
|
|
3491
5282
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3492
|
-
orientation:
|
|
5283
|
+
orientation: "horizontal" | "vertical";
|
|
3493
5284
|
indexRef: React.MutableRefObject<number>;
|
|
3494
5285
|
nonInteractiveIds: string[];
|
|
3495
5286
|
isVirtualized: boolean;
|
|
3496
5287
|
items: import("../..").Item<any>[];
|
|
3497
5288
|
mode: "multiple" | "single";
|
|
3498
5289
|
}) => boolean) | undefined;
|
|
3499
|
-
|
|
5290
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
3500
5291
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3501
5292
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3502
5293
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3503
5294
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3504
5295
|
placement: import("@popperjs/core").Placement;
|
|
3505
5296
|
id: string;
|
|
3506
|
-
visibility:
|
|
3507
|
-
selectedIds:
|
|
5297
|
+
visibility: "hidden" | "visible";
|
|
5298
|
+
selectedIds: string[] | "all";
|
|
3508
5299
|
unselectedIds: string[];
|
|
3509
5300
|
cursorId: string;
|
|
3510
5301
|
columnCount: number;
|
|
5302
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5303
|
+
cursorIndexRef: {
|
|
5304
|
+
readonly current: number;
|
|
5305
|
+
};
|
|
3511
5306
|
UNSTABLE_virtual: {
|
|
3512
5307
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3513
5308
|
totalSize: number;
|
|
@@ -3517,25 +5312,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3517
5312
|
};
|
|
3518
5313
|
UNSTABLE_defaultItemHeight: number;
|
|
3519
5314
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3520
|
-
orientation:
|
|
5315
|
+
orientation: "horizontal" | "vertical";
|
|
3521
5316
|
indexRef: React.MutableRefObject<number>;
|
|
3522
5317
|
nonInteractiveIds: string[];
|
|
3523
5318
|
isVirtualized: boolean;
|
|
3524
5319
|
items: import("../..").Item<any>[];
|
|
3525
5320
|
mode: "multiple" | "single";
|
|
3526
5321
|
}) => boolean) | undefined;
|
|
3527
|
-
|
|
5322
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
3528
5323
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3529
5324
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3530
5325
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3531
5326
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3532
5327
|
placement: import("@popperjs/core").Placement;
|
|
3533
5328
|
id: string;
|
|
3534
|
-
visibility:
|
|
3535
|
-
selectedIds:
|
|
5329
|
+
visibility: "hidden" | "visible";
|
|
5330
|
+
selectedIds: string[] | "all";
|
|
3536
5331
|
unselectedIds: string[];
|
|
3537
5332
|
cursorId: string;
|
|
3538
5333
|
columnCount: number;
|
|
5334
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5335
|
+
cursorIndexRef: {
|
|
5336
|
+
readonly current: number;
|
|
5337
|
+
};
|
|
3539
5338
|
UNSTABLE_virtual: {
|
|
3540
5339
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3541
5340
|
totalSize: number;
|
|
@@ -3545,25 +5344,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3545
5344
|
};
|
|
3546
5345
|
UNSTABLE_defaultItemHeight: number;
|
|
3547
5346
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3548
|
-
orientation:
|
|
5347
|
+
orientation: "horizontal" | "vertical";
|
|
3549
5348
|
indexRef: React.MutableRefObject<number>;
|
|
3550
5349
|
nonInteractiveIds: string[];
|
|
3551
5350
|
isVirtualized: boolean;
|
|
3552
5351
|
items: import("../..").Item<any>[];
|
|
3553
5352
|
mode: "multiple" | "single";
|
|
3554
5353
|
}) => boolean) | undefined;
|
|
3555
|
-
|
|
5354
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
3556
5355
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3557
5356
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3558
5357
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3559
5358
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3560
5359
|
placement: import("@popperjs/core").Placement;
|
|
3561
5360
|
id: string;
|
|
3562
|
-
visibility:
|
|
3563
|
-
selectedIds:
|
|
5361
|
+
visibility: "hidden" | "visible";
|
|
5362
|
+
selectedIds: string[] | "all";
|
|
3564
5363
|
unselectedIds: string[];
|
|
3565
5364
|
cursorId: string;
|
|
3566
5365
|
columnCount: number;
|
|
5366
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5367
|
+
cursorIndexRef: {
|
|
5368
|
+
readonly current: number;
|
|
5369
|
+
};
|
|
3567
5370
|
UNSTABLE_virtual: {
|
|
3568
5371
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3569
5372
|
totalSize: number;
|
|
@@ -3573,25 +5376,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3573
5376
|
};
|
|
3574
5377
|
UNSTABLE_defaultItemHeight: number;
|
|
3575
5378
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3576
|
-
orientation:
|
|
5379
|
+
orientation: "horizontal" | "vertical";
|
|
3577
5380
|
indexRef: React.MutableRefObject<number>;
|
|
3578
5381
|
nonInteractiveIds: string[];
|
|
3579
5382
|
isVirtualized: boolean;
|
|
3580
5383
|
items: import("../..").Item<any>[];
|
|
3581
5384
|
mode: "multiple" | "single";
|
|
3582
5385
|
}) => boolean) | undefined;
|
|
3583
|
-
|
|
5386
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
3584
5387
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3585
5388
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3586
5389
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3587
5390
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3588
5391
|
placement: import("@popperjs/core").Placement;
|
|
3589
5392
|
id: string;
|
|
3590
|
-
visibility:
|
|
3591
|
-
selectedIds:
|
|
5393
|
+
visibility: "hidden" | "visible";
|
|
5394
|
+
selectedIds: string[] | "all";
|
|
3592
5395
|
unselectedIds: string[];
|
|
3593
5396
|
cursorId: string;
|
|
3594
5397
|
columnCount: number;
|
|
5398
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5399
|
+
cursorIndexRef: {
|
|
5400
|
+
readonly current: number;
|
|
5401
|
+
};
|
|
3595
5402
|
UNSTABLE_virtual: {
|
|
3596
5403
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3597
5404
|
totalSize: number;
|
|
@@ -3601,25 +5408,32 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3601
5408
|
};
|
|
3602
5409
|
UNSTABLE_defaultItemHeight: number;
|
|
3603
5410
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3604
|
-
orientation:
|
|
5411
|
+
orientation: "horizontal" | "vertical";
|
|
3605
5412
|
indexRef: React.MutableRefObject<number>;
|
|
3606
5413
|
nonInteractiveIds: string[];
|
|
3607
5414
|
isVirtualized: boolean;
|
|
3608
5415
|
items: import("../..").Item<any>[];
|
|
3609
5416
|
mode: "multiple" | "single";
|
|
3610
5417
|
}) => boolean) | undefined;
|
|
3611
|
-
|
|
5418
|
+
shouldRegisterItem?: ((data: {
|
|
5419
|
+
item: any;
|
|
5420
|
+
textValue: string;
|
|
5421
|
+
}, state: {
|
|
3612
5422
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3613
5423
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3614
5424
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3615
5425
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3616
5426
|
placement: import("@popperjs/core").Placement;
|
|
3617
5427
|
id: string;
|
|
3618
|
-
visibility:
|
|
3619
|
-
selectedIds:
|
|
5428
|
+
visibility: "hidden" | "visible";
|
|
5429
|
+
selectedIds: string[] | "all";
|
|
3620
5430
|
unselectedIds: string[];
|
|
3621
5431
|
cursorId: string;
|
|
3622
5432
|
columnCount: number;
|
|
5433
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5434
|
+
cursorIndexRef: {
|
|
5435
|
+
readonly current: number;
|
|
5436
|
+
};
|
|
3623
5437
|
UNSTABLE_virtual: {
|
|
3624
5438
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3625
5439
|
totalSize: number;
|
|
@@ -3629,7 +5443,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3629
5443
|
};
|
|
3630
5444
|
UNSTABLE_defaultItemHeight: number;
|
|
3631
5445
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3632
|
-
orientation:
|
|
5446
|
+
orientation: "horizontal" | "vertical";
|
|
3633
5447
|
indexRef: React.MutableRefObject<number>;
|
|
3634
5448
|
nonInteractiveIds: string[];
|
|
3635
5449
|
isVirtualized: boolean;
|
|
@@ -3645,11 +5459,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3645
5459
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3646
5460
|
placement: import("@popperjs/core").Placement;
|
|
3647
5461
|
id: string;
|
|
3648
|
-
visibility:
|
|
3649
|
-
selectedIds:
|
|
5462
|
+
visibility: "hidden" | "visible";
|
|
5463
|
+
selectedIds: string[] | "all";
|
|
3650
5464
|
unselectedIds: string[];
|
|
3651
5465
|
cursorId: string;
|
|
3652
5466
|
columnCount: number;
|
|
5467
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5468
|
+
cursorIndexRef: {
|
|
5469
|
+
readonly current: number;
|
|
5470
|
+
};
|
|
3653
5471
|
UNSTABLE_virtual: {
|
|
3654
5472
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3655
5473
|
totalSize: number;
|
|
@@ -3659,7 +5477,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3659
5477
|
};
|
|
3660
5478
|
UNSTABLE_defaultItemHeight: number;
|
|
3661
5479
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3662
|
-
orientation:
|
|
5480
|
+
orientation: "horizontal" | "vertical";
|
|
3663
5481
|
indexRef: React.MutableRefObject<number>;
|
|
3664
5482
|
nonInteractiveIds: string[];
|
|
3665
5483
|
isVirtualized: boolean;
|
|
@@ -3675,11 +5493,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3675
5493
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3676
5494
|
placement: import("@popperjs/core").Placement;
|
|
3677
5495
|
id: string;
|
|
3678
|
-
visibility:
|
|
3679
|
-
selectedIds:
|
|
5496
|
+
visibility: "hidden" | "visible";
|
|
5497
|
+
selectedIds: string[] | "all";
|
|
3680
5498
|
unselectedIds: string[];
|
|
3681
5499
|
cursorId: string;
|
|
3682
5500
|
columnCount: number;
|
|
5501
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5502
|
+
cursorIndexRef: {
|
|
5503
|
+
readonly current: number;
|
|
5504
|
+
};
|
|
3683
5505
|
UNSTABLE_virtual: {
|
|
3684
5506
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3685
5507
|
totalSize: number;
|
|
@@ -3689,7 +5511,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3689
5511
|
};
|
|
3690
5512
|
UNSTABLE_defaultItemHeight: number;
|
|
3691
5513
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3692
|
-
orientation:
|
|
5514
|
+
orientation: "horizontal" | "vertical";
|
|
3693
5515
|
indexRef: React.MutableRefObject<number>;
|
|
3694
5516
|
nonInteractiveIds: string[];
|
|
3695
5517
|
isVirtualized: boolean;
|
|
@@ -3704,11 +5526,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3704
5526
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3705
5527
|
placement: import("@popperjs/core").Placement;
|
|
3706
5528
|
id: string;
|
|
3707
|
-
visibility:
|
|
3708
|
-
selectedIds:
|
|
5529
|
+
visibility: "hidden" | "visible";
|
|
5530
|
+
selectedIds: string[] | "all";
|
|
3709
5531
|
unselectedIds: string[];
|
|
3710
5532
|
cursorId: string;
|
|
3711
5533
|
columnCount: number;
|
|
5534
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5535
|
+
cursorIndexRef: {
|
|
5536
|
+
readonly current: number;
|
|
5537
|
+
};
|
|
3712
5538
|
UNSTABLE_virtual: {
|
|
3713
5539
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3714
5540
|
totalSize: number;
|
|
@@ -3718,7 +5544,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3718
5544
|
};
|
|
3719
5545
|
UNSTABLE_defaultItemHeight: number;
|
|
3720
5546
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3721
|
-
orientation:
|
|
5547
|
+
orientation: "horizontal" | "vertical";
|
|
3722
5548
|
indexRef: React.MutableRefObject<number>;
|
|
3723
5549
|
nonInteractiveIds: string[];
|
|
3724
5550
|
isVirtualized: boolean;
|
|
@@ -3736,10 +5562,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3736
5562
|
}): void;
|
|
3737
5563
|
selectAll(): void;
|
|
3738
5564
|
unselectAll(): void;
|
|
3739
|
-
registerItem(data: {
|
|
3740
|
-
item: any;
|
|
3741
|
-
textValue: string;
|
|
3742
|
-
}): void;
|
|
3743
5565
|
goTo(data: {
|
|
3744
5566
|
id: string;
|
|
3745
5567
|
}): void;
|
|
@@ -3753,6 +5575,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3753
5575
|
goToLastOfRow(): void;
|
|
3754
5576
|
goToNextPage(): void;
|
|
3755
5577
|
goToPreviousPage(): void;
|
|
5578
|
+
registerItem(data: {
|
|
5579
|
+
item: any;
|
|
5580
|
+
textValue: string;
|
|
5581
|
+
}): void;
|
|
3756
5582
|
unregisterItem(data: {
|
|
3757
5583
|
id: string;
|
|
3758
5584
|
}): void;
|
|
@@ -3764,7 +5590,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3764
5590
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3765
5591
|
getId: (item: any) => string;
|
|
3766
5592
|
}> & {
|
|
3767
|
-
|
|
5593
|
+
Target: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3768
5594
|
state: {
|
|
3769
5595
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3770
5596
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3772,11 +5598,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3772
5598
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3773
5599
|
placement: import("@popperjs/core").Placement;
|
|
3774
5600
|
id: string;
|
|
3775
|
-
visibility:
|
|
3776
|
-
selectedIds:
|
|
5601
|
+
visibility: "hidden" | "visible";
|
|
5602
|
+
selectedIds: string[] | "all";
|
|
3777
5603
|
unselectedIds: string[];
|
|
3778
5604
|
cursorId: string;
|
|
3779
5605
|
columnCount: number;
|
|
5606
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5607
|
+
cursorIndexRef: {
|
|
5608
|
+
readonly current: number;
|
|
5609
|
+
};
|
|
3780
5610
|
UNSTABLE_virtual: {
|
|
3781
5611
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3782
5612
|
totalSize: number;
|
|
@@ -3786,7 +5616,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3786
5616
|
};
|
|
3787
5617
|
UNSTABLE_defaultItemHeight: number;
|
|
3788
5618
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3789
|
-
orientation:
|
|
5619
|
+
orientation: "horizontal" | "vertical";
|
|
3790
5620
|
indexRef: React.MutableRefObject<number>;
|
|
3791
5621
|
nonInteractiveIds: string[];
|
|
3792
5622
|
isVirtualized: boolean;
|
|
@@ -3804,10 +5634,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3804
5634
|
}): void;
|
|
3805
5635
|
selectAll(): void;
|
|
3806
5636
|
unselectAll(): void;
|
|
3807
|
-
registerItem(data: {
|
|
3808
|
-
item: any;
|
|
3809
|
-
textValue: string;
|
|
3810
|
-
}): void;
|
|
3811
5637
|
goTo(data: {
|
|
3812
5638
|
id: string;
|
|
3813
5639
|
}): void;
|
|
@@ -3821,6 +5647,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3821
5647
|
goToLastOfRow(): void;
|
|
3822
5648
|
goToNextPage(): void;
|
|
3823
5649
|
goToPreviousPage(): void;
|
|
5650
|
+
registerItem(data: {
|
|
5651
|
+
item: any;
|
|
5652
|
+
textValue: string;
|
|
5653
|
+
}): void;
|
|
3824
5654
|
unregisterItem(data: {
|
|
3825
5655
|
id: string;
|
|
3826
5656
|
}): void;
|
|
@@ -3832,7 +5662,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3832
5662
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3833
5663
|
getId: (item: any) => string;
|
|
3834
5664
|
}>;
|
|
3835
|
-
|
|
5665
|
+
Card: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuCard").MenuCardProps, {
|
|
3836
5666
|
state: {
|
|
3837
5667
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3838
5668
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3840,11 +5670,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3840
5670
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3841
5671
|
placement: import("@popperjs/core").Placement;
|
|
3842
5672
|
id: string;
|
|
3843
|
-
visibility:
|
|
3844
|
-
selectedIds:
|
|
5673
|
+
visibility: "hidden" | "visible";
|
|
5674
|
+
selectedIds: string[] | "all";
|
|
3845
5675
|
unselectedIds: string[];
|
|
3846
5676
|
cursorId: string;
|
|
3847
5677
|
columnCount: number;
|
|
5678
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5679
|
+
cursorIndexRef: {
|
|
5680
|
+
readonly current: number;
|
|
5681
|
+
};
|
|
3848
5682
|
UNSTABLE_virtual: {
|
|
3849
5683
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3850
5684
|
totalSize: number;
|
|
@@ -3854,7 +5688,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3854
5688
|
};
|
|
3855
5689
|
UNSTABLE_defaultItemHeight: number;
|
|
3856
5690
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3857
|
-
orientation:
|
|
5691
|
+
orientation: "horizontal" | "vertical";
|
|
3858
5692
|
indexRef: React.MutableRefObject<number>;
|
|
3859
5693
|
nonInteractiveIds: string[];
|
|
3860
5694
|
isVirtualized: boolean;
|
|
@@ -3872,10 +5706,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3872
5706
|
}): void;
|
|
3873
5707
|
selectAll(): void;
|
|
3874
5708
|
unselectAll(): void;
|
|
3875
|
-
registerItem(data: {
|
|
3876
|
-
item: any;
|
|
3877
|
-
textValue: string;
|
|
3878
|
-
}): void;
|
|
3879
5709
|
goTo(data: {
|
|
3880
5710
|
id: string;
|
|
3881
5711
|
}): void;
|
|
@@ -3889,6 +5719,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3889
5719
|
goToLastOfRow(): void;
|
|
3890
5720
|
goToNextPage(): void;
|
|
3891
5721
|
goToPreviousPage(): void;
|
|
5722
|
+
registerItem(data: {
|
|
5723
|
+
item: any;
|
|
5724
|
+
textValue: string;
|
|
5725
|
+
}): void;
|
|
3892
5726
|
unregisterItem(data: {
|
|
3893
5727
|
id: string;
|
|
3894
5728
|
}): void;
|
|
@@ -3900,7 +5734,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3900
5734
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3901
5735
|
getId: (item: any) => string;
|
|
3902
5736
|
}>;
|
|
3903
|
-
|
|
5737
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuList").MenuListProps<any>, {
|
|
3904
5738
|
state: {
|
|
3905
5739
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3906
5740
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3908,11 +5742,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3908
5742
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3909
5743
|
placement: import("@popperjs/core").Placement;
|
|
3910
5744
|
id: string;
|
|
3911
|
-
visibility:
|
|
3912
|
-
selectedIds:
|
|
5745
|
+
visibility: "hidden" | "visible";
|
|
5746
|
+
selectedIds: string[] | "all";
|
|
3913
5747
|
unselectedIds: string[];
|
|
3914
5748
|
cursorId: string;
|
|
3915
5749
|
columnCount: number;
|
|
5750
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5751
|
+
cursorIndexRef: {
|
|
5752
|
+
readonly current: number;
|
|
5753
|
+
};
|
|
3916
5754
|
UNSTABLE_virtual: {
|
|
3917
5755
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3918
5756
|
totalSize: number;
|
|
@@ -3922,7 +5760,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3922
5760
|
};
|
|
3923
5761
|
UNSTABLE_defaultItemHeight: number;
|
|
3924
5762
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3925
|
-
orientation:
|
|
5763
|
+
orientation: "horizontal" | "vertical";
|
|
3926
5764
|
indexRef: React.MutableRefObject<number>;
|
|
3927
5765
|
nonInteractiveIds: string[];
|
|
3928
5766
|
isVirtualized: boolean;
|
|
@@ -3940,10 +5778,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3940
5778
|
}): void;
|
|
3941
5779
|
selectAll(): void;
|
|
3942
5780
|
unselectAll(): void;
|
|
3943
|
-
registerItem(data: {
|
|
3944
|
-
item: any;
|
|
3945
|
-
textValue: string;
|
|
3946
|
-
}): void;
|
|
3947
5781
|
goTo(data: {
|
|
3948
5782
|
id: string;
|
|
3949
5783
|
}): void;
|
|
@@ -3957,6 +5791,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3957
5791
|
goToLastOfRow(): void;
|
|
3958
5792
|
goToNextPage(): void;
|
|
3959
5793
|
goToPreviousPage(): void;
|
|
5794
|
+
registerItem(data: {
|
|
5795
|
+
item: any;
|
|
5796
|
+
textValue: string;
|
|
5797
|
+
}): void;
|
|
3960
5798
|
unregisterItem(data: {
|
|
3961
5799
|
id: string;
|
|
3962
5800
|
}): void;
|
|
@@ -3967,15 +5805,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3967
5805
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
3968
5806
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3969
5807
|
getId: (item: any) => string;
|
|
3970
|
-
}
|
|
3971
|
-
|
|
3972
|
-
Text: import("@emotion/styled").StyledComponent<{
|
|
3973
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
3974
|
-
as?: "symbol" | "object" | "s" | "big" | "link" | "small" | "sub" | "sup" | "circle" | "stop" | "path" | "style" | "map" | "filter" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "main" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "samp" | "slot" | "script" | "section" | "select" | "source" | "span" | "strong" | "summary" | "table" | "template" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
|
3975
|
-
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3976
|
-
};
|
|
3977
|
-
Divider: import("../../common").ElementComponent<"hr", unknown>;
|
|
3978
|
-
Target: import("../../common").ElementComponentM<import("../../common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
5808
|
+
}>;
|
|
5809
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("../../menu/lib/MenuItem").MenuItemProps, {
|
|
3979
5810
|
state: {
|
|
3980
5811
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3981
5812
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3983,11 +5814,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3983
5814
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3984
5815
|
placement: import("@popperjs/core").Placement;
|
|
3985
5816
|
id: string;
|
|
3986
|
-
visibility:
|
|
3987
|
-
selectedIds:
|
|
5817
|
+
visibility: "hidden" | "visible";
|
|
5818
|
+
selectedIds: string[] | "all";
|
|
3988
5819
|
unselectedIds: string[];
|
|
3989
5820
|
cursorId: string;
|
|
3990
5821
|
columnCount: number;
|
|
5822
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5823
|
+
cursorIndexRef: {
|
|
5824
|
+
readonly current: number;
|
|
5825
|
+
};
|
|
3991
5826
|
UNSTABLE_virtual: {
|
|
3992
5827
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3993
5828
|
totalSize: number;
|
|
@@ -3997,7 +5832,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3997
5832
|
};
|
|
3998
5833
|
UNSTABLE_defaultItemHeight: number;
|
|
3999
5834
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4000
|
-
orientation:
|
|
5835
|
+
orientation: "horizontal" | "vertical";
|
|
4001
5836
|
indexRef: React.MutableRefObject<number>;
|
|
4002
5837
|
nonInteractiveIds: string[];
|
|
4003
5838
|
isVirtualized: boolean;
|
|
@@ -4015,10 +5850,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4015
5850
|
}): void;
|
|
4016
5851
|
selectAll(): void;
|
|
4017
5852
|
unselectAll(): void;
|
|
4018
|
-
registerItem(data: {
|
|
4019
|
-
item: any;
|
|
4020
|
-
textValue: string;
|
|
4021
|
-
}): void;
|
|
4022
5853
|
goTo(data: {
|
|
4023
5854
|
id: string;
|
|
4024
5855
|
}): void;
|
|
@@ -4032,6 +5863,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4032
5863
|
goToLastOfRow(): void;
|
|
4033
5864
|
goToNextPage(): void;
|
|
4034
5865
|
goToPreviousPage(): void;
|
|
5866
|
+
registerItem(data: {
|
|
5867
|
+
item: any;
|
|
5868
|
+
textValue: string;
|
|
5869
|
+
}): void;
|
|
4035
5870
|
unregisterItem(data: {
|
|
4036
5871
|
id: string;
|
|
4037
5872
|
}): void;
|
|
@@ -4042,8 +5877,19 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4042
5877
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
4043
5878
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
4044
5879
|
getId: (item: any) => string;
|
|
4045
|
-
}
|
|
4046
|
-
|
|
5880
|
+
}> & {
|
|
5881
|
+
Icon: import("@emotion/styled").StyledComponent<import("../..").SystemIconProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "as" | keyof import("../..").SystemIconProps> & {
|
|
5882
|
+
ref?: React.Ref<HTMLSpanElement> | undefined;
|
|
5883
|
+
} & {
|
|
5884
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
5885
|
+
}, {}, {}>;
|
|
5886
|
+
Text: import("@emotion/styled").StyledComponent<{
|
|
5887
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
5888
|
+
as?: React.ElementType<any> | undefined;
|
|
5889
|
+
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
5890
|
+
};
|
|
5891
|
+
Divider: import("@workday/canvas-kit-react/common").ElementComponent<"hr", unknown>;
|
|
5892
|
+
TargetContext: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
4047
5893
|
state: {
|
|
4048
5894
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4049
5895
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -4051,11 +5897,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4051
5897
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4052
5898
|
placement: import("@popperjs/core").Placement;
|
|
4053
5899
|
id: string;
|
|
4054
|
-
visibility:
|
|
4055
|
-
selectedIds:
|
|
5900
|
+
visibility: "hidden" | "visible";
|
|
5901
|
+
selectedIds: string[] | "all";
|
|
4056
5902
|
unselectedIds: string[];
|
|
4057
5903
|
cursorId: string;
|
|
4058
5904
|
columnCount: number;
|
|
5905
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5906
|
+
cursorIndexRef: {
|
|
5907
|
+
readonly current: number;
|
|
5908
|
+
};
|
|
4059
5909
|
UNSTABLE_virtual: {
|
|
4060
5910
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4061
5911
|
totalSize: number;
|
|
@@ -4065,7 +5915,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4065
5915
|
};
|
|
4066
5916
|
UNSTABLE_defaultItemHeight: number;
|
|
4067
5917
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4068
|
-
orientation:
|
|
5918
|
+
orientation: "horizontal" | "vertical";
|
|
4069
5919
|
indexRef: React.MutableRefObject<number>;
|
|
4070
5920
|
nonInteractiveIds: string[];
|
|
4071
5921
|
isVirtualized: boolean;
|
|
@@ -4083,10 +5933,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4083
5933
|
}): void;
|
|
4084
5934
|
selectAll(): void;
|
|
4085
5935
|
unselectAll(): void;
|
|
4086
|
-
registerItem(data: {
|
|
4087
|
-
item: any;
|
|
4088
|
-
textValue: string;
|
|
4089
|
-
}): void;
|
|
4090
5936
|
goTo(data: {
|
|
4091
5937
|
id: string;
|
|
4092
5938
|
}): void;
|
|
@@ -4100,6 +5946,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4100
5946
|
goToLastOfRow(): void;
|
|
4101
5947
|
goToNextPage(): void;
|
|
4102
5948
|
goToPreviousPage(): void;
|
|
5949
|
+
registerItem(data: {
|
|
5950
|
+
item: any;
|
|
5951
|
+
textValue: string;
|
|
5952
|
+
}): void;
|
|
4103
5953
|
unregisterItem(data: {
|
|
4104
5954
|
id: string;
|
|
4105
5955
|
}): void;
|
|
@@ -4111,7 +5961,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4111
5961
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
4112
5962
|
getId: (item: any) => string;
|
|
4113
5963
|
}>;
|
|
4114
|
-
Popper: import("
|
|
5964
|
+
Popper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuPopper").MenuPopperProps, {
|
|
4115
5965
|
state: {
|
|
4116
5966
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4117
5967
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -4119,11 +5969,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4119
5969
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4120
5970
|
placement: import("@popperjs/core").Placement;
|
|
4121
5971
|
id: string;
|
|
4122
|
-
visibility:
|
|
4123
|
-
selectedIds:
|
|
5972
|
+
visibility: "hidden" | "visible";
|
|
5973
|
+
selectedIds: string[] | "all";
|
|
4124
5974
|
unselectedIds: string[];
|
|
4125
5975
|
cursorId: string;
|
|
4126
5976
|
columnCount: number;
|
|
5977
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5978
|
+
cursorIndexRef: {
|
|
5979
|
+
readonly current: number;
|
|
5980
|
+
};
|
|
4127
5981
|
UNSTABLE_virtual: {
|
|
4128
5982
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4129
5983
|
totalSize: number;
|
|
@@ -4133,7 +5987,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4133
5987
|
};
|
|
4134
5988
|
UNSTABLE_defaultItemHeight: number;
|
|
4135
5989
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4136
|
-
orientation:
|
|
5990
|
+
orientation: "horizontal" | "vertical";
|
|
4137
5991
|
indexRef: React.MutableRefObject<number>;
|
|
4138
5992
|
nonInteractiveIds: string[];
|
|
4139
5993
|
isVirtualized: boolean;
|
|
@@ -4151,10 +6005,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4151
6005
|
}): void;
|
|
4152
6006
|
selectAll(): void;
|
|
4153
6007
|
unselectAll(): void;
|
|
4154
|
-
registerItem(data: {
|
|
4155
|
-
item: any;
|
|
4156
|
-
textValue: string;
|
|
4157
|
-
}): void;
|
|
4158
6008
|
goTo(data: {
|
|
4159
6009
|
id: string;
|
|
4160
6010
|
}): void;
|
|
@@ -4168,6 +6018,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4168
6018
|
goToLastOfRow(): void;
|
|
4169
6019
|
goToNextPage(): void;
|
|
4170
6020
|
goToPreviousPage(): void;
|
|
6021
|
+
registerItem(data: {
|
|
6022
|
+
item: any;
|
|
6023
|
+
textValue: string;
|
|
6024
|
+
}): void;
|
|
4171
6025
|
unregisterItem(data: {
|
|
4172
6026
|
id: string;
|
|
4173
6027
|
}): void;
|