@workday/canvas-kit-react 8.0.0-alpha.253-next.22 → 8.0.0-alpha.428-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/ActionBarList.tsx +16 -13
- package/action-bar/lib/ActionBarOverflowButton.tsx +2 -2
- package/action-bar/lib/useActionBarModel.tsx +20 -3
- package/banner/lib/Banner.tsx +56 -0
- package/banner/lib/BannerIcon.tsx +0 -1
- package/banner/lib/hooks/index.ts +2 -0
- package/banner/lib/hooks/useThemedPalette.ts +3 -3
- package/breadcrumbs/lib/Breadcrumbs.tsx +77 -56
- package/breadcrumbs/lib/BreadcrumbsCurrentItem.tsx +7 -18
- package/breadcrumbs/lib/BreadcrumbsItem.tsx +3 -3
- package/breadcrumbs/lib/BreadcrumbsList.tsx +1 -2
- package/button/lib/BaseButton.tsx +7 -5
- package/button/lib/DeleteButton.tsx +5 -1
- package/button/lib/ExternalHyperlink.tsx +6 -7
- package/button/lib/Hyperlink.tsx +6 -2
- package/button/lib/PrimaryButton.tsx +9 -5
- package/button/lib/SecondaryButton.tsx +9 -0
- package/button/lib/TertiaryButton.tsx +11 -10
- package/button/lib/parts/ButtonLabelIcon.tsx +2 -9
- package/card/lib/Card.tsx +36 -0
- package/checkbox/lib/Checkbox.tsx +2 -8
- package/collection/index.ts +5 -1
- package/collection/lib/ListBox.tsx +31 -16
- package/collection/lib/keyUtils.ts +88 -0
- package/collection/lib/useBaseListModel.tsx +29 -15
- package/collection/lib/useCursorListModel.tsx +124 -94
- package/collection/lib/useGridModel.ts +4 -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 -113
- 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 +14 -0
- 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/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/lib/EllipsisText.tsx +11 -3
- package/common/lib/styles/focusRing.ts +0 -9
- 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 +2 -0
- 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 +267 -194
- package/common/lib/utils/deepMerge.ts +21 -0
- package/common/lib/utils/dispatchInputEvent.ts +16 -0
- package/common/lib/utils/index.ts +2 -0
- package/common/lib/utils/memoize.ts +23 -0
- package/common/lib/utils/models.ts +11 -7
- package/common/lib/utils/slugify.ts +11 -0
- package/common/lib/utils/useModalityType.ts +18 -4
- package/dialog/lib/Dialog.tsx +66 -0
- package/dialog/lib/DialogPopper.tsx +3 -0
- package/disclosure/lib/useDisclosureModel.tsx +2 -2
- 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 +73 -26
- package/dist/commonjs/action-bar/lib/ActionBarItem.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarItem.js +7 -18
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts +40 -30
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarList.js +13 -37
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts +109 -27
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.js +13 -24
- 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/lib/Avatar.js +52 -74
- package/dist/commonjs/badge/lib/CountBadge.js +23 -43
- package/dist/commonjs/banner/lib/Banner.d.ts +60 -4
- package/dist/commonjs/banner/lib/Banner.d.ts.map +1 -1
- package/dist/commonjs/banner/lib/Banner.js +88 -48
- 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/lib/Breadcrumbs.d.ts +865 -466
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.js +89 -91
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +149 -27
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.js +14 -44
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts +77 -27
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.js +15 -40
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.d.ts +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsLink.js +15 -36
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.d.ts +24 -16
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.js +10 -33
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts +414 -221
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.js +7 -19
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +109 -27
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.js +15 -38
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +369 -161
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.js +38 -37
- package/dist/commonjs/breadcrumbs/lib/hooks/utils/index.js +4 -4
- package/dist/commonjs/button/lib/BaseButton.d.ts +8 -7
- 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 +6 -2
- 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 +10 -6
- 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 +10 -1
- 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 +12 -9
- package/dist/commonjs/button/lib/TertiaryButton.d.ts.map +1 -1
- package/dist/commonjs/button/lib/TertiaryButton.js +33 -49
- 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 +52 -55
- 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 -29
- 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 -28
- package/dist/commonjs/checkbox/lib/Checkbox.d.ts +2 -2
- package/dist/commonjs/checkbox/lib/Checkbox.d.ts.map +1 -1
- package/dist/commonjs/checkbox/lib/Checkbox.js +122 -131
- package/dist/commonjs/collection/index.d.ts +5 -1
- package/dist/commonjs/collection/index.d.ts.map +1 -1
- package/dist/commonjs/collection/index.js +4 -0
- package/dist/commonjs/collection/lib/ListBox.d.ts +353 -125
- 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 +77 -70
- package/dist/commonjs/collection/lib/useCursorListModel.d.ts +563 -93
- package/dist/commonjs/collection/lib/useCursorListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useCursorListModel.js +153 -155
- package/dist/commonjs/collection/lib/useGridModel.d.ts +273 -119
- package/dist/commonjs/collection/lib/useGridModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useGridModel.js +18 -32
- 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 -118
- 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 +14 -0
- package/dist/commonjs/collection/lib/useListRenderItem.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListRenderItem.js +23 -9
- 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/lib/ColorInput.d.ts +1 -1
- package/dist/commonjs/color-picker/lib/ColorInput.d.ts.map +1 -1
- package/dist/commonjs/color-picker/lib/ColorInput.js +45 -75
- package/dist/commonjs/color-picker/lib/ColorPreview.d.ts +1 -1
- package/dist/commonjs/color-picker/lib/ColorPreview.d.ts.map +1 -1
- package/dist/commonjs/color-picker/lib/ColorPreview.js +7 -32
- 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/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 +1 -1
- package/dist/commonjs/common/lib/InputProvider.js +73 -91
- package/dist/commonjs/common/lib/parts/_brand-assets.js +6 -6
- package/dist/commonjs/common/lib/responsive/useResponsiveContainerStyles.js +22 -51
- 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 +2 -0
- 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.js +10 -14
- 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 +140 -86
- package/dist/commonjs/common/lib/utils/components.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/components.js +156 -117
- 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.js +16 -16
- package/dist/commonjs/common/lib/utils/getTranslateFromOrigin.js +2 -2
- package/dist/commonjs/common/lib/utils/index.d.ts +2 -0
- package/dist/commonjs/common/lib/utils/index.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/index.js +2 -0
- package/dist/commonjs/common/lib/utils/isWithinBreakpoint.js +1 -1
- 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 +6 -2
- package/dist/commonjs/common/lib/utils/models.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/models.js +53 -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 +26 -12
- 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/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 +44 -82
- package/dist/commonjs/form-field/lib/Hint.js +13 -45
- package/dist/commonjs/form-field/lib/Label.d.ts +4 -3
- package/dist/commonjs/form-field/lib/Label.d.ts.map +1 -1
- package/dist/commonjs/form-field/lib/Label.js +44 -87
- package/dist/commonjs/icon/lib/AccentIcon.d.ts +4 -3
- package/dist/commonjs/icon/lib/AccentIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/AccentIcon.js +15 -41
- package/dist/commonjs/icon/lib/AppletIcon.d.ts +1 -1
- package/dist/commonjs/icon/lib/AppletIcon.js +16 -40
- package/dist/commonjs/icon/lib/Graphic.d.ts +1 -1
- package/dist/commonjs/icon/lib/Graphic.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Graphic.js +9 -33
- package/dist/commonjs/icon/lib/Icon.d.ts +1 -1
- package/dist/commonjs/icon/lib/Icon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Icon.js +12 -31
- package/dist/commonjs/icon/lib/Svg.d.ts +1 -1
- package/dist/commonjs/icon/lib/Svg.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/Svg.js +11 -34
- package/dist/commonjs/icon/lib/SystemIcon.d.ts +11 -11
- package/dist/commonjs/icon/lib/SystemIcon.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/SystemIcon.js +36 -62
- package/dist/commonjs/icon/lib/SystemIconCircle.d.ts +3 -2
- package/dist/commonjs/icon/lib/SystemIconCircle.d.ts.map +1 -1
- package/dist/commonjs/icon/lib/SystemIconCircle.js +18 -47
- package/dist/commonjs/icon/lib/utils.js +1 -1
- package/dist/commonjs/index.d.ts +1 -0
- package/dist/commonjs/index.d.ts.map +1 -1
- package/dist/commonjs/index.js +1 -0
- package/dist/commonjs/layout/index.d.ts +2 -5
- package/dist/commonjs/layout/index.d.ts.map +1 -1
- package/dist/commonjs/layout/index.js +3 -6
- package/dist/commonjs/layout/lib/Box.d.ts +1 -1
- package/dist/commonjs/layout/lib/Box.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/Box.js +26 -51
- package/dist/commonjs/layout/lib/Flex.d.ts +2 -2
- package/dist/commonjs/layout/lib/Flex.js +8 -31
- package/dist/commonjs/layout/lib/Grid.d.ts +2 -2
- package/dist/commonjs/layout/lib/Grid.js +11 -35
- package/dist/commonjs/layout/lib/utils/background.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/color.d.ts +7 -7
- package/dist/commonjs/layout/lib/utils/border/color.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/index.js +20 -26
- package/dist/commonjs/layout/lib/utils/border/lineStyle.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/radius.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/shorthand.js +1 -1
- package/dist/commonjs/layout/lib/utils/border/width.js +1 -1
- package/dist/commonjs/layout/lib/utils/buildStyleFns.js +40 -43
- package/dist/commonjs/layout/lib/utils/color.js +1 -1
- package/dist/commonjs/layout/lib/utils/depth.js +1 -1
- package/dist/commonjs/layout/lib/utils/flex.js +1 -1
- package/dist/commonjs/layout/lib/utils/flexItem.js +1 -1
- 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.js +1 -1
- package/dist/commonjs/layout/lib/utils/gridItem.js +1 -1
- package/dist/commonjs/layout/lib/utils/layout.d.ts +1 -1
- package/dist/commonjs/layout/lib/utils/layout.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/layout.js +1 -1
- package/dist/commonjs/layout/lib/utils/other.js +1 -1
- package/dist/commonjs/layout/lib/utils/position.d.ts +4 -0
- package/dist/commonjs/layout/lib/utils/position.d.ts.map +1 -1
- package/dist/commonjs/layout/lib/utils/position.js +6 -1
- package/dist/commonjs/layout/lib/utils/space.js +1 -1
- package/dist/commonjs/layout/lib/utils/text.js +1 -1
- package/dist/commonjs/loading-dots/lib/LoadingDots.js +20 -42
- 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 +9 -32
- 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 +86 -95
- 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 +14 -38
- 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 +15 -28
- 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 +13 -24
- 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 -8
- package/dist/commonjs/modal/lib/ModalOverlay.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/ModalOverlay.js +39 -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 +17 -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 +1 -2
- package/dist/commonjs/pagination/lib/Pagination/AdditionalDetails.d.ts.map +1 -1
- package/dist/commonjs/pagination/lib/Pagination/AdditionalDetails.js +19 -36
- 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 -29
- 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.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 +33 -32
- 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 +2 -2
- package/dist/commonjs/popup/lib/PopupCard.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/PopupCard.js +60 -55
- package/dist/commonjs/popup/lib/PopupCloseButton.d.ts +2 -2
- 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 +2 -2
- 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/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 +3 -5
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useCloseOnTargetHidden.js +12 -12
- 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 +33 -22
- 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/lib/Radio.d.ts +1 -1
- package/dist/commonjs/radio/lib/Radio.d.ts.map +1 -1
- package/dist/commonjs/radio/lib/Radio.js +114 -134
- 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 +33 -76
- package/dist/commonjs/segmented-control/lib/SegmentedControl.d.ts +2 -2
- package/dist/commonjs/segmented-control/lib/SegmentedControl.js +7 -30
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.d.ts +1 -1
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.d.ts.map +1 -1
- package/dist/commonjs/segmented-control/lib/SegmentedControlButton.js +40 -61
- package/dist/commonjs/select/lib/Select.d.ts +1 -1
- package/dist/commonjs/select/lib/Select.d.ts.map +1 -1
- package/dist/commonjs/select/lib/Select.js +47 -64
- package/dist/commonjs/select/lib/SelectOption.js +6 -46
- package/dist/commonjs/side-panel/lib/SidePanel.d.ts.map +1 -1
- package/dist/commonjs/side-panel/lib/SidePanel.js +61 -122
- 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/lib/StatusIndicator.js +28 -59
- package/dist/commonjs/switch/lib/Switch.d.ts +1 -1
- package/dist/commonjs/switch/lib/Switch.js +55 -65
- package/dist/commonjs/table/lib/Table.js +10 -50
- package/dist/commonjs/table/lib/TableRow.d.ts +2 -1
- package/dist/commonjs/table/lib/TableRow.d.ts.map +1 -1
- package/dist/commonjs/table/lib/TableRow.js +40 -67
- package/dist/commonjs/tabs/lib/Tabs.d.ts +1263 -557
- 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 +46 -32
- 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 +24 -16
- 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 +1170 -618
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/useTabsModel.js +63 -44
- package/dist/commonjs/testing/lib/ComponentStatesTable.js +11 -20
- package/dist/commonjs/testing/lib/StaticStates.js +10 -34
- package/dist/commonjs/testing/lib/permutateProps.js +13 -26
- package/dist/commonjs/text/lib/LabelText.d.ts +19 -2
- package/dist/commonjs/text/lib/LabelText.d.ts.map +1 -1
- package/dist/commonjs/text/lib/LabelText.js +23 -25
- package/dist/commonjs/text/lib/Text.d.ts +43 -3
- package/dist/commonjs/text/lib/Text.d.ts.map +1 -1
- package/dist/commonjs/text/lib/Text.js +45 -40
- package/dist/commonjs/text/lib/TypeLevelComponents.d.ts +105 -6
- package/dist/commonjs/text/lib/TypeLevelComponents.d.ts.map +1 -1
- package/dist/commonjs/text/lib/TypeLevelComponents.js +111 -41
- package/dist/commonjs/text-area/lib/TextArea.d.ts +1 -1
- package/dist/commonjs/text-area/lib/TextArea.js +42 -55
- package/dist/commonjs/text-input/index.d.ts +1 -0
- package/dist/commonjs/text-input/index.d.ts.map +1 -1
- package/dist/commonjs/text-input/index.js +4 -0
- 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.js +11 -17
- package/dist/commonjs/text-input/lib/TextInput.d.ts +1 -1
- package/dist/commonjs/text-input/lib/TextInput.js +38 -51
- package/dist/commonjs/toast/index.d.ts +1 -0
- package/dist/commonjs/toast/index.d.ts.map +1 -1
- package/dist/commonjs/toast/index.js +1 -0
- 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 -78
- 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 +2 -2
- package/dist/commonjs/tokens/index.d.ts.map +1 -1
- package/dist/commonjs/tokens/index.js +6 -6
- 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/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/lib/OverflowTooltip.js +34 -54
- 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.js +37 -35
- package/dist/commonjs/tooltip/lib/useTooltip.d.ts.map +1 -1
- package/dist/commonjs/tooltip/lib/useTooltip.js +44 -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 +73 -26
- package/dist/es6/action-bar/lib/ActionBarItem.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarItem.js +4 -15
- package/dist/es6/action-bar/lib/ActionBarList.d.ts +40 -30
- package/dist/es6/action-bar/lib/ActionBarList.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarList.js +11 -35
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts +109 -27
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.js +7 -18
- 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/lib/Avatar.js +46 -68
- package/dist/es6/badge/lib/CountBadge.js +20 -40
- package/dist/es6/banner/lib/Banner.d.ts +60 -4
- package/dist/es6/banner/lib/Banner.d.ts.map +1 -1
- package/dist/es6/banner/lib/Banner.js +81 -41
- 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/lib/Breadcrumbs.d.ts +865 -466
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.js +80 -82
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +149 -27
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.js +10 -40
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts +77 -27
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.js +7 -32
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.d.ts +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsLink.js +11 -32
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.d.ts +24 -16
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.js +5 -28
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts +414 -221
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.js +6 -18
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +109 -27
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.js +6 -29
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +369 -161
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.js +34 -33
- package/dist/es6/breadcrumbs/lib/hooks/utils/index.js +4 -4
- package/dist/es6/button/lib/BaseButton.d.ts +8 -7
- 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 +6 -2
- 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 +10 -6
- 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 +10 -1
- 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 +12 -9
- package/dist/es6/button/lib/TertiaryButton.d.ts.map +1 -1
- package/dist/es6/button/lib/TertiaryButton.js +30 -46
- 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 +49 -52
- 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 -26
- 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 +3 -26
- package/dist/es6/checkbox/lib/Checkbox.d.ts +2 -2
- package/dist/es6/checkbox/lib/Checkbox.d.ts.map +1 -1
- package/dist/es6/checkbox/lib/Checkbox.js +118 -127
- package/dist/es6/collection/index.d.ts +5 -1
- package/dist/es6/collection/index.d.ts.map +1 -1
- package/dist/es6/collection/index.js +4 -0
- package/dist/es6/collection/lib/ListBox.d.ts +353 -125
- 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 +76 -69
- package/dist/es6/collection/lib/useCursorListModel.d.ts +563 -93
- package/dist/es6/collection/lib/useCursorListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useCursorListModel.js +166 -168
- package/dist/es6/collection/lib/useGridModel.d.ts +273 -119
- package/dist/es6/collection/lib/useGridModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useGridModel.js +16 -30
- 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 -114
- 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 +14 -0
- package/dist/es6/collection/lib/useListRenderItem.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListRenderItem.js +22 -8
- 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/lib/ColorInput.d.ts +1 -1
- package/dist/es6/color-picker/lib/ColorInput.d.ts.map +1 -1
- package/dist/es6/color-picker/lib/ColorInput.js +41 -71
- package/dist/es6/color-picker/lib/ColorPreview.d.ts +1 -1
- package/dist/es6/color-picker/lib/ColorPreview.d.ts.map +1 -1
- package/dist/es6/color-picker/lib/ColorPreview.js +3 -28
- 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/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 +1 -1
- package/dist/es6/common/lib/InputProvider.js +72 -91
- package/dist/es6/common/lib/parts/_brand-assets.js +6 -6
- package/dist/es6/common/lib/responsive/useResponsiveContainerStyles.js +20 -49
- 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 +16 -29
- 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 +2 -0
- 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.js +7 -11
- 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 +140 -86
- package/dist/es6/common/lib/utils/components.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/components.js +150 -111
- 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.js +16 -16
- package/dist/es6/common/lib/utils/getTranslateFromOrigin.js +2 -2
- package/dist/es6/common/lib/utils/index.d.ts +2 -0
- package/dist/es6/common/lib/utils/index.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/index.js +2 -0
- package/dist/es6/common/lib/utils/isWithinBreakpoint.js +1 -1
- 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 +6 -2
- package/dist/es6/common/lib/utils/models.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/models.js +52 -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 +25 -11
- 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/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 +38 -77
- package/dist/es6/form-field/lib/Hint.js +9 -41
- package/dist/es6/form-field/lib/Label.d.ts +4 -3
- package/dist/es6/form-field/lib/Label.d.ts.map +1 -1
- package/dist/es6/form-field/lib/Label.js +40 -83
- package/dist/es6/icon/lib/AccentIcon.d.ts +4 -3
- package/dist/es6/icon/lib/AccentIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/AccentIcon.js +12 -38
- package/dist/es6/icon/lib/AppletIcon.d.ts +1 -1
- package/dist/es6/icon/lib/AppletIcon.js +12 -36
- package/dist/es6/icon/lib/Graphic.d.ts +1 -1
- package/dist/es6/icon/lib/Graphic.d.ts.map +1 -1
- package/dist/es6/icon/lib/Graphic.js +6 -30
- package/dist/es6/icon/lib/Icon.d.ts +1 -1
- package/dist/es6/icon/lib/Icon.d.ts.map +1 -1
- package/dist/es6/icon/lib/Icon.js +10 -29
- package/dist/es6/icon/lib/Svg.d.ts +1 -1
- package/dist/es6/icon/lib/Svg.d.ts.map +1 -1
- package/dist/es6/icon/lib/Svg.js +8 -31
- package/dist/es6/icon/lib/SystemIcon.d.ts +11 -11
- package/dist/es6/icon/lib/SystemIcon.d.ts.map +1 -1
- package/dist/es6/icon/lib/SystemIcon.js +33 -59
- package/dist/es6/icon/lib/SystemIconCircle.d.ts +3 -2
- package/dist/es6/icon/lib/SystemIconCircle.d.ts.map +1 -1
- package/dist/es6/icon/lib/SystemIconCircle.js +14 -43
- package/dist/es6/icon/lib/utils.js +1 -1
- package/dist/es6/index.d.ts +1 -0
- package/dist/es6/index.d.ts.map +1 -1
- package/dist/es6/index.js +1 -0
- package/dist/es6/layout/index.d.ts +2 -5
- package/dist/es6/layout/index.d.ts.map +1 -1
- package/dist/es6/layout/index.js +2 -4
- package/dist/es6/layout/lib/Box.d.ts +1 -1
- package/dist/es6/layout/lib/Box.d.ts.map +1 -1
- package/dist/es6/layout/lib/Box.js +12 -37
- package/dist/es6/layout/lib/Flex.d.ts +2 -2
- package/dist/es6/layout/lib/Flex.js +4 -27
- package/dist/es6/layout/lib/Grid.d.ts +2 -2
- package/dist/es6/layout/lib/Grid.js +7 -31
- package/dist/es6/layout/lib/utils/background.js +3 -3
- package/dist/es6/layout/lib/utils/border/color.d.ts +7 -7
- package/dist/es6/layout/lib/utils/border/color.js +2 -2
- package/dist/es6/layout/lib/utils/border/index.js +14 -20
- package/dist/es6/layout/lib/utils/border/lineStyle.js +2 -2
- package/dist/es6/layout/lib/utils/border/radius.js +2 -2
- package/dist/es6/layout/lib/utils/border/shorthand.js +2 -2
- package/dist/es6/layout/lib/utils/border/width.js +2 -2
- package/dist/es6/layout/lib/utils/buildStyleFns.js +39 -42
- package/dist/es6/layout/lib/utils/color.js +3 -3
- package/dist/es6/layout/lib/utils/depth.js +3 -3
- package/dist/es6/layout/lib/utils/flex.js +3 -3
- package/dist/es6/layout/lib/utils/flexItem.js +3 -3
- 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.js +3 -3
- package/dist/es6/layout/lib/utils/gridItem.js +3 -3
- package/dist/es6/layout/lib/utils/layout.d.ts +1 -1
- package/dist/es6/layout/lib/utils/layout.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/layout.js +3 -3
- package/dist/es6/layout/lib/utils/other.js +3 -3
- package/dist/es6/layout/lib/utils/position.d.ts +4 -0
- package/dist/es6/layout/lib/utils/position.d.ts.map +1 -1
- package/dist/es6/layout/lib/utils/position.js +8 -3
- package/dist/es6/layout/lib/utils/space.js +3 -3
- package/dist/es6/layout/lib/utils/text.js +3 -3
- package/dist/es6/loading-dots/lib/LoadingDots.js +16 -38
- 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 +7 -30
- 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 +78 -87
- 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 +10 -34
- 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 +12 -25
- 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 +10 -21
- 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 -8
- package/dist/es6/modal/lib/ModalOverlay.d.ts.map +1 -1
- package/dist/es6/modal/lib/ModalOverlay.js +33 -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 +13 -13
- 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 +3 -3
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.d.ts +1 -2
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.d.ts.map +1 -1
- package/dist/es6/pagination/lib/Pagination/AdditionalDetails.js +15 -31
- 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 +9 -26
- 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.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 +29 -28
- 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 +2 -2
- package/dist/es6/popup/lib/PopupCard.d.ts.map +1 -1
- package/dist/es6/popup/lib/PopupCard.js +53 -48
- package/dist/es6/popup/lib/PopupCloseButton.d.ts +2 -2
- 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 +2 -2
- 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/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 +3 -5
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useCloseOnTargetHidden.js +9 -9
- 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 +29 -18
- 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/lib/Radio.d.ts +1 -1
- package/dist/es6/radio/lib/Radio.d.ts.map +1 -1
- package/dist/es6/radio/lib/Radio.js +111 -131
- 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 +29 -73
- package/dist/es6/segmented-control/lib/SegmentedControl.d.ts +2 -2
- package/dist/es6/segmented-control/lib/SegmentedControl.js +5 -28
- package/dist/es6/segmented-control/lib/SegmentedControlButton.d.ts +1 -1
- package/dist/es6/segmented-control/lib/SegmentedControlButton.d.ts.map +1 -1
- package/dist/es6/segmented-control/lib/SegmentedControlButton.js +37 -58
- package/dist/es6/select/lib/Select.d.ts +1 -1
- package/dist/es6/select/lib/Select.d.ts.map +1 -1
- package/dist/es6/select/lib/Select.js +44 -61
- package/dist/es6/select/lib/SelectOption.js +5 -46
- package/dist/es6/side-panel/lib/SidePanel.d.ts.map +1 -1
- package/dist/es6/side-panel/lib/SidePanel.js +55 -117
- 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/lib/StatusIndicator.js +25 -57
- package/dist/es6/switch/lib/Switch.d.ts +1 -1
- package/dist/es6/switch/lib/Switch.js +54 -64
- package/dist/es6/table/lib/Table.js +9 -50
- package/dist/es6/table/lib/TableRow.d.ts +2 -1
- package/dist/es6/table/lib/TableRow.d.ts.map +1 -1
- package/dist/es6/table/lib/TableRow.js +35 -62
- package/dist/es6/tabs/lib/Tabs.d.ts +1263 -557
- 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 +46 -32
- 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 +24 -16
- 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 +1170 -618
- package/dist/es6/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/es6/tabs/lib/useTabsModel.js +60 -41
- package/dist/es6/testing/lib/ComponentStatesTable.js +9 -18
- package/dist/es6/testing/lib/StaticStates.js +8 -32
- package/dist/es6/testing/lib/permutateProps.js +13 -26
- package/dist/es6/text/lib/LabelText.d.ts +19 -2
- package/dist/es6/text/lib/LabelText.d.ts.map +1 -1
- package/dist/es6/text/lib/LabelText.js +22 -24
- package/dist/es6/text/lib/Text.d.ts +43 -3
- package/dist/es6/text/lib/Text.d.ts.map +1 -1
- package/dist/es6/text/lib/Text.js +42 -37
- package/dist/es6/text/lib/TypeLevelComponents.d.ts +105 -6
- package/dist/es6/text/lib/TypeLevelComponents.d.ts.map +1 -1
- package/dist/es6/text/lib/TypeLevelComponents.js +113 -43
- package/dist/es6/text-area/lib/TextArea.d.ts +1 -1
- package/dist/es6/text-area/lib/TextArea.js +41 -54
- package/dist/es6/text-input/index.d.ts +1 -0
- package/dist/es6/text-input/index.d.ts.map +1 -1
- package/dist/es6/text-input/index.js +1 -0
- 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.js +8 -14
- package/dist/es6/text-input/lib/TextInput.d.ts +1 -1
- package/dist/es6/text-input/lib/TextInput.js +37 -50
- package/dist/es6/toast/index.d.ts +1 -0
- package/dist/es6/toast/index.d.ts.map +1 -1
- package/dist/es6/toast/index.js +1 -0
- 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 -58
- 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 +2 -2
- package/dist/es6/tokens/index.d.ts.map +1 -1
- package/dist/es6/tokens/index.js +16 -16
- 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.js +1 -1
- 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/lib/OverflowTooltip.js +29 -49
- 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.js +33 -31
- package/dist/es6/tooltip/lib/useTooltip.d.ts.map +1 -1
- package/dist/es6/tooltip/lib/useTooltip.js +41 -38
- package/form-field/lib/FormField.tsx +5 -3
- package/form-field/lib/Label.tsx +9 -8
- package/icon/lib/AccentIcon.tsx +5 -6
- package/icon/lib/SystemIcon.tsx +17 -17
- package/icon/lib/SystemIconCircle.tsx +4 -3
- package/index.ts +1 -0
- package/layout/README.md +2 -8
- package/layout/index.ts +2 -6
- package/layout/lib/utils/border/color.ts +7 -7
- package/layout/lib/utils/layout.ts +1 -1
- package/layout/lib/utils/position.ts +9 -0
- package/menu/index.ts +1 -1
- package/menu/lib/Menu.tsx +43 -13
- package/menu/lib/MenuContextTarget.tsx +1 -1
- package/menu/lib/MenuItem.tsx +18 -19
- package/menu/lib/MenuList.tsx +16 -11
- package/menu/lib/MenuTarget.tsx +2 -2
- package/menu/lib/useMenuModel.tsx +4 -7
- package/modal/lib/Modal.tsx +77 -5
- package/modal/lib/ModalBody.tsx +32 -0
- package/modal/lib/ModalCard.tsx +12 -8
- package/modal/lib/ModalHeading.tsx +10 -5
- package/modal/lib/ModalOverlay.tsx +17 -13
- package/modal/lib/hooks/useModalHeading.ts +2 -2
- package/package.json +4 -5
- package/pagination/lib/Pagination/AdditionalDetails.tsx +30 -20
- 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 -10
- 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/utils/helpers.ts +45 -15
- package/pagination/lib/Pagination/usePaginationModel.ts +4 -7
- package/popup/lib/Popper.tsx +16 -1
- package/popup/lib/Popup.tsx +85 -4
- package/popup/lib/PopupCard.tsx +31 -5
- package/popup/lib/PopupCloseIcon.tsx +14 -15
- package/popup/lib/hooks/useBringToTopOnClick.ts +4 -4
- package/popup/lib/hooks/useCloseOnEscape.ts +2 -2
- package/popup/lib/hooks/useCloseOnOutsideClick.ts +6 -6
- package/popup/lib/hooks/useInitialFocus.tsx +2 -2
- package/popup/lib/hooks/usePopupCard.ts +1 -1
- package/popup/lib/hooks/usePopupCloseButton.ts +3 -2
- package/popup/lib/hooks/usePopupHeading.ts +1 -1
- package/popup/lib/hooks/usePopupPopper.ts +2 -1
- package/popup/lib/hooks/usePopupStack.ts +26 -18
- package/popup/lib/hooks/usePopupTarget.ts +1 -1
- package/popup/lib/hooks/useReturnFocus.tsx +17 -4
- package/radio/lib/RadioGroup.tsx +1 -3
- package/select/lib/Select.tsx +2 -15
- package/side-panel/lib/SidePanel.tsx +1 -2
- package/skeleton/lib/skeleton.tsx +27 -1
- package/tabs/lib/Tabs.tsx +95 -3
- package/tabs/lib/TabsItem.tsx +16 -21
- package/tabs/lib/TabsList.tsx +51 -19
- package/tabs/lib/TabsOverflowButton.tsx +4 -4
- package/tabs/lib/TabsPanel.tsx +6 -9
- package/tabs/lib/useTabsModel.tsx +17 -0
- package/text/lib/LabelText.tsx +32 -12
- package/text/lib/Text.tsx +45 -5
- package/text/lib/TypeLevelComponents.tsx +101 -2
- package/text-input/index.ts +1 -0
- package/text-input/lib/InputGroup.tsx +250 -0
- package/toast/LICENSE +1 -0
- package/toast/README.md +3 -5
- package/toast/index.ts +1 -0
- package/toast/lib/Toast.tsx +104 -109
- 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/tokens/index.ts +3 -3
- package/tokens/lib/depth.ts +12 -13
- package/tokens/lib/type/fontFamilies.ts +5 -4
- package/tokens/lib/type/index.ts +8 -8
- package/tooltip/lib/Tooltip.tsx +42 -39
- package/tooltip/lib/useTooltip.tsx +18 -11
- package/dist/commonjs/layout/lib/Column.d.ts +0 -33
- package/dist/commonjs/layout/lib/Column.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/Column.js +0 -109
- package/dist/commonjs/layout/lib/Layout.d.ts +0 -45
- package/dist/commonjs/layout/lib/Layout.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/Layout.js +0 -131
- 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/stack.d.ts +0 -23
- package/dist/commonjs/layout/lib/utils/stack.d.ts.map +0 -1
- package/dist/commonjs/layout/lib/utils/stack.js +0 -29
- package/dist/commonjs/pagination/lib/Pagination/GoTo/GoTo.d.ts +0 -17
- package/dist/commonjs/pagination/lib/Pagination/GoTo/GoTo.d.ts.map +0 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/GoTo.js +0 -58
- package/dist/commonjs/pagination/lib/Pagination/GoTo/index.d.ts +0 -4
- package/dist/commonjs/pagination/lib/Pagination/GoTo/index.d.ts.map +0 -1
- package/dist/commonjs/pagination/lib/Pagination/GoTo/index.js +0 -16
- package/dist/es6/layout/lib/Column.d.ts +0 -33
- package/dist/es6/layout/lib/Column.d.ts.map +0 -1
- package/dist/es6/layout/lib/Column.js +0 -84
- package/dist/es6/layout/lib/Layout.d.ts +0 -45
- package/dist/es6/layout/lib/Layout.d.ts.map +0 -1
- package/dist/es6/layout/lib/Layout.js +0 -106
- 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/stack.d.ts +0 -23
- package/dist/es6/layout/lib/utils/stack.d.ts.map +0 -1
- package/dist/es6/layout/lib/utils/stack.js +0 -25
- 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 -88
- package/layout/lib/Layout.tsx +0 -124
- package/layout/lib/Stack.tsx +0 -97
- package/layout/lib/utils/stack.ts +0 -52
- package/pagination/lib/Pagination/GoTo/GoTo.tsx +0 -36
- package/pagination/lib/Pagination/GoTo/index.ts +0 -4
|
@@ -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,12 +48,12 @@ 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
|
}> & {
|
|
32
59
|
onUpdatePlacement?: ((data: {
|
|
@@ -38,11 +65,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
38
65
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
39
66
|
placement: import("@popperjs/core").Placement;
|
|
40
67
|
id: string;
|
|
41
|
-
visibility:
|
|
42
|
-
selectedIds:
|
|
68
|
+
visibility: "hidden" | "visible";
|
|
69
|
+
selectedIds: string[] | "all";
|
|
43
70
|
unselectedIds: string[];
|
|
44
71
|
cursorId: string;
|
|
45
72
|
columnCount: number;
|
|
73
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
74
|
+
cursorIndexRef: {
|
|
75
|
+
readonly current: number;
|
|
76
|
+
};
|
|
46
77
|
UNSTABLE_virtual: {
|
|
47
78
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
48
79
|
totalSize: number;
|
|
@@ -52,7 +83,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
52
83
|
};
|
|
53
84
|
UNSTABLE_defaultItemHeight: number;
|
|
54
85
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
55
|
-
orientation:
|
|
86
|
+
orientation: "horizontal" | "vertical";
|
|
56
87
|
indexRef: React.MutableRefObject<number>;
|
|
57
88
|
nonInteractiveIds: string[];
|
|
58
89
|
isVirtualized: boolean;
|
|
@@ -66,11 +97,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
66
97
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
67
98
|
placement: import("@popperjs/core").Placement;
|
|
68
99
|
id: string;
|
|
69
|
-
visibility:
|
|
70
|
-
selectedIds:
|
|
100
|
+
visibility: "hidden" | "visible";
|
|
101
|
+
selectedIds: string[] | "all";
|
|
71
102
|
unselectedIds: string[];
|
|
72
103
|
cursorId: string;
|
|
73
104
|
columnCount: number;
|
|
105
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
106
|
+
cursorIndexRef: {
|
|
107
|
+
readonly current: number;
|
|
108
|
+
};
|
|
74
109
|
UNSTABLE_virtual: {
|
|
75
110
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
76
111
|
totalSize: number;
|
|
@@ -80,7 +115,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
80
115
|
};
|
|
81
116
|
UNSTABLE_defaultItemHeight: number;
|
|
82
117
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
83
|
-
orientation:
|
|
118
|
+
orientation: "horizontal" | "vertical";
|
|
84
119
|
indexRef: React.MutableRefObject<number>;
|
|
85
120
|
nonInteractiveIds: string[];
|
|
86
121
|
isVirtualized: boolean;
|
|
@@ -94,11 +129,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
94
129
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
95
130
|
placement: import("@popperjs/core").Placement;
|
|
96
131
|
id: string;
|
|
97
|
-
visibility:
|
|
98
|
-
selectedIds:
|
|
132
|
+
visibility: "hidden" | "visible";
|
|
133
|
+
selectedIds: string[] | "all";
|
|
99
134
|
unselectedIds: string[];
|
|
100
135
|
cursorId: string;
|
|
101
136
|
columnCount: number;
|
|
137
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
138
|
+
cursorIndexRef: {
|
|
139
|
+
readonly current: number;
|
|
140
|
+
};
|
|
102
141
|
UNSTABLE_virtual: {
|
|
103
142
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
104
143
|
totalSize: number;
|
|
@@ -108,7 +147,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
108
147
|
};
|
|
109
148
|
UNSTABLE_defaultItemHeight: number;
|
|
110
149
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
111
|
-
orientation:
|
|
150
|
+
orientation: "horizontal" | "vertical";
|
|
112
151
|
indexRef: React.MutableRefObject<number>;
|
|
113
152
|
nonInteractiveIds: string[];
|
|
114
153
|
isVirtualized: boolean;
|
|
@@ -124,11 +163,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
124
163
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
125
164
|
placement: import("@popperjs/core").Placement;
|
|
126
165
|
id: string;
|
|
127
|
-
visibility:
|
|
128
|
-
selectedIds:
|
|
166
|
+
visibility: "hidden" | "visible";
|
|
167
|
+
selectedIds: string[] | "all";
|
|
129
168
|
unselectedIds: string[];
|
|
130
169
|
cursorId: string;
|
|
131
170
|
columnCount: number;
|
|
171
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
172
|
+
cursorIndexRef: {
|
|
173
|
+
readonly current: number;
|
|
174
|
+
};
|
|
132
175
|
UNSTABLE_virtual: {
|
|
133
176
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
134
177
|
totalSize: number;
|
|
@@ -138,7 +181,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
138
181
|
};
|
|
139
182
|
UNSTABLE_defaultItemHeight: number;
|
|
140
183
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
141
|
-
orientation:
|
|
184
|
+
orientation: "horizontal" | "vertical";
|
|
142
185
|
indexRef: React.MutableRefObject<number>;
|
|
143
186
|
nonInteractiveIds: string[];
|
|
144
187
|
isVirtualized: boolean;
|
|
@@ -152,11 +195,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
152
195
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
153
196
|
placement: import("@popperjs/core").Placement;
|
|
154
197
|
id: string;
|
|
155
|
-
visibility:
|
|
156
|
-
selectedIds:
|
|
198
|
+
visibility: "hidden" | "visible";
|
|
199
|
+
selectedIds: string[] | "all";
|
|
157
200
|
unselectedIds: string[];
|
|
158
201
|
cursorId: string;
|
|
159
202
|
columnCount: number;
|
|
203
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
204
|
+
cursorIndexRef: {
|
|
205
|
+
readonly current: number;
|
|
206
|
+
};
|
|
160
207
|
UNSTABLE_virtual: {
|
|
161
208
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
162
209
|
totalSize: number;
|
|
@@ -166,7 +213,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
166
213
|
};
|
|
167
214
|
UNSTABLE_defaultItemHeight: number;
|
|
168
215
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
169
|
-
orientation:
|
|
216
|
+
orientation: "horizontal" | "vertical";
|
|
170
217
|
indexRef: React.MutableRefObject<number>;
|
|
171
218
|
nonInteractiveIds: string[];
|
|
172
219
|
isVirtualized: boolean;
|
|
@@ -180,11 +227,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
180
227
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
181
228
|
placement: import("@popperjs/core").Placement;
|
|
182
229
|
id: string;
|
|
183
|
-
visibility:
|
|
184
|
-
selectedIds:
|
|
230
|
+
visibility: "hidden" | "visible";
|
|
231
|
+
selectedIds: string[] | "all";
|
|
185
232
|
unselectedIds: string[];
|
|
186
233
|
cursorId: string;
|
|
187
234
|
columnCount: number;
|
|
235
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
236
|
+
cursorIndexRef: {
|
|
237
|
+
readonly current: number;
|
|
238
|
+
};
|
|
188
239
|
UNSTABLE_virtual: {
|
|
189
240
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
190
241
|
totalSize: number;
|
|
@@ -194,16 +245,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
194
245
|
};
|
|
195
246
|
UNSTABLE_defaultItemHeight: number;
|
|
196
247
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
197
|
-
orientation:
|
|
248
|
+
orientation: "horizontal" | "vertical";
|
|
198
249
|
indexRef: React.MutableRefObject<number>;
|
|
199
250
|
nonInteractiveIds: string[];
|
|
200
251
|
isVirtualized: boolean;
|
|
201
252
|
items: import("../..").Item<any>[];
|
|
202
253
|
mode: "multiple" | "single";
|
|
203
254
|
}) => void) | undefined;
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
textValue: string;
|
|
255
|
+
onGoTo?: ((data: {
|
|
256
|
+
id: string;
|
|
207
257
|
}, prevState: {
|
|
208
258
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
209
259
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -211,11 +261,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
211
261
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
212
262
|
placement: import("@popperjs/core").Placement;
|
|
213
263
|
id: string;
|
|
214
|
-
visibility:
|
|
215
|
-
selectedIds:
|
|
264
|
+
visibility: "hidden" | "visible";
|
|
265
|
+
selectedIds: string[] | "all";
|
|
216
266
|
unselectedIds: string[];
|
|
217
267
|
cursorId: string;
|
|
218
268
|
columnCount: number;
|
|
269
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
270
|
+
cursorIndexRef: {
|
|
271
|
+
readonly current: number;
|
|
272
|
+
};
|
|
219
273
|
UNSTABLE_virtual: {
|
|
220
274
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
221
275
|
totalSize: number;
|
|
@@ -225,27 +279,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
225
279
|
};
|
|
226
280
|
UNSTABLE_defaultItemHeight: number;
|
|
227
281
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
228
|
-
orientation:
|
|
282
|
+
orientation: "horizontal" | "vertical";
|
|
229
283
|
indexRef: React.MutableRefObject<number>;
|
|
230
284
|
nonInteractiveIds: string[];
|
|
231
285
|
isVirtualized: boolean;
|
|
232
286
|
items: import("../..").Item<any>[];
|
|
233
287
|
mode: "multiple" | "single";
|
|
234
288
|
}) => void) | undefined;
|
|
235
|
-
|
|
236
|
-
id: string;
|
|
237
|
-
}, prevState: {
|
|
289
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
238
290
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
239
291
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
240
292
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
241
293
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
242
294
|
placement: import("@popperjs/core").Placement;
|
|
243
295
|
id: string;
|
|
244
|
-
visibility:
|
|
245
|
-
selectedIds:
|
|
296
|
+
visibility: "hidden" | "visible";
|
|
297
|
+
selectedIds: string[] | "all";
|
|
246
298
|
unselectedIds: string[];
|
|
247
299
|
cursorId: string;
|
|
248
300
|
columnCount: number;
|
|
301
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
302
|
+
cursorIndexRef: {
|
|
303
|
+
readonly current: number;
|
|
304
|
+
};
|
|
249
305
|
UNSTABLE_virtual: {
|
|
250
306
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
251
307
|
totalSize: number;
|
|
@@ -255,25 +311,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
255
311
|
};
|
|
256
312
|
UNSTABLE_defaultItemHeight: number;
|
|
257
313
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
258
|
-
orientation:
|
|
314
|
+
orientation: "horizontal" | "vertical";
|
|
259
315
|
indexRef: React.MutableRefObject<number>;
|
|
260
316
|
nonInteractiveIds: string[];
|
|
261
317
|
isVirtualized: boolean;
|
|
262
318
|
items: import("../..").Item<any>[];
|
|
263
319
|
mode: "multiple" | "single";
|
|
264
320
|
}) => void) | undefined;
|
|
265
|
-
|
|
321
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
266
322
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
267
323
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
268
324
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
269
325
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
270
326
|
placement: import("@popperjs/core").Placement;
|
|
271
327
|
id: string;
|
|
272
|
-
visibility:
|
|
273
|
-
selectedIds:
|
|
328
|
+
visibility: "hidden" | "visible";
|
|
329
|
+
selectedIds: string[] | "all";
|
|
274
330
|
unselectedIds: string[];
|
|
275
331
|
cursorId: string;
|
|
276
332
|
columnCount: number;
|
|
333
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
334
|
+
cursorIndexRef: {
|
|
335
|
+
readonly current: number;
|
|
336
|
+
};
|
|
277
337
|
UNSTABLE_virtual: {
|
|
278
338
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
279
339
|
totalSize: number;
|
|
@@ -283,25 +343,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
283
343
|
};
|
|
284
344
|
UNSTABLE_defaultItemHeight: number;
|
|
285
345
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
286
|
-
orientation:
|
|
346
|
+
orientation: "horizontal" | "vertical";
|
|
287
347
|
indexRef: React.MutableRefObject<number>;
|
|
288
348
|
nonInteractiveIds: string[];
|
|
289
349
|
isVirtualized: boolean;
|
|
290
350
|
items: import("../..").Item<any>[];
|
|
291
351
|
mode: "multiple" | "single";
|
|
292
352
|
}) => void) | undefined;
|
|
293
|
-
|
|
353
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
294
354
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
295
355
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
296
356
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
297
357
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
298
358
|
placement: import("@popperjs/core").Placement;
|
|
299
359
|
id: string;
|
|
300
|
-
visibility:
|
|
301
|
-
selectedIds:
|
|
360
|
+
visibility: "hidden" | "visible";
|
|
361
|
+
selectedIds: string[] | "all";
|
|
302
362
|
unselectedIds: string[];
|
|
303
363
|
cursorId: string;
|
|
304
364
|
columnCount: number;
|
|
365
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
366
|
+
cursorIndexRef: {
|
|
367
|
+
readonly current: number;
|
|
368
|
+
};
|
|
305
369
|
UNSTABLE_virtual: {
|
|
306
370
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
307
371
|
totalSize: number;
|
|
@@ -311,25 +375,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
311
375
|
};
|
|
312
376
|
UNSTABLE_defaultItemHeight: number;
|
|
313
377
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
314
|
-
orientation:
|
|
378
|
+
orientation: "horizontal" | "vertical";
|
|
315
379
|
indexRef: React.MutableRefObject<number>;
|
|
316
380
|
nonInteractiveIds: string[];
|
|
317
381
|
isVirtualized: boolean;
|
|
318
382
|
items: import("../..").Item<any>[];
|
|
319
383
|
mode: "multiple" | "single";
|
|
320
384
|
}) => void) | undefined;
|
|
321
|
-
|
|
385
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
322
386
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
323
387
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
324
388
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
325
389
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
326
390
|
placement: import("@popperjs/core").Placement;
|
|
327
391
|
id: string;
|
|
328
|
-
visibility:
|
|
329
|
-
selectedIds:
|
|
392
|
+
visibility: "hidden" | "visible";
|
|
393
|
+
selectedIds: string[] | "all";
|
|
330
394
|
unselectedIds: string[];
|
|
331
395
|
cursorId: string;
|
|
332
396
|
columnCount: number;
|
|
397
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
398
|
+
cursorIndexRef: {
|
|
399
|
+
readonly current: number;
|
|
400
|
+
};
|
|
333
401
|
UNSTABLE_virtual: {
|
|
334
402
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
335
403
|
totalSize: number;
|
|
@@ -339,25 +407,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
339
407
|
};
|
|
340
408
|
UNSTABLE_defaultItemHeight: number;
|
|
341
409
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
342
|
-
orientation:
|
|
410
|
+
orientation: "horizontal" | "vertical";
|
|
343
411
|
indexRef: React.MutableRefObject<number>;
|
|
344
412
|
nonInteractiveIds: string[];
|
|
345
413
|
isVirtualized: boolean;
|
|
346
414
|
items: import("../..").Item<any>[];
|
|
347
415
|
mode: "multiple" | "single";
|
|
348
416
|
}) => void) | undefined;
|
|
349
|
-
|
|
417
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
350
418
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
351
419
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
352
420
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
353
421
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
354
422
|
placement: import("@popperjs/core").Placement;
|
|
355
423
|
id: string;
|
|
356
|
-
visibility:
|
|
357
|
-
selectedIds:
|
|
424
|
+
visibility: "hidden" | "visible";
|
|
425
|
+
selectedIds: string[] | "all";
|
|
358
426
|
unselectedIds: string[];
|
|
359
427
|
cursorId: string;
|
|
360
428
|
columnCount: number;
|
|
429
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
430
|
+
cursorIndexRef: {
|
|
431
|
+
readonly current: number;
|
|
432
|
+
};
|
|
361
433
|
UNSTABLE_virtual: {
|
|
362
434
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
363
435
|
totalSize: number;
|
|
@@ -367,25 +439,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
367
439
|
};
|
|
368
440
|
UNSTABLE_defaultItemHeight: number;
|
|
369
441
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
370
|
-
orientation:
|
|
442
|
+
orientation: "horizontal" | "vertical";
|
|
371
443
|
indexRef: React.MutableRefObject<number>;
|
|
372
444
|
nonInteractiveIds: string[];
|
|
373
445
|
isVirtualized: boolean;
|
|
374
446
|
items: import("../..").Item<any>[];
|
|
375
447
|
mode: "multiple" | "single";
|
|
376
448
|
}) => void) | undefined;
|
|
377
|
-
|
|
449
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
378
450
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
379
451
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
380
452
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
381
453
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
382
454
|
placement: import("@popperjs/core").Placement;
|
|
383
455
|
id: string;
|
|
384
|
-
visibility:
|
|
385
|
-
selectedIds:
|
|
456
|
+
visibility: "hidden" | "visible";
|
|
457
|
+
selectedIds: string[] | "all";
|
|
386
458
|
unselectedIds: string[];
|
|
387
459
|
cursorId: string;
|
|
388
460
|
columnCount: number;
|
|
461
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
462
|
+
cursorIndexRef: {
|
|
463
|
+
readonly current: number;
|
|
464
|
+
};
|
|
389
465
|
UNSTABLE_virtual: {
|
|
390
466
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
391
467
|
totalSize: number;
|
|
@@ -395,25 +471,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
395
471
|
};
|
|
396
472
|
UNSTABLE_defaultItemHeight: number;
|
|
397
473
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
398
|
-
orientation:
|
|
474
|
+
orientation: "horizontal" | "vertical";
|
|
399
475
|
indexRef: React.MutableRefObject<number>;
|
|
400
476
|
nonInteractiveIds: string[];
|
|
401
477
|
isVirtualized: boolean;
|
|
402
478
|
items: import("../..").Item<any>[];
|
|
403
479
|
mode: "multiple" | "single";
|
|
404
480
|
}) => void) | undefined;
|
|
405
|
-
|
|
481
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
406
482
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
407
483
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
408
484
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
409
485
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
410
486
|
placement: import("@popperjs/core").Placement;
|
|
411
487
|
id: string;
|
|
412
|
-
visibility:
|
|
413
|
-
selectedIds:
|
|
488
|
+
visibility: "hidden" | "visible";
|
|
489
|
+
selectedIds: string[] | "all";
|
|
414
490
|
unselectedIds: string[];
|
|
415
491
|
cursorId: string;
|
|
416
492
|
columnCount: number;
|
|
493
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
494
|
+
cursorIndexRef: {
|
|
495
|
+
readonly current: number;
|
|
496
|
+
};
|
|
417
497
|
UNSTABLE_virtual: {
|
|
418
498
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
419
499
|
totalSize: number;
|
|
@@ -423,25 +503,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
423
503
|
};
|
|
424
504
|
UNSTABLE_defaultItemHeight: number;
|
|
425
505
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
426
|
-
orientation:
|
|
506
|
+
orientation: "horizontal" | "vertical";
|
|
427
507
|
indexRef: React.MutableRefObject<number>;
|
|
428
508
|
nonInteractiveIds: string[];
|
|
429
509
|
isVirtualized: boolean;
|
|
430
510
|
items: import("../..").Item<any>[];
|
|
431
511
|
mode: "multiple" | "single";
|
|
432
512
|
}) => void) | undefined;
|
|
433
|
-
|
|
513
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
434
514
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
435
515
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
436
516
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
437
517
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
438
518
|
placement: import("@popperjs/core").Placement;
|
|
439
519
|
id: string;
|
|
440
|
-
visibility:
|
|
441
|
-
selectedIds:
|
|
520
|
+
visibility: "hidden" | "visible";
|
|
521
|
+
selectedIds: string[] | "all";
|
|
442
522
|
unselectedIds: string[];
|
|
443
523
|
cursorId: string;
|
|
444
524
|
columnCount: number;
|
|
525
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
526
|
+
cursorIndexRef: {
|
|
527
|
+
readonly current: number;
|
|
528
|
+
};
|
|
445
529
|
UNSTABLE_virtual: {
|
|
446
530
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
447
531
|
totalSize: number;
|
|
@@ -451,25 +535,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
451
535
|
};
|
|
452
536
|
UNSTABLE_defaultItemHeight: number;
|
|
453
537
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
454
|
-
orientation:
|
|
538
|
+
orientation: "horizontal" | "vertical";
|
|
455
539
|
indexRef: React.MutableRefObject<number>;
|
|
456
540
|
nonInteractiveIds: string[];
|
|
457
541
|
isVirtualized: boolean;
|
|
458
542
|
items: import("../..").Item<any>[];
|
|
459
543
|
mode: "multiple" | "single";
|
|
460
544
|
}) => void) | undefined;
|
|
461
|
-
|
|
545
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
462
546
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
463
547
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
464
548
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
465
549
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
466
550
|
placement: import("@popperjs/core").Placement;
|
|
467
551
|
id: string;
|
|
468
|
-
visibility:
|
|
469
|
-
selectedIds:
|
|
552
|
+
visibility: "hidden" | "visible";
|
|
553
|
+
selectedIds: string[] | "all";
|
|
470
554
|
unselectedIds: string[];
|
|
471
555
|
cursorId: string;
|
|
472
556
|
columnCount: number;
|
|
557
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
558
|
+
cursorIndexRef: {
|
|
559
|
+
readonly current: number;
|
|
560
|
+
};
|
|
473
561
|
UNSTABLE_virtual: {
|
|
474
562
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
475
563
|
totalSize: number;
|
|
@@ -479,25 +567,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
479
567
|
};
|
|
480
568
|
UNSTABLE_defaultItemHeight: number;
|
|
481
569
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
482
|
-
orientation:
|
|
570
|
+
orientation: "horizontal" | "vertical";
|
|
483
571
|
indexRef: React.MutableRefObject<number>;
|
|
484
572
|
nonInteractiveIds: string[];
|
|
485
573
|
isVirtualized: boolean;
|
|
486
574
|
items: import("../..").Item<any>[];
|
|
487
575
|
mode: "multiple" | "single";
|
|
488
576
|
}) => void) | undefined;
|
|
489
|
-
|
|
577
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
490
578
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
491
579
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
492
580
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
493
581
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
494
582
|
placement: import("@popperjs/core").Placement;
|
|
495
583
|
id: string;
|
|
496
|
-
visibility:
|
|
497
|
-
selectedIds:
|
|
584
|
+
visibility: "hidden" | "visible";
|
|
585
|
+
selectedIds: string[] | "all";
|
|
498
586
|
unselectedIds: string[];
|
|
499
587
|
cursorId: string;
|
|
500
588
|
columnCount: number;
|
|
589
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
590
|
+
cursorIndexRef: {
|
|
591
|
+
readonly current: number;
|
|
592
|
+
};
|
|
501
593
|
UNSTABLE_virtual: {
|
|
502
594
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
503
595
|
totalSize: number;
|
|
@@ -507,25 +599,32 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
507
599
|
};
|
|
508
600
|
UNSTABLE_defaultItemHeight: number;
|
|
509
601
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
510
|
-
orientation:
|
|
602
|
+
orientation: "horizontal" | "vertical";
|
|
511
603
|
indexRef: React.MutableRefObject<number>;
|
|
512
604
|
nonInteractiveIds: string[];
|
|
513
605
|
isVirtualized: boolean;
|
|
514
606
|
items: import("../..").Item<any>[];
|
|
515
607
|
mode: "multiple" | "single";
|
|
516
608
|
}) => void) | undefined;
|
|
517
|
-
|
|
609
|
+
onRegisterItem?: ((data: {
|
|
610
|
+
item: any;
|
|
611
|
+
textValue: string;
|
|
612
|
+
}, prevState: {
|
|
518
613
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
519
614
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
520
615
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
521
616
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
522
617
|
placement: import("@popperjs/core").Placement;
|
|
523
618
|
id: string;
|
|
524
|
-
visibility:
|
|
525
|
-
selectedIds:
|
|
619
|
+
visibility: "hidden" | "visible";
|
|
620
|
+
selectedIds: string[] | "all";
|
|
526
621
|
unselectedIds: string[];
|
|
527
622
|
cursorId: string;
|
|
528
623
|
columnCount: number;
|
|
624
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
625
|
+
cursorIndexRef: {
|
|
626
|
+
readonly current: number;
|
|
627
|
+
};
|
|
529
628
|
UNSTABLE_virtual: {
|
|
530
629
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
531
630
|
totalSize: number;
|
|
@@ -535,7 +634,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
535
634
|
};
|
|
536
635
|
UNSTABLE_defaultItemHeight: number;
|
|
537
636
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
538
|
-
orientation:
|
|
637
|
+
orientation: "horizontal" | "vertical";
|
|
539
638
|
indexRef: React.MutableRefObject<number>;
|
|
540
639
|
nonInteractiveIds: string[];
|
|
541
640
|
isVirtualized: boolean;
|
|
@@ -551,11 +650,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
551
650
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
552
651
|
placement: import("@popperjs/core").Placement;
|
|
553
652
|
id: string;
|
|
554
|
-
visibility:
|
|
555
|
-
selectedIds:
|
|
653
|
+
visibility: "hidden" | "visible";
|
|
654
|
+
selectedIds: string[] | "all";
|
|
556
655
|
unselectedIds: string[];
|
|
557
656
|
cursorId: string;
|
|
558
657
|
columnCount: number;
|
|
658
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
659
|
+
cursorIndexRef: {
|
|
660
|
+
readonly current: number;
|
|
661
|
+
};
|
|
559
662
|
UNSTABLE_virtual: {
|
|
560
663
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
561
664
|
totalSize: number;
|
|
@@ -565,7 +668,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
565
668
|
};
|
|
566
669
|
UNSTABLE_defaultItemHeight: number;
|
|
567
670
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
568
|
-
orientation:
|
|
671
|
+
orientation: "horizontal" | "vertical";
|
|
569
672
|
indexRef: React.MutableRefObject<number>;
|
|
570
673
|
nonInteractiveIds: string[];
|
|
571
674
|
isVirtualized: boolean;
|
|
@@ -581,11 +684,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
581
684
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
582
685
|
placement: import("@popperjs/core").Placement;
|
|
583
686
|
id: string;
|
|
584
|
-
visibility:
|
|
585
|
-
selectedIds:
|
|
687
|
+
visibility: "hidden" | "visible";
|
|
688
|
+
selectedIds: string[] | "all";
|
|
586
689
|
unselectedIds: string[];
|
|
587
690
|
cursorId: string;
|
|
588
691
|
columnCount: number;
|
|
692
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
693
|
+
cursorIndexRef: {
|
|
694
|
+
readonly current: number;
|
|
695
|
+
};
|
|
589
696
|
UNSTABLE_virtual: {
|
|
590
697
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
591
698
|
totalSize: number;
|
|
@@ -595,7 +702,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
595
702
|
};
|
|
596
703
|
UNSTABLE_defaultItemHeight: number;
|
|
597
704
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
598
|
-
orientation:
|
|
705
|
+
orientation: "horizontal" | "vertical";
|
|
599
706
|
indexRef: React.MutableRefObject<number>;
|
|
600
707
|
nonInteractiveIds: string[];
|
|
601
708
|
isVirtualized: boolean;
|
|
@@ -612,11 +719,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
612
719
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
613
720
|
placement: import("@popperjs/core").Placement;
|
|
614
721
|
id: string;
|
|
615
|
-
visibility:
|
|
616
|
-
selectedIds:
|
|
722
|
+
visibility: "hidden" | "visible";
|
|
723
|
+
selectedIds: string[] | "all";
|
|
617
724
|
unselectedIds: string[];
|
|
618
725
|
cursorId: string;
|
|
619
726
|
columnCount: number;
|
|
727
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
728
|
+
cursorIndexRef: {
|
|
729
|
+
readonly current: number;
|
|
730
|
+
};
|
|
620
731
|
UNSTABLE_virtual: {
|
|
621
732
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
622
733
|
totalSize: number;
|
|
@@ -626,7 +737,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
626
737
|
};
|
|
627
738
|
UNSTABLE_defaultItemHeight: number;
|
|
628
739
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
629
|
-
orientation:
|
|
740
|
+
orientation: "horizontal" | "vertical";
|
|
630
741
|
indexRef: React.MutableRefObject<number>;
|
|
631
742
|
nonInteractiveIds: string[];
|
|
632
743
|
isVirtualized: boolean;
|
|
@@ -640,11 +751,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
640
751
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
641
752
|
placement: import("@popperjs/core").Placement;
|
|
642
753
|
id: string;
|
|
643
|
-
visibility:
|
|
644
|
-
selectedIds:
|
|
754
|
+
visibility: "hidden" | "visible";
|
|
755
|
+
selectedIds: string[] | "all";
|
|
645
756
|
unselectedIds: string[];
|
|
646
757
|
cursorId: string;
|
|
647
758
|
columnCount: number;
|
|
759
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
760
|
+
cursorIndexRef: {
|
|
761
|
+
readonly current: number;
|
|
762
|
+
};
|
|
648
763
|
UNSTABLE_virtual: {
|
|
649
764
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
650
765
|
totalSize: number;
|
|
@@ -654,7 +769,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
654
769
|
};
|
|
655
770
|
UNSTABLE_defaultItemHeight: number;
|
|
656
771
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
657
|
-
orientation:
|
|
772
|
+
orientation: "horizontal" | "vertical";
|
|
658
773
|
indexRef: React.MutableRefObject<number>;
|
|
659
774
|
nonInteractiveIds: string[];
|
|
660
775
|
isVirtualized: boolean;
|
|
@@ -668,11 +783,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
668
783
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
669
784
|
placement: import("@popperjs/core").Placement;
|
|
670
785
|
id: string;
|
|
671
|
-
visibility:
|
|
672
|
-
selectedIds:
|
|
786
|
+
visibility: "hidden" | "visible";
|
|
787
|
+
selectedIds: string[] | "all";
|
|
673
788
|
unselectedIds: string[];
|
|
674
789
|
cursorId: string;
|
|
675
790
|
columnCount: number;
|
|
791
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
792
|
+
cursorIndexRef: {
|
|
793
|
+
readonly current: number;
|
|
794
|
+
};
|
|
676
795
|
UNSTABLE_virtual: {
|
|
677
796
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
678
797
|
totalSize: number;
|
|
@@ -682,7 +801,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
682
801
|
};
|
|
683
802
|
UNSTABLE_defaultItemHeight: number;
|
|
684
803
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
685
|
-
orientation:
|
|
804
|
+
orientation: "horizontal" | "vertical";
|
|
686
805
|
indexRef: React.MutableRefObject<number>;
|
|
687
806
|
nonInteractiveIds: string[];
|
|
688
807
|
isVirtualized: boolean;
|
|
@@ -698,11 +817,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
698
817
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
699
818
|
placement: import("@popperjs/core").Placement;
|
|
700
819
|
id: string;
|
|
701
|
-
visibility:
|
|
702
|
-
selectedIds:
|
|
820
|
+
visibility: "hidden" | "visible";
|
|
821
|
+
selectedIds: string[] | "all";
|
|
703
822
|
unselectedIds: string[];
|
|
704
823
|
cursorId: string;
|
|
705
824
|
columnCount: number;
|
|
825
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
826
|
+
cursorIndexRef: {
|
|
827
|
+
readonly current: number;
|
|
828
|
+
};
|
|
706
829
|
UNSTABLE_virtual: {
|
|
707
830
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
708
831
|
totalSize: number;
|
|
@@ -712,7 +835,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
712
835
|
};
|
|
713
836
|
UNSTABLE_defaultItemHeight: number;
|
|
714
837
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
715
|
-
orientation:
|
|
838
|
+
orientation: "horizontal" | "vertical";
|
|
716
839
|
indexRef: React.MutableRefObject<number>;
|
|
717
840
|
nonInteractiveIds: string[];
|
|
718
841
|
isVirtualized: boolean;
|
|
@@ -726,11 +849,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
726
849
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
727
850
|
placement: import("@popperjs/core").Placement;
|
|
728
851
|
id: string;
|
|
729
|
-
visibility:
|
|
730
|
-
selectedIds:
|
|
852
|
+
visibility: "hidden" | "visible";
|
|
853
|
+
selectedIds: string[] | "all";
|
|
731
854
|
unselectedIds: string[];
|
|
732
855
|
cursorId: string;
|
|
733
856
|
columnCount: number;
|
|
857
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
858
|
+
cursorIndexRef: {
|
|
859
|
+
readonly current: number;
|
|
860
|
+
};
|
|
734
861
|
UNSTABLE_virtual: {
|
|
735
862
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
736
863
|
totalSize: number;
|
|
@@ -740,7 +867,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
740
867
|
};
|
|
741
868
|
UNSTABLE_defaultItemHeight: number;
|
|
742
869
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
743
|
-
orientation:
|
|
870
|
+
orientation: "horizontal" | "vertical";
|
|
744
871
|
indexRef: React.MutableRefObject<number>;
|
|
745
872
|
nonInteractiveIds: string[];
|
|
746
873
|
isVirtualized: boolean;
|
|
@@ -754,11 +881,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
754
881
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
755
882
|
placement: import("@popperjs/core").Placement;
|
|
756
883
|
id: string;
|
|
757
|
-
visibility:
|
|
758
|
-
selectedIds:
|
|
884
|
+
visibility: "hidden" | "visible";
|
|
885
|
+
selectedIds: string[] | "all";
|
|
759
886
|
unselectedIds: string[];
|
|
760
887
|
cursorId: string;
|
|
761
888
|
columnCount: number;
|
|
889
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
890
|
+
cursorIndexRef: {
|
|
891
|
+
readonly current: number;
|
|
892
|
+
};
|
|
762
893
|
UNSTABLE_virtual: {
|
|
763
894
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
764
895
|
totalSize: number;
|
|
@@ -768,16 +899,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
768
899
|
};
|
|
769
900
|
UNSTABLE_defaultItemHeight: number;
|
|
770
901
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
771
|
-
orientation:
|
|
902
|
+
orientation: "horizontal" | "vertical";
|
|
772
903
|
indexRef: React.MutableRefObject<number>;
|
|
773
904
|
nonInteractiveIds: string[];
|
|
774
905
|
isVirtualized: boolean;
|
|
775
906
|
items: import("../..").Item<any>[];
|
|
776
907
|
mode: "multiple" | "single";
|
|
777
908
|
}) => boolean) | undefined;
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
textValue: string;
|
|
909
|
+
shouldGoTo?: ((data: {
|
|
910
|
+
id: string;
|
|
781
911
|
}, state: {
|
|
782
912
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
783
913
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -785,11 +915,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
785
915
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
786
916
|
placement: import("@popperjs/core").Placement;
|
|
787
917
|
id: string;
|
|
788
|
-
visibility:
|
|
789
|
-
selectedIds:
|
|
918
|
+
visibility: "hidden" | "visible";
|
|
919
|
+
selectedIds: string[] | "all";
|
|
790
920
|
unselectedIds: string[];
|
|
791
921
|
cursorId: string;
|
|
792
922
|
columnCount: number;
|
|
923
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
924
|
+
cursorIndexRef: {
|
|
925
|
+
readonly current: number;
|
|
926
|
+
};
|
|
793
927
|
UNSTABLE_virtual: {
|
|
794
928
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
795
929
|
totalSize: number;
|
|
@@ -799,27 +933,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
799
933
|
};
|
|
800
934
|
UNSTABLE_defaultItemHeight: number;
|
|
801
935
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
802
|
-
orientation:
|
|
936
|
+
orientation: "horizontal" | "vertical";
|
|
803
937
|
indexRef: React.MutableRefObject<number>;
|
|
804
938
|
nonInteractiveIds: string[];
|
|
805
939
|
isVirtualized: boolean;
|
|
806
940
|
items: import("../..").Item<any>[];
|
|
807
941
|
mode: "multiple" | "single";
|
|
808
942
|
}) => boolean) | undefined;
|
|
809
|
-
|
|
810
|
-
id: string;
|
|
811
|
-
}, state: {
|
|
943
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
812
944
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
813
945
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
814
946
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
815
947
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
816
948
|
placement: import("@popperjs/core").Placement;
|
|
817
949
|
id: string;
|
|
818
|
-
visibility:
|
|
819
|
-
selectedIds:
|
|
950
|
+
visibility: "hidden" | "visible";
|
|
951
|
+
selectedIds: string[] | "all";
|
|
820
952
|
unselectedIds: string[];
|
|
821
953
|
cursorId: string;
|
|
822
954
|
columnCount: number;
|
|
955
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
956
|
+
cursorIndexRef: {
|
|
957
|
+
readonly current: number;
|
|
958
|
+
};
|
|
823
959
|
UNSTABLE_virtual: {
|
|
824
960
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
825
961
|
totalSize: number;
|
|
@@ -829,25 +965,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
829
965
|
};
|
|
830
966
|
UNSTABLE_defaultItemHeight: number;
|
|
831
967
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
832
|
-
orientation:
|
|
968
|
+
orientation: "horizontal" | "vertical";
|
|
833
969
|
indexRef: React.MutableRefObject<number>;
|
|
834
970
|
nonInteractiveIds: string[];
|
|
835
971
|
isVirtualized: boolean;
|
|
836
972
|
items: import("../..").Item<any>[];
|
|
837
973
|
mode: "multiple" | "single";
|
|
838
974
|
}) => boolean) | undefined;
|
|
839
|
-
|
|
975
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
840
976
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
841
977
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
842
978
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
843
979
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
844
980
|
placement: import("@popperjs/core").Placement;
|
|
845
981
|
id: string;
|
|
846
|
-
visibility:
|
|
847
|
-
selectedIds:
|
|
982
|
+
visibility: "hidden" | "visible";
|
|
983
|
+
selectedIds: string[] | "all";
|
|
848
984
|
unselectedIds: string[];
|
|
849
985
|
cursorId: string;
|
|
850
986
|
columnCount: number;
|
|
987
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
988
|
+
cursorIndexRef: {
|
|
989
|
+
readonly current: number;
|
|
990
|
+
};
|
|
851
991
|
UNSTABLE_virtual: {
|
|
852
992
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
853
993
|
totalSize: number;
|
|
@@ -857,25 +997,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
857
997
|
};
|
|
858
998
|
UNSTABLE_defaultItemHeight: number;
|
|
859
999
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
860
|
-
orientation:
|
|
1000
|
+
orientation: "horizontal" | "vertical";
|
|
861
1001
|
indexRef: React.MutableRefObject<number>;
|
|
862
1002
|
nonInteractiveIds: string[];
|
|
863
1003
|
isVirtualized: boolean;
|
|
864
1004
|
items: import("../..").Item<any>[];
|
|
865
1005
|
mode: "multiple" | "single";
|
|
866
1006
|
}) => boolean) | undefined;
|
|
867
|
-
|
|
1007
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
868
1008
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
869
1009
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
870
1010
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
871
1011
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
872
1012
|
placement: import("@popperjs/core").Placement;
|
|
873
1013
|
id: string;
|
|
874
|
-
visibility:
|
|
875
|
-
selectedIds:
|
|
1014
|
+
visibility: "hidden" | "visible";
|
|
1015
|
+
selectedIds: string[] | "all";
|
|
876
1016
|
unselectedIds: string[];
|
|
877
1017
|
cursorId: string;
|
|
878
1018
|
columnCount: number;
|
|
1019
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1020
|
+
cursorIndexRef: {
|
|
1021
|
+
readonly current: number;
|
|
1022
|
+
};
|
|
879
1023
|
UNSTABLE_virtual: {
|
|
880
1024
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
881
1025
|
totalSize: number;
|
|
@@ -885,25 +1029,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
885
1029
|
};
|
|
886
1030
|
UNSTABLE_defaultItemHeight: number;
|
|
887
1031
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
888
|
-
orientation:
|
|
1032
|
+
orientation: "horizontal" | "vertical";
|
|
889
1033
|
indexRef: React.MutableRefObject<number>;
|
|
890
1034
|
nonInteractiveIds: string[];
|
|
891
1035
|
isVirtualized: boolean;
|
|
892
1036
|
items: import("../..").Item<any>[];
|
|
893
1037
|
mode: "multiple" | "single";
|
|
894
1038
|
}) => boolean) | undefined;
|
|
895
|
-
|
|
1039
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
896
1040
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
897
1041
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
898
1042
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
899
1043
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
900
1044
|
placement: import("@popperjs/core").Placement;
|
|
901
1045
|
id: string;
|
|
902
|
-
visibility:
|
|
903
|
-
selectedIds:
|
|
1046
|
+
visibility: "hidden" | "visible";
|
|
1047
|
+
selectedIds: string[] | "all";
|
|
904
1048
|
unselectedIds: string[];
|
|
905
1049
|
cursorId: string;
|
|
906
1050
|
columnCount: number;
|
|
1051
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1052
|
+
cursorIndexRef: {
|
|
1053
|
+
readonly current: number;
|
|
1054
|
+
};
|
|
907
1055
|
UNSTABLE_virtual: {
|
|
908
1056
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
909
1057
|
totalSize: number;
|
|
@@ -913,25 +1061,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
913
1061
|
};
|
|
914
1062
|
UNSTABLE_defaultItemHeight: number;
|
|
915
1063
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
916
|
-
orientation:
|
|
1064
|
+
orientation: "horizontal" | "vertical";
|
|
917
1065
|
indexRef: React.MutableRefObject<number>;
|
|
918
1066
|
nonInteractiveIds: string[];
|
|
919
1067
|
isVirtualized: boolean;
|
|
920
1068
|
items: import("../..").Item<any>[];
|
|
921
1069
|
mode: "multiple" | "single";
|
|
922
1070
|
}) => boolean) | undefined;
|
|
923
|
-
|
|
1071
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
924
1072
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
925
1073
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
926
1074
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
927
1075
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
928
1076
|
placement: import("@popperjs/core").Placement;
|
|
929
1077
|
id: string;
|
|
930
|
-
visibility:
|
|
931
|
-
selectedIds:
|
|
1078
|
+
visibility: "hidden" | "visible";
|
|
1079
|
+
selectedIds: string[] | "all";
|
|
932
1080
|
unselectedIds: string[];
|
|
933
1081
|
cursorId: string;
|
|
934
1082
|
columnCount: number;
|
|
1083
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1084
|
+
cursorIndexRef: {
|
|
1085
|
+
readonly current: number;
|
|
1086
|
+
};
|
|
935
1087
|
UNSTABLE_virtual: {
|
|
936
1088
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
937
1089
|
totalSize: number;
|
|
@@ -941,25 +1093,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
941
1093
|
};
|
|
942
1094
|
UNSTABLE_defaultItemHeight: number;
|
|
943
1095
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
944
|
-
orientation:
|
|
1096
|
+
orientation: "horizontal" | "vertical";
|
|
945
1097
|
indexRef: React.MutableRefObject<number>;
|
|
946
1098
|
nonInteractiveIds: string[];
|
|
947
1099
|
isVirtualized: boolean;
|
|
948
1100
|
items: import("../..").Item<any>[];
|
|
949
1101
|
mode: "multiple" | "single";
|
|
950
1102
|
}) => boolean) | undefined;
|
|
951
|
-
|
|
1103
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
952
1104
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
953
1105
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
954
1106
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
955
1107
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
956
1108
|
placement: import("@popperjs/core").Placement;
|
|
957
1109
|
id: string;
|
|
958
|
-
visibility:
|
|
959
|
-
selectedIds:
|
|
1110
|
+
visibility: "hidden" | "visible";
|
|
1111
|
+
selectedIds: string[] | "all";
|
|
960
1112
|
unselectedIds: string[];
|
|
961
1113
|
cursorId: string;
|
|
962
1114
|
columnCount: number;
|
|
1115
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1116
|
+
cursorIndexRef: {
|
|
1117
|
+
readonly current: number;
|
|
1118
|
+
};
|
|
963
1119
|
UNSTABLE_virtual: {
|
|
964
1120
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
965
1121
|
totalSize: number;
|
|
@@ -969,25 +1125,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
969
1125
|
};
|
|
970
1126
|
UNSTABLE_defaultItemHeight: number;
|
|
971
1127
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
972
|
-
orientation:
|
|
1128
|
+
orientation: "horizontal" | "vertical";
|
|
973
1129
|
indexRef: React.MutableRefObject<number>;
|
|
974
1130
|
nonInteractiveIds: string[];
|
|
975
1131
|
isVirtualized: boolean;
|
|
976
1132
|
items: import("../..").Item<any>[];
|
|
977
1133
|
mode: "multiple" | "single";
|
|
978
1134
|
}) => boolean) | undefined;
|
|
979
|
-
|
|
1135
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
980
1136
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
981
1137
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
982
1138
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
983
1139
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
984
1140
|
placement: import("@popperjs/core").Placement;
|
|
985
1141
|
id: string;
|
|
986
|
-
visibility:
|
|
987
|
-
selectedIds:
|
|
1142
|
+
visibility: "hidden" | "visible";
|
|
1143
|
+
selectedIds: string[] | "all";
|
|
988
1144
|
unselectedIds: string[];
|
|
989
1145
|
cursorId: string;
|
|
990
1146
|
columnCount: number;
|
|
1147
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1148
|
+
cursorIndexRef: {
|
|
1149
|
+
readonly current: number;
|
|
1150
|
+
};
|
|
991
1151
|
UNSTABLE_virtual: {
|
|
992
1152
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
993
1153
|
totalSize: number;
|
|
@@ -997,25 +1157,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
997
1157
|
};
|
|
998
1158
|
UNSTABLE_defaultItemHeight: number;
|
|
999
1159
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1000
|
-
orientation:
|
|
1160
|
+
orientation: "horizontal" | "vertical";
|
|
1001
1161
|
indexRef: React.MutableRefObject<number>;
|
|
1002
1162
|
nonInteractiveIds: string[];
|
|
1003
1163
|
isVirtualized: boolean;
|
|
1004
1164
|
items: import("../..").Item<any>[];
|
|
1005
1165
|
mode: "multiple" | "single";
|
|
1006
1166
|
}) => boolean) | undefined;
|
|
1007
|
-
|
|
1167
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
1008
1168
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
1009
1169
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1010
1170
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
1011
1171
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1012
1172
|
placement: import("@popperjs/core").Placement;
|
|
1013
1173
|
id: string;
|
|
1014
|
-
visibility:
|
|
1015
|
-
selectedIds:
|
|
1174
|
+
visibility: "hidden" | "visible";
|
|
1175
|
+
selectedIds: string[] | "all";
|
|
1016
1176
|
unselectedIds: string[];
|
|
1017
1177
|
cursorId: string;
|
|
1018
1178
|
columnCount: number;
|
|
1179
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1180
|
+
cursorIndexRef: {
|
|
1181
|
+
readonly current: number;
|
|
1182
|
+
};
|
|
1019
1183
|
UNSTABLE_virtual: {
|
|
1020
1184
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1021
1185
|
totalSize: number;
|
|
@@ -1025,25 +1189,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1025
1189
|
};
|
|
1026
1190
|
UNSTABLE_defaultItemHeight: number;
|
|
1027
1191
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1028
|
-
orientation:
|
|
1192
|
+
orientation: "horizontal" | "vertical";
|
|
1029
1193
|
indexRef: React.MutableRefObject<number>;
|
|
1030
1194
|
nonInteractiveIds: string[];
|
|
1031
1195
|
isVirtualized: boolean;
|
|
1032
1196
|
items: import("../..").Item<any>[];
|
|
1033
1197
|
mode: "multiple" | "single";
|
|
1034
1198
|
}) => boolean) | undefined;
|
|
1035
|
-
|
|
1199
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
1036
1200
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
1037
1201
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1038
1202
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
1039
1203
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1040
1204
|
placement: import("@popperjs/core").Placement;
|
|
1041
1205
|
id: string;
|
|
1042
|
-
visibility:
|
|
1043
|
-
selectedIds:
|
|
1206
|
+
visibility: "hidden" | "visible";
|
|
1207
|
+
selectedIds: string[] | "all";
|
|
1044
1208
|
unselectedIds: string[];
|
|
1045
1209
|
cursorId: string;
|
|
1046
1210
|
columnCount: number;
|
|
1211
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1212
|
+
cursorIndexRef: {
|
|
1213
|
+
readonly current: number;
|
|
1214
|
+
};
|
|
1047
1215
|
UNSTABLE_virtual: {
|
|
1048
1216
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1049
1217
|
totalSize: number;
|
|
@@ -1053,25 +1221,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1053
1221
|
};
|
|
1054
1222
|
UNSTABLE_defaultItemHeight: number;
|
|
1055
1223
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1056
|
-
orientation:
|
|
1224
|
+
orientation: "horizontal" | "vertical";
|
|
1057
1225
|
indexRef: React.MutableRefObject<number>;
|
|
1058
1226
|
nonInteractiveIds: string[];
|
|
1059
1227
|
isVirtualized: boolean;
|
|
1060
1228
|
items: import("../..").Item<any>[];
|
|
1061
1229
|
mode: "multiple" | "single";
|
|
1062
1230
|
}) => boolean) | undefined;
|
|
1063
|
-
|
|
1231
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
1064
1232
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
1065
1233
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1066
1234
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
1067
1235
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1068
1236
|
placement: import("@popperjs/core").Placement;
|
|
1069
1237
|
id: string;
|
|
1070
|
-
visibility:
|
|
1071
|
-
selectedIds:
|
|
1238
|
+
visibility: "hidden" | "visible";
|
|
1239
|
+
selectedIds: string[] | "all";
|
|
1072
1240
|
unselectedIds: string[];
|
|
1073
1241
|
cursorId: string;
|
|
1074
1242
|
columnCount: number;
|
|
1243
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1244
|
+
cursorIndexRef: {
|
|
1245
|
+
readonly current: number;
|
|
1246
|
+
};
|
|
1075
1247
|
UNSTABLE_virtual: {
|
|
1076
1248
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1077
1249
|
totalSize: number;
|
|
@@ -1081,25 +1253,32 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1081
1253
|
};
|
|
1082
1254
|
UNSTABLE_defaultItemHeight: number;
|
|
1083
1255
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1084
|
-
orientation:
|
|
1256
|
+
orientation: "horizontal" | "vertical";
|
|
1085
1257
|
indexRef: React.MutableRefObject<number>;
|
|
1086
1258
|
nonInteractiveIds: string[];
|
|
1087
1259
|
isVirtualized: boolean;
|
|
1088
1260
|
items: import("../..").Item<any>[];
|
|
1089
1261
|
mode: "multiple" | "single";
|
|
1090
1262
|
}) => boolean) | undefined;
|
|
1091
|
-
|
|
1263
|
+
shouldRegisterItem?: ((data: {
|
|
1264
|
+
item: any;
|
|
1265
|
+
textValue: string;
|
|
1266
|
+
}, state: {
|
|
1092
1267
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
1093
1268
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1094
1269
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
1095
1270
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1096
1271
|
placement: import("@popperjs/core").Placement;
|
|
1097
1272
|
id: string;
|
|
1098
|
-
visibility:
|
|
1099
|
-
selectedIds:
|
|
1273
|
+
visibility: "hidden" | "visible";
|
|
1274
|
+
selectedIds: string[] | "all";
|
|
1100
1275
|
unselectedIds: string[];
|
|
1101
1276
|
cursorId: string;
|
|
1102
1277
|
columnCount: number;
|
|
1278
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1279
|
+
cursorIndexRef: {
|
|
1280
|
+
readonly current: number;
|
|
1281
|
+
};
|
|
1103
1282
|
UNSTABLE_virtual: {
|
|
1104
1283
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1105
1284
|
totalSize: number;
|
|
@@ -1109,7 +1288,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1109
1288
|
};
|
|
1110
1289
|
UNSTABLE_defaultItemHeight: number;
|
|
1111
1290
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1112
|
-
orientation:
|
|
1291
|
+
orientation: "horizontal" | "vertical";
|
|
1113
1292
|
indexRef: React.MutableRefObject<number>;
|
|
1114
1293
|
nonInteractiveIds: string[];
|
|
1115
1294
|
isVirtualized: boolean;
|
|
@@ -1125,11 +1304,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1125
1304
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1126
1305
|
placement: import("@popperjs/core").Placement;
|
|
1127
1306
|
id: string;
|
|
1128
|
-
visibility:
|
|
1129
|
-
selectedIds:
|
|
1307
|
+
visibility: "hidden" | "visible";
|
|
1308
|
+
selectedIds: string[] | "all";
|
|
1130
1309
|
unselectedIds: string[];
|
|
1131
1310
|
cursorId: string;
|
|
1132
1311
|
columnCount: number;
|
|
1312
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1313
|
+
cursorIndexRef: {
|
|
1314
|
+
readonly current: number;
|
|
1315
|
+
};
|
|
1133
1316
|
UNSTABLE_virtual: {
|
|
1134
1317
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1135
1318
|
totalSize: number;
|
|
@@ -1139,7 +1322,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1139
1322
|
};
|
|
1140
1323
|
UNSTABLE_defaultItemHeight: number;
|
|
1141
1324
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1142
|
-
orientation:
|
|
1325
|
+
orientation: "horizontal" | "vertical";
|
|
1143
1326
|
indexRef: React.MutableRefObject<number>;
|
|
1144
1327
|
nonInteractiveIds: string[];
|
|
1145
1328
|
isVirtualized: boolean;
|
|
@@ -1155,11 +1338,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1155
1338
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1156
1339
|
placement: import("@popperjs/core").Placement;
|
|
1157
1340
|
id: string;
|
|
1158
|
-
visibility:
|
|
1159
|
-
selectedIds:
|
|
1341
|
+
visibility: "hidden" | "visible";
|
|
1342
|
+
selectedIds: string[] | "all";
|
|
1160
1343
|
unselectedIds: string[];
|
|
1161
1344
|
cursorId: string;
|
|
1162
1345
|
columnCount: number;
|
|
1346
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1347
|
+
cursorIndexRef: {
|
|
1348
|
+
readonly current: number;
|
|
1349
|
+
};
|
|
1163
1350
|
UNSTABLE_virtual: {
|
|
1164
1351
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1165
1352
|
totalSize: number;
|
|
@@ -1169,7 +1356,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1169
1356
|
};
|
|
1170
1357
|
UNSTABLE_defaultItemHeight: number;
|
|
1171
1358
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1172
|
-
orientation:
|
|
1359
|
+
orientation: "horizontal" | "vertical";
|
|
1173
1360
|
indexRef: React.MutableRefObject<number>;
|
|
1174
1361
|
nonInteractiveIds: string[];
|
|
1175
1362
|
isVirtualized: boolean;
|
|
@@ -1177,6 +1364,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1177
1364
|
mode: "multiple" | "single";
|
|
1178
1365
|
}) => boolean) | undefined;
|
|
1179
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
|
+
*/
|
|
1180
1376
|
initialHiddenIds: string[];
|
|
1181
1377
|
containerWidth: number;
|
|
1182
1378
|
shouldCalculateOverflow: boolean;
|
|
@@ -1186,6 +1382,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1186
1382
|
initialCursorId: string;
|
|
1187
1383
|
columnCount: number;
|
|
1188
1384
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1385
|
+
pageSize: number;
|
|
1189
1386
|
getId: (item: any) => string;
|
|
1190
1387
|
getTextValue: (item: any) => string;
|
|
1191
1388
|
nonInteractiveIds: string[];
|
|
@@ -1205,10 +1402,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1205
1402
|
itemWidthCache: Record<string, number>;
|
|
1206
1403
|
containerWidth: number;
|
|
1207
1404
|
overflowTargetWidth: number;
|
|
1208
|
-
selectedIds:
|
|
1405
|
+
selectedIds: string[] | "all";
|
|
1209
1406
|
unselectedIds: string[];
|
|
1210
1407
|
cursorId: string;
|
|
1211
1408
|
columnCount: number;
|
|
1409
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1410
|
+
cursorIndexRef: {
|
|
1411
|
+
readonly current: number;
|
|
1412
|
+
};
|
|
1212
1413
|
UNSTABLE_virtual: {
|
|
1213
1414
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1214
1415
|
totalSize: number;
|
|
@@ -1235,10 +1436,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1235
1436
|
itemWidthCache: Record<string, number>;
|
|
1236
1437
|
containerWidth: number;
|
|
1237
1438
|
overflowTargetWidth: number;
|
|
1238
|
-
selectedIds:
|
|
1439
|
+
selectedIds: string[] | "all";
|
|
1239
1440
|
unselectedIds: string[];
|
|
1240
1441
|
cursorId: string;
|
|
1241
1442
|
columnCount: number;
|
|
1443
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1444
|
+
cursorIndexRef: {
|
|
1445
|
+
readonly current: number;
|
|
1446
|
+
};
|
|
1242
1447
|
UNSTABLE_virtual: {
|
|
1243
1448
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1244
1449
|
totalSize: number;
|
|
@@ -1265,10 +1470,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1265
1470
|
itemWidthCache: Record<string, number>;
|
|
1266
1471
|
containerWidth: number;
|
|
1267
1472
|
overflowTargetWidth: number;
|
|
1268
|
-
selectedIds:
|
|
1473
|
+
selectedIds: string[] | "all";
|
|
1269
1474
|
unselectedIds: string[];
|
|
1270
1475
|
cursorId: string;
|
|
1271
1476
|
columnCount: number;
|
|
1477
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1478
|
+
cursorIndexRef: {
|
|
1479
|
+
readonly current: number;
|
|
1480
|
+
};
|
|
1272
1481
|
UNSTABLE_virtual: {
|
|
1273
1482
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1274
1483
|
totalSize: number;
|
|
@@ -1295,10 +1504,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1295
1504
|
itemWidthCache: Record<string, number>;
|
|
1296
1505
|
containerWidth: number;
|
|
1297
1506
|
overflowTargetWidth: number;
|
|
1298
|
-
selectedIds:
|
|
1507
|
+
selectedIds: string[] | "all";
|
|
1299
1508
|
unselectedIds: string[];
|
|
1300
1509
|
cursorId: string;
|
|
1301
1510
|
columnCount: number;
|
|
1511
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1512
|
+
cursorIndexRef: {
|
|
1513
|
+
readonly current: number;
|
|
1514
|
+
};
|
|
1302
1515
|
UNSTABLE_virtual: {
|
|
1303
1516
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1304
1517
|
totalSize: number;
|
|
@@ -1325,10 +1538,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1325
1538
|
itemWidthCache: Record<string, number>;
|
|
1326
1539
|
containerWidth: number;
|
|
1327
1540
|
overflowTargetWidth: number;
|
|
1328
|
-
selectedIds:
|
|
1541
|
+
selectedIds: string[] | "all";
|
|
1329
1542
|
unselectedIds: string[];
|
|
1330
1543
|
cursorId: string;
|
|
1331
1544
|
columnCount: number;
|
|
1545
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1546
|
+
cursorIndexRef: {
|
|
1547
|
+
readonly current: number;
|
|
1548
|
+
};
|
|
1332
1549
|
UNSTABLE_virtual: {
|
|
1333
1550
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1334
1551
|
totalSize: number;
|
|
@@ -1356,10 +1573,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1356
1573
|
itemWidthCache: Record<string, number>;
|
|
1357
1574
|
containerWidth: number;
|
|
1358
1575
|
overflowTargetWidth: number;
|
|
1359
|
-
selectedIds:
|
|
1576
|
+
selectedIds: string[] | "all";
|
|
1360
1577
|
unselectedIds: string[];
|
|
1361
1578
|
cursorId: string;
|
|
1362
1579
|
columnCount: number;
|
|
1580
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1581
|
+
cursorIndexRef: {
|
|
1582
|
+
readonly current: number;
|
|
1583
|
+
};
|
|
1363
1584
|
UNSTABLE_virtual: {
|
|
1364
1585
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1365
1586
|
totalSize: number;
|
|
@@ -1386,10 +1607,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1386
1607
|
itemWidthCache: Record<string, number>;
|
|
1387
1608
|
containerWidth: number;
|
|
1388
1609
|
overflowTargetWidth: number;
|
|
1389
|
-
selectedIds:
|
|
1610
|
+
selectedIds: string[] | "all";
|
|
1390
1611
|
unselectedIds: string[];
|
|
1391
1612
|
cursorId: string;
|
|
1392
1613
|
columnCount: number;
|
|
1614
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1615
|
+
cursorIndexRef: {
|
|
1616
|
+
readonly current: number;
|
|
1617
|
+
};
|
|
1393
1618
|
UNSTABLE_virtual: {
|
|
1394
1619
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1395
1620
|
totalSize: number;
|
|
@@ -1416,10 +1641,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1416
1641
|
itemWidthCache: Record<string, number>;
|
|
1417
1642
|
containerWidth: number;
|
|
1418
1643
|
overflowTargetWidth: number;
|
|
1419
|
-
selectedIds:
|
|
1644
|
+
selectedIds: string[] | "all";
|
|
1420
1645
|
unselectedIds: string[];
|
|
1421
1646
|
cursorId: string;
|
|
1422
1647
|
columnCount: number;
|
|
1648
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1649
|
+
cursorIndexRef: {
|
|
1650
|
+
readonly current: number;
|
|
1651
|
+
};
|
|
1423
1652
|
UNSTABLE_virtual: {
|
|
1424
1653
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1425
1654
|
totalSize: number;
|
|
@@ -1446,10 +1675,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1446
1675
|
itemWidthCache: Record<string, number>;
|
|
1447
1676
|
containerWidth: number;
|
|
1448
1677
|
overflowTargetWidth: number;
|
|
1449
|
-
selectedIds:
|
|
1678
|
+
selectedIds: string[] | "all";
|
|
1450
1679
|
unselectedIds: string[];
|
|
1451
1680
|
cursorId: string;
|
|
1452
1681
|
columnCount: number;
|
|
1682
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1683
|
+
cursorIndexRef: {
|
|
1684
|
+
readonly current: number;
|
|
1685
|
+
};
|
|
1453
1686
|
UNSTABLE_virtual: {
|
|
1454
1687
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1455
1688
|
totalSize: number;
|
|
@@ -1474,10 +1707,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1474
1707
|
itemWidthCache: Record<string, number>;
|
|
1475
1708
|
containerWidth: number;
|
|
1476
1709
|
overflowTargetWidth: number;
|
|
1477
|
-
selectedIds:
|
|
1710
|
+
selectedIds: string[] | "all";
|
|
1478
1711
|
unselectedIds: string[];
|
|
1479
1712
|
cursorId: string;
|
|
1480
1713
|
columnCount: number;
|
|
1714
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1715
|
+
cursorIndexRef: {
|
|
1716
|
+
readonly current: number;
|
|
1717
|
+
};
|
|
1481
1718
|
UNSTABLE_virtual: {
|
|
1482
1719
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1483
1720
|
totalSize: number;
|
|
@@ -1502,10 +1739,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1502
1739
|
itemWidthCache: Record<string, number>;
|
|
1503
1740
|
containerWidth: number;
|
|
1504
1741
|
overflowTargetWidth: number;
|
|
1505
|
-
selectedIds:
|
|
1742
|
+
selectedIds: string[] | "all";
|
|
1506
1743
|
unselectedIds: string[];
|
|
1507
1744
|
cursorId: string;
|
|
1508
1745
|
columnCount: number;
|
|
1746
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1747
|
+
cursorIndexRef: {
|
|
1748
|
+
readonly current: number;
|
|
1749
|
+
};
|
|
1509
1750
|
UNSTABLE_virtual: {
|
|
1510
1751
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1511
1752
|
totalSize: number;
|
|
@@ -1521,9 +1762,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1521
1762
|
isVirtualized: boolean;
|
|
1522
1763
|
items: import("../..").Item<any>[];
|
|
1523
1764
|
}) => void) | undefined;
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
textValue: string;
|
|
1765
|
+
onGoTo?: ((data: {
|
|
1766
|
+
id: string;
|
|
1527
1767
|
}, prevState: {
|
|
1528
1768
|
getId: (item: any) => string;
|
|
1529
1769
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -1533,10 +1773,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1533
1773
|
itemWidthCache: Record<string, number>;
|
|
1534
1774
|
containerWidth: number;
|
|
1535
1775
|
overflowTargetWidth: number;
|
|
1536
|
-
selectedIds:
|
|
1776
|
+
selectedIds: string[] | "all";
|
|
1537
1777
|
unselectedIds: string[];
|
|
1538
1778
|
cursorId: string;
|
|
1539
1779
|
columnCount: number;
|
|
1780
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1781
|
+
cursorIndexRef: {
|
|
1782
|
+
readonly current: number;
|
|
1783
|
+
};
|
|
1540
1784
|
UNSTABLE_virtual: {
|
|
1541
1785
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1542
1786
|
totalSize: number;
|
|
@@ -1552,9 +1796,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1552
1796
|
isVirtualized: boolean;
|
|
1553
1797
|
items: import("../..").Item<any>[];
|
|
1554
1798
|
}) => void) | undefined;
|
|
1555
|
-
|
|
1556
|
-
id: string;
|
|
1557
|
-
}, prevState: {
|
|
1799
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
1558
1800
|
getId: (item: any) => string;
|
|
1559
1801
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1560
1802
|
panels: import("../..").Item<any>[];
|
|
@@ -1563,10 +1805,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1563
1805
|
itemWidthCache: Record<string, number>;
|
|
1564
1806
|
containerWidth: number;
|
|
1565
1807
|
overflowTargetWidth: number;
|
|
1566
|
-
selectedIds:
|
|
1808
|
+
selectedIds: string[] | "all";
|
|
1567
1809
|
unselectedIds: string[];
|
|
1568
1810
|
cursorId: string;
|
|
1569
1811
|
columnCount: number;
|
|
1812
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1813
|
+
cursorIndexRef: {
|
|
1814
|
+
readonly current: number;
|
|
1815
|
+
};
|
|
1570
1816
|
UNSTABLE_virtual: {
|
|
1571
1817
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1572
1818
|
totalSize: number;
|
|
@@ -1582,7 +1828,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1582
1828
|
isVirtualized: boolean;
|
|
1583
1829
|
items: import("../..").Item<any>[];
|
|
1584
1830
|
}) => void) | undefined;
|
|
1585
|
-
|
|
1831
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
1586
1832
|
getId: (item: any) => string;
|
|
1587
1833
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1588
1834
|
panels: import("../..").Item<any>[];
|
|
@@ -1591,10 +1837,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1591
1837
|
itemWidthCache: Record<string, number>;
|
|
1592
1838
|
containerWidth: number;
|
|
1593
1839
|
overflowTargetWidth: number;
|
|
1594
|
-
selectedIds:
|
|
1840
|
+
selectedIds: string[] | "all";
|
|
1595
1841
|
unselectedIds: string[];
|
|
1596
1842
|
cursorId: string;
|
|
1597
1843
|
columnCount: number;
|
|
1844
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1845
|
+
cursorIndexRef: {
|
|
1846
|
+
readonly current: number;
|
|
1847
|
+
};
|
|
1598
1848
|
UNSTABLE_virtual: {
|
|
1599
1849
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1600
1850
|
totalSize: number;
|
|
@@ -1610,7 +1860,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1610
1860
|
isVirtualized: boolean;
|
|
1611
1861
|
items: import("../..").Item<any>[];
|
|
1612
1862
|
}) => void) | undefined;
|
|
1613
|
-
|
|
1863
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
1614
1864
|
getId: (item: any) => string;
|
|
1615
1865
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1616
1866
|
panels: import("../..").Item<any>[];
|
|
@@ -1619,10 +1869,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1619
1869
|
itemWidthCache: Record<string, number>;
|
|
1620
1870
|
containerWidth: number;
|
|
1621
1871
|
overflowTargetWidth: number;
|
|
1622
|
-
selectedIds:
|
|
1872
|
+
selectedIds: string[] | "all";
|
|
1623
1873
|
unselectedIds: string[];
|
|
1624
1874
|
cursorId: string;
|
|
1625
1875
|
columnCount: number;
|
|
1876
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1877
|
+
cursorIndexRef: {
|
|
1878
|
+
readonly current: number;
|
|
1879
|
+
};
|
|
1626
1880
|
UNSTABLE_virtual: {
|
|
1627
1881
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1628
1882
|
totalSize: number;
|
|
@@ -1638,7 +1892,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1638
1892
|
isVirtualized: boolean;
|
|
1639
1893
|
items: import("../..").Item<any>[];
|
|
1640
1894
|
}) => void) | undefined;
|
|
1641
|
-
|
|
1895
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
1642
1896
|
getId: (item: any) => string;
|
|
1643
1897
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1644
1898
|
panels: import("../..").Item<any>[];
|
|
@@ -1647,10 +1901,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1647
1901
|
itemWidthCache: Record<string, number>;
|
|
1648
1902
|
containerWidth: number;
|
|
1649
1903
|
overflowTargetWidth: number;
|
|
1650
|
-
selectedIds:
|
|
1904
|
+
selectedIds: string[] | "all";
|
|
1651
1905
|
unselectedIds: string[];
|
|
1652
1906
|
cursorId: string;
|
|
1653
1907
|
columnCount: number;
|
|
1908
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1909
|
+
cursorIndexRef: {
|
|
1910
|
+
readonly current: number;
|
|
1911
|
+
};
|
|
1654
1912
|
UNSTABLE_virtual: {
|
|
1655
1913
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1656
1914
|
totalSize: number;
|
|
@@ -1666,7 +1924,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1666
1924
|
isVirtualized: boolean;
|
|
1667
1925
|
items: import("../..").Item<any>[];
|
|
1668
1926
|
}) => void) | undefined;
|
|
1669
|
-
|
|
1927
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
1670
1928
|
getId: (item: any) => string;
|
|
1671
1929
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1672
1930
|
panels: import("../..").Item<any>[];
|
|
@@ -1675,10 +1933,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1675
1933
|
itemWidthCache: Record<string, number>;
|
|
1676
1934
|
containerWidth: number;
|
|
1677
1935
|
overflowTargetWidth: number;
|
|
1678
|
-
selectedIds:
|
|
1936
|
+
selectedIds: string[] | "all";
|
|
1679
1937
|
unselectedIds: string[];
|
|
1680
1938
|
cursorId: string;
|
|
1681
1939
|
columnCount: number;
|
|
1940
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1941
|
+
cursorIndexRef: {
|
|
1942
|
+
readonly current: number;
|
|
1943
|
+
};
|
|
1682
1944
|
UNSTABLE_virtual: {
|
|
1683
1945
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1684
1946
|
totalSize: number;
|
|
@@ -1694,7 +1956,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1694
1956
|
isVirtualized: boolean;
|
|
1695
1957
|
items: import("../..").Item<any>[];
|
|
1696
1958
|
}) => void) | undefined;
|
|
1697
|
-
|
|
1959
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
1698
1960
|
getId: (item: any) => string;
|
|
1699
1961
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1700
1962
|
panels: import("../..").Item<any>[];
|
|
@@ -1703,10 +1965,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1703
1965
|
itemWidthCache: Record<string, number>;
|
|
1704
1966
|
containerWidth: number;
|
|
1705
1967
|
overflowTargetWidth: number;
|
|
1706
|
-
selectedIds:
|
|
1968
|
+
selectedIds: string[] | "all";
|
|
1707
1969
|
unselectedIds: string[];
|
|
1708
1970
|
cursorId: string;
|
|
1709
1971
|
columnCount: number;
|
|
1972
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1973
|
+
cursorIndexRef: {
|
|
1974
|
+
readonly current: number;
|
|
1975
|
+
};
|
|
1710
1976
|
UNSTABLE_virtual: {
|
|
1711
1977
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1712
1978
|
totalSize: number;
|
|
@@ -1722,7 +1988,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1722
1988
|
isVirtualized: boolean;
|
|
1723
1989
|
items: import("../..").Item<any>[];
|
|
1724
1990
|
}) => void) | undefined;
|
|
1725
|
-
|
|
1991
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
1726
1992
|
getId: (item: any) => string;
|
|
1727
1993
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1728
1994
|
panels: import("../..").Item<any>[];
|
|
@@ -1731,10 +1997,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1731
1997
|
itemWidthCache: Record<string, number>;
|
|
1732
1998
|
containerWidth: number;
|
|
1733
1999
|
overflowTargetWidth: number;
|
|
1734
|
-
selectedIds:
|
|
2000
|
+
selectedIds: string[] | "all";
|
|
1735
2001
|
unselectedIds: string[];
|
|
1736
2002
|
cursorId: string;
|
|
1737
2003
|
columnCount: number;
|
|
2004
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2005
|
+
cursorIndexRef: {
|
|
2006
|
+
readonly current: number;
|
|
2007
|
+
};
|
|
1738
2008
|
UNSTABLE_virtual: {
|
|
1739
2009
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1740
2010
|
totalSize: number;
|
|
@@ -1750,7 +2020,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1750
2020
|
isVirtualized: boolean;
|
|
1751
2021
|
items: import("../..").Item<any>[];
|
|
1752
2022
|
}) => void) | undefined;
|
|
1753
|
-
|
|
2023
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
1754
2024
|
getId: (item: any) => string;
|
|
1755
2025
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1756
2026
|
panels: import("../..").Item<any>[];
|
|
@@ -1759,10 +2029,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1759
2029
|
itemWidthCache: Record<string, number>;
|
|
1760
2030
|
containerWidth: number;
|
|
1761
2031
|
overflowTargetWidth: number;
|
|
1762
|
-
selectedIds:
|
|
2032
|
+
selectedIds: string[] | "all";
|
|
1763
2033
|
unselectedIds: string[];
|
|
1764
2034
|
cursorId: string;
|
|
1765
2035
|
columnCount: number;
|
|
2036
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2037
|
+
cursorIndexRef: {
|
|
2038
|
+
readonly current: number;
|
|
2039
|
+
};
|
|
1766
2040
|
UNSTABLE_virtual: {
|
|
1767
2041
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1768
2042
|
totalSize: number;
|
|
@@ -1778,7 +2052,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1778
2052
|
isVirtualized: boolean;
|
|
1779
2053
|
items: import("../..").Item<any>[];
|
|
1780
2054
|
}) => void) | undefined;
|
|
1781
|
-
|
|
2055
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
1782
2056
|
getId: (item: any) => string;
|
|
1783
2057
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1784
2058
|
panels: import("../..").Item<any>[];
|
|
@@ -1787,10 +2061,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1787
2061
|
itemWidthCache: Record<string, number>;
|
|
1788
2062
|
containerWidth: number;
|
|
1789
2063
|
overflowTargetWidth: number;
|
|
1790
|
-
selectedIds:
|
|
2064
|
+
selectedIds: string[] | "all";
|
|
1791
2065
|
unselectedIds: string[];
|
|
1792
2066
|
cursorId: string;
|
|
1793
2067
|
columnCount: number;
|
|
2068
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2069
|
+
cursorIndexRef: {
|
|
2070
|
+
readonly current: number;
|
|
2071
|
+
};
|
|
1794
2072
|
UNSTABLE_virtual: {
|
|
1795
2073
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1796
2074
|
totalSize: number;
|
|
@@ -1806,7 +2084,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1806
2084
|
isVirtualized: boolean;
|
|
1807
2085
|
items: import("../..").Item<any>[];
|
|
1808
2086
|
}) => void) | undefined;
|
|
1809
|
-
|
|
2087
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
1810
2088
|
getId: (item: any) => string;
|
|
1811
2089
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1812
2090
|
panels: import("../..").Item<any>[];
|
|
@@ -1815,10 +2093,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1815
2093
|
itemWidthCache: Record<string, number>;
|
|
1816
2094
|
containerWidth: number;
|
|
1817
2095
|
overflowTargetWidth: number;
|
|
1818
|
-
selectedIds:
|
|
2096
|
+
selectedIds: string[] | "all";
|
|
1819
2097
|
unselectedIds: string[];
|
|
1820
2098
|
cursorId: string;
|
|
1821
2099
|
columnCount: number;
|
|
2100
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2101
|
+
cursorIndexRef: {
|
|
2102
|
+
readonly current: number;
|
|
2103
|
+
};
|
|
1822
2104
|
UNSTABLE_virtual: {
|
|
1823
2105
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1824
2106
|
totalSize: number;
|
|
@@ -1834,7 +2116,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1834
2116
|
isVirtualized: boolean;
|
|
1835
2117
|
items: import("../..").Item<any>[];
|
|
1836
2118
|
}) => void) | undefined;
|
|
1837
|
-
|
|
2119
|
+
onRegisterItem?: ((data: {
|
|
2120
|
+
item: any;
|
|
2121
|
+
textValue: string;
|
|
2122
|
+
}, prevState: {
|
|
1838
2123
|
getId: (item: any) => string;
|
|
1839
2124
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1840
2125
|
panels: import("../..").Item<any>[];
|
|
@@ -1843,10 +2128,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1843
2128
|
itemWidthCache: Record<string, number>;
|
|
1844
2129
|
containerWidth: number;
|
|
1845
2130
|
overflowTargetWidth: number;
|
|
1846
|
-
selectedIds:
|
|
2131
|
+
selectedIds: string[] | "all";
|
|
1847
2132
|
unselectedIds: string[];
|
|
1848
2133
|
cursorId: string;
|
|
1849
2134
|
columnCount: number;
|
|
2135
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2136
|
+
cursorIndexRef: {
|
|
2137
|
+
readonly current: number;
|
|
2138
|
+
};
|
|
1850
2139
|
UNSTABLE_virtual: {
|
|
1851
2140
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1852
2141
|
totalSize: number;
|
|
@@ -1873,10 +2162,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1873
2162
|
itemWidthCache: Record<string, number>;
|
|
1874
2163
|
containerWidth: number;
|
|
1875
2164
|
overflowTargetWidth: number;
|
|
1876
|
-
selectedIds:
|
|
2165
|
+
selectedIds: string[] | "all";
|
|
1877
2166
|
unselectedIds: string[];
|
|
1878
2167
|
cursorId: string;
|
|
1879
2168
|
columnCount: number;
|
|
2169
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2170
|
+
cursorIndexRef: {
|
|
2171
|
+
readonly current: number;
|
|
2172
|
+
};
|
|
1880
2173
|
UNSTABLE_virtual: {
|
|
1881
2174
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1882
2175
|
totalSize: number;
|
|
@@ -1903,10 +2196,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1903
2196
|
itemWidthCache: Record<string, number>;
|
|
1904
2197
|
containerWidth: number;
|
|
1905
2198
|
overflowTargetWidth: number;
|
|
1906
|
-
selectedIds:
|
|
2199
|
+
selectedIds: string[] | "all";
|
|
1907
2200
|
unselectedIds: string[];
|
|
1908
2201
|
cursorId: string;
|
|
1909
2202
|
columnCount: number;
|
|
2203
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2204
|
+
cursorIndexRef: {
|
|
2205
|
+
readonly current: number;
|
|
2206
|
+
};
|
|
1910
2207
|
UNSTABLE_virtual: {
|
|
1911
2208
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1912
2209
|
totalSize: number;
|
|
@@ -1935,10 +2232,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1935
2232
|
itemWidthCache: Record<string, number>;
|
|
1936
2233
|
containerWidth: number;
|
|
1937
2234
|
overflowTargetWidth: number;
|
|
1938
|
-
selectedIds:
|
|
2235
|
+
selectedIds: string[] | "all";
|
|
1939
2236
|
unselectedIds: string[];
|
|
1940
2237
|
cursorId: string;
|
|
1941
2238
|
columnCount: number;
|
|
2239
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2240
|
+
cursorIndexRef: {
|
|
2241
|
+
readonly current: number;
|
|
2242
|
+
};
|
|
1942
2243
|
UNSTABLE_virtual: {
|
|
1943
2244
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1944
2245
|
totalSize: number;
|
|
@@ -1965,10 +2266,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1965
2266
|
itemWidthCache: Record<string, number>;
|
|
1966
2267
|
containerWidth: number;
|
|
1967
2268
|
overflowTargetWidth: number;
|
|
1968
|
-
selectedIds:
|
|
2269
|
+
selectedIds: string[] | "all";
|
|
1969
2270
|
unselectedIds: string[];
|
|
1970
2271
|
cursorId: string;
|
|
1971
2272
|
columnCount: number;
|
|
2273
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2274
|
+
cursorIndexRef: {
|
|
2275
|
+
readonly current: number;
|
|
2276
|
+
};
|
|
1972
2277
|
UNSTABLE_virtual: {
|
|
1973
2278
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1974
2279
|
totalSize: number;
|
|
@@ -1995,10 +2300,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
1995
2300
|
itemWidthCache: Record<string, number>;
|
|
1996
2301
|
containerWidth: number;
|
|
1997
2302
|
overflowTargetWidth: number;
|
|
1998
|
-
selectedIds:
|
|
2303
|
+
selectedIds: string[] | "all";
|
|
1999
2304
|
unselectedIds: string[];
|
|
2000
2305
|
cursorId: string;
|
|
2001
2306
|
columnCount: number;
|
|
2307
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2308
|
+
cursorIndexRef: {
|
|
2309
|
+
readonly current: number;
|
|
2310
|
+
};
|
|
2002
2311
|
UNSTABLE_virtual: {
|
|
2003
2312
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2004
2313
|
totalSize: number;
|
|
@@ -2025,10 +2334,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2025
2334
|
itemWidthCache: Record<string, number>;
|
|
2026
2335
|
containerWidth: number;
|
|
2027
2336
|
overflowTargetWidth: number;
|
|
2028
|
-
selectedIds:
|
|
2337
|
+
selectedIds: string[] | "all";
|
|
2029
2338
|
unselectedIds: string[];
|
|
2030
2339
|
cursorId: string;
|
|
2031
2340
|
columnCount: number;
|
|
2341
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2342
|
+
cursorIndexRef: {
|
|
2343
|
+
readonly current: number;
|
|
2344
|
+
};
|
|
2032
2345
|
UNSTABLE_virtual: {
|
|
2033
2346
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2034
2347
|
totalSize: number;
|
|
@@ -2055,10 +2368,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2055
2368
|
itemWidthCache: Record<string, number>;
|
|
2056
2369
|
containerWidth: number;
|
|
2057
2370
|
overflowTargetWidth: number;
|
|
2058
|
-
selectedIds:
|
|
2371
|
+
selectedIds: string[] | "all";
|
|
2059
2372
|
unselectedIds: string[];
|
|
2060
2373
|
cursorId: string;
|
|
2061
2374
|
columnCount: number;
|
|
2375
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2376
|
+
cursorIndexRef: {
|
|
2377
|
+
readonly current: number;
|
|
2378
|
+
};
|
|
2062
2379
|
UNSTABLE_virtual: {
|
|
2063
2380
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2064
2381
|
totalSize: number;
|
|
@@ -2086,10 +2403,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2086
2403
|
itemWidthCache: Record<string, number>;
|
|
2087
2404
|
containerWidth: number;
|
|
2088
2405
|
overflowTargetWidth: number;
|
|
2089
|
-
selectedIds:
|
|
2406
|
+
selectedIds: string[] | "all";
|
|
2090
2407
|
unselectedIds: string[];
|
|
2091
2408
|
cursorId: string;
|
|
2092
2409
|
columnCount: number;
|
|
2410
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2411
|
+
cursorIndexRef: {
|
|
2412
|
+
readonly current: number;
|
|
2413
|
+
};
|
|
2093
2414
|
UNSTABLE_virtual: {
|
|
2094
2415
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2095
2416
|
totalSize: number;
|
|
@@ -2116,10 +2437,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2116
2437
|
itemWidthCache: Record<string, number>;
|
|
2117
2438
|
containerWidth: number;
|
|
2118
2439
|
overflowTargetWidth: number;
|
|
2119
|
-
selectedIds:
|
|
2440
|
+
selectedIds: string[] | "all";
|
|
2120
2441
|
unselectedIds: string[];
|
|
2121
2442
|
cursorId: string;
|
|
2122
2443
|
columnCount: number;
|
|
2444
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2445
|
+
cursorIndexRef: {
|
|
2446
|
+
readonly current: number;
|
|
2447
|
+
};
|
|
2123
2448
|
UNSTABLE_virtual: {
|
|
2124
2449
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2125
2450
|
totalSize: number;
|
|
@@ -2146,10 +2471,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2146
2471
|
itemWidthCache: Record<string, number>;
|
|
2147
2472
|
containerWidth: number;
|
|
2148
2473
|
overflowTargetWidth: number;
|
|
2149
|
-
selectedIds:
|
|
2474
|
+
selectedIds: string[] | "all";
|
|
2150
2475
|
unselectedIds: string[];
|
|
2151
2476
|
cursorId: string;
|
|
2152
2477
|
columnCount: number;
|
|
2478
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2479
|
+
cursorIndexRef: {
|
|
2480
|
+
readonly current: number;
|
|
2481
|
+
};
|
|
2153
2482
|
UNSTABLE_virtual: {
|
|
2154
2483
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2155
2484
|
totalSize: number;
|
|
@@ -2176,10 +2505,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2176
2505
|
itemWidthCache: Record<string, number>;
|
|
2177
2506
|
containerWidth: number;
|
|
2178
2507
|
overflowTargetWidth: number;
|
|
2179
|
-
selectedIds:
|
|
2508
|
+
selectedIds: string[] | "all";
|
|
2180
2509
|
unselectedIds: string[];
|
|
2181
2510
|
cursorId: string;
|
|
2182
2511
|
columnCount: number;
|
|
2512
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2513
|
+
cursorIndexRef: {
|
|
2514
|
+
readonly current: number;
|
|
2515
|
+
};
|
|
2183
2516
|
UNSTABLE_virtual: {
|
|
2184
2517
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2185
2518
|
totalSize: number;
|
|
@@ -2204,10 +2537,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2204
2537
|
itemWidthCache: Record<string, number>;
|
|
2205
2538
|
containerWidth: number;
|
|
2206
2539
|
overflowTargetWidth: number;
|
|
2207
|
-
selectedIds:
|
|
2540
|
+
selectedIds: string[] | "all";
|
|
2208
2541
|
unselectedIds: string[];
|
|
2209
2542
|
cursorId: string;
|
|
2210
2543
|
columnCount: number;
|
|
2544
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2545
|
+
cursorIndexRef: {
|
|
2546
|
+
readonly current: number;
|
|
2547
|
+
};
|
|
2211
2548
|
UNSTABLE_virtual: {
|
|
2212
2549
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2213
2550
|
totalSize: number;
|
|
@@ -2232,41 +2569,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2232
2569
|
itemWidthCache: Record<string, number>;
|
|
2233
2570
|
containerWidth: number;
|
|
2234
2571
|
overflowTargetWidth: number;
|
|
2235
|
-
selectedIds:
|
|
2572
|
+
selectedIds: string[] | "all";
|
|
2236
2573
|
unselectedIds: string[];
|
|
2237
2574
|
cursorId: string;
|
|
2238
2575
|
columnCount: number;
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
2243
|
-
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
2244
|
-
measure: () => void;
|
|
2576
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2577
|
+
cursorIndexRef: {
|
|
2578
|
+
readonly current: number;
|
|
2245
2579
|
};
|
|
2246
|
-
UNSTABLE_defaultItemHeight: number;
|
|
2247
|
-
containerRef: React.RefObject<HTMLDivElement>;
|
|
2248
|
-
id: string;
|
|
2249
|
-
indexRef: React.MutableRefObject<number>;
|
|
2250
|
-
nonInteractiveIds: string[];
|
|
2251
|
-
isVirtualized: boolean;
|
|
2252
|
-
items: import("../..").Item<any>[];
|
|
2253
|
-
}) => boolean) | undefined;
|
|
2254
|
-
shouldRegisterItem?: ((data: {
|
|
2255
|
-
item: any;
|
|
2256
|
-
textValue: string;
|
|
2257
|
-
}, state: {
|
|
2258
|
-
getId: (item: any) => string;
|
|
2259
|
-
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2260
|
-
panels: import("../..").Item<any>[];
|
|
2261
|
-
panelIndexRef: React.MutableRefObject<number>;
|
|
2262
|
-
hiddenIds: string[];
|
|
2263
|
-
itemWidthCache: Record<string, number>;
|
|
2264
|
-
containerWidth: number;
|
|
2265
|
-
overflowTargetWidth: number;
|
|
2266
|
-
selectedIds: import("../../collection/lib/useSelectionListModel").SelectedIds;
|
|
2267
|
-
unselectedIds: string[];
|
|
2268
|
-
cursorId: string;
|
|
2269
|
-
columnCount: number;
|
|
2270
2580
|
UNSTABLE_virtual: {
|
|
2271
2581
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2272
2582
|
totalSize: number;
|
|
@@ -2293,10 +2603,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2293
2603
|
itemWidthCache: Record<string, number>;
|
|
2294
2604
|
containerWidth: number;
|
|
2295
2605
|
overflowTargetWidth: number;
|
|
2296
|
-
selectedIds:
|
|
2606
|
+
selectedIds: string[] | "all";
|
|
2297
2607
|
unselectedIds: string[];
|
|
2298
2608
|
cursorId: string;
|
|
2299
2609
|
columnCount: number;
|
|
2610
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2611
|
+
cursorIndexRef: {
|
|
2612
|
+
readonly current: number;
|
|
2613
|
+
};
|
|
2300
2614
|
UNSTABLE_virtual: {
|
|
2301
2615
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2302
2616
|
totalSize: number;
|
|
@@ -2321,10 +2635,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2321
2635
|
itemWidthCache: Record<string, number>;
|
|
2322
2636
|
containerWidth: number;
|
|
2323
2637
|
overflowTargetWidth: number;
|
|
2324
|
-
selectedIds:
|
|
2638
|
+
selectedIds: string[] | "all";
|
|
2325
2639
|
unselectedIds: string[];
|
|
2326
2640
|
cursorId: string;
|
|
2327
2641
|
columnCount: number;
|
|
2642
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2643
|
+
cursorIndexRef: {
|
|
2644
|
+
readonly current: number;
|
|
2645
|
+
};
|
|
2328
2646
|
UNSTABLE_virtual: {
|
|
2329
2647
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2330
2648
|
totalSize: number;
|
|
@@ -2349,10 +2667,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2349
2667
|
itemWidthCache: Record<string, number>;
|
|
2350
2668
|
containerWidth: number;
|
|
2351
2669
|
overflowTargetWidth: number;
|
|
2352
|
-
selectedIds:
|
|
2670
|
+
selectedIds: string[] | "all";
|
|
2353
2671
|
unselectedIds: string[];
|
|
2354
2672
|
cursorId: string;
|
|
2355
2673
|
columnCount: number;
|
|
2674
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2675
|
+
cursorIndexRef: {
|
|
2676
|
+
readonly current: number;
|
|
2677
|
+
};
|
|
2356
2678
|
UNSTABLE_virtual: {
|
|
2357
2679
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2358
2680
|
totalSize: number;
|
|
@@ -2377,10 +2699,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2377
2699
|
itemWidthCache: Record<string, number>;
|
|
2378
2700
|
containerWidth: number;
|
|
2379
2701
|
overflowTargetWidth: number;
|
|
2380
|
-
selectedIds:
|
|
2702
|
+
selectedIds: string[] | "all";
|
|
2381
2703
|
unselectedIds: string[];
|
|
2382
2704
|
cursorId: string;
|
|
2383
2705
|
columnCount: number;
|
|
2706
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2707
|
+
cursorIndexRef: {
|
|
2708
|
+
readonly current: number;
|
|
2709
|
+
};
|
|
2384
2710
|
UNSTABLE_virtual: {
|
|
2385
2711
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2386
2712
|
totalSize: number;
|
|
@@ -2405,10 +2731,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2405
2731
|
itemWidthCache: Record<string, number>;
|
|
2406
2732
|
containerWidth: number;
|
|
2407
2733
|
overflowTargetWidth: number;
|
|
2408
|
-
selectedIds:
|
|
2734
|
+
selectedIds: string[] | "all";
|
|
2409
2735
|
unselectedIds: string[];
|
|
2410
2736
|
cursorId: string;
|
|
2411
2737
|
columnCount: number;
|
|
2738
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2739
|
+
cursorIndexRef: {
|
|
2740
|
+
readonly current: number;
|
|
2741
|
+
};
|
|
2412
2742
|
UNSTABLE_virtual: {
|
|
2413
2743
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2414
2744
|
totalSize: number;
|
|
@@ -2433,10 +2763,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2433
2763
|
itemWidthCache: Record<string, number>;
|
|
2434
2764
|
containerWidth: number;
|
|
2435
2765
|
overflowTargetWidth: number;
|
|
2436
|
-
selectedIds:
|
|
2766
|
+
selectedIds: string[] | "all";
|
|
2437
2767
|
unselectedIds: string[];
|
|
2438
2768
|
cursorId: string;
|
|
2439
2769
|
columnCount: number;
|
|
2770
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2771
|
+
cursorIndexRef: {
|
|
2772
|
+
readonly current: number;
|
|
2773
|
+
};
|
|
2440
2774
|
UNSTABLE_virtual: {
|
|
2441
2775
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2442
2776
|
totalSize: number;
|
|
@@ -2461,10 +2795,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2461
2795
|
itemWidthCache: Record<string, number>;
|
|
2462
2796
|
containerWidth: number;
|
|
2463
2797
|
overflowTargetWidth: number;
|
|
2464
|
-
selectedIds:
|
|
2798
|
+
selectedIds: string[] | "all";
|
|
2465
2799
|
unselectedIds: string[];
|
|
2466
2800
|
cursorId: string;
|
|
2467
2801
|
columnCount: number;
|
|
2802
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2803
|
+
cursorIndexRef: {
|
|
2804
|
+
readonly current: number;
|
|
2805
|
+
};
|
|
2468
2806
|
UNSTABLE_virtual: {
|
|
2469
2807
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2470
2808
|
totalSize: number;
|
|
@@ -2489,10 +2827,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2489
2827
|
itemWidthCache: Record<string, number>;
|
|
2490
2828
|
containerWidth: number;
|
|
2491
2829
|
overflowTargetWidth: number;
|
|
2492
|
-
selectedIds:
|
|
2830
|
+
selectedIds: string[] | "all";
|
|
2493
2831
|
unselectedIds: string[];
|
|
2494
2832
|
cursorId: string;
|
|
2495
2833
|
columnCount: number;
|
|
2834
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2835
|
+
cursorIndexRef: {
|
|
2836
|
+
readonly current: number;
|
|
2837
|
+
};
|
|
2496
2838
|
UNSTABLE_virtual: {
|
|
2497
2839
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2498
2840
|
totalSize: number;
|
|
@@ -2517,10 +2859,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2517
2859
|
itemWidthCache: Record<string, number>;
|
|
2518
2860
|
containerWidth: number;
|
|
2519
2861
|
overflowTargetWidth: number;
|
|
2520
|
-
selectedIds:
|
|
2862
|
+
selectedIds: string[] | "all";
|
|
2521
2863
|
unselectedIds: string[];
|
|
2522
2864
|
cursorId: string;
|
|
2523
2865
|
columnCount: number;
|
|
2866
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2867
|
+
cursorIndexRef: {
|
|
2868
|
+
readonly current: number;
|
|
2869
|
+
};
|
|
2524
2870
|
UNSTABLE_virtual: {
|
|
2525
2871
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2526
2872
|
totalSize: number;
|
|
@@ -2545,10 +2891,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2545
2891
|
itemWidthCache: Record<string, number>;
|
|
2546
2892
|
containerWidth: number;
|
|
2547
2893
|
overflowTargetWidth: number;
|
|
2548
|
-
selectedIds:
|
|
2894
|
+
selectedIds: string[] | "all";
|
|
2549
2895
|
unselectedIds: string[];
|
|
2550
2896
|
cursorId: string;
|
|
2551
2897
|
columnCount: number;
|
|
2898
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2899
|
+
cursorIndexRef: {
|
|
2900
|
+
readonly current: number;
|
|
2901
|
+
};
|
|
2552
2902
|
UNSTABLE_virtual: {
|
|
2553
2903
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2554
2904
|
totalSize: number;
|
|
@@ -2573,10 +2923,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2573
2923
|
itemWidthCache: Record<string, number>;
|
|
2574
2924
|
containerWidth: number;
|
|
2575
2925
|
overflowTargetWidth: number;
|
|
2576
|
-
selectedIds:
|
|
2926
|
+
selectedIds: string[] | "all";
|
|
2577
2927
|
unselectedIds: string[];
|
|
2578
2928
|
cursorId: string;
|
|
2579
2929
|
columnCount: number;
|
|
2930
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2931
|
+
cursorIndexRef: {
|
|
2932
|
+
readonly current: number;
|
|
2933
|
+
};
|
|
2580
2934
|
UNSTABLE_virtual: {
|
|
2581
2935
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2582
2936
|
totalSize: number;
|
|
@@ -2592,7 +2946,42 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2592
2946
|
isVirtualized: boolean;
|
|
2593
2947
|
items: import("../..").Item<any>[];
|
|
2594
2948
|
}) => boolean) | undefined;
|
|
2595
|
-
|
|
2949
|
+
shouldRegisterItem?: ((data: {
|
|
2950
|
+
item: any;
|
|
2951
|
+
textValue: string;
|
|
2952
|
+
}, state: {
|
|
2953
|
+
getId: (item: any) => string;
|
|
2954
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2955
|
+
panels: import("../..").Item<any>[];
|
|
2956
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
2957
|
+
hiddenIds: string[];
|
|
2958
|
+
itemWidthCache: Record<string, number>;
|
|
2959
|
+
containerWidth: number;
|
|
2960
|
+
overflowTargetWidth: number;
|
|
2961
|
+
selectedIds: string[] | "all";
|
|
2962
|
+
unselectedIds: string[];
|
|
2963
|
+
cursorId: string;
|
|
2964
|
+
columnCount: number;
|
|
2965
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2966
|
+
cursorIndexRef: {
|
|
2967
|
+
readonly current: number;
|
|
2968
|
+
};
|
|
2969
|
+
UNSTABLE_virtual: {
|
|
2970
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2971
|
+
totalSize: number;
|
|
2972
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
2973
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
2974
|
+
measure: () => void;
|
|
2975
|
+
};
|
|
2976
|
+
UNSTABLE_defaultItemHeight: number;
|
|
2977
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2978
|
+
id: string;
|
|
2979
|
+
indexRef: React.MutableRefObject<number>;
|
|
2980
|
+
nonInteractiveIds: string[];
|
|
2981
|
+
isVirtualized: boolean;
|
|
2982
|
+
items: import("../..").Item<any>[];
|
|
2983
|
+
}) => boolean) | undefined;
|
|
2984
|
+
shouldUnregisterItem?: ((data: {
|
|
2596
2985
|
id: string;
|
|
2597
2986
|
}, state: {
|
|
2598
2987
|
getId: (item: any) => string;
|
|
@@ -2603,10 +2992,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2603
2992
|
itemWidthCache: Record<string, number>;
|
|
2604
2993
|
containerWidth: number;
|
|
2605
2994
|
overflowTargetWidth: number;
|
|
2606
|
-
selectedIds:
|
|
2995
|
+
selectedIds: string[] | "all";
|
|
2607
2996
|
unselectedIds: string[];
|
|
2608
2997
|
cursorId: string;
|
|
2609
2998
|
columnCount: number;
|
|
2999
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3000
|
+
cursorIndexRef: {
|
|
3001
|
+
readonly current: number;
|
|
3002
|
+
};
|
|
2610
3003
|
UNSTABLE_virtual: {
|
|
2611
3004
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2612
3005
|
totalSize: number;
|
|
@@ -2633,10 +3026,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2633
3026
|
itemWidthCache: Record<string, number>;
|
|
2634
3027
|
containerWidth: number;
|
|
2635
3028
|
overflowTargetWidth: number;
|
|
2636
|
-
selectedIds:
|
|
3029
|
+
selectedIds: string[] | "all";
|
|
2637
3030
|
unselectedIds: string[];
|
|
2638
3031
|
cursorId: string;
|
|
2639
3032
|
columnCount: number;
|
|
3033
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3034
|
+
cursorIndexRef: {
|
|
3035
|
+
readonly current: number;
|
|
3036
|
+
};
|
|
2640
3037
|
UNSTABLE_virtual: {
|
|
2641
3038
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2642
3039
|
totalSize: number;
|
|
@@ -2662,10 +3059,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2662
3059
|
itemWidthCache: Record<string, number>;
|
|
2663
3060
|
containerWidth: number;
|
|
2664
3061
|
overflowTargetWidth: number;
|
|
2665
|
-
selectedIds:
|
|
3062
|
+
selectedIds: string[] | "all";
|
|
2666
3063
|
unselectedIds: string[];
|
|
2667
3064
|
cursorId: string;
|
|
2668
3065
|
columnCount: number;
|
|
3066
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3067
|
+
cursorIndexRef: {
|
|
3068
|
+
readonly current: number;
|
|
3069
|
+
};
|
|
2669
3070
|
UNSTABLE_virtual: {
|
|
2670
3071
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2671
3072
|
totalSize: number;
|
|
@@ -2713,10 +3114,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2713
3114
|
}): void;
|
|
2714
3115
|
selectAll(): void;
|
|
2715
3116
|
unselectAll(): void;
|
|
2716
|
-
registerItem(data: {
|
|
2717
|
-
item: any;
|
|
2718
|
-
textValue: string;
|
|
2719
|
-
}): void;
|
|
2720
3117
|
goTo(data: {
|
|
2721
3118
|
id: string;
|
|
2722
3119
|
}): void;
|
|
@@ -2730,6 +3127,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2730
3127
|
goToLastOfRow(): void;
|
|
2731
3128
|
goToNextPage(): void;
|
|
2732
3129
|
goToPreviousPage(): void;
|
|
3130
|
+
registerItem(data: {
|
|
3131
|
+
item: any;
|
|
3132
|
+
textValue: string;
|
|
3133
|
+
}): void;
|
|
2733
3134
|
unregisterItem(data: {
|
|
2734
3135
|
id: string;
|
|
2735
3136
|
}): void;
|
|
@@ -2745,11 +3146,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2745
3146
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2746
3147
|
placement: import("@popperjs/core").Placement;
|
|
2747
3148
|
id: string;
|
|
2748
|
-
visibility:
|
|
2749
|
-
selectedIds:
|
|
3149
|
+
visibility: "hidden" | "visible";
|
|
3150
|
+
selectedIds: string[] | "all";
|
|
2750
3151
|
unselectedIds: string[];
|
|
2751
3152
|
cursorId: string;
|
|
2752
3153
|
columnCount: number;
|
|
3154
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3155
|
+
cursorIndexRef: {
|
|
3156
|
+
readonly current: number;
|
|
3157
|
+
};
|
|
2753
3158
|
UNSTABLE_virtual: {
|
|
2754
3159
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2755
3160
|
totalSize: number;
|
|
@@ -2759,7 +3164,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2759
3164
|
};
|
|
2760
3165
|
UNSTABLE_defaultItemHeight: number;
|
|
2761
3166
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2762
|
-
orientation:
|
|
3167
|
+
orientation: "horizontal" | "vertical";
|
|
2763
3168
|
indexRef: React.MutableRefObject<number>;
|
|
2764
3169
|
nonInteractiveIds: string[];
|
|
2765
3170
|
isVirtualized: boolean;
|
|
@@ -2777,10 +3182,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2777
3182
|
}): void;
|
|
2778
3183
|
selectAll(): void;
|
|
2779
3184
|
unselectAll(): void;
|
|
2780
|
-
registerItem(data: {
|
|
2781
|
-
item: any;
|
|
2782
|
-
textValue: string;
|
|
2783
|
-
}): void;
|
|
2784
3185
|
goTo(data: {
|
|
2785
3186
|
id: string;
|
|
2786
3187
|
}): void;
|
|
@@ -2794,6 +3195,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2794
3195
|
goToLastOfRow(): void;
|
|
2795
3196
|
goToNextPage(): void;
|
|
2796
3197
|
goToPreviousPage(): void;
|
|
3198
|
+
registerItem(data: {
|
|
3199
|
+
item: any;
|
|
3200
|
+
textValue: string;
|
|
3201
|
+
}): void;
|
|
2797
3202
|
unregisterItem(data: {
|
|
2798
3203
|
id: string;
|
|
2799
3204
|
}): void;
|
|
@@ -2809,7 +3214,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2809
3214
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2810
3215
|
getId: (item: any) => string;
|
|
2811
3216
|
}> & {
|
|
2812
|
-
|
|
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>, {
|
|
2813
3226
|
state: {
|
|
2814
3227
|
getId: (item: any) => string;
|
|
2815
3228
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -2819,10 +3232,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2819
3232
|
itemWidthCache: Record<string, number>;
|
|
2820
3233
|
containerWidth: number;
|
|
2821
3234
|
overflowTargetWidth: number;
|
|
2822
|
-
selectedIds:
|
|
3235
|
+
selectedIds: string[] | "all";
|
|
2823
3236
|
unselectedIds: string[];
|
|
2824
3237
|
cursorId: string;
|
|
2825
3238
|
columnCount: number;
|
|
3239
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3240
|
+
cursorIndexRef: {
|
|
3241
|
+
readonly current: number;
|
|
3242
|
+
};
|
|
2826
3243
|
UNSTABLE_virtual: {
|
|
2827
3244
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2828
3245
|
totalSize: number;
|
|
@@ -2870,10 +3287,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2870
3287
|
}): void;
|
|
2871
3288
|
selectAll(): void;
|
|
2872
3289
|
unselectAll(): void;
|
|
2873
|
-
registerItem(data: {
|
|
2874
|
-
item: any;
|
|
2875
|
-
textValue: string;
|
|
2876
|
-
}): void;
|
|
2877
3290
|
goTo(data: {
|
|
2878
3291
|
id: string;
|
|
2879
3292
|
}): void;
|
|
@@ -2887,6 +3300,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2887
3300
|
goToLastOfRow(): void;
|
|
2888
3301
|
goToNextPage(): void;
|
|
2889
3302
|
goToPreviousPage(): void;
|
|
3303
|
+
registerItem(data: {
|
|
3304
|
+
item: any;
|
|
3305
|
+
textValue: string;
|
|
3306
|
+
}): void;
|
|
2890
3307
|
unregisterItem(data: {
|
|
2891
3308
|
id: string;
|
|
2892
3309
|
}): void;
|
|
@@ -2902,11 +3319,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2902
3319
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2903
3320
|
placement: import("@popperjs/core").Placement;
|
|
2904
3321
|
id: string;
|
|
2905
|
-
visibility:
|
|
2906
|
-
selectedIds:
|
|
3322
|
+
visibility: "hidden" | "visible";
|
|
3323
|
+
selectedIds: string[] | "all";
|
|
2907
3324
|
unselectedIds: string[];
|
|
2908
3325
|
cursorId: string;
|
|
2909
3326
|
columnCount: number;
|
|
3327
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3328
|
+
cursorIndexRef: {
|
|
3329
|
+
readonly current: number;
|
|
3330
|
+
};
|
|
2910
3331
|
UNSTABLE_virtual: {
|
|
2911
3332
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2912
3333
|
totalSize: number;
|
|
@@ -2916,7 +3337,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2916
3337
|
};
|
|
2917
3338
|
UNSTABLE_defaultItemHeight: number;
|
|
2918
3339
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2919
|
-
orientation:
|
|
3340
|
+
orientation: "horizontal" | "vertical";
|
|
2920
3341
|
indexRef: React.MutableRefObject<number>;
|
|
2921
3342
|
nonInteractiveIds: string[];
|
|
2922
3343
|
isVirtualized: boolean;
|
|
@@ -2934,10 +3355,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2934
3355
|
}): void;
|
|
2935
3356
|
selectAll(): void;
|
|
2936
3357
|
unselectAll(): void;
|
|
2937
|
-
registerItem(data: {
|
|
2938
|
-
item: any;
|
|
2939
|
-
textValue: string;
|
|
2940
|
-
}): void;
|
|
2941
3358
|
goTo(data: {
|
|
2942
3359
|
id: string;
|
|
2943
3360
|
}): void;
|
|
@@ -2951,6 +3368,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2951
3368
|
goToLastOfRow(): void;
|
|
2952
3369
|
goToNextPage(): void;
|
|
2953
3370
|
goToPreviousPage(): void;
|
|
3371
|
+
registerItem(data: {
|
|
3372
|
+
item: any;
|
|
3373
|
+
textValue: string;
|
|
3374
|
+
}): void;
|
|
2954
3375
|
unregisterItem(data: {
|
|
2955
3376
|
id: string;
|
|
2956
3377
|
}): void;
|
|
@@ -2966,7 +3387,16 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2966
3387
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2967
3388
|
getId: (item: any) => string;
|
|
2968
3389
|
}>;
|
|
2969
|
-
|
|
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, {
|
|
2970
3400
|
state: {
|
|
2971
3401
|
getId: (item: any) => string;
|
|
2972
3402
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -2976,10 +3406,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
2976
3406
|
itemWidthCache: Record<string, number>;
|
|
2977
3407
|
containerWidth: number;
|
|
2978
3408
|
overflowTargetWidth: number;
|
|
2979
|
-
selectedIds:
|
|
3409
|
+
selectedIds: string[] | "all";
|
|
2980
3410
|
unselectedIds: string[];
|
|
2981
3411
|
cursorId: string;
|
|
2982
3412
|
columnCount: number;
|
|
3413
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3414
|
+
cursorIndexRef: {
|
|
3415
|
+
readonly current: number;
|
|
3416
|
+
};
|
|
2983
3417
|
UNSTABLE_virtual: {
|
|
2984
3418
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2985
3419
|
totalSize: number;
|
|
@@ -3027,10 +3461,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3027
3461
|
}): void;
|
|
3028
3462
|
selectAll(): void;
|
|
3029
3463
|
unselectAll(): void;
|
|
3030
|
-
registerItem(data: {
|
|
3031
|
-
item: any;
|
|
3032
|
-
textValue: string;
|
|
3033
|
-
}): void;
|
|
3034
3464
|
goTo(data: {
|
|
3035
3465
|
id: string;
|
|
3036
3466
|
}): void;
|
|
@@ -3044,6 +3474,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3044
3474
|
goToLastOfRow(): void;
|
|
3045
3475
|
goToNextPage(): void;
|
|
3046
3476
|
goToPreviousPage(): void;
|
|
3477
|
+
registerItem(data: {
|
|
3478
|
+
item: any;
|
|
3479
|
+
textValue: string;
|
|
3480
|
+
}): void;
|
|
3047
3481
|
unregisterItem(data: {
|
|
3048
3482
|
id: string;
|
|
3049
3483
|
}): void;
|
|
@@ -3059,11 +3493,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3059
3493
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3060
3494
|
placement: import("@popperjs/core").Placement;
|
|
3061
3495
|
id: string;
|
|
3062
|
-
visibility:
|
|
3063
|
-
selectedIds:
|
|
3496
|
+
visibility: "hidden" | "visible";
|
|
3497
|
+
selectedIds: string[] | "all";
|
|
3064
3498
|
unselectedIds: string[];
|
|
3065
3499
|
cursorId: string;
|
|
3066
3500
|
columnCount: number;
|
|
3501
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3502
|
+
cursorIndexRef: {
|
|
3503
|
+
readonly current: number;
|
|
3504
|
+
};
|
|
3067
3505
|
UNSTABLE_virtual: {
|
|
3068
3506
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3069
3507
|
totalSize: number;
|
|
@@ -3073,7 +3511,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3073
3511
|
};
|
|
3074
3512
|
UNSTABLE_defaultItemHeight: number;
|
|
3075
3513
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3076
|
-
orientation:
|
|
3514
|
+
orientation: "horizontal" | "vertical";
|
|
3077
3515
|
indexRef: React.MutableRefObject<number>;
|
|
3078
3516
|
nonInteractiveIds: string[];
|
|
3079
3517
|
isVirtualized: boolean;
|
|
@@ -3091,10 +3529,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3091
3529
|
}): void;
|
|
3092
3530
|
selectAll(): void;
|
|
3093
3531
|
unselectAll(): void;
|
|
3094
|
-
registerItem(data: {
|
|
3095
|
-
item: any;
|
|
3096
|
-
textValue: string;
|
|
3097
|
-
}): void;
|
|
3098
3532
|
goTo(data: {
|
|
3099
3533
|
id: string;
|
|
3100
3534
|
}): void;
|
|
@@ -3108,6 +3542,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3108
3542
|
goToLastOfRow(): void;
|
|
3109
3543
|
goToNextPage(): void;
|
|
3110
3544
|
goToPreviousPage(): void;
|
|
3545
|
+
registerItem(data: {
|
|
3546
|
+
item: any;
|
|
3547
|
+
textValue: string;
|
|
3548
|
+
}): void;
|
|
3111
3549
|
unregisterItem(data: {
|
|
3112
3550
|
id: string;
|
|
3113
3551
|
}): void;
|
|
@@ -3123,10 +3561,22 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3123
3561
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3124
3562
|
getId: (item: any) => string;
|
|
3125
3563
|
}> & {
|
|
3126
|
-
Icon: import("
|
|
3127
|
-
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>;
|
|
3128
3566
|
};
|
|
3129
|
-
|
|
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, {
|
|
3130
3580
|
state: {
|
|
3131
3581
|
getId: (item: any) => string;
|
|
3132
3582
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -3136,10 +3586,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3136
3586
|
itemWidthCache: Record<string, number>;
|
|
3137
3587
|
containerWidth: number;
|
|
3138
3588
|
overflowTargetWidth: number;
|
|
3139
|
-
selectedIds:
|
|
3589
|
+
selectedIds: string[] | "all";
|
|
3140
3590
|
unselectedIds: string[];
|
|
3141
3591
|
cursorId: string;
|
|
3142
3592
|
columnCount: number;
|
|
3593
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3594
|
+
cursorIndexRef: {
|
|
3595
|
+
readonly current: number;
|
|
3596
|
+
};
|
|
3143
3597
|
UNSTABLE_virtual: {
|
|
3144
3598
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3145
3599
|
totalSize: number;
|
|
@@ -3187,10 +3641,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3187
3641
|
}): void;
|
|
3188
3642
|
selectAll(): void;
|
|
3189
3643
|
unselectAll(): void;
|
|
3190
|
-
registerItem(data: {
|
|
3191
|
-
item: any;
|
|
3192
|
-
textValue: string;
|
|
3193
|
-
}): void;
|
|
3194
3644
|
goTo(data: {
|
|
3195
3645
|
id: string;
|
|
3196
3646
|
}): void;
|
|
@@ -3204,6 +3654,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3204
3654
|
goToLastOfRow(): void;
|
|
3205
3655
|
goToNextPage(): void;
|
|
3206
3656
|
goToPreviousPage(): void;
|
|
3657
|
+
registerItem(data: {
|
|
3658
|
+
item: any;
|
|
3659
|
+
textValue: string;
|
|
3660
|
+
}): void;
|
|
3207
3661
|
unregisterItem(data: {
|
|
3208
3662
|
id: string;
|
|
3209
3663
|
}): void;
|
|
@@ -3219,11 +3673,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3219
3673
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3220
3674
|
placement: import("@popperjs/core").Placement;
|
|
3221
3675
|
id: string;
|
|
3222
|
-
visibility:
|
|
3223
|
-
selectedIds:
|
|
3676
|
+
visibility: "hidden" | "visible";
|
|
3677
|
+
selectedIds: string[] | "all";
|
|
3224
3678
|
unselectedIds: string[];
|
|
3225
3679
|
cursorId: string;
|
|
3226
3680
|
columnCount: number;
|
|
3681
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3682
|
+
cursorIndexRef: {
|
|
3683
|
+
readonly current: number;
|
|
3684
|
+
};
|
|
3227
3685
|
UNSTABLE_virtual: {
|
|
3228
3686
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3229
3687
|
totalSize: number;
|
|
@@ -3233,7 +3691,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3233
3691
|
};
|
|
3234
3692
|
UNSTABLE_defaultItemHeight: number;
|
|
3235
3693
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3236
|
-
orientation:
|
|
3694
|
+
orientation: "horizontal" | "vertical";
|
|
3237
3695
|
indexRef: React.MutableRefObject<number>;
|
|
3238
3696
|
nonInteractiveIds: string[];
|
|
3239
3697
|
isVirtualized: boolean;
|
|
@@ -3251,10 +3709,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3251
3709
|
}): void;
|
|
3252
3710
|
selectAll(): void;
|
|
3253
3711
|
unselectAll(): void;
|
|
3254
|
-
registerItem(data: {
|
|
3255
|
-
item: any;
|
|
3256
|
-
textValue: string;
|
|
3257
|
-
}): void;
|
|
3258
3712
|
goTo(data: {
|
|
3259
3713
|
id: string;
|
|
3260
3714
|
}): void;
|
|
@@ -3268,6 +3722,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3268
3722
|
goToLastOfRow(): void;
|
|
3269
3723
|
goToNextPage(): void;
|
|
3270
3724
|
goToPreviousPage(): void;
|
|
3725
|
+
registerItem(data: {
|
|
3726
|
+
item: any;
|
|
3727
|
+
textValue: string;
|
|
3728
|
+
}): void;
|
|
3271
3729
|
unregisterItem(data: {
|
|
3272
3730
|
id: string;
|
|
3273
3731
|
}): void;
|
|
@@ -3283,7 +3741,21 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3283
3741
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3284
3742
|
getId: (item: any) => string;
|
|
3285
3743
|
}>;
|
|
3286
|
-
|
|
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>, {
|
|
3287
3759
|
state: {
|
|
3288
3760
|
getId: (item: any) => string;
|
|
3289
3761
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -3293,10 +3765,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3293
3765
|
itemWidthCache: Record<string, number>;
|
|
3294
3766
|
containerWidth: number;
|
|
3295
3767
|
overflowTargetWidth: number;
|
|
3296
|
-
selectedIds:
|
|
3768
|
+
selectedIds: string[] | "all";
|
|
3297
3769
|
unselectedIds: string[];
|
|
3298
3770
|
cursorId: string;
|
|
3299
3771
|
columnCount: number;
|
|
3772
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3773
|
+
cursorIndexRef: {
|
|
3774
|
+
readonly current: number;
|
|
3775
|
+
};
|
|
3300
3776
|
UNSTABLE_virtual: {
|
|
3301
3777
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3302
3778
|
totalSize: number;
|
|
@@ -3344,10 +3820,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3344
3820
|
}): void;
|
|
3345
3821
|
selectAll(): void;
|
|
3346
3822
|
unselectAll(): void;
|
|
3347
|
-
registerItem(data: {
|
|
3348
|
-
item: any;
|
|
3349
|
-
textValue: string;
|
|
3350
|
-
}): void;
|
|
3351
3823
|
goTo(data: {
|
|
3352
3824
|
id: string;
|
|
3353
3825
|
}): void;
|
|
@@ -3361,6 +3833,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3361
3833
|
goToLastOfRow(): void;
|
|
3362
3834
|
goToNextPage(): void;
|
|
3363
3835
|
goToPreviousPage(): void;
|
|
3836
|
+
registerItem(data: {
|
|
3837
|
+
item: any;
|
|
3838
|
+
textValue: string;
|
|
3839
|
+
}): void;
|
|
3364
3840
|
unregisterItem(data: {
|
|
3365
3841
|
id: string;
|
|
3366
3842
|
}): void;
|
|
@@ -3376,11 +3852,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3376
3852
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3377
3853
|
placement: import("@popperjs/core").Placement;
|
|
3378
3854
|
id: string;
|
|
3379
|
-
visibility:
|
|
3380
|
-
selectedIds:
|
|
3855
|
+
visibility: "hidden" | "visible";
|
|
3856
|
+
selectedIds: string[] | "all";
|
|
3381
3857
|
unselectedIds: string[];
|
|
3382
3858
|
cursorId: string;
|
|
3383
3859
|
columnCount: number;
|
|
3860
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3861
|
+
cursorIndexRef: {
|
|
3862
|
+
readonly current: number;
|
|
3863
|
+
};
|
|
3384
3864
|
UNSTABLE_virtual: {
|
|
3385
3865
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3386
3866
|
totalSize: number;
|
|
@@ -3390,7 +3870,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3390
3870
|
};
|
|
3391
3871
|
UNSTABLE_defaultItemHeight: number;
|
|
3392
3872
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3393
|
-
orientation:
|
|
3873
|
+
orientation: "horizontal" | "vertical";
|
|
3394
3874
|
indexRef: React.MutableRefObject<number>;
|
|
3395
3875
|
nonInteractiveIds: string[];
|
|
3396
3876
|
isVirtualized: boolean;
|
|
@@ -3408,10 +3888,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3408
3888
|
}): void;
|
|
3409
3889
|
selectAll(): void;
|
|
3410
3890
|
unselectAll(): void;
|
|
3411
|
-
registerItem(data: {
|
|
3412
|
-
item: any;
|
|
3413
|
-
textValue: string;
|
|
3414
|
-
}): void;
|
|
3415
3891
|
goTo(data: {
|
|
3416
3892
|
id: string;
|
|
3417
3893
|
}): void;
|
|
@@ -3425,6 +3901,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3425
3901
|
goToLastOfRow(): void;
|
|
3426
3902
|
goToNextPage(): void;
|
|
3427
3903
|
goToPreviousPage(): void;
|
|
3904
|
+
registerItem(data: {
|
|
3905
|
+
item: any;
|
|
3906
|
+
textValue: string;
|
|
3907
|
+
}): void;
|
|
3428
3908
|
unregisterItem(data: {
|
|
3429
3909
|
id: string;
|
|
3430
3910
|
}): void;
|
|
@@ -3440,7 +3920,21 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3440
3920
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3441
3921
|
getId: (item: any) => string;
|
|
3442
3922
|
}>;
|
|
3443
|
-
|
|
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, {
|
|
3444
3938
|
state: {
|
|
3445
3939
|
getId: (item: any) => string;
|
|
3446
3940
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
@@ -3450,10 +3944,14 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3450
3944
|
itemWidthCache: Record<string, number>;
|
|
3451
3945
|
containerWidth: number;
|
|
3452
3946
|
overflowTargetWidth: number;
|
|
3453
|
-
selectedIds:
|
|
3947
|
+
selectedIds: string[] | "all";
|
|
3454
3948
|
unselectedIds: string[];
|
|
3455
3949
|
cursorId: string;
|
|
3456
3950
|
columnCount: number;
|
|
3951
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3952
|
+
cursorIndexRef: {
|
|
3953
|
+
readonly current: number;
|
|
3954
|
+
};
|
|
3457
3955
|
UNSTABLE_virtual: {
|
|
3458
3956
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3459
3957
|
totalSize: number;
|
|
@@ -3501,10 +3999,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3501
3999
|
}): void;
|
|
3502
4000
|
selectAll(): void;
|
|
3503
4001
|
unselectAll(): void;
|
|
3504
|
-
registerItem(data: {
|
|
3505
|
-
item: any;
|
|
3506
|
-
textValue: string;
|
|
3507
|
-
}): void;
|
|
3508
4002
|
goTo(data: {
|
|
3509
4003
|
id: string;
|
|
3510
4004
|
}): void;
|
|
@@ -3518,6 +4012,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3518
4012
|
goToLastOfRow(): void;
|
|
3519
4013
|
goToNextPage(): void;
|
|
3520
4014
|
goToPreviousPage(): void;
|
|
4015
|
+
registerItem(data: {
|
|
4016
|
+
item: any;
|
|
4017
|
+
textValue: string;
|
|
4018
|
+
}): void;
|
|
3521
4019
|
unregisterItem(data: {
|
|
3522
4020
|
id: string;
|
|
3523
4021
|
}): void;
|
|
@@ -3533,11 +4031,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3533
4031
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3534
4032
|
placement: import("@popperjs/core").Placement;
|
|
3535
4033
|
id: string;
|
|
3536
|
-
visibility:
|
|
3537
|
-
selectedIds:
|
|
4034
|
+
visibility: "hidden" | "visible";
|
|
4035
|
+
selectedIds: string[] | "all";
|
|
3538
4036
|
unselectedIds: string[];
|
|
3539
4037
|
cursorId: string;
|
|
3540
4038
|
columnCount: number;
|
|
4039
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4040
|
+
cursorIndexRef: {
|
|
4041
|
+
readonly current: number;
|
|
4042
|
+
};
|
|
3541
4043
|
UNSTABLE_virtual: {
|
|
3542
4044
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3543
4045
|
totalSize: number;
|
|
@@ -3547,7 +4049,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3547
4049
|
};
|
|
3548
4050
|
UNSTABLE_defaultItemHeight: number;
|
|
3549
4051
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3550
|
-
orientation:
|
|
4052
|
+
orientation: "horizontal" | "vertical";
|
|
3551
4053
|
indexRef: React.MutableRefObject<number>;
|
|
3552
4054
|
nonInteractiveIds: string[];
|
|
3553
4055
|
isVirtualized: boolean;
|
|
@@ -3565,10 +4067,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3565
4067
|
}): void;
|
|
3566
4068
|
selectAll(): void;
|
|
3567
4069
|
unselectAll(): void;
|
|
3568
|
-
registerItem(data: {
|
|
3569
|
-
item: any;
|
|
3570
|
-
textValue: string;
|
|
3571
|
-
}): void;
|
|
3572
4070
|
goTo(data: {
|
|
3573
4071
|
id: string;
|
|
3574
4072
|
}): void;
|
|
@@ -3582,6 +4080,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3582
4080
|
goToLastOfRow(): void;
|
|
3583
4081
|
goToNextPage(): void;
|
|
3584
4082
|
goToPreviousPage(): void;
|
|
4083
|
+
registerItem(data: {
|
|
4084
|
+
item: any;
|
|
4085
|
+
textValue: string;
|
|
4086
|
+
}): void;
|
|
3585
4087
|
unregisterItem(data: {
|
|
3586
4088
|
id: string;
|
|
3587
4089
|
}): void;
|
|
@@ -3597,7 +4099,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3597
4099
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3598
4100
|
getId: (item: any) => string;
|
|
3599
4101
|
}>;
|
|
3600
|
-
|
|
4102
|
+
/**
|
|
4103
|
+
* @deprecated Use `Tabs.Menu.Popper` instead
|
|
4104
|
+
*/
|
|
4105
|
+
MenuPopper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./TabsMenuPopper").MenuPopperProps, {
|
|
3601
4106
|
state: {
|
|
3602
4107
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3603
4108
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3605,11 +4110,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3605
4110
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3606
4111
|
placement: import("@popperjs/core").Placement;
|
|
3607
4112
|
id: string;
|
|
3608
|
-
visibility:
|
|
3609
|
-
selectedIds:
|
|
4113
|
+
visibility: "hidden" | "visible";
|
|
4114
|
+
selectedIds: string[] | "all";
|
|
3610
4115
|
unselectedIds: string[];
|
|
3611
4116
|
cursorId: string;
|
|
3612
4117
|
columnCount: number;
|
|
4118
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4119
|
+
cursorIndexRef: {
|
|
4120
|
+
readonly current: number;
|
|
4121
|
+
};
|
|
3613
4122
|
UNSTABLE_virtual: {
|
|
3614
4123
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3615
4124
|
totalSize: number;
|
|
@@ -3619,7 +4128,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3619
4128
|
};
|
|
3620
4129
|
UNSTABLE_defaultItemHeight: number;
|
|
3621
4130
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3622
|
-
orientation:
|
|
4131
|
+
orientation: "horizontal" | "vertical";
|
|
3623
4132
|
indexRef: React.MutableRefObject<number>;
|
|
3624
4133
|
nonInteractiveIds: string[];
|
|
3625
4134
|
isVirtualized: boolean;
|
|
@@ -3637,10 +4146,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3637
4146
|
}): void;
|
|
3638
4147
|
selectAll(): void;
|
|
3639
4148
|
unselectAll(): void;
|
|
3640
|
-
registerItem(data: {
|
|
3641
|
-
item: any;
|
|
3642
|
-
textValue: string;
|
|
3643
|
-
}): void;
|
|
3644
4149
|
goTo(data: {
|
|
3645
4150
|
id: string;
|
|
3646
4151
|
}): void;
|
|
@@ -3654,6 +4159,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3654
4159
|
goToLastOfRow(): void;
|
|
3655
4160
|
goToNextPage(): void;
|
|
3656
4161
|
goToPreviousPage(): void;
|
|
4162
|
+
registerItem(data: {
|
|
4163
|
+
item: any;
|
|
4164
|
+
textValue: string;
|
|
4165
|
+
}): void;
|
|
3657
4166
|
unregisterItem(data: {
|
|
3658
4167
|
id: string;
|
|
3659
4168
|
}): void;
|
|
@@ -3668,17 +4177,22 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3668
4177
|
/**
|
|
3669
4178
|
* The overflow menu of the Tabs component. If there isn't enough room to render all the tab
|
|
3670
4179
|
* items, the extra tabs that don't fit will be overflowed into this menu.
|
|
3671
|
-
*
|
|
4180
|
+
*
|
|
4181
|
+
* ```tsx
|
|
3672
4182
|
* <Tabs.Menu.Popper>
|
|
3673
4183
|
* <Tabs.Menu.Card>
|
|
3674
4184
|
* <Tabs.Menu.List>
|
|
3675
|
-
* {(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>}
|
|
3676
4188
|
* </Tabs.Menu.List>
|
|
3677
4189
|
* </Tabs.Menu.Card>
|
|
3678
4190
|
* </Tabs.Menu.Popper>
|
|
4191
|
+
* ```
|
|
3679
4192
|
*/
|
|
3680
|
-
Menu: import("
|
|
4193
|
+
Menu: import("@workday/canvas-kit-react/common").ComponentM<import("../../menu/lib/Menu").MenuProps & Partial<{
|
|
3681
4194
|
mode: "multiple" | "single";
|
|
4195
|
+
shouldVirtualize: boolean;
|
|
3682
4196
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3683
4197
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3684
4198
|
id: string;
|
|
@@ -3689,12 +4203,12 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3689
4203
|
initialCursorId: string;
|
|
3690
4204
|
columnCount: number;
|
|
3691
4205
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
4206
|
+
pageSize: number;
|
|
3692
4207
|
getId: (item: any) => string;
|
|
3693
4208
|
getTextValue: (item: any) => string;
|
|
3694
4209
|
nonInteractiveIds: string[];
|
|
3695
4210
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
3696
4211
|
defaultItemHeight: number;
|
|
3697
|
-
shouldVirtualize: boolean;
|
|
3698
4212
|
items: any[];
|
|
3699
4213
|
}> & {
|
|
3700
4214
|
onUpdatePlacement?: ((data: {
|
|
@@ -3706,11 +4220,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3706
4220
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3707
4221
|
placement: import("@popperjs/core").Placement;
|
|
3708
4222
|
id: string;
|
|
3709
|
-
visibility:
|
|
3710
|
-
selectedIds:
|
|
4223
|
+
visibility: "hidden" | "visible";
|
|
4224
|
+
selectedIds: string[] | "all";
|
|
3711
4225
|
unselectedIds: string[];
|
|
3712
4226
|
cursorId: string;
|
|
3713
4227
|
columnCount: number;
|
|
4228
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4229
|
+
cursorIndexRef: {
|
|
4230
|
+
readonly current: number;
|
|
4231
|
+
};
|
|
3714
4232
|
UNSTABLE_virtual: {
|
|
3715
4233
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3716
4234
|
totalSize: number;
|
|
@@ -3720,7 +4238,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3720
4238
|
};
|
|
3721
4239
|
UNSTABLE_defaultItemHeight: number;
|
|
3722
4240
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3723
|
-
orientation:
|
|
4241
|
+
orientation: "horizontal" | "vertical";
|
|
3724
4242
|
indexRef: React.MutableRefObject<number>;
|
|
3725
4243
|
nonInteractiveIds: string[];
|
|
3726
4244
|
isVirtualized: boolean;
|
|
@@ -3734,11 +4252,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3734
4252
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3735
4253
|
placement: import("@popperjs/core").Placement;
|
|
3736
4254
|
id: string;
|
|
3737
|
-
visibility:
|
|
3738
|
-
selectedIds:
|
|
4255
|
+
visibility: "hidden" | "visible";
|
|
4256
|
+
selectedIds: string[] | "all";
|
|
3739
4257
|
unselectedIds: string[];
|
|
3740
4258
|
cursorId: string;
|
|
3741
4259
|
columnCount: number;
|
|
4260
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4261
|
+
cursorIndexRef: {
|
|
4262
|
+
readonly current: number;
|
|
4263
|
+
};
|
|
3742
4264
|
UNSTABLE_virtual: {
|
|
3743
4265
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3744
4266
|
totalSize: number;
|
|
@@ -3748,7 +4270,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3748
4270
|
};
|
|
3749
4271
|
UNSTABLE_defaultItemHeight: number;
|
|
3750
4272
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3751
|
-
orientation:
|
|
4273
|
+
orientation: "horizontal" | "vertical";
|
|
3752
4274
|
indexRef: React.MutableRefObject<number>;
|
|
3753
4275
|
nonInteractiveIds: string[];
|
|
3754
4276
|
isVirtualized: boolean;
|
|
@@ -3762,11 +4284,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3762
4284
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3763
4285
|
placement: import("@popperjs/core").Placement;
|
|
3764
4286
|
id: string;
|
|
3765
|
-
visibility:
|
|
3766
|
-
selectedIds:
|
|
4287
|
+
visibility: "hidden" | "visible";
|
|
4288
|
+
selectedIds: string[] | "all";
|
|
3767
4289
|
unselectedIds: string[];
|
|
3768
4290
|
cursorId: string;
|
|
3769
4291
|
columnCount: number;
|
|
4292
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4293
|
+
cursorIndexRef: {
|
|
4294
|
+
readonly current: number;
|
|
4295
|
+
};
|
|
3770
4296
|
UNSTABLE_virtual: {
|
|
3771
4297
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3772
4298
|
totalSize: number;
|
|
@@ -3776,7 +4302,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3776
4302
|
};
|
|
3777
4303
|
UNSTABLE_defaultItemHeight: number;
|
|
3778
4304
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3779
|
-
orientation:
|
|
4305
|
+
orientation: "horizontal" | "vertical";
|
|
3780
4306
|
indexRef: React.MutableRefObject<number>;
|
|
3781
4307
|
nonInteractiveIds: string[];
|
|
3782
4308
|
isVirtualized: boolean;
|
|
@@ -3792,11 +4318,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3792
4318
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3793
4319
|
placement: import("@popperjs/core").Placement;
|
|
3794
4320
|
id: string;
|
|
3795
|
-
visibility:
|
|
3796
|
-
selectedIds:
|
|
4321
|
+
visibility: "hidden" | "visible";
|
|
4322
|
+
selectedIds: string[] | "all";
|
|
3797
4323
|
unselectedIds: string[];
|
|
3798
4324
|
cursorId: string;
|
|
3799
4325
|
columnCount: number;
|
|
4326
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4327
|
+
cursorIndexRef: {
|
|
4328
|
+
readonly current: number;
|
|
4329
|
+
};
|
|
3800
4330
|
UNSTABLE_virtual: {
|
|
3801
4331
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3802
4332
|
totalSize: number;
|
|
@@ -3806,7 +4336,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3806
4336
|
};
|
|
3807
4337
|
UNSTABLE_defaultItemHeight: number;
|
|
3808
4338
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3809
|
-
orientation:
|
|
4339
|
+
orientation: "horizontal" | "vertical";
|
|
3810
4340
|
indexRef: React.MutableRefObject<number>;
|
|
3811
4341
|
nonInteractiveIds: string[];
|
|
3812
4342
|
isVirtualized: boolean;
|
|
@@ -3820,11 +4350,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3820
4350
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3821
4351
|
placement: import("@popperjs/core").Placement;
|
|
3822
4352
|
id: string;
|
|
3823
|
-
visibility:
|
|
3824
|
-
selectedIds:
|
|
4353
|
+
visibility: "hidden" | "visible";
|
|
4354
|
+
selectedIds: string[] | "all";
|
|
3825
4355
|
unselectedIds: string[];
|
|
3826
4356
|
cursorId: string;
|
|
3827
4357
|
columnCount: number;
|
|
4358
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4359
|
+
cursorIndexRef: {
|
|
4360
|
+
readonly current: number;
|
|
4361
|
+
};
|
|
3828
4362
|
UNSTABLE_virtual: {
|
|
3829
4363
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3830
4364
|
totalSize: number;
|
|
@@ -3834,7 +4368,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3834
4368
|
};
|
|
3835
4369
|
UNSTABLE_defaultItemHeight: number;
|
|
3836
4370
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3837
|
-
orientation:
|
|
4371
|
+
orientation: "horizontal" | "vertical";
|
|
3838
4372
|
indexRef: React.MutableRefObject<number>;
|
|
3839
4373
|
nonInteractiveIds: string[];
|
|
3840
4374
|
isVirtualized: boolean;
|
|
@@ -3848,11 +4382,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3848
4382
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3849
4383
|
placement: import("@popperjs/core").Placement;
|
|
3850
4384
|
id: string;
|
|
3851
|
-
visibility:
|
|
3852
|
-
selectedIds:
|
|
4385
|
+
visibility: "hidden" | "visible";
|
|
4386
|
+
selectedIds: string[] | "all";
|
|
3853
4387
|
unselectedIds: string[];
|
|
3854
4388
|
cursorId: string;
|
|
3855
4389
|
columnCount: number;
|
|
4390
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4391
|
+
cursorIndexRef: {
|
|
4392
|
+
readonly current: number;
|
|
4393
|
+
};
|
|
3856
4394
|
UNSTABLE_virtual: {
|
|
3857
4395
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3858
4396
|
totalSize: number;
|
|
@@ -3862,16 +4400,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3862
4400
|
};
|
|
3863
4401
|
UNSTABLE_defaultItemHeight: number;
|
|
3864
4402
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3865
|
-
orientation:
|
|
4403
|
+
orientation: "horizontal" | "vertical";
|
|
3866
4404
|
indexRef: React.MutableRefObject<number>;
|
|
3867
4405
|
nonInteractiveIds: string[];
|
|
3868
4406
|
isVirtualized: boolean;
|
|
3869
4407
|
items: import("../..").Item<any>[];
|
|
3870
4408
|
mode: "multiple" | "single";
|
|
3871
4409
|
}) => void) | undefined;
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
textValue: string;
|
|
4410
|
+
onGoTo?: ((data: {
|
|
4411
|
+
id: string;
|
|
3875
4412
|
}, prevState: {
|
|
3876
4413
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3877
4414
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3879,11 +4416,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3879
4416
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3880
4417
|
placement: import("@popperjs/core").Placement;
|
|
3881
4418
|
id: string;
|
|
3882
|
-
visibility:
|
|
3883
|
-
selectedIds:
|
|
4419
|
+
visibility: "hidden" | "visible";
|
|
4420
|
+
selectedIds: string[] | "all";
|
|
3884
4421
|
unselectedIds: string[];
|
|
3885
4422
|
cursorId: string;
|
|
3886
4423
|
columnCount: number;
|
|
4424
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4425
|
+
cursorIndexRef: {
|
|
4426
|
+
readonly current: number;
|
|
4427
|
+
};
|
|
3887
4428
|
UNSTABLE_virtual: {
|
|
3888
4429
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3889
4430
|
totalSize: number;
|
|
@@ -3893,27 +4434,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3893
4434
|
};
|
|
3894
4435
|
UNSTABLE_defaultItemHeight: number;
|
|
3895
4436
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3896
|
-
orientation:
|
|
4437
|
+
orientation: "horizontal" | "vertical";
|
|
3897
4438
|
indexRef: React.MutableRefObject<number>;
|
|
3898
4439
|
nonInteractiveIds: string[];
|
|
3899
4440
|
isVirtualized: boolean;
|
|
3900
4441
|
items: import("../..").Item<any>[];
|
|
3901
4442
|
mode: "multiple" | "single";
|
|
3902
4443
|
}) => void) | undefined;
|
|
3903
|
-
|
|
3904
|
-
id: string;
|
|
3905
|
-
}, prevState: {
|
|
4444
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
3906
4445
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3907
4446
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3908
4447
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3909
4448
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3910
4449
|
placement: import("@popperjs/core").Placement;
|
|
3911
4450
|
id: string;
|
|
3912
|
-
visibility:
|
|
3913
|
-
selectedIds:
|
|
4451
|
+
visibility: "hidden" | "visible";
|
|
4452
|
+
selectedIds: string[] | "all";
|
|
3914
4453
|
unselectedIds: string[];
|
|
3915
4454
|
cursorId: string;
|
|
3916
4455
|
columnCount: number;
|
|
4456
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4457
|
+
cursorIndexRef: {
|
|
4458
|
+
readonly current: number;
|
|
4459
|
+
};
|
|
3917
4460
|
UNSTABLE_virtual: {
|
|
3918
4461
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3919
4462
|
totalSize: number;
|
|
@@ -3923,25 +4466,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3923
4466
|
};
|
|
3924
4467
|
UNSTABLE_defaultItemHeight: number;
|
|
3925
4468
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3926
|
-
orientation:
|
|
4469
|
+
orientation: "horizontal" | "vertical";
|
|
3927
4470
|
indexRef: React.MutableRefObject<number>;
|
|
3928
4471
|
nonInteractiveIds: string[];
|
|
3929
4472
|
isVirtualized: boolean;
|
|
3930
4473
|
items: import("../..").Item<any>[];
|
|
3931
4474
|
mode: "multiple" | "single";
|
|
3932
4475
|
}) => void) | undefined;
|
|
3933
|
-
|
|
4476
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
3934
4477
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3935
4478
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3936
4479
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3937
4480
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3938
4481
|
placement: import("@popperjs/core").Placement;
|
|
3939
4482
|
id: string;
|
|
3940
|
-
visibility:
|
|
3941
|
-
selectedIds:
|
|
4483
|
+
visibility: "hidden" | "visible";
|
|
4484
|
+
selectedIds: string[] | "all";
|
|
3942
4485
|
unselectedIds: string[];
|
|
3943
4486
|
cursorId: string;
|
|
3944
4487
|
columnCount: number;
|
|
4488
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4489
|
+
cursorIndexRef: {
|
|
4490
|
+
readonly current: number;
|
|
4491
|
+
};
|
|
3945
4492
|
UNSTABLE_virtual: {
|
|
3946
4493
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3947
4494
|
totalSize: number;
|
|
@@ -3951,25 +4498,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3951
4498
|
};
|
|
3952
4499
|
UNSTABLE_defaultItemHeight: number;
|
|
3953
4500
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3954
|
-
orientation:
|
|
4501
|
+
orientation: "horizontal" | "vertical";
|
|
3955
4502
|
indexRef: React.MutableRefObject<number>;
|
|
3956
4503
|
nonInteractiveIds: string[];
|
|
3957
4504
|
isVirtualized: boolean;
|
|
3958
4505
|
items: import("../..").Item<any>[];
|
|
3959
4506
|
mode: "multiple" | "single";
|
|
3960
4507
|
}) => void) | undefined;
|
|
3961
|
-
|
|
4508
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
3962
4509
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3963
4510
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3964
4511
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3965
4512
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3966
4513
|
placement: import("@popperjs/core").Placement;
|
|
3967
4514
|
id: string;
|
|
3968
|
-
visibility:
|
|
3969
|
-
selectedIds:
|
|
4515
|
+
visibility: "hidden" | "visible";
|
|
4516
|
+
selectedIds: string[] | "all";
|
|
3970
4517
|
unselectedIds: string[];
|
|
3971
4518
|
cursorId: string;
|
|
3972
4519
|
columnCount: number;
|
|
4520
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4521
|
+
cursorIndexRef: {
|
|
4522
|
+
readonly current: number;
|
|
4523
|
+
};
|
|
3973
4524
|
UNSTABLE_virtual: {
|
|
3974
4525
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3975
4526
|
totalSize: number;
|
|
@@ -3979,25 +4530,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
3979
4530
|
};
|
|
3980
4531
|
UNSTABLE_defaultItemHeight: number;
|
|
3981
4532
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3982
|
-
orientation:
|
|
4533
|
+
orientation: "horizontal" | "vertical";
|
|
3983
4534
|
indexRef: React.MutableRefObject<number>;
|
|
3984
4535
|
nonInteractiveIds: string[];
|
|
3985
4536
|
isVirtualized: boolean;
|
|
3986
4537
|
items: import("../..").Item<any>[];
|
|
3987
4538
|
mode: "multiple" | "single";
|
|
3988
4539
|
}) => void) | undefined;
|
|
3989
|
-
|
|
4540
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
3990
4541
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3991
4542
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3992
4543
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
3993
4544
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3994
4545
|
placement: import("@popperjs/core").Placement;
|
|
3995
4546
|
id: string;
|
|
3996
|
-
visibility:
|
|
3997
|
-
selectedIds:
|
|
4547
|
+
visibility: "hidden" | "visible";
|
|
4548
|
+
selectedIds: string[] | "all";
|
|
3998
4549
|
unselectedIds: string[];
|
|
3999
4550
|
cursorId: string;
|
|
4000
4551
|
columnCount: number;
|
|
4552
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4553
|
+
cursorIndexRef: {
|
|
4554
|
+
readonly current: number;
|
|
4555
|
+
};
|
|
4001
4556
|
UNSTABLE_virtual: {
|
|
4002
4557
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4003
4558
|
totalSize: number;
|
|
@@ -4007,25 +4562,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4007
4562
|
};
|
|
4008
4563
|
UNSTABLE_defaultItemHeight: number;
|
|
4009
4564
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4010
|
-
orientation:
|
|
4565
|
+
orientation: "horizontal" | "vertical";
|
|
4011
4566
|
indexRef: React.MutableRefObject<number>;
|
|
4012
4567
|
nonInteractiveIds: string[];
|
|
4013
4568
|
isVirtualized: boolean;
|
|
4014
4569
|
items: import("../..").Item<any>[];
|
|
4015
4570
|
mode: "multiple" | "single";
|
|
4016
4571
|
}) => void) | undefined;
|
|
4017
|
-
|
|
4572
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
4018
4573
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4019
4574
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4020
4575
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4021
4576
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4022
4577
|
placement: import("@popperjs/core").Placement;
|
|
4023
4578
|
id: string;
|
|
4024
|
-
visibility:
|
|
4025
|
-
selectedIds:
|
|
4579
|
+
visibility: "hidden" | "visible";
|
|
4580
|
+
selectedIds: string[] | "all";
|
|
4026
4581
|
unselectedIds: string[];
|
|
4027
4582
|
cursorId: string;
|
|
4028
4583
|
columnCount: number;
|
|
4584
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4585
|
+
cursorIndexRef: {
|
|
4586
|
+
readonly current: number;
|
|
4587
|
+
};
|
|
4029
4588
|
UNSTABLE_virtual: {
|
|
4030
4589
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4031
4590
|
totalSize: number;
|
|
@@ -4035,25 +4594,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4035
4594
|
};
|
|
4036
4595
|
UNSTABLE_defaultItemHeight: number;
|
|
4037
4596
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4038
|
-
orientation:
|
|
4597
|
+
orientation: "horizontal" | "vertical";
|
|
4039
4598
|
indexRef: React.MutableRefObject<number>;
|
|
4040
4599
|
nonInteractiveIds: string[];
|
|
4041
4600
|
isVirtualized: boolean;
|
|
4042
4601
|
items: import("../..").Item<any>[];
|
|
4043
4602
|
mode: "multiple" | "single";
|
|
4044
4603
|
}) => void) | undefined;
|
|
4045
|
-
|
|
4604
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
4046
4605
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4047
4606
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4048
4607
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4049
4608
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4050
4609
|
placement: import("@popperjs/core").Placement;
|
|
4051
4610
|
id: string;
|
|
4052
|
-
visibility:
|
|
4053
|
-
selectedIds:
|
|
4611
|
+
visibility: "hidden" | "visible";
|
|
4612
|
+
selectedIds: string[] | "all";
|
|
4054
4613
|
unselectedIds: string[];
|
|
4055
4614
|
cursorId: string;
|
|
4056
4615
|
columnCount: number;
|
|
4616
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4617
|
+
cursorIndexRef: {
|
|
4618
|
+
readonly current: number;
|
|
4619
|
+
};
|
|
4057
4620
|
UNSTABLE_virtual: {
|
|
4058
4621
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4059
4622
|
totalSize: number;
|
|
@@ -4063,25 +4626,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4063
4626
|
};
|
|
4064
4627
|
UNSTABLE_defaultItemHeight: number;
|
|
4065
4628
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4066
|
-
orientation:
|
|
4629
|
+
orientation: "horizontal" | "vertical";
|
|
4067
4630
|
indexRef: React.MutableRefObject<number>;
|
|
4068
4631
|
nonInteractiveIds: string[];
|
|
4069
4632
|
isVirtualized: boolean;
|
|
4070
4633
|
items: import("../..").Item<any>[];
|
|
4071
4634
|
mode: "multiple" | "single";
|
|
4072
4635
|
}) => void) | undefined;
|
|
4073
|
-
|
|
4636
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
4074
4637
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4075
4638
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4076
4639
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4077
4640
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4078
4641
|
placement: import("@popperjs/core").Placement;
|
|
4079
4642
|
id: string;
|
|
4080
|
-
visibility:
|
|
4081
|
-
selectedIds:
|
|
4643
|
+
visibility: "hidden" | "visible";
|
|
4644
|
+
selectedIds: string[] | "all";
|
|
4082
4645
|
unselectedIds: string[];
|
|
4083
4646
|
cursorId: string;
|
|
4084
4647
|
columnCount: number;
|
|
4648
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4649
|
+
cursorIndexRef: {
|
|
4650
|
+
readonly current: number;
|
|
4651
|
+
};
|
|
4085
4652
|
UNSTABLE_virtual: {
|
|
4086
4653
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4087
4654
|
totalSize: number;
|
|
@@ -4091,25 +4658,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4091
4658
|
};
|
|
4092
4659
|
UNSTABLE_defaultItemHeight: number;
|
|
4093
4660
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4094
|
-
orientation:
|
|
4661
|
+
orientation: "horizontal" | "vertical";
|
|
4095
4662
|
indexRef: React.MutableRefObject<number>;
|
|
4096
4663
|
nonInteractiveIds: string[];
|
|
4097
4664
|
isVirtualized: boolean;
|
|
4098
4665
|
items: import("../..").Item<any>[];
|
|
4099
4666
|
mode: "multiple" | "single";
|
|
4100
4667
|
}) => void) | undefined;
|
|
4101
|
-
|
|
4668
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
4102
4669
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4103
4670
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4104
4671
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4105
4672
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4106
4673
|
placement: import("@popperjs/core").Placement;
|
|
4107
4674
|
id: string;
|
|
4108
|
-
visibility:
|
|
4109
|
-
selectedIds:
|
|
4675
|
+
visibility: "hidden" | "visible";
|
|
4676
|
+
selectedIds: string[] | "all";
|
|
4110
4677
|
unselectedIds: string[];
|
|
4111
4678
|
cursorId: string;
|
|
4112
4679
|
columnCount: number;
|
|
4680
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4681
|
+
cursorIndexRef: {
|
|
4682
|
+
readonly current: number;
|
|
4683
|
+
};
|
|
4113
4684
|
UNSTABLE_virtual: {
|
|
4114
4685
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4115
4686
|
totalSize: number;
|
|
@@ -4119,25 +4690,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4119
4690
|
};
|
|
4120
4691
|
UNSTABLE_defaultItemHeight: number;
|
|
4121
4692
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4122
|
-
orientation:
|
|
4693
|
+
orientation: "horizontal" | "vertical";
|
|
4123
4694
|
indexRef: React.MutableRefObject<number>;
|
|
4124
4695
|
nonInteractiveIds: string[];
|
|
4125
4696
|
isVirtualized: boolean;
|
|
4126
4697
|
items: import("../..").Item<any>[];
|
|
4127
4698
|
mode: "multiple" | "single";
|
|
4128
4699
|
}) => void) | undefined;
|
|
4129
|
-
|
|
4700
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
4130
4701
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4131
4702
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4132
4703
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4133
4704
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4134
4705
|
placement: import("@popperjs/core").Placement;
|
|
4135
4706
|
id: string;
|
|
4136
|
-
visibility:
|
|
4137
|
-
selectedIds:
|
|
4707
|
+
visibility: "hidden" | "visible";
|
|
4708
|
+
selectedIds: string[] | "all";
|
|
4138
4709
|
unselectedIds: string[];
|
|
4139
4710
|
cursorId: string;
|
|
4140
4711
|
columnCount: number;
|
|
4712
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4713
|
+
cursorIndexRef: {
|
|
4714
|
+
readonly current: number;
|
|
4715
|
+
};
|
|
4141
4716
|
UNSTABLE_virtual: {
|
|
4142
4717
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4143
4718
|
totalSize: number;
|
|
@@ -4147,25 +4722,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4147
4722
|
};
|
|
4148
4723
|
UNSTABLE_defaultItemHeight: number;
|
|
4149
4724
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4150
|
-
orientation:
|
|
4725
|
+
orientation: "horizontal" | "vertical";
|
|
4151
4726
|
indexRef: React.MutableRefObject<number>;
|
|
4152
4727
|
nonInteractiveIds: string[];
|
|
4153
4728
|
isVirtualized: boolean;
|
|
4154
4729
|
items: import("../..").Item<any>[];
|
|
4155
4730
|
mode: "multiple" | "single";
|
|
4156
4731
|
}) => void) | undefined;
|
|
4157
|
-
|
|
4732
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
4158
4733
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4159
4734
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4160
4735
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4161
4736
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4162
4737
|
placement: import("@popperjs/core").Placement;
|
|
4163
4738
|
id: string;
|
|
4164
|
-
visibility:
|
|
4165
|
-
selectedIds:
|
|
4739
|
+
visibility: "hidden" | "visible";
|
|
4740
|
+
selectedIds: string[] | "all";
|
|
4166
4741
|
unselectedIds: string[];
|
|
4167
4742
|
cursorId: string;
|
|
4168
4743
|
columnCount: number;
|
|
4744
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4745
|
+
cursorIndexRef: {
|
|
4746
|
+
readonly current: number;
|
|
4747
|
+
};
|
|
4169
4748
|
UNSTABLE_virtual: {
|
|
4170
4749
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4171
4750
|
totalSize: number;
|
|
@@ -4175,25 +4754,32 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4175
4754
|
};
|
|
4176
4755
|
UNSTABLE_defaultItemHeight: number;
|
|
4177
4756
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4178
|
-
orientation:
|
|
4757
|
+
orientation: "horizontal" | "vertical";
|
|
4179
4758
|
indexRef: React.MutableRefObject<number>;
|
|
4180
4759
|
nonInteractiveIds: string[];
|
|
4181
4760
|
isVirtualized: boolean;
|
|
4182
4761
|
items: import("../..").Item<any>[];
|
|
4183
4762
|
mode: "multiple" | "single";
|
|
4184
4763
|
}) => void) | undefined;
|
|
4185
|
-
|
|
4764
|
+
onRegisterItem?: ((data: {
|
|
4765
|
+
item: any;
|
|
4766
|
+
textValue: string;
|
|
4767
|
+
}, prevState: {
|
|
4186
4768
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4187
4769
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4188
4770
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4189
4771
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4190
4772
|
placement: import("@popperjs/core").Placement;
|
|
4191
4773
|
id: string;
|
|
4192
|
-
visibility:
|
|
4193
|
-
selectedIds:
|
|
4774
|
+
visibility: "hidden" | "visible";
|
|
4775
|
+
selectedIds: string[] | "all";
|
|
4194
4776
|
unselectedIds: string[];
|
|
4195
4777
|
cursorId: string;
|
|
4196
4778
|
columnCount: number;
|
|
4779
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4780
|
+
cursorIndexRef: {
|
|
4781
|
+
readonly current: number;
|
|
4782
|
+
};
|
|
4197
4783
|
UNSTABLE_virtual: {
|
|
4198
4784
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4199
4785
|
totalSize: number;
|
|
@@ -4203,7 +4789,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4203
4789
|
};
|
|
4204
4790
|
UNSTABLE_defaultItemHeight: number;
|
|
4205
4791
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4206
|
-
orientation:
|
|
4792
|
+
orientation: "horizontal" | "vertical";
|
|
4207
4793
|
indexRef: React.MutableRefObject<number>;
|
|
4208
4794
|
nonInteractiveIds: string[];
|
|
4209
4795
|
isVirtualized: boolean;
|
|
@@ -4219,11 +4805,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4219
4805
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4220
4806
|
placement: import("@popperjs/core").Placement;
|
|
4221
4807
|
id: string;
|
|
4222
|
-
visibility:
|
|
4223
|
-
selectedIds:
|
|
4808
|
+
visibility: "hidden" | "visible";
|
|
4809
|
+
selectedIds: string[] | "all";
|
|
4224
4810
|
unselectedIds: string[];
|
|
4225
4811
|
cursorId: string;
|
|
4226
4812
|
columnCount: number;
|
|
4813
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4814
|
+
cursorIndexRef: {
|
|
4815
|
+
readonly current: number;
|
|
4816
|
+
};
|
|
4227
4817
|
UNSTABLE_virtual: {
|
|
4228
4818
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4229
4819
|
totalSize: number;
|
|
@@ -4233,7 +4823,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4233
4823
|
};
|
|
4234
4824
|
UNSTABLE_defaultItemHeight: number;
|
|
4235
4825
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4236
|
-
orientation:
|
|
4826
|
+
orientation: "horizontal" | "vertical";
|
|
4237
4827
|
indexRef: React.MutableRefObject<number>;
|
|
4238
4828
|
nonInteractiveIds: string[];
|
|
4239
4829
|
isVirtualized: boolean;
|
|
@@ -4249,11 +4839,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4249
4839
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4250
4840
|
placement: import("@popperjs/core").Placement;
|
|
4251
4841
|
id: string;
|
|
4252
|
-
visibility:
|
|
4253
|
-
selectedIds:
|
|
4842
|
+
visibility: "hidden" | "visible";
|
|
4843
|
+
selectedIds: string[] | "all";
|
|
4254
4844
|
unselectedIds: string[];
|
|
4255
4845
|
cursorId: string;
|
|
4256
4846
|
columnCount: number;
|
|
4847
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4848
|
+
cursorIndexRef: {
|
|
4849
|
+
readonly current: number;
|
|
4850
|
+
};
|
|
4257
4851
|
UNSTABLE_virtual: {
|
|
4258
4852
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4259
4853
|
totalSize: number;
|
|
@@ -4263,7 +4857,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4263
4857
|
};
|
|
4264
4858
|
UNSTABLE_defaultItemHeight: number;
|
|
4265
4859
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4266
|
-
orientation:
|
|
4860
|
+
orientation: "horizontal" | "vertical";
|
|
4267
4861
|
indexRef: React.MutableRefObject<number>;
|
|
4268
4862
|
nonInteractiveIds: string[];
|
|
4269
4863
|
isVirtualized: boolean;
|
|
@@ -4280,11 +4874,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4280
4874
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4281
4875
|
placement: import("@popperjs/core").Placement;
|
|
4282
4876
|
id: string;
|
|
4283
|
-
visibility:
|
|
4284
|
-
selectedIds:
|
|
4877
|
+
visibility: "hidden" | "visible";
|
|
4878
|
+
selectedIds: string[] | "all";
|
|
4285
4879
|
unselectedIds: string[];
|
|
4286
4880
|
cursorId: string;
|
|
4287
4881
|
columnCount: number;
|
|
4882
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4883
|
+
cursorIndexRef: {
|
|
4884
|
+
readonly current: number;
|
|
4885
|
+
};
|
|
4288
4886
|
UNSTABLE_virtual: {
|
|
4289
4887
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4290
4888
|
totalSize: number;
|
|
@@ -4294,7 +4892,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4294
4892
|
};
|
|
4295
4893
|
UNSTABLE_defaultItemHeight: number;
|
|
4296
4894
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4297
|
-
orientation:
|
|
4895
|
+
orientation: "horizontal" | "vertical";
|
|
4298
4896
|
indexRef: React.MutableRefObject<number>;
|
|
4299
4897
|
nonInteractiveIds: string[];
|
|
4300
4898
|
isVirtualized: boolean;
|
|
@@ -4308,11 +4906,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4308
4906
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4309
4907
|
placement: import("@popperjs/core").Placement;
|
|
4310
4908
|
id: string;
|
|
4311
|
-
visibility:
|
|
4312
|
-
selectedIds:
|
|
4909
|
+
visibility: "hidden" | "visible";
|
|
4910
|
+
selectedIds: string[] | "all";
|
|
4313
4911
|
unselectedIds: string[];
|
|
4314
4912
|
cursorId: string;
|
|
4315
4913
|
columnCount: number;
|
|
4914
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4915
|
+
cursorIndexRef: {
|
|
4916
|
+
readonly current: number;
|
|
4917
|
+
};
|
|
4316
4918
|
UNSTABLE_virtual: {
|
|
4317
4919
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4318
4920
|
totalSize: number;
|
|
@@ -4322,7 +4924,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4322
4924
|
};
|
|
4323
4925
|
UNSTABLE_defaultItemHeight: number;
|
|
4324
4926
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4325
|
-
orientation:
|
|
4927
|
+
orientation: "horizontal" | "vertical";
|
|
4326
4928
|
indexRef: React.MutableRefObject<number>;
|
|
4327
4929
|
nonInteractiveIds: string[];
|
|
4328
4930
|
isVirtualized: boolean;
|
|
@@ -4336,11 +4938,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4336
4938
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4337
4939
|
placement: import("@popperjs/core").Placement;
|
|
4338
4940
|
id: string;
|
|
4339
|
-
visibility:
|
|
4340
|
-
selectedIds:
|
|
4941
|
+
visibility: "hidden" | "visible";
|
|
4942
|
+
selectedIds: string[] | "all";
|
|
4341
4943
|
unselectedIds: string[];
|
|
4342
4944
|
cursorId: string;
|
|
4343
4945
|
columnCount: number;
|
|
4946
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4947
|
+
cursorIndexRef: {
|
|
4948
|
+
readonly current: number;
|
|
4949
|
+
};
|
|
4344
4950
|
UNSTABLE_virtual: {
|
|
4345
4951
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4346
4952
|
totalSize: number;
|
|
@@ -4350,7 +4956,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4350
4956
|
};
|
|
4351
4957
|
UNSTABLE_defaultItemHeight: number;
|
|
4352
4958
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4353
|
-
orientation:
|
|
4959
|
+
orientation: "horizontal" | "vertical";
|
|
4354
4960
|
indexRef: React.MutableRefObject<number>;
|
|
4355
4961
|
nonInteractiveIds: string[];
|
|
4356
4962
|
isVirtualized: boolean;
|
|
@@ -4366,11 +4972,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4366
4972
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4367
4973
|
placement: import("@popperjs/core").Placement;
|
|
4368
4974
|
id: string;
|
|
4369
|
-
visibility:
|
|
4370
|
-
selectedIds:
|
|
4975
|
+
visibility: "hidden" | "visible";
|
|
4976
|
+
selectedIds: string[] | "all";
|
|
4371
4977
|
unselectedIds: string[];
|
|
4372
4978
|
cursorId: string;
|
|
4373
4979
|
columnCount: number;
|
|
4980
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4981
|
+
cursorIndexRef: {
|
|
4982
|
+
readonly current: number;
|
|
4983
|
+
};
|
|
4374
4984
|
UNSTABLE_virtual: {
|
|
4375
4985
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4376
4986
|
totalSize: number;
|
|
@@ -4380,7 +4990,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4380
4990
|
};
|
|
4381
4991
|
UNSTABLE_defaultItemHeight: number;
|
|
4382
4992
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4383
|
-
orientation:
|
|
4993
|
+
orientation: "horizontal" | "vertical";
|
|
4384
4994
|
indexRef: React.MutableRefObject<number>;
|
|
4385
4995
|
nonInteractiveIds: string[];
|
|
4386
4996
|
isVirtualized: boolean;
|
|
@@ -4394,11 +5004,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4394
5004
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4395
5005
|
placement: import("@popperjs/core").Placement;
|
|
4396
5006
|
id: string;
|
|
4397
|
-
visibility:
|
|
4398
|
-
selectedIds:
|
|
5007
|
+
visibility: "hidden" | "visible";
|
|
5008
|
+
selectedIds: string[] | "all";
|
|
4399
5009
|
unselectedIds: string[];
|
|
4400
5010
|
cursorId: string;
|
|
4401
5011
|
columnCount: number;
|
|
5012
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5013
|
+
cursorIndexRef: {
|
|
5014
|
+
readonly current: number;
|
|
5015
|
+
};
|
|
4402
5016
|
UNSTABLE_virtual: {
|
|
4403
5017
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4404
5018
|
totalSize: number;
|
|
@@ -4408,7 +5022,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4408
5022
|
};
|
|
4409
5023
|
UNSTABLE_defaultItemHeight: number;
|
|
4410
5024
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4411
|
-
orientation:
|
|
5025
|
+
orientation: "horizontal" | "vertical";
|
|
4412
5026
|
indexRef: React.MutableRefObject<number>;
|
|
4413
5027
|
nonInteractiveIds: string[];
|
|
4414
5028
|
isVirtualized: boolean;
|
|
@@ -4422,11 +5036,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4422
5036
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4423
5037
|
placement: import("@popperjs/core").Placement;
|
|
4424
5038
|
id: string;
|
|
4425
|
-
visibility:
|
|
4426
|
-
selectedIds:
|
|
5039
|
+
visibility: "hidden" | "visible";
|
|
5040
|
+
selectedIds: string[] | "all";
|
|
4427
5041
|
unselectedIds: string[];
|
|
4428
5042
|
cursorId: string;
|
|
4429
5043
|
columnCount: number;
|
|
5044
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5045
|
+
cursorIndexRef: {
|
|
5046
|
+
readonly current: number;
|
|
5047
|
+
};
|
|
4430
5048
|
UNSTABLE_virtual: {
|
|
4431
5049
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4432
5050
|
totalSize: number;
|
|
@@ -4436,16 +5054,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4436
5054
|
};
|
|
4437
5055
|
UNSTABLE_defaultItemHeight: number;
|
|
4438
5056
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4439
|
-
orientation:
|
|
5057
|
+
orientation: "horizontal" | "vertical";
|
|
4440
5058
|
indexRef: React.MutableRefObject<number>;
|
|
4441
5059
|
nonInteractiveIds: string[];
|
|
4442
5060
|
isVirtualized: boolean;
|
|
4443
5061
|
items: import("../..").Item<any>[];
|
|
4444
5062
|
mode: "multiple" | "single";
|
|
4445
5063
|
}) => boolean) | undefined;
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
textValue: string;
|
|
5064
|
+
shouldGoTo?: ((data: {
|
|
5065
|
+
id: string;
|
|
4449
5066
|
}, state: {
|
|
4450
5067
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4451
5068
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -4453,11 +5070,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4453
5070
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4454
5071
|
placement: import("@popperjs/core").Placement;
|
|
4455
5072
|
id: string;
|
|
4456
|
-
visibility:
|
|
4457
|
-
selectedIds:
|
|
5073
|
+
visibility: "hidden" | "visible";
|
|
5074
|
+
selectedIds: string[] | "all";
|
|
4458
5075
|
unselectedIds: string[];
|
|
4459
5076
|
cursorId: string;
|
|
4460
5077
|
columnCount: number;
|
|
5078
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5079
|
+
cursorIndexRef: {
|
|
5080
|
+
readonly current: number;
|
|
5081
|
+
};
|
|
4461
5082
|
UNSTABLE_virtual: {
|
|
4462
5083
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4463
5084
|
totalSize: number;
|
|
@@ -4467,27 +5088,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4467
5088
|
};
|
|
4468
5089
|
UNSTABLE_defaultItemHeight: number;
|
|
4469
5090
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4470
|
-
orientation:
|
|
5091
|
+
orientation: "horizontal" | "vertical";
|
|
4471
5092
|
indexRef: React.MutableRefObject<number>;
|
|
4472
5093
|
nonInteractiveIds: string[];
|
|
4473
5094
|
isVirtualized: boolean;
|
|
4474
5095
|
items: import("../..").Item<any>[];
|
|
4475
5096
|
mode: "multiple" | "single";
|
|
4476
5097
|
}) => boolean) | undefined;
|
|
4477
|
-
|
|
4478
|
-
id: string;
|
|
4479
|
-
}, state: {
|
|
5098
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
4480
5099
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4481
5100
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4482
5101
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4483
5102
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4484
5103
|
placement: import("@popperjs/core").Placement;
|
|
4485
5104
|
id: string;
|
|
4486
|
-
visibility:
|
|
4487
|
-
selectedIds:
|
|
5105
|
+
visibility: "hidden" | "visible";
|
|
5106
|
+
selectedIds: string[] | "all";
|
|
4488
5107
|
unselectedIds: string[];
|
|
4489
5108
|
cursorId: string;
|
|
4490
5109
|
columnCount: number;
|
|
5110
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5111
|
+
cursorIndexRef: {
|
|
5112
|
+
readonly current: number;
|
|
5113
|
+
};
|
|
4491
5114
|
UNSTABLE_virtual: {
|
|
4492
5115
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4493
5116
|
totalSize: number;
|
|
@@ -4497,25 +5120,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4497
5120
|
};
|
|
4498
5121
|
UNSTABLE_defaultItemHeight: number;
|
|
4499
5122
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4500
|
-
orientation:
|
|
5123
|
+
orientation: "horizontal" | "vertical";
|
|
4501
5124
|
indexRef: React.MutableRefObject<number>;
|
|
4502
5125
|
nonInteractiveIds: string[];
|
|
4503
5126
|
isVirtualized: boolean;
|
|
4504
5127
|
items: import("../..").Item<any>[];
|
|
4505
5128
|
mode: "multiple" | "single";
|
|
4506
5129
|
}) => boolean) | undefined;
|
|
4507
|
-
|
|
5130
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
4508
5131
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4509
5132
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4510
5133
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4511
5134
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4512
5135
|
placement: import("@popperjs/core").Placement;
|
|
4513
5136
|
id: string;
|
|
4514
|
-
visibility:
|
|
4515
|
-
selectedIds:
|
|
5137
|
+
visibility: "hidden" | "visible";
|
|
5138
|
+
selectedIds: string[] | "all";
|
|
4516
5139
|
unselectedIds: string[];
|
|
4517
5140
|
cursorId: string;
|
|
4518
5141
|
columnCount: number;
|
|
5142
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5143
|
+
cursorIndexRef: {
|
|
5144
|
+
readonly current: number;
|
|
5145
|
+
};
|
|
4519
5146
|
UNSTABLE_virtual: {
|
|
4520
5147
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4521
5148
|
totalSize: number;
|
|
@@ -4525,25 +5152,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4525
5152
|
};
|
|
4526
5153
|
UNSTABLE_defaultItemHeight: number;
|
|
4527
5154
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4528
|
-
orientation:
|
|
5155
|
+
orientation: "horizontal" | "vertical";
|
|
4529
5156
|
indexRef: React.MutableRefObject<number>;
|
|
4530
5157
|
nonInteractiveIds: string[];
|
|
4531
5158
|
isVirtualized: boolean;
|
|
4532
5159
|
items: import("../..").Item<any>[];
|
|
4533
5160
|
mode: "multiple" | "single";
|
|
4534
5161
|
}) => boolean) | undefined;
|
|
4535
|
-
|
|
5162
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
4536
5163
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4537
5164
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4538
5165
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4539
5166
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4540
5167
|
placement: import("@popperjs/core").Placement;
|
|
4541
5168
|
id: string;
|
|
4542
|
-
visibility:
|
|
4543
|
-
selectedIds:
|
|
5169
|
+
visibility: "hidden" | "visible";
|
|
5170
|
+
selectedIds: string[] | "all";
|
|
4544
5171
|
unselectedIds: string[];
|
|
4545
5172
|
cursorId: string;
|
|
4546
5173
|
columnCount: number;
|
|
5174
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5175
|
+
cursorIndexRef: {
|
|
5176
|
+
readonly current: number;
|
|
5177
|
+
};
|
|
4547
5178
|
UNSTABLE_virtual: {
|
|
4548
5179
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4549
5180
|
totalSize: number;
|
|
@@ -4553,25 +5184,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4553
5184
|
};
|
|
4554
5185
|
UNSTABLE_defaultItemHeight: number;
|
|
4555
5186
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4556
|
-
orientation:
|
|
5187
|
+
orientation: "horizontal" | "vertical";
|
|
4557
5188
|
indexRef: React.MutableRefObject<number>;
|
|
4558
5189
|
nonInteractiveIds: string[];
|
|
4559
5190
|
isVirtualized: boolean;
|
|
4560
5191
|
items: import("../..").Item<any>[];
|
|
4561
5192
|
mode: "multiple" | "single";
|
|
4562
5193
|
}) => boolean) | undefined;
|
|
4563
|
-
|
|
5194
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
4564
5195
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4565
5196
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4566
5197
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4567
5198
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4568
5199
|
placement: import("@popperjs/core").Placement;
|
|
4569
5200
|
id: string;
|
|
4570
|
-
visibility:
|
|
4571
|
-
selectedIds:
|
|
5201
|
+
visibility: "hidden" | "visible";
|
|
5202
|
+
selectedIds: string[] | "all";
|
|
4572
5203
|
unselectedIds: string[];
|
|
4573
5204
|
cursorId: string;
|
|
4574
5205
|
columnCount: number;
|
|
5206
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5207
|
+
cursorIndexRef: {
|
|
5208
|
+
readonly current: number;
|
|
5209
|
+
};
|
|
4575
5210
|
UNSTABLE_virtual: {
|
|
4576
5211
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4577
5212
|
totalSize: number;
|
|
@@ -4581,25 +5216,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4581
5216
|
};
|
|
4582
5217
|
UNSTABLE_defaultItemHeight: number;
|
|
4583
5218
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4584
|
-
orientation:
|
|
5219
|
+
orientation: "horizontal" | "vertical";
|
|
4585
5220
|
indexRef: React.MutableRefObject<number>;
|
|
4586
5221
|
nonInteractiveIds: string[];
|
|
4587
5222
|
isVirtualized: boolean;
|
|
4588
5223
|
items: import("../..").Item<any>[];
|
|
4589
5224
|
mode: "multiple" | "single";
|
|
4590
5225
|
}) => boolean) | undefined;
|
|
4591
|
-
|
|
5226
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
4592
5227
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4593
5228
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4594
5229
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4595
5230
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4596
5231
|
placement: import("@popperjs/core").Placement;
|
|
4597
5232
|
id: string;
|
|
4598
|
-
visibility:
|
|
4599
|
-
selectedIds:
|
|
5233
|
+
visibility: "hidden" | "visible";
|
|
5234
|
+
selectedIds: string[] | "all";
|
|
4600
5235
|
unselectedIds: string[];
|
|
4601
5236
|
cursorId: string;
|
|
4602
5237
|
columnCount: number;
|
|
5238
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5239
|
+
cursorIndexRef: {
|
|
5240
|
+
readonly current: number;
|
|
5241
|
+
};
|
|
4603
5242
|
UNSTABLE_virtual: {
|
|
4604
5243
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4605
5244
|
totalSize: number;
|
|
@@ -4609,25 +5248,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4609
5248
|
};
|
|
4610
5249
|
UNSTABLE_defaultItemHeight: number;
|
|
4611
5250
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4612
|
-
orientation:
|
|
5251
|
+
orientation: "horizontal" | "vertical";
|
|
4613
5252
|
indexRef: React.MutableRefObject<number>;
|
|
4614
5253
|
nonInteractiveIds: string[];
|
|
4615
5254
|
isVirtualized: boolean;
|
|
4616
5255
|
items: import("../..").Item<any>[];
|
|
4617
5256
|
mode: "multiple" | "single";
|
|
4618
5257
|
}) => boolean) | undefined;
|
|
4619
|
-
|
|
5258
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
4620
5259
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4621
5260
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4622
5261
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4623
5262
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4624
5263
|
placement: import("@popperjs/core").Placement;
|
|
4625
5264
|
id: string;
|
|
4626
|
-
visibility:
|
|
4627
|
-
selectedIds:
|
|
5265
|
+
visibility: "hidden" | "visible";
|
|
5266
|
+
selectedIds: string[] | "all";
|
|
4628
5267
|
unselectedIds: string[];
|
|
4629
5268
|
cursorId: string;
|
|
4630
5269
|
columnCount: number;
|
|
5270
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5271
|
+
cursorIndexRef: {
|
|
5272
|
+
readonly current: number;
|
|
5273
|
+
};
|
|
4631
5274
|
UNSTABLE_virtual: {
|
|
4632
5275
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4633
5276
|
totalSize: number;
|
|
@@ -4637,25 +5280,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4637
5280
|
};
|
|
4638
5281
|
UNSTABLE_defaultItemHeight: number;
|
|
4639
5282
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4640
|
-
orientation:
|
|
5283
|
+
orientation: "horizontal" | "vertical";
|
|
4641
5284
|
indexRef: React.MutableRefObject<number>;
|
|
4642
5285
|
nonInteractiveIds: string[];
|
|
4643
5286
|
isVirtualized: boolean;
|
|
4644
5287
|
items: import("../..").Item<any>[];
|
|
4645
5288
|
mode: "multiple" | "single";
|
|
4646
5289
|
}) => boolean) | undefined;
|
|
4647
|
-
|
|
5290
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
4648
5291
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4649
5292
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4650
5293
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4651
5294
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4652
5295
|
placement: import("@popperjs/core").Placement;
|
|
4653
5296
|
id: string;
|
|
4654
|
-
visibility:
|
|
4655
|
-
selectedIds:
|
|
5297
|
+
visibility: "hidden" | "visible";
|
|
5298
|
+
selectedIds: string[] | "all";
|
|
4656
5299
|
unselectedIds: string[];
|
|
4657
5300
|
cursorId: string;
|
|
4658
5301
|
columnCount: number;
|
|
5302
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5303
|
+
cursorIndexRef: {
|
|
5304
|
+
readonly current: number;
|
|
5305
|
+
};
|
|
4659
5306
|
UNSTABLE_virtual: {
|
|
4660
5307
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4661
5308
|
totalSize: number;
|
|
@@ -4665,25 +5312,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4665
5312
|
};
|
|
4666
5313
|
UNSTABLE_defaultItemHeight: number;
|
|
4667
5314
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4668
|
-
orientation:
|
|
5315
|
+
orientation: "horizontal" | "vertical";
|
|
4669
5316
|
indexRef: React.MutableRefObject<number>;
|
|
4670
5317
|
nonInteractiveIds: string[];
|
|
4671
5318
|
isVirtualized: boolean;
|
|
4672
5319
|
items: import("../..").Item<any>[];
|
|
4673
5320
|
mode: "multiple" | "single";
|
|
4674
5321
|
}) => boolean) | undefined;
|
|
4675
|
-
|
|
5322
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
4676
5323
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4677
5324
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4678
5325
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4679
5326
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4680
5327
|
placement: import("@popperjs/core").Placement;
|
|
4681
5328
|
id: string;
|
|
4682
|
-
visibility:
|
|
4683
|
-
selectedIds:
|
|
5329
|
+
visibility: "hidden" | "visible";
|
|
5330
|
+
selectedIds: string[] | "all";
|
|
4684
5331
|
unselectedIds: string[];
|
|
4685
5332
|
cursorId: string;
|
|
4686
5333
|
columnCount: number;
|
|
5334
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5335
|
+
cursorIndexRef: {
|
|
5336
|
+
readonly current: number;
|
|
5337
|
+
};
|
|
4687
5338
|
UNSTABLE_virtual: {
|
|
4688
5339
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4689
5340
|
totalSize: number;
|
|
@@ -4693,25 +5344,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4693
5344
|
};
|
|
4694
5345
|
UNSTABLE_defaultItemHeight: number;
|
|
4695
5346
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4696
|
-
orientation:
|
|
5347
|
+
orientation: "horizontal" | "vertical";
|
|
4697
5348
|
indexRef: React.MutableRefObject<number>;
|
|
4698
5349
|
nonInteractiveIds: string[];
|
|
4699
5350
|
isVirtualized: boolean;
|
|
4700
5351
|
items: import("../..").Item<any>[];
|
|
4701
5352
|
mode: "multiple" | "single";
|
|
4702
5353
|
}) => boolean) | undefined;
|
|
4703
|
-
|
|
5354
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
4704
5355
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4705
5356
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4706
5357
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4707
5358
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4708
5359
|
placement: import("@popperjs/core").Placement;
|
|
4709
5360
|
id: string;
|
|
4710
|
-
visibility:
|
|
4711
|
-
selectedIds:
|
|
5361
|
+
visibility: "hidden" | "visible";
|
|
5362
|
+
selectedIds: string[] | "all";
|
|
4712
5363
|
unselectedIds: string[];
|
|
4713
5364
|
cursorId: string;
|
|
4714
5365
|
columnCount: number;
|
|
5366
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5367
|
+
cursorIndexRef: {
|
|
5368
|
+
readonly current: number;
|
|
5369
|
+
};
|
|
4715
5370
|
UNSTABLE_virtual: {
|
|
4716
5371
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4717
5372
|
totalSize: number;
|
|
@@ -4721,25 +5376,29 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4721
5376
|
};
|
|
4722
5377
|
UNSTABLE_defaultItemHeight: number;
|
|
4723
5378
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4724
|
-
orientation:
|
|
5379
|
+
orientation: "horizontal" | "vertical";
|
|
4725
5380
|
indexRef: React.MutableRefObject<number>;
|
|
4726
5381
|
nonInteractiveIds: string[];
|
|
4727
5382
|
isVirtualized: boolean;
|
|
4728
5383
|
items: import("../..").Item<any>[];
|
|
4729
5384
|
mode: "multiple" | "single";
|
|
4730
5385
|
}) => boolean) | undefined;
|
|
4731
|
-
|
|
5386
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
4732
5387
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4733
5388
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4734
5389
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4735
5390
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4736
5391
|
placement: import("@popperjs/core").Placement;
|
|
4737
5392
|
id: string;
|
|
4738
|
-
visibility:
|
|
4739
|
-
selectedIds:
|
|
5393
|
+
visibility: "hidden" | "visible";
|
|
5394
|
+
selectedIds: string[] | "all";
|
|
4740
5395
|
unselectedIds: string[];
|
|
4741
5396
|
cursorId: string;
|
|
4742
5397
|
columnCount: number;
|
|
5398
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5399
|
+
cursorIndexRef: {
|
|
5400
|
+
readonly current: number;
|
|
5401
|
+
};
|
|
4743
5402
|
UNSTABLE_virtual: {
|
|
4744
5403
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4745
5404
|
totalSize: number;
|
|
@@ -4749,25 +5408,32 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4749
5408
|
};
|
|
4750
5409
|
UNSTABLE_defaultItemHeight: number;
|
|
4751
5410
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4752
|
-
orientation:
|
|
5411
|
+
orientation: "horizontal" | "vertical";
|
|
4753
5412
|
indexRef: React.MutableRefObject<number>;
|
|
4754
5413
|
nonInteractiveIds: string[];
|
|
4755
5414
|
isVirtualized: boolean;
|
|
4756
5415
|
items: import("../..").Item<any>[];
|
|
4757
5416
|
mode: "multiple" | "single";
|
|
4758
5417
|
}) => boolean) | undefined;
|
|
4759
|
-
|
|
5418
|
+
shouldRegisterItem?: ((data: {
|
|
5419
|
+
item: any;
|
|
5420
|
+
textValue: string;
|
|
5421
|
+
}, state: {
|
|
4760
5422
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4761
5423
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4762
5424
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
4763
5425
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4764
5426
|
placement: import("@popperjs/core").Placement;
|
|
4765
5427
|
id: string;
|
|
4766
|
-
visibility:
|
|
4767
|
-
selectedIds:
|
|
5428
|
+
visibility: "hidden" | "visible";
|
|
5429
|
+
selectedIds: string[] | "all";
|
|
4768
5430
|
unselectedIds: string[];
|
|
4769
5431
|
cursorId: string;
|
|
4770
5432
|
columnCount: number;
|
|
5433
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5434
|
+
cursorIndexRef: {
|
|
5435
|
+
readonly current: number;
|
|
5436
|
+
};
|
|
4771
5437
|
UNSTABLE_virtual: {
|
|
4772
5438
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4773
5439
|
totalSize: number;
|
|
@@ -4777,7 +5443,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4777
5443
|
};
|
|
4778
5444
|
UNSTABLE_defaultItemHeight: number;
|
|
4779
5445
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4780
|
-
orientation:
|
|
5446
|
+
orientation: "horizontal" | "vertical";
|
|
4781
5447
|
indexRef: React.MutableRefObject<number>;
|
|
4782
5448
|
nonInteractiveIds: string[];
|
|
4783
5449
|
isVirtualized: boolean;
|
|
@@ -4793,11 +5459,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4793
5459
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4794
5460
|
placement: import("@popperjs/core").Placement;
|
|
4795
5461
|
id: string;
|
|
4796
|
-
visibility:
|
|
4797
|
-
selectedIds:
|
|
5462
|
+
visibility: "hidden" | "visible";
|
|
5463
|
+
selectedIds: string[] | "all";
|
|
4798
5464
|
unselectedIds: string[];
|
|
4799
5465
|
cursorId: string;
|
|
4800
5466
|
columnCount: number;
|
|
5467
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5468
|
+
cursorIndexRef: {
|
|
5469
|
+
readonly current: number;
|
|
5470
|
+
};
|
|
4801
5471
|
UNSTABLE_virtual: {
|
|
4802
5472
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4803
5473
|
totalSize: number;
|
|
@@ -4807,7 +5477,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4807
5477
|
};
|
|
4808
5478
|
UNSTABLE_defaultItemHeight: number;
|
|
4809
5479
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4810
|
-
orientation:
|
|
5480
|
+
orientation: "horizontal" | "vertical";
|
|
4811
5481
|
indexRef: React.MutableRefObject<number>;
|
|
4812
5482
|
nonInteractiveIds: string[];
|
|
4813
5483
|
isVirtualized: boolean;
|
|
@@ -4823,11 +5493,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4823
5493
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4824
5494
|
placement: import("@popperjs/core").Placement;
|
|
4825
5495
|
id: string;
|
|
4826
|
-
visibility:
|
|
4827
|
-
selectedIds:
|
|
5496
|
+
visibility: "hidden" | "visible";
|
|
5497
|
+
selectedIds: string[] | "all";
|
|
4828
5498
|
unselectedIds: string[];
|
|
4829
5499
|
cursorId: string;
|
|
4830
5500
|
columnCount: number;
|
|
5501
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5502
|
+
cursorIndexRef: {
|
|
5503
|
+
readonly current: number;
|
|
5504
|
+
};
|
|
4831
5505
|
UNSTABLE_virtual: {
|
|
4832
5506
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4833
5507
|
totalSize: number;
|
|
@@ -4837,7 +5511,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4837
5511
|
};
|
|
4838
5512
|
UNSTABLE_defaultItemHeight: number;
|
|
4839
5513
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4840
|
-
orientation:
|
|
5514
|
+
orientation: "horizontal" | "vertical";
|
|
4841
5515
|
indexRef: React.MutableRefObject<number>;
|
|
4842
5516
|
nonInteractiveIds: string[];
|
|
4843
5517
|
isVirtualized: boolean;
|
|
@@ -4852,11 +5526,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4852
5526
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4853
5527
|
placement: import("@popperjs/core").Placement;
|
|
4854
5528
|
id: string;
|
|
4855
|
-
visibility:
|
|
4856
|
-
selectedIds:
|
|
5529
|
+
visibility: "hidden" | "visible";
|
|
5530
|
+
selectedIds: string[] | "all";
|
|
4857
5531
|
unselectedIds: string[];
|
|
4858
5532
|
cursorId: string;
|
|
4859
5533
|
columnCount: number;
|
|
5534
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5535
|
+
cursorIndexRef: {
|
|
5536
|
+
readonly current: number;
|
|
5537
|
+
};
|
|
4860
5538
|
UNSTABLE_virtual: {
|
|
4861
5539
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4862
5540
|
totalSize: number;
|
|
@@ -4866,7 +5544,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4866
5544
|
};
|
|
4867
5545
|
UNSTABLE_defaultItemHeight: number;
|
|
4868
5546
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4869
|
-
orientation:
|
|
5547
|
+
orientation: "horizontal" | "vertical";
|
|
4870
5548
|
indexRef: React.MutableRefObject<number>;
|
|
4871
5549
|
nonInteractiveIds: string[];
|
|
4872
5550
|
isVirtualized: boolean;
|
|
@@ -4884,10 +5562,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4884
5562
|
}): void;
|
|
4885
5563
|
selectAll(): void;
|
|
4886
5564
|
unselectAll(): void;
|
|
4887
|
-
registerItem(data: {
|
|
4888
|
-
item: any;
|
|
4889
|
-
textValue: string;
|
|
4890
|
-
}): void;
|
|
4891
5565
|
goTo(data: {
|
|
4892
5566
|
id: string;
|
|
4893
5567
|
}): void;
|
|
@@ -4901,6 +5575,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4901
5575
|
goToLastOfRow(): void;
|
|
4902
5576
|
goToNextPage(): void;
|
|
4903
5577
|
goToPreviousPage(): void;
|
|
5578
|
+
registerItem(data: {
|
|
5579
|
+
item: any;
|
|
5580
|
+
textValue: string;
|
|
5581
|
+
}): void;
|
|
4904
5582
|
unregisterItem(data: {
|
|
4905
5583
|
id: string;
|
|
4906
5584
|
}): void;
|
|
@@ -4912,7 +5590,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4912
5590
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
4913
5591
|
getId: (item: any) => string;
|
|
4914
5592
|
}> & {
|
|
4915
|
-
|
|
5593
|
+
Target: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
4916
5594
|
state: {
|
|
4917
5595
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4918
5596
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -4920,11 +5598,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4920
5598
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4921
5599
|
placement: import("@popperjs/core").Placement;
|
|
4922
5600
|
id: string;
|
|
4923
|
-
visibility:
|
|
4924
|
-
selectedIds:
|
|
5601
|
+
visibility: "hidden" | "visible";
|
|
5602
|
+
selectedIds: string[] | "all";
|
|
4925
5603
|
unselectedIds: string[];
|
|
4926
5604
|
cursorId: string;
|
|
4927
5605
|
columnCount: number;
|
|
5606
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5607
|
+
cursorIndexRef: {
|
|
5608
|
+
readonly current: number;
|
|
5609
|
+
};
|
|
4928
5610
|
UNSTABLE_virtual: {
|
|
4929
5611
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4930
5612
|
totalSize: number;
|
|
@@ -4934,7 +5616,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4934
5616
|
};
|
|
4935
5617
|
UNSTABLE_defaultItemHeight: number;
|
|
4936
5618
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
4937
|
-
orientation:
|
|
5619
|
+
orientation: "horizontal" | "vertical";
|
|
4938
5620
|
indexRef: React.MutableRefObject<number>;
|
|
4939
5621
|
nonInteractiveIds: string[];
|
|
4940
5622
|
isVirtualized: boolean;
|
|
@@ -4952,10 +5634,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4952
5634
|
}): void;
|
|
4953
5635
|
selectAll(): void;
|
|
4954
5636
|
unselectAll(): void;
|
|
4955
|
-
registerItem(data: {
|
|
4956
|
-
item: any;
|
|
4957
|
-
textValue: string;
|
|
4958
|
-
}): void;
|
|
4959
5637
|
goTo(data: {
|
|
4960
5638
|
id: string;
|
|
4961
5639
|
}): void;
|
|
@@ -4969,6 +5647,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4969
5647
|
goToLastOfRow(): void;
|
|
4970
5648
|
goToNextPage(): void;
|
|
4971
5649
|
goToPreviousPage(): void;
|
|
5650
|
+
registerItem(data: {
|
|
5651
|
+
item: any;
|
|
5652
|
+
textValue: string;
|
|
5653
|
+
}): void;
|
|
4972
5654
|
unregisterItem(data: {
|
|
4973
5655
|
id: string;
|
|
4974
5656
|
}): void;
|
|
@@ -4980,7 +5662,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4980
5662
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
4981
5663
|
getId: (item: any) => string;
|
|
4982
5664
|
}>;
|
|
4983
|
-
|
|
5665
|
+
Card: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuCard").MenuCardProps, {
|
|
4984
5666
|
state: {
|
|
4985
5667
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
4986
5668
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -4988,11 +5670,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
4988
5670
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
4989
5671
|
placement: import("@popperjs/core").Placement;
|
|
4990
5672
|
id: string;
|
|
4991
|
-
visibility:
|
|
4992
|
-
selectedIds:
|
|
5673
|
+
visibility: "hidden" | "visible";
|
|
5674
|
+
selectedIds: string[] | "all";
|
|
4993
5675
|
unselectedIds: string[];
|
|
4994
5676
|
cursorId: string;
|
|
4995
5677
|
columnCount: number;
|
|
5678
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5679
|
+
cursorIndexRef: {
|
|
5680
|
+
readonly current: number;
|
|
5681
|
+
};
|
|
4996
5682
|
UNSTABLE_virtual: {
|
|
4997
5683
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4998
5684
|
totalSize: number;
|
|
@@ -5002,7 +5688,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5002
5688
|
};
|
|
5003
5689
|
UNSTABLE_defaultItemHeight: number;
|
|
5004
5690
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5005
|
-
orientation:
|
|
5691
|
+
orientation: "horizontal" | "vertical";
|
|
5006
5692
|
indexRef: React.MutableRefObject<number>;
|
|
5007
5693
|
nonInteractiveIds: string[];
|
|
5008
5694
|
isVirtualized: boolean;
|
|
@@ -5020,10 +5706,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5020
5706
|
}): void;
|
|
5021
5707
|
selectAll(): void;
|
|
5022
5708
|
unselectAll(): void;
|
|
5023
|
-
registerItem(data: {
|
|
5024
|
-
item: any;
|
|
5025
|
-
textValue: string;
|
|
5026
|
-
}): void;
|
|
5027
5709
|
goTo(data: {
|
|
5028
5710
|
id: string;
|
|
5029
5711
|
}): void;
|
|
@@ -5037,6 +5719,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5037
5719
|
goToLastOfRow(): void;
|
|
5038
5720
|
goToNextPage(): void;
|
|
5039
5721
|
goToPreviousPage(): void;
|
|
5722
|
+
registerItem(data: {
|
|
5723
|
+
item: any;
|
|
5724
|
+
textValue: string;
|
|
5725
|
+
}): void;
|
|
5040
5726
|
unregisterItem(data: {
|
|
5041
5727
|
id: string;
|
|
5042
5728
|
}): void;
|
|
@@ -5048,7 +5734,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5048
5734
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
5049
5735
|
getId: (item: any) => string;
|
|
5050
5736
|
}>;
|
|
5051
|
-
|
|
5737
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuList").MenuListProps<any>, {
|
|
5052
5738
|
state: {
|
|
5053
5739
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
5054
5740
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -5056,11 +5742,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5056
5742
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
5057
5743
|
placement: import("@popperjs/core").Placement;
|
|
5058
5744
|
id: string;
|
|
5059
|
-
visibility:
|
|
5060
|
-
selectedIds:
|
|
5745
|
+
visibility: "hidden" | "visible";
|
|
5746
|
+
selectedIds: string[] | "all";
|
|
5061
5747
|
unselectedIds: string[];
|
|
5062
5748
|
cursorId: string;
|
|
5063
5749
|
columnCount: number;
|
|
5750
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5751
|
+
cursorIndexRef: {
|
|
5752
|
+
readonly current: number;
|
|
5753
|
+
};
|
|
5064
5754
|
UNSTABLE_virtual: {
|
|
5065
5755
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
5066
5756
|
totalSize: number;
|
|
@@ -5070,7 +5760,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5070
5760
|
};
|
|
5071
5761
|
UNSTABLE_defaultItemHeight: number;
|
|
5072
5762
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5073
|
-
orientation:
|
|
5763
|
+
orientation: "horizontal" | "vertical";
|
|
5074
5764
|
indexRef: React.MutableRefObject<number>;
|
|
5075
5765
|
nonInteractiveIds: string[];
|
|
5076
5766
|
isVirtualized: boolean;
|
|
@@ -5088,10 +5778,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5088
5778
|
}): void;
|
|
5089
5779
|
selectAll(): void;
|
|
5090
5780
|
unselectAll(): void;
|
|
5091
|
-
registerItem(data: {
|
|
5092
|
-
item: any;
|
|
5093
|
-
textValue: string;
|
|
5094
|
-
}): void;
|
|
5095
5781
|
goTo(data: {
|
|
5096
5782
|
id: string;
|
|
5097
5783
|
}): void;
|
|
@@ -5105,6 +5791,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5105
5791
|
goToLastOfRow(): void;
|
|
5106
5792
|
goToNextPage(): void;
|
|
5107
5793
|
goToPreviousPage(): void;
|
|
5794
|
+
registerItem(data: {
|
|
5795
|
+
item: any;
|
|
5796
|
+
textValue: string;
|
|
5797
|
+
}): void;
|
|
5108
5798
|
unregisterItem(data: {
|
|
5109
5799
|
id: string;
|
|
5110
5800
|
}): void;
|
|
@@ -5115,15 +5805,8 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5115
5805
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
5116
5806
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
5117
5807
|
getId: (item: any) => string;
|
|
5118
|
-
}
|
|
5119
|
-
|
|
5120
|
-
Text: import("@emotion/styled").StyledComponent<{
|
|
5121
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
5122
|
-
as?: "symbol" | "object" | "s" | "big" | "link" | "small" | "sub" | "sup" | "circle" | "stop" | "path" | "style" | "map" | "filter" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "main" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "samp" | "slot" | "script" | "section" | "select" | "source" | "span" | "strong" | "summary" | "table" | "template" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
|
5123
|
-
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
5124
|
-
};
|
|
5125
|
-
Divider: import("../../common").ElementComponent<"hr", unknown>;
|
|
5126
|
-
Target: import("../../common").ElementComponentM<import("../../common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
5808
|
+
}>;
|
|
5809
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("../../menu/lib/MenuItem").MenuItemProps, {
|
|
5127
5810
|
state: {
|
|
5128
5811
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
5129
5812
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -5131,11 +5814,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5131
5814
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
5132
5815
|
placement: import("@popperjs/core").Placement;
|
|
5133
5816
|
id: string;
|
|
5134
|
-
visibility:
|
|
5135
|
-
selectedIds:
|
|
5817
|
+
visibility: "hidden" | "visible";
|
|
5818
|
+
selectedIds: string[] | "all";
|
|
5136
5819
|
unselectedIds: string[];
|
|
5137
5820
|
cursorId: string;
|
|
5138
5821
|
columnCount: number;
|
|
5822
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5823
|
+
cursorIndexRef: {
|
|
5824
|
+
readonly current: number;
|
|
5825
|
+
};
|
|
5139
5826
|
UNSTABLE_virtual: {
|
|
5140
5827
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
5141
5828
|
totalSize: number;
|
|
@@ -5145,7 +5832,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5145
5832
|
};
|
|
5146
5833
|
UNSTABLE_defaultItemHeight: number;
|
|
5147
5834
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5148
|
-
orientation:
|
|
5835
|
+
orientation: "horizontal" | "vertical";
|
|
5149
5836
|
indexRef: React.MutableRefObject<number>;
|
|
5150
5837
|
nonInteractiveIds: string[];
|
|
5151
5838
|
isVirtualized: boolean;
|
|
@@ -5163,10 +5850,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5163
5850
|
}): void;
|
|
5164
5851
|
selectAll(): void;
|
|
5165
5852
|
unselectAll(): void;
|
|
5166
|
-
registerItem(data: {
|
|
5167
|
-
item: any;
|
|
5168
|
-
textValue: string;
|
|
5169
|
-
}): void;
|
|
5170
5853
|
goTo(data: {
|
|
5171
5854
|
id: string;
|
|
5172
5855
|
}): void;
|
|
@@ -5180,6 +5863,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5180
5863
|
goToLastOfRow(): void;
|
|
5181
5864
|
goToNextPage(): void;
|
|
5182
5865
|
goToPreviousPage(): void;
|
|
5866
|
+
registerItem(data: {
|
|
5867
|
+
item: any;
|
|
5868
|
+
textValue: string;
|
|
5869
|
+
}): void;
|
|
5183
5870
|
unregisterItem(data: {
|
|
5184
5871
|
id: string;
|
|
5185
5872
|
}): void;
|
|
@@ -5190,8 +5877,19 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5190
5877
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
5191
5878
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
5192
5879
|
getId: (item: any) => string;
|
|
5193
|
-
}
|
|
5194
|
-
|
|
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, {
|
|
5195
5893
|
state: {
|
|
5196
5894
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
5197
5895
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -5199,11 +5897,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5199
5897
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
5200
5898
|
placement: import("@popperjs/core").Placement;
|
|
5201
5899
|
id: string;
|
|
5202
|
-
visibility:
|
|
5203
|
-
selectedIds:
|
|
5900
|
+
visibility: "hidden" | "visible";
|
|
5901
|
+
selectedIds: string[] | "all";
|
|
5204
5902
|
unselectedIds: string[];
|
|
5205
5903
|
cursorId: string;
|
|
5206
5904
|
columnCount: number;
|
|
5905
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5906
|
+
cursorIndexRef: {
|
|
5907
|
+
readonly current: number;
|
|
5908
|
+
};
|
|
5207
5909
|
UNSTABLE_virtual: {
|
|
5208
5910
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
5209
5911
|
totalSize: number;
|
|
@@ -5213,7 +5915,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5213
5915
|
};
|
|
5214
5916
|
UNSTABLE_defaultItemHeight: number;
|
|
5215
5917
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5216
|
-
orientation:
|
|
5918
|
+
orientation: "horizontal" | "vertical";
|
|
5217
5919
|
indexRef: React.MutableRefObject<number>;
|
|
5218
5920
|
nonInteractiveIds: string[];
|
|
5219
5921
|
isVirtualized: boolean;
|
|
@@ -5231,10 +5933,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5231
5933
|
}): void;
|
|
5232
5934
|
selectAll(): void;
|
|
5233
5935
|
unselectAll(): void;
|
|
5234
|
-
registerItem(data: {
|
|
5235
|
-
item: any;
|
|
5236
|
-
textValue: string;
|
|
5237
|
-
}): void;
|
|
5238
5936
|
goTo(data: {
|
|
5239
5937
|
id: string;
|
|
5240
5938
|
}): void;
|
|
@@ -5248,6 +5946,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5248
5946
|
goToLastOfRow(): void;
|
|
5249
5947
|
goToNextPage(): void;
|
|
5250
5948
|
goToPreviousPage(): void;
|
|
5949
|
+
registerItem(data: {
|
|
5950
|
+
item: any;
|
|
5951
|
+
textValue: string;
|
|
5952
|
+
}): void;
|
|
5251
5953
|
unregisterItem(data: {
|
|
5252
5954
|
id: string;
|
|
5253
5955
|
}): void;
|
|
@@ -5259,7 +5961,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5259
5961
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
5260
5962
|
getId: (item: any) => string;
|
|
5261
5963
|
}>;
|
|
5262
|
-
Popper: import("
|
|
5964
|
+
Popper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuPopper").MenuPopperProps, {
|
|
5263
5965
|
state: {
|
|
5264
5966
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
5265
5967
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -5267,11 +5969,15 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5267
5969
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
5268
5970
|
placement: import("@popperjs/core").Placement;
|
|
5269
5971
|
id: string;
|
|
5270
|
-
visibility:
|
|
5271
|
-
selectedIds:
|
|
5972
|
+
visibility: "hidden" | "visible";
|
|
5973
|
+
selectedIds: string[] | "all";
|
|
5272
5974
|
unselectedIds: string[];
|
|
5273
5975
|
cursorId: string;
|
|
5274
5976
|
columnCount: number;
|
|
5977
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5978
|
+
cursorIndexRef: {
|
|
5979
|
+
readonly current: number;
|
|
5980
|
+
};
|
|
5275
5981
|
UNSTABLE_virtual: {
|
|
5276
5982
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
5277
5983
|
totalSize: number;
|
|
@@ -5281,7 +5987,7 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5281
5987
|
};
|
|
5282
5988
|
UNSTABLE_defaultItemHeight: number;
|
|
5283
5989
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
5284
|
-
orientation:
|
|
5990
|
+
orientation: "horizontal" | "vertical";
|
|
5285
5991
|
indexRef: React.MutableRefObject<number>;
|
|
5286
5992
|
nonInteractiveIds: string[];
|
|
5287
5993
|
isVirtualized: boolean;
|
|
@@ -5299,10 +6005,6 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5299
6005
|
}): void;
|
|
5300
6006
|
selectAll(): void;
|
|
5301
6007
|
unselectAll(): void;
|
|
5302
|
-
registerItem(data: {
|
|
5303
|
-
item: any;
|
|
5304
|
-
textValue: string;
|
|
5305
|
-
}): void;
|
|
5306
6008
|
goTo(data: {
|
|
5307
6009
|
id: string;
|
|
5308
6010
|
}): void;
|
|
@@ -5316,6 +6018,10 @@ export declare const Tabs: import("../../common").ComponentM<TabsProps & Partial
|
|
|
5316
6018
|
goToLastOfRow(): void;
|
|
5317
6019
|
goToNextPage(): void;
|
|
5318
6020
|
goToPreviousPage(): void;
|
|
6021
|
+
registerItem(data: {
|
|
6022
|
+
item: any;
|
|
6023
|
+
textValue: string;
|
|
6024
|
+
}): void;
|
|
5319
6025
|
unregisterItem(data: {
|
|
5320
6026
|
id: string;
|
|
5321
6027
|
}): void;
|