@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,11 +5,30 @@ export interface ActionBarProps {
|
|
|
5
5
|
*/
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
/**
|
|
9
|
+
* `ActionBar` is a container component that is responsible for creating an {@link ActionBarModel}
|
|
10
|
+
* and sharing it with its subcomponents using React context. It does not represent a real element.
|
|
11
|
+
*
|
|
12
|
+
* ```tsx
|
|
13
|
+
* <ActionBar items={[]}>{Child components}</ActionBar>
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* Alternatively, you may pass in a model using the hoisted model pattern.
|
|
17
|
+
*
|
|
18
|
+
* ```tsx
|
|
19
|
+
* const model = useActionBarModel({
|
|
20
|
+
* items: [],
|
|
21
|
+
* });
|
|
22
|
+
*
|
|
23
|
+
* <ActionBar model={model}>{Child components}</ActionBar>;
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare const ActionBar: import("@workday/canvas-kit-react/common").ComponentM<ActionBarProps & Partial<{
|
|
9
27
|
id: string;
|
|
10
28
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
11
29
|
menuConfig: Partial<{
|
|
12
30
|
mode: "multiple" | "single";
|
|
31
|
+
shouldVirtualize: boolean;
|
|
13
32
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
14
33
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
15
34
|
id: string;
|
|
@@ -20,14 +39,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
20
39
|
initialCursorId: string;
|
|
21
40
|
columnCount: number;
|
|
22
41
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
42
|
+
pageSize: number;
|
|
23
43
|
getId: (item: any) => string;
|
|
24
44
|
getTextValue: (item: any) => string;
|
|
25
45
|
nonInteractiveIds: string[];
|
|
26
46
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
27
47
|
defaultItemHeight: number;
|
|
28
|
-
shouldVirtualize: boolean;
|
|
29
48
|
items: any[];
|
|
30
49
|
}>;
|
|
50
|
+
maximumVisible: number;
|
|
31
51
|
initialHiddenIds: string[];
|
|
32
52
|
containerWidth: number;
|
|
33
53
|
shouldCalculateOverflow: boolean;
|
|
@@ -37,6 +57,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
37
57
|
initialCursorId: string;
|
|
38
58
|
columnCount: number;
|
|
39
59
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
60
|
+
pageSize: number;
|
|
40
61
|
getId: (item: any) => string;
|
|
41
62
|
getTextValue: (item: any) => string;
|
|
42
63
|
nonInteractiveIds: string[];
|
|
@@ -53,10 +74,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
53
74
|
itemWidthCache: Record<string, number>;
|
|
54
75
|
containerWidth: number;
|
|
55
76
|
overflowTargetWidth: number;
|
|
56
|
-
selectedIds:
|
|
77
|
+
selectedIds: string[] | "all";
|
|
57
78
|
unselectedIds: string[];
|
|
58
79
|
cursorId: string;
|
|
59
80
|
columnCount: number;
|
|
81
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
82
|
+
cursorIndexRef: {
|
|
83
|
+
readonly current: number;
|
|
84
|
+
};
|
|
60
85
|
UNSTABLE_virtual: {
|
|
61
86
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
62
87
|
totalSize: number;
|
|
@@ -80,10 +105,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
80
105
|
itemWidthCache: Record<string, number>;
|
|
81
106
|
containerWidth: number;
|
|
82
107
|
overflowTargetWidth: number;
|
|
83
|
-
selectedIds:
|
|
108
|
+
selectedIds: string[] | "all";
|
|
84
109
|
unselectedIds: string[];
|
|
85
110
|
cursorId: string;
|
|
86
111
|
columnCount: number;
|
|
112
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
113
|
+
cursorIndexRef: {
|
|
114
|
+
readonly current: number;
|
|
115
|
+
};
|
|
87
116
|
UNSTABLE_virtual: {
|
|
88
117
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
89
118
|
totalSize: number;
|
|
@@ -107,10 +136,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
107
136
|
itemWidthCache: Record<string, number>;
|
|
108
137
|
containerWidth: number;
|
|
109
138
|
overflowTargetWidth: number;
|
|
110
|
-
selectedIds:
|
|
139
|
+
selectedIds: string[] | "all";
|
|
111
140
|
unselectedIds: string[];
|
|
112
141
|
cursorId: string;
|
|
113
142
|
columnCount: number;
|
|
143
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
144
|
+
cursorIndexRef: {
|
|
145
|
+
readonly current: number;
|
|
146
|
+
};
|
|
114
147
|
UNSTABLE_virtual: {
|
|
115
148
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
116
149
|
totalSize: number;
|
|
@@ -135,10 +168,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
135
168
|
itemWidthCache: Record<string, number>;
|
|
136
169
|
containerWidth: number;
|
|
137
170
|
overflowTargetWidth: number;
|
|
138
|
-
selectedIds:
|
|
171
|
+
selectedIds: string[] | "all";
|
|
139
172
|
unselectedIds: string[];
|
|
140
173
|
cursorId: string;
|
|
141
174
|
columnCount: number;
|
|
175
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
176
|
+
cursorIndexRef: {
|
|
177
|
+
readonly current: number;
|
|
178
|
+
};
|
|
142
179
|
UNSTABLE_virtual: {
|
|
143
180
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
144
181
|
totalSize: number;
|
|
@@ -162,10 +199,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
162
199
|
itemWidthCache: Record<string, number>;
|
|
163
200
|
containerWidth: number;
|
|
164
201
|
overflowTargetWidth: number;
|
|
165
|
-
selectedIds:
|
|
202
|
+
selectedIds: string[] | "all";
|
|
166
203
|
unselectedIds: string[];
|
|
167
204
|
cursorId: string;
|
|
168
205
|
columnCount: number;
|
|
206
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
207
|
+
cursorIndexRef: {
|
|
208
|
+
readonly current: number;
|
|
209
|
+
};
|
|
169
210
|
UNSTABLE_virtual: {
|
|
170
211
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
171
212
|
totalSize: number;
|
|
@@ -189,10 +230,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
189
230
|
itemWidthCache: Record<string, number>;
|
|
190
231
|
containerWidth: number;
|
|
191
232
|
overflowTargetWidth: number;
|
|
192
|
-
selectedIds:
|
|
233
|
+
selectedIds: string[] | "all";
|
|
193
234
|
unselectedIds: string[];
|
|
194
235
|
cursorId: string;
|
|
195
236
|
columnCount: number;
|
|
237
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
238
|
+
cursorIndexRef: {
|
|
239
|
+
readonly current: number;
|
|
240
|
+
};
|
|
196
241
|
UNSTABLE_virtual: {
|
|
197
242
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
198
243
|
totalSize: number;
|
|
@@ -216,10 +261,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
216
261
|
itemWidthCache: Record<string, number>;
|
|
217
262
|
containerWidth: number;
|
|
218
263
|
overflowTargetWidth: number;
|
|
219
|
-
selectedIds:
|
|
264
|
+
selectedIds: string[] | "all";
|
|
220
265
|
unselectedIds: string[];
|
|
221
266
|
cursorId: string;
|
|
222
267
|
columnCount: number;
|
|
268
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
269
|
+
cursorIndexRef: {
|
|
270
|
+
readonly current: number;
|
|
271
|
+
};
|
|
223
272
|
UNSTABLE_virtual: {
|
|
224
273
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
225
274
|
totalSize: number;
|
|
@@ -241,10 +290,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
241
290
|
itemWidthCache: Record<string, number>;
|
|
242
291
|
containerWidth: number;
|
|
243
292
|
overflowTargetWidth: number;
|
|
244
|
-
selectedIds:
|
|
293
|
+
selectedIds: string[] | "all";
|
|
245
294
|
unselectedIds: string[];
|
|
246
295
|
cursorId: string;
|
|
247
296
|
columnCount: number;
|
|
297
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
298
|
+
cursorIndexRef: {
|
|
299
|
+
readonly current: number;
|
|
300
|
+
};
|
|
248
301
|
UNSTABLE_virtual: {
|
|
249
302
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
250
303
|
totalSize: number;
|
|
@@ -266,10 +319,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
266
319
|
itemWidthCache: Record<string, number>;
|
|
267
320
|
containerWidth: number;
|
|
268
321
|
overflowTargetWidth: number;
|
|
269
|
-
selectedIds:
|
|
322
|
+
selectedIds: string[] | "all";
|
|
270
323
|
unselectedIds: string[];
|
|
271
324
|
cursorId: string;
|
|
272
325
|
columnCount: number;
|
|
326
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
327
|
+
cursorIndexRef: {
|
|
328
|
+
readonly current: number;
|
|
329
|
+
};
|
|
273
330
|
UNSTABLE_virtual: {
|
|
274
331
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
275
332
|
totalSize: number;
|
|
@@ -284,9 +341,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
284
341
|
isVirtualized: boolean;
|
|
285
342
|
items: import("../..").Item<any>[];
|
|
286
343
|
}) => void) | undefined;
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
textValue: string;
|
|
344
|
+
onGoTo?: ((data: {
|
|
345
|
+
id: string;
|
|
290
346
|
}, prevState: {
|
|
291
347
|
hiddenIds: string[];
|
|
292
348
|
nonInteractiveIds: string[];
|
|
@@ -294,10 +350,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
294
350
|
itemWidthCache: Record<string, number>;
|
|
295
351
|
containerWidth: number;
|
|
296
352
|
overflowTargetWidth: number;
|
|
297
|
-
selectedIds:
|
|
353
|
+
selectedIds: string[] | "all";
|
|
298
354
|
unselectedIds: string[];
|
|
299
355
|
cursorId: string;
|
|
300
356
|
columnCount: number;
|
|
357
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
358
|
+
cursorIndexRef: {
|
|
359
|
+
readonly current: number;
|
|
360
|
+
};
|
|
301
361
|
UNSTABLE_virtual: {
|
|
302
362
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
303
363
|
totalSize: number;
|
|
@@ -312,19 +372,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
312
372
|
isVirtualized: boolean;
|
|
313
373
|
items: import("../..").Item<any>[];
|
|
314
374
|
}) => void) | undefined;
|
|
315
|
-
|
|
316
|
-
id: string;
|
|
317
|
-
}, prevState: {
|
|
375
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
318
376
|
hiddenIds: string[];
|
|
319
377
|
nonInteractiveIds: string[];
|
|
320
378
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
321
379
|
itemWidthCache: Record<string, number>;
|
|
322
380
|
containerWidth: number;
|
|
323
381
|
overflowTargetWidth: number;
|
|
324
|
-
selectedIds:
|
|
382
|
+
selectedIds: string[] | "all";
|
|
325
383
|
unselectedIds: string[];
|
|
326
384
|
cursorId: string;
|
|
327
385
|
columnCount: number;
|
|
386
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
387
|
+
cursorIndexRef: {
|
|
388
|
+
readonly current: number;
|
|
389
|
+
};
|
|
328
390
|
UNSTABLE_virtual: {
|
|
329
391
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
330
392
|
totalSize: number;
|
|
@@ -339,17 +401,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
339
401
|
isVirtualized: boolean;
|
|
340
402
|
items: import("../..").Item<any>[];
|
|
341
403
|
}) => void) | undefined;
|
|
342
|
-
|
|
404
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
343
405
|
hiddenIds: string[];
|
|
344
406
|
nonInteractiveIds: string[];
|
|
345
407
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
346
408
|
itemWidthCache: Record<string, number>;
|
|
347
409
|
containerWidth: number;
|
|
348
410
|
overflowTargetWidth: number;
|
|
349
|
-
selectedIds:
|
|
411
|
+
selectedIds: string[] | "all";
|
|
350
412
|
unselectedIds: string[];
|
|
351
413
|
cursorId: string;
|
|
352
414
|
columnCount: number;
|
|
415
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
416
|
+
cursorIndexRef: {
|
|
417
|
+
readonly current: number;
|
|
418
|
+
};
|
|
353
419
|
UNSTABLE_virtual: {
|
|
354
420
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
355
421
|
totalSize: number;
|
|
@@ -364,17 +430,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
364
430
|
isVirtualized: boolean;
|
|
365
431
|
items: import("../..").Item<any>[];
|
|
366
432
|
}) => void) | undefined;
|
|
367
|
-
|
|
433
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
368
434
|
hiddenIds: string[];
|
|
369
435
|
nonInteractiveIds: string[];
|
|
370
436
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
371
437
|
itemWidthCache: Record<string, number>;
|
|
372
438
|
containerWidth: number;
|
|
373
439
|
overflowTargetWidth: number;
|
|
374
|
-
selectedIds:
|
|
440
|
+
selectedIds: string[] | "all";
|
|
375
441
|
unselectedIds: string[];
|
|
376
442
|
cursorId: string;
|
|
377
443
|
columnCount: number;
|
|
444
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
445
|
+
cursorIndexRef: {
|
|
446
|
+
readonly current: number;
|
|
447
|
+
};
|
|
378
448
|
UNSTABLE_virtual: {
|
|
379
449
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
380
450
|
totalSize: number;
|
|
@@ -389,17 +459,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
389
459
|
isVirtualized: boolean;
|
|
390
460
|
items: import("../..").Item<any>[];
|
|
391
461
|
}) => void) | undefined;
|
|
392
|
-
|
|
462
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
393
463
|
hiddenIds: string[];
|
|
394
464
|
nonInteractiveIds: string[];
|
|
395
465
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
396
466
|
itemWidthCache: Record<string, number>;
|
|
397
467
|
containerWidth: number;
|
|
398
468
|
overflowTargetWidth: number;
|
|
399
|
-
selectedIds:
|
|
469
|
+
selectedIds: string[] | "all";
|
|
400
470
|
unselectedIds: string[];
|
|
401
471
|
cursorId: string;
|
|
402
472
|
columnCount: number;
|
|
473
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
474
|
+
cursorIndexRef: {
|
|
475
|
+
readonly current: number;
|
|
476
|
+
};
|
|
403
477
|
UNSTABLE_virtual: {
|
|
404
478
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
405
479
|
totalSize: number;
|
|
@@ -414,17 +488,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
414
488
|
isVirtualized: boolean;
|
|
415
489
|
items: import("../..").Item<any>[];
|
|
416
490
|
}) => void) | undefined;
|
|
417
|
-
|
|
491
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
418
492
|
hiddenIds: string[];
|
|
419
493
|
nonInteractiveIds: string[];
|
|
420
494
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
421
495
|
itemWidthCache: Record<string, number>;
|
|
422
496
|
containerWidth: number;
|
|
423
497
|
overflowTargetWidth: number;
|
|
424
|
-
selectedIds:
|
|
498
|
+
selectedIds: string[] | "all";
|
|
425
499
|
unselectedIds: string[];
|
|
426
500
|
cursorId: string;
|
|
427
501
|
columnCount: number;
|
|
502
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
503
|
+
cursorIndexRef: {
|
|
504
|
+
readonly current: number;
|
|
505
|
+
};
|
|
428
506
|
UNSTABLE_virtual: {
|
|
429
507
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
430
508
|
totalSize: number;
|
|
@@ -439,17 +517,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
439
517
|
isVirtualized: boolean;
|
|
440
518
|
items: import("../..").Item<any>[];
|
|
441
519
|
}) => void) | undefined;
|
|
442
|
-
|
|
520
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
443
521
|
hiddenIds: string[];
|
|
444
522
|
nonInteractiveIds: string[];
|
|
445
523
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
446
524
|
itemWidthCache: Record<string, number>;
|
|
447
525
|
containerWidth: number;
|
|
448
526
|
overflowTargetWidth: number;
|
|
449
|
-
selectedIds:
|
|
527
|
+
selectedIds: string[] | "all";
|
|
450
528
|
unselectedIds: string[];
|
|
451
529
|
cursorId: string;
|
|
452
530
|
columnCount: number;
|
|
531
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
532
|
+
cursorIndexRef: {
|
|
533
|
+
readonly current: number;
|
|
534
|
+
};
|
|
453
535
|
UNSTABLE_virtual: {
|
|
454
536
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
455
537
|
totalSize: number;
|
|
@@ -464,17 +546,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
464
546
|
isVirtualized: boolean;
|
|
465
547
|
items: import("../..").Item<any>[];
|
|
466
548
|
}) => void) | undefined;
|
|
467
|
-
|
|
549
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
468
550
|
hiddenIds: string[];
|
|
469
551
|
nonInteractiveIds: string[];
|
|
470
552
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
471
553
|
itemWidthCache: Record<string, number>;
|
|
472
554
|
containerWidth: number;
|
|
473
555
|
overflowTargetWidth: number;
|
|
474
|
-
selectedIds:
|
|
556
|
+
selectedIds: string[] | "all";
|
|
475
557
|
unselectedIds: string[];
|
|
476
558
|
cursorId: string;
|
|
477
559
|
columnCount: number;
|
|
560
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
561
|
+
cursorIndexRef: {
|
|
562
|
+
readonly current: number;
|
|
563
|
+
};
|
|
478
564
|
UNSTABLE_virtual: {
|
|
479
565
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
480
566
|
totalSize: number;
|
|
@@ -489,17 +575,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
489
575
|
isVirtualized: boolean;
|
|
490
576
|
items: import("../..").Item<any>[];
|
|
491
577
|
}) => void) | undefined;
|
|
492
|
-
|
|
578
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
493
579
|
hiddenIds: string[];
|
|
494
580
|
nonInteractiveIds: string[];
|
|
495
581
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
496
582
|
itemWidthCache: Record<string, number>;
|
|
497
583
|
containerWidth: number;
|
|
498
584
|
overflowTargetWidth: number;
|
|
499
|
-
selectedIds:
|
|
585
|
+
selectedIds: string[] | "all";
|
|
500
586
|
unselectedIds: string[];
|
|
501
587
|
cursorId: string;
|
|
502
588
|
columnCount: number;
|
|
589
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
590
|
+
cursorIndexRef: {
|
|
591
|
+
readonly current: number;
|
|
592
|
+
};
|
|
503
593
|
UNSTABLE_virtual: {
|
|
504
594
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
505
595
|
totalSize: number;
|
|
@@ -514,17 +604,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
514
604
|
isVirtualized: boolean;
|
|
515
605
|
items: import("../..").Item<any>[];
|
|
516
606
|
}) => void) | undefined;
|
|
517
|
-
|
|
607
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
518
608
|
hiddenIds: string[];
|
|
519
609
|
nonInteractiveIds: string[];
|
|
520
610
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
521
611
|
itemWidthCache: Record<string, number>;
|
|
522
612
|
containerWidth: number;
|
|
523
613
|
overflowTargetWidth: number;
|
|
524
|
-
selectedIds:
|
|
614
|
+
selectedIds: string[] | "all";
|
|
525
615
|
unselectedIds: string[];
|
|
526
616
|
cursorId: string;
|
|
527
617
|
columnCount: number;
|
|
618
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
619
|
+
cursorIndexRef: {
|
|
620
|
+
readonly current: number;
|
|
621
|
+
};
|
|
528
622
|
UNSTABLE_virtual: {
|
|
529
623
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
530
624
|
totalSize: number;
|
|
@@ -539,17 +633,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
539
633
|
isVirtualized: boolean;
|
|
540
634
|
items: import("../..").Item<any>[];
|
|
541
635
|
}) => void) | undefined;
|
|
542
|
-
|
|
636
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
543
637
|
hiddenIds: string[];
|
|
544
638
|
nonInteractiveIds: string[];
|
|
545
639
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
546
640
|
itemWidthCache: Record<string, number>;
|
|
547
641
|
containerWidth: number;
|
|
548
642
|
overflowTargetWidth: number;
|
|
549
|
-
selectedIds:
|
|
643
|
+
selectedIds: string[] | "all";
|
|
550
644
|
unselectedIds: string[];
|
|
551
645
|
cursorId: string;
|
|
552
646
|
columnCount: number;
|
|
647
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
648
|
+
cursorIndexRef: {
|
|
649
|
+
readonly current: number;
|
|
650
|
+
};
|
|
553
651
|
UNSTABLE_virtual: {
|
|
554
652
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
555
653
|
totalSize: number;
|
|
@@ -564,17 +662,24 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
564
662
|
isVirtualized: boolean;
|
|
565
663
|
items: import("../..").Item<any>[];
|
|
566
664
|
}) => void) | undefined;
|
|
567
|
-
|
|
665
|
+
onRegisterItem?: ((data: {
|
|
666
|
+
item: any;
|
|
667
|
+
textValue: string;
|
|
668
|
+
}, prevState: {
|
|
568
669
|
hiddenIds: string[];
|
|
569
670
|
nonInteractiveIds: string[];
|
|
570
671
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
571
672
|
itemWidthCache: Record<string, number>;
|
|
572
673
|
containerWidth: number;
|
|
573
674
|
overflowTargetWidth: number;
|
|
574
|
-
selectedIds:
|
|
675
|
+
selectedIds: string[] | "all";
|
|
575
676
|
unselectedIds: string[];
|
|
576
677
|
cursorId: string;
|
|
577
678
|
columnCount: number;
|
|
679
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
680
|
+
cursorIndexRef: {
|
|
681
|
+
readonly current: number;
|
|
682
|
+
};
|
|
578
683
|
UNSTABLE_virtual: {
|
|
579
684
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
580
685
|
totalSize: number;
|
|
@@ -598,10 +703,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
598
703
|
itemWidthCache: Record<string, number>;
|
|
599
704
|
containerWidth: number;
|
|
600
705
|
overflowTargetWidth: number;
|
|
601
|
-
selectedIds:
|
|
706
|
+
selectedIds: string[] | "all";
|
|
602
707
|
unselectedIds: string[];
|
|
603
708
|
cursorId: string;
|
|
604
709
|
columnCount: number;
|
|
710
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
711
|
+
cursorIndexRef: {
|
|
712
|
+
readonly current: number;
|
|
713
|
+
};
|
|
605
714
|
UNSTABLE_virtual: {
|
|
606
715
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
607
716
|
totalSize: number;
|
|
@@ -625,10 +734,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
625
734
|
itemWidthCache: Record<string, number>;
|
|
626
735
|
containerWidth: number;
|
|
627
736
|
overflowTargetWidth: number;
|
|
628
|
-
selectedIds:
|
|
737
|
+
selectedIds: string[] | "all";
|
|
629
738
|
unselectedIds: string[];
|
|
630
739
|
cursorId: string;
|
|
631
740
|
columnCount: number;
|
|
741
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
742
|
+
cursorIndexRef: {
|
|
743
|
+
readonly current: number;
|
|
744
|
+
};
|
|
632
745
|
UNSTABLE_virtual: {
|
|
633
746
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
634
747
|
totalSize: number;
|
|
@@ -653,10 +766,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
653
766
|
itemWidthCache: Record<string, number>;
|
|
654
767
|
containerWidth: number;
|
|
655
768
|
overflowTargetWidth: number;
|
|
656
|
-
selectedIds:
|
|
769
|
+
selectedIds: string[] | "all";
|
|
657
770
|
unselectedIds: string[];
|
|
658
771
|
cursorId: string;
|
|
659
772
|
columnCount: number;
|
|
773
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
774
|
+
cursorIndexRef: {
|
|
775
|
+
readonly current: number;
|
|
776
|
+
};
|
|
660
777
|
UNSTABLE_virtual: {
|
|
661
778
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
662
779
|
totalSize: number;
|
|
@@ -680,10 +797,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
680
797
|
itemWidthCache: Record<string, number>;
|
|
681
798
|
containerWidth: number;
|
|
682
799
|
overflowTargetWidth: number;
|
|
683
|
-
selectedIds:
|
|
800
|
+
selectedIds: string[] | "all";
|
|
684
801
|
unselectedIds: string[];
|
|
685
802
|
cursorId: string;
|
|
686
803
|
columnCount: number;
|
|
804
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
805
|
+
cursorIndexRef: {
|
|
806
|
+
readonly current: number;
|
|
807
|
+
};
|
|
687
808
|
UNSTABLE_virtual: {
|
|
688
809
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
689
810
|
totalSize: number;
|
|
@@ -707,10 +828,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
707
828
|
itemWidthCache: Record<string, number>;
|
|
708
829
|
containerWidth: number;
|
|
709
830
|
overflowTargetWidth: number;
|
|
710
|
-
selectedIds:
|
|
831
|
+
selectedIds: string[] | "all";
|
|
711
832
|
unselectedIds: string[];
|
|
712
833
|
cursorId: string;
|
|
713
834
|
columnCount: number;
|
|
835
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
836
|
+
cursorIndexRef: {
|
|
837
|
+
readonly current: number;
|
|
838
|
+
};
|
|
714
839
|
UNSTABLE_virtual: {
|
|
715
840
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
716
841
|
totalSize: number;
|
|
@@ -735,10 +860,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
735
860
|
itemWidthCache: Record<string, number>;
|
|
736
861
|
containerWidth: number;
|
|
737
862
|
overflowTargetWidth: number;
|
|
738
|
-
selectedIds:
|
|
863
|
+
selectedIds: string[] | "all";
|
|
739
864
|
unselectedIds: string[];
|
|
740
865
|
cursorId: string;
|
|
741
866
|
columnCount: number;
|
|
867
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
868
|
+
cursorIndexRef: {
|
|
869
|
+
readonly current: number;
|
|
870
|
+
};
|
|
742
871
|
UNSTABLE_virtual: {
|
|
743
872
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
744
873
|
totalSize: number;
|
|
@@ -762,10 +891,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
762
891
|
itemWidthCache: Record<string, number>;
|
|
763
892
|
containerWidth: number;
|
|
764
893
|
overflowTargetWidth: number;
|
|
765
|
-
selectedIds:
|
|
894
|
+
selectedIds: string[] | "all";
|
|
766
895
|
unselectedIds: string[];
|
|
767
896
|
cursorId: string;
|
|
768
897
|
columnCount: number;
|
|
898
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
899
|
+
cursorIndexRef: {
|
|
900
|
+
readonly current: number;
|
|
901
|
+
};
|
|
769
902
|
UNSTABLE_virtual: {
|
|
770
903
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
771
904
|
totalSize: number;
|
|
@@ -789,10 +922,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
789
922
|
itemWidthCache: Record<string, number>;
|
|
790
923
|
containerWidth: number;
|
|
791
924
|
overflowTargetWidth: number;
|
|
792
|
-
selectedIds:
|
|
925
|
+
selectedIds: string[] | "all";
|
|
793
926
|
unselectedIds: string[];
|
|
794
927
|
cursorId: string;
|
|
795
928
|
columnCount: number;
|
|
929
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
930
|
+
cursorIndexRef: {
|
|
931
|
+
readonly current: number;
|
|
932
|
+
};
|
|
796
933
|
UNSTABLE_virtual: {
|
|
797
934
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
798
935
|
totalSize: number;
|
|
@@ -816,10 +953,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
816
953
|
itemWidthCache: Record<string, number>;
|
|
817
954
|
containerWidth: number;
|
|
818
955
|
overflowTargetWidth: number;
|
|
819
|
-
selectedIds:
|
|
956
|
+
selectedIds: string[] | "all";
|
|
820
957
|
unselectedIds: string[];
|
|
821
958
|
cursorId: string;
|
|
822
959
|
columnCount: number;
|
|
960
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
961
|
+
cursorIndexRef: {
|
|
962
|
+
readonly current: number;
|
|
963
|
+
};
|
|
823
964
|
UNSTABLE_virtual: {
|
|
824
965
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
825
966
|
totalSize: number;
|
|
@@ -841,10 +982,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
841
982
|
itemWidthCache: Record<string, number>;
|
|
842
983
|
containerWidth: number;
|
|
843
984
|
overflowTargetWidth: number;
|
|
844
|
-
selectedIds:
|
|
985
|
+
selectedIds: string[] | "all";
|
|
845
986
|
unselectedIds: string[];
|
|
846
987
|
cursorId: string;
|
|
847
988
|
columnCount: number;
|
|
989
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
990
|
+
cursorIndexRef: {
|
|
991
|
+
readonly current: number;
|
|
992
|
+
};
|
|
848
993
|
UNSTABLE_virtual: {
|
|
849
994
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
850
995
|
totalSize: number;
|
|
@@ -866,10 +1011,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
866
1011
|
itemWidthCache: Record<string, number>;
|
|
867
1012
|
containerWidth: number;
|
|
868
1013
|
overflowTargetWidth: number;
|
|
869
|
-
selectedIds:
|
|
1014
|
+
selectedIds: string[] | "all";
|
|
870
1015
|
unselectedIds: string[];
|
|
871
1016
|
cursorId: string;
|
|
872
1017
|
columnCount: number;
|
|
1018
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1019
|
+
cursorIndexRef: {
|
|
1020
|
+
readonly current: number;
|
|
1021
|
+
};
|
|
873
1022
|
UNSTABLE_virtual: {
|
|
874
1023
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
875
1024
|
totalSize: number;
|
|
@@ -884,9 +1033,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
884
1033
|
isVirtualized: boolean;
|
|
885
1034
|
items: import("../..").Item<any>[];
|
|
886
1035
|
}) => boolean) | undefined;
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
textValue: string;
|
|
1036
|
+
shouldGoTo?: ((data: {
|
|
1037
|
+
id: string;
|
|
890
1038
|
}, state: {
|
|
891
1039
|
hiddenIds: string[];
|
|
892
1040
|
nonInteractiveIds: string[];
|
|
@@ -894,10 +1042,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
894
1042
|
itemWidthCache: Record<string, number>;
|
|
895
1043
|
containerWidth: number;
|
|
896
1044
|
overflowTargetWidth: number;
|
|
897
|
-
selectedIds:
|
|
1045
|
+
selectedIds: string[] | "all";
|
|
898
1046
|
unselectedIds: string[];
|
|
899
1047
|
cursorId: string;
|
|
900
1048
|
columnCount: number;
|
|
1049
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1050
|
+
cursorIndexRef: {
|
|
1051
|
+
readonly current: number;
|
|
1052
|
+
};
|
|
901
1053
|
UNSTABLE_virtual: {
|
|
902
1054
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
903
1055
|
totalSize: number;
|
|
@@ -912,19 +1064,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
912
1064
|
isVirtualized: boolean;
|
|
913
1065
|
items: import("../..").Item<any>[];
|
|
914
1066
|
}) => boolean) | undefined;
|
|
915
|
-
|
|
916
|
-
id: string;
|
|
917
|
-
}, state: {
|
|
1067
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
918
1068
|
hiddenIds: string[];
|
|
919
1069
|
nonInteractiveIds: string[];
|
|
920
1070
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
921
1071
|
itemWidthCache: Record<string, number>;
|
|
922
1072
|
containerWidth: number;
|
|
923
1073
|
overflowTargetWidth: number;
|
|
924
|
-
selectedIds:
|
|
1074
|
+
selectedIds: string[] | "all";
|
|
925
1075
|
unselectedIds: string[];
|
|
926
1076
|
cursorId: string;
|
|
927
1077
|
columnCount: number;
|
|
1078
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1079
|
+
cursorIndexRef: {
|
|
1080
|
+
readonly current: number;
|
|
1081
|
+
};
|
|
928
1082
|
UNSTABLE_virtual: {
|
|
929
1083
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
930
1084
|
totalSize: number;
|
|
@@ -939,17 +1093,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
939
1093
|
isVirtualized: boolean;
|
|
940
1094
|
items: import("../..").Item<any>[];
|
|
941
1095
|
}) => boolean) | undefined;
|
|
942
|
-
|
|
1096
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
943
1097
|
hiddenIds: string[];
|
|
944
1098
|
nonInteractiveIds: string[];
|
|
945
1099
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
946
1100
|
itemWidthCache: Record<string, number>;
|
|
947
1101
|
containerWidth: number;
|
|
948
1102
|
overflowTargetWidth: number;
|
|
949
|
-
selectedIds:
|
|
1103
|
+
selectedIds: string[] | "all";
|
|
950
1104
|
unselectedIds: string[];
|
|
951
1105
|
cursorId: string;
|
|
952
1106
|
columnCount: number;
|
|
1107
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1108
|
+
cursorIndexRef: {
|
|
1109
|
+
readonly current: number;
|
|
1110
|
+
};
|
|
953
1111
|
UNSTABLE_virtual: {
|
|
954
1112
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
955
1113
|
totalSize: number;
|
|
@@ -964,17 +1122,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
964
1122
|
isVirtualized: boolean;
|
|
965
1123
|
items: import("../..").Item<any>[];
|
|
966
1124
|
}) => boolean) | undefined;
|
|
967
|
-
|
|
1125
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
968
1126
|
hiddenIds: string[];
|
|
969
1127
|
nonInteractiveIds: string[];
|
|
970
1128
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
971
1129
|
itemWidthCache: Record<string, number>;
|
|
972
1130
|
containerWidth: number;
|
|
973
1131
|
overflowTargetWidth: number;
|
|
974
|
-
selectedIds:
|
|
1132
|
+
selectedIds: string[] | "all";
|
|
975
1133
|
unselectedIds: string[];
|
|
976
1134
|
cursorId: string;
|
|
977
1135
|
columnCount: number;
|
|
1136
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1137
|
+
cursorIndexRef: {
|
|
1138
|
+
readonly current: number;
|
|
1139
|
+
};
|
|
978
1140
|
UNSTABLE_virtual: {
|
|
979
1141
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
980
1142
|
totalSize: number;
|
|
@@ -989,17 +1151,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
989
1151
|
isVirtualized: boolean;
|
|
990
1152
|
items: import("../..").Item<any>[];
|
|
991
1153
|
}) => boolean) | undefined;
|
|
992
|
-
|
|
1154
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
993
1155
|
hiddenIds: string[];
|
|
994
1156
|
nonInteractiveIds: string[];
|
|
995
1157
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
996
1158
|
itemWidthCache: Record<string, number>;
|
|
997
1159
|
containerWidth: number;
|
|
998
1160
|
overflowTargetWidth: number;
|
|
999
|
-
selectedIds:
|
|
1161
|
+
selectedIds: string[] | "all";
|
|
1000
1162
|
unselectedIds: string[];
|
|
1001
1163
|
cursorId: string;
|
|
1002
1164
|
columnCount: number;
|
|
1165
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1166
|
+
cursorIndexRef: {
|
|
1167
|
+
readonly current: number;
|
|
1168
|
+
};
|
|
1003
1169
|
UNSTABLE_virtual: {
|
|
1004
1170
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1005
1171
|
totalSize: number;
|
|
@@ -1014,17 +1180,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1014
1180
|
isVirtualized: boolean;
|
|
1015
1181
|
items: import("../..").Item<any>[];
|
|
1016
1182
|
}) => boolean) | undefined;
|
|
1017
|
-
|
|
1183
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
1018
1184
|
hiddenIds: string[];
|
|
1019
1185
|
nonInteractiveIds: string[];
|
|
1020
1186
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1021
1187
|
itemWidthCache: Record<string, number>;
|
|
1022
1188
|
containerWidth: number;
|
|
1023
1189
|
overflowTargetWidth: number;
|
|
1024
|
-
selectedIds:
|
|
1190
|
+
selectedIds: string[] | "all";
|
|
1025
1191
|
unselectedIds: string[];
|
|
1026
1192
|
cursorId: string;
|
|
1027
1193
|
columnCount: number;
|
|
1194
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1195
|
+
cursorIndexRef: {
|
|
1196
|
+
readonly current: number;
|
|
1197
|
+
};
|
|
1028
1198
|
UNSTABLE_virtual: {
|
|
1029
1199
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1030
1200
|
totalSize: number;
|
|
@@ -1039,17 +1209,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1039
1209
|
isVirtualized: boolean;
|
|
1040
1210
|
items: import("../..").Item<any>[];
|
|
1041
1211
|
}) => boolean) | undefined;
|
|
1042
|
-
|
|
1212
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
1043
1213
|
hiddenIds: string[];
|
|
1044
1214
|
nonInteractiveIds: string[];
|
|
1045
1215
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1046
1216
|
itemWidthCache: Record<string, number>;
|
|
1047
1217
|
containerWidth: number;
|
|
1048
1218
|
overflowTargetWidth: number;
|
|
1049
|
-
selectedIds:
|
|
1219
|
+
selectedIds: string[] | "all";
|
|
1050
1220
|
unselectedIds: string[];
|
|
1051
1221
|
cursorId: string;
|
|
1052
1222
|
columnCount: number;
|
|
1223
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1224
|
+
cursorIndexRef: {
|
|
1225
|
+
readonly current: number;
|
|
1226
|
+
};
|
|
1053
1227
|
UNSTABLE_virtual: {
|
|
1054
1228
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1055
1229
|
totalSize: number;
|
|
@@ -1064,17 +1238,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1064
1238
|
isVirtualized: boolean;
|
|
1065
1239
|
items: import("../..").Item<any>[];
|
|
1066
1240
|
}) => boolean) | undefined;
|
|
1067
|
-
|
|
1241
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
1068
1242
|
hiddenIds: string[];
|
|
1069
1243
|
nonInteractiveIds: string[];
|
|
1070
1244
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1071
1245
|
itemWidthCache: Record<string, number>;
|
|
1072
1246
|
containerWidth: number;
|
|
1073
1247
|
overflowTargetWidth: number;
|
|
1074
|
-
selectedIds:
|
|
1248
|
+
selectedIds: string[] | "all";
|
|
1075
1249
|
unselectedIds: string[];
|
|
1076
1250
|
cursorId: string;
|
|
1077
1251
|
columnCount: number;
|
|
1252
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1253
|
+
cursorIndexRef: {
|
|
1254
|
+
readonly current: number;
|
|
1255
|
+
};
|
|
1078
1256
|
UNSTABLE_virtual: {
|
|
1079
1257
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1080
1258
|
totalSize: number;
|
|
@@ -1089,17 +1267,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1089
1267
|
isVirtualized: boolean;
|
|
1090
1268
|
items: import("../..").Item<any>[];
|
|
1091
1269
|
}) => boolean) | undefined;
|
|
1092
|
-
|
|
1270
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
1093
1271
|
hiddenIds: string[];
|
|
1094
1272
|
nonInteractiveIds: string[];
|
|
1095
1273
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1096
1274
|
itemWidthCache: Record<string, number>;
|
|
1097
1275
|
containerWidth: number;
|
|
1098
1276
|
overflowTargetWidth: number;
|
|
1099
|
-
selectedIds:
|
|
1277
|
+
selectedIds: string[] | "all";
|
|
1100
1278
|
unselectedIds: string[];
|
|
1101
1279
|
cursorId: string;
|
|
1102
1280
|
columnCount: number;
|
|
1281
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1282
|
+
cursorIndexRef: {
|
|
1283
|
+
readonly current: number;
|
|
1284
|
+
};
|
|
1103
1285
|
UNSTABLE_virtual: {
|
|
1104
1286
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1105
1287
|
totalSize: number;
|
|
@@ -1114,17 +1296,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1114
1296
|
isVirtualized: boolean;
|
|
1115
1297
|
items: import("../..").Item<any>[];
|
|
1116
1298
|
}) => boolean) | undefined;
|
|
1117
|
-
|
|
1299
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
1118
1300
|
hiddenIds: string[];
|
|
1119
1301
|
nonInteractiveIds: string[];
|
|
1120
1302
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1121
1303
|
itemWidthCache: Record<string, number>;
|
|
1122
1304
|
containerWidth: number;
|
|
1123
1305
|
overflowTargetWidth: number;
|
|
1124
|
-
selectedIds:
|
|
1306
|
+
selectedIds: string[] | "all";
|
|
1125
1307
|
unselectedIds: string[];
|
|
1126
1308
|
cursorId: string;
|
|
1127
1309
|
columnCount: number;
|
|
1310
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1311
|
+
cursorIndexRef: {
|
|
1312
|
+
readonly current: number;
|
|
1313
|
+
};
|
|
1128
1314
|
UNSTABLE_virtual: {
|
|
1129
1315
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1130
1316
|
totalSize: number;
|
|
@@ -1139,17 +1325,21 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1139
1325
|
isVirtualized: boolean;
|
|
1140
1326
|
items: import("../..").Item<any>[];
|
|
1141
1327
|
}) => boolean) | undefined;
|
|
1142
|
-
|
|
1328
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
1143
1329
|
hiddenIds: string[];
|
|
1144
1330
|
nonInteractiveIds: string[];
|
|
1145
1331
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1146
1332
|
itemWidthCache: Record<string, number>;
|
|
1147
1333
|
containerWidth: number;
|
|
1148
1334
|
overflowTargetWidth: number;
|
|
1149
|
-
selectedIds:
|
|
1335
|
+
selectedIds: string[] | "all";
|
|
1150
1336
|
unselectedIds: string[];
|
|
1151
1337
|
cursorId: string;
|
|
1152
1338
|
columnCount: number;
|
|
1339
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1340
|
+
cursorIndexRef: {
|
|
1341
|
+
readonly current: number;
|
|
1342
|
+
};
|
|
1153
1343
|
UNSTABLE_virtual: {
|
|
1154
1344
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1155
1345
|
totalSize: number;
|
|
@@ -1164,17 +1354,24 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1164
1354
|
isVirtualized: boolean;
|
|
1165
1355
|
items: import("../..").Item<any>[];
|
|
1166
1356
|
}) => boolean) | undefined;
|
|
1167
|
-
|
|
1357
|
+
shouldRegisterItem?: ((data: {
|
|
1358
|
+
item: any;
|
|
1359
|
+
textValue: string;
|
|
1360
|
+
}, state: {
|
|
1168
1361
|
hiddenIds: string[];
|
|
1169
1362
|
nonInteractiveIds: string[];
|
|
1170
1363
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1171
1364
|
itemWidthCache: Record<string, number>;
|
|
1172
1365
|
containerWidth: number;
|
|
1173
1366
|
overflowTargetWidth: number;
|
|
1174
|
-
selectedIds:
|
|
1367
|
+
selectedIds: string[] | "all";
|
|
1175
1368
|
unselectedIds: string[];
|
|
1176
1369
|
cursorId: string;
|
|
1177
1370
|
columnCount: number;
|
|
1371
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1372
|
+
cursorIndexRef: {
|
|
1373
|
+
readonly current: number;
|
|
1374
|
+
};
|
|
1178
1375
|
UNSTABLE_virtual: {
|
|
1179
1376
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1180
1377
|
totalSize: number;
|
|
@@ -1198,10 +1395,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1198
1395
|
itemWidthCache: Record<string, number>;
|
|
1199
1396
|
containerWidth: number;
|
|
1200
1397
|
overflowTargetWidth: number;
|
|
1201
|
-
selectedIds:
|
|
1398
|
+
selectedIds: string[] | "all";
|
|
1202
1399
|
unselectedIds: string[];
|
|
1203
1400
|
cursorId: string;
|
|
1204
1401
|
columnCount: number;
|
|
1402
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1403
|
+
cursorIndexRef: {
|
|
1404
|
+
readonly current: number;
|
|
1405
|
+
};
|
|
1205
1406
|
UNSTABLE_virtual: {
|
|
1206
1407
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1207
1408
|
totalSize: number;
|
|
@@ -1225,10 +1426,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1225
1426
|
itemWidthCache: Record<string, number>;
|
|
1226
1427
|
containerWidth: number;
|
|
1227
1428
|
overflowTargetWidth: number;
|
|
1228
|
-
selectedIds:
|
|
1429
|
+
selectedIds: string[] | "all";
|
|
1229
1430
|
unselectedIds: string[];
|
|
1230
1431
|
cursorId: string;
|
|
1231
1432
|
columnCount: number;
|
|
1433
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1434
|
+
cursorIndexRef: {
|
|
1435
|
+
readonly current: number;
|
|
1436
|
+
};
|
|
1232
1437
|
UNSTABLE_virtual: {
|
|
1233
1438
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1234
1439
|
totalSize: number;
|
|
@@ -1251,10 +1456,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1251
1456
|
itemWidthCache: Record<string, number>;
|
|
1252
1457
|
containerWidth: number;
|
|
1253
1458
|
overflowTargetWidth: number;
|
|
1254
|
-
selectedIds:
|
|
1459
|
+
selectedIds: string[] | "all";
|
|
1255
1460
|
unselectedIds: string[];
|
|
1256
1461
|
cursorId: string;
|
|
1257
1462
|
columnCount: number;
|
|
1463
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1464
|
+
cursorIndexRef: {
|
|
1465
|
+
readonly current: number;
|
|
1466
|
+
};
|
|
1258
1467
|
UNSTABLE_virtual: {
|
|
1259
1468
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1260
1469
|
totalSize: number;
|
|
@@ -1294,10 +1503,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1294
1503
|
}): void;
|
|
1295
1504
|
selectAll(): void;
|
|
1296
1505
|
unselectAll(): void;
|
|
1297
|
-
registerItem(data: {
|
|
1298
|
-
item: any;
|
|
1299
|
-
textValue: string;
|
|
1300
|
-
}): void;
|
|
1301
1506
|
goTo(data: {
|
|
1302
1507
|
id: string;
|
|
1303
1508
|
}): void;
|
|
@@ -1311,6 +1516,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1311
1516
|
goToLastOfRow(): void;
|
|
1312
1517
|
goToNextPage(): void;
|
|
1313
1518
|
goToPreviousPage(): void;
|
|
1519
|
+
registerItem(data: {
|
|
1520
|
+
item: any;
|
|
1521
|
+
textValue: string;
|
|
1522
|
+
}): void;
|
|
1314
1523
|
unregisterItem(data: {
|
|
1315
1524
|
id: string;
|
|
1316
1525
|
}): void;
|
|
@@ -1326,11 +1535,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1326
1535
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1327
1536
|
placement: import("@popperjs/core").Placement;
|
|
1328
1537
|
id: string;
|
|
1329
|
-
visibility:
|
|
1330
|
-
selectedIds:
|
|
1538
|
+
visibility: "hidden" | "visible";
|
|
1539
|
+
selectedIds: string[] | "all";
|
|
1331
1540
|
unselectedIds: string[];
|
|
1332
1541
|
cursorId: string;
|
|
1333
1542
|
columnCount: number;
|
|
1543
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1544
|
+
cursorIndexRef: {
|
|
1545
|
+
readonly current: number;
|
|
1546
|
+
};
|
|
1334
1547
|
UNSTABLE_virtual: {
|
|
1335
1548
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1336
1549
|
totalSize: number;
|
|
@@ -1340,7 +1553,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1340
1553
|
};
|
|
1341
1554
|
UNSTABLE_defaultItemHeight: number;
|
|
1342
1555
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1343
|
-
orientation:
|
|
1556
|
+
orientation: "horizontal" | "vertical";
|
|
1344
1557
|
indexRef: React.MutableRefObject<number>;
|
|
1345
1558
|
nonInteractiveIds: string[];
|
|
1346
1559
|
isVirtualized: boolean;
|
|
@@ -1358,10 +1571,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1358
1571
|
}): void;
|
|
1359
1572
|
selectAll(): void;
|
|
1360
1573
|
unselectAll(): void;
|
|
1361
|
-
registerItem(data: {
|
|
1362
|
-
item: any;
|
|
1363
|
-
textValue: string;
|
|
1364
|
-
}): void;
|
|
1365
1574
|
goTo(data: {
|
|
1366
1575
|
id: string;
|
|
1367
1576
|
}): void;
|
|
@@ -1375,6 +1584,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1375
1584
|
goToLastOfRow(): void;
|
|
1376
1585
|
goToNextPage(): void;
|
|
1377
1586
|
goToPreviousPage(): void;
|
|
1587
|
+
registerItem(data: {
|
|
1588
|
+
item: any;
|
|
1589
|
+
textValue: string;
|
|
1590
|
+
}): void;
|
|
1378
1591
|
unregisterItem(data: {
|
|
1379
1592
|
id: string;
|
|
1380
1593
|
}): void;
|
|
@@ -1390,7 +1603,23 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1390
1603
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1391
1604
|
getId: (item: any) => string;
|
|
1392
1605
|
}> & {
|
|
1393
|
-
|
|
1606
|
+
/**
|
|
1607
|
+
* `ActionBar.List` is a {@link Flex} element. It is a container for
|
|
1608
|
+
* {@link ActionBarItem ActionBar.Item} subcomponents. To render an overflow button for
|
|
1609
|
+
* ActionBar with overflow behavior `overflowButton` prop with overflow button component as a
|
|
1610
|
+
* value should be passed.
|
|
1611
|
+
*
|
|
1612
|
+
* ```tsx
|
|
1613
|
+
* // without overflow
|
|
1614
|
+
* <ActionBar.List>{ActionBar.Items}</ActionBar.List>
|
|
1615
|
+
*
|
|
1616
|
+
* // with overflow
|
|
1617
|
+
* <ActionBar.List overflowButton={<ActionBar.OverflowButton aria-label="More actions"/>}>
|
|
1618
|
+
* {ActionBar.Items}
|
|
1619
|
+
* </ActionBar.List>
|
|
1620
|
+
* ```
|
|
1621
|
+
*/
|
|
1622
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./ActionBarList").ActionBarListProps<any>, {
|
|
1394
1623
|
state: {
|
|
1395
1624
|
hiddenIds: string[];
|
|
1396
1625
|
nonInteractiveIds: string[];
|
|
@@ -1398,10 +1627,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1398
1627
|
itemWidthCache: Record<string, number>;
|
|
1399
1628
|
containerWidth: number;
|
|
1400
1629
|
overflowTargetWidth: number;
|
|
1401
|
-
selectedIds:
|
|
1630
|
+
selectedIds: string[] | "all";
|
|
1402
1631
|
unselectedIds: string[];
|
|
1403
1632
|
cursorId: string;
|
|
1404
1633
|
columnCount: number;
|
|
1634
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1635
|
+
cursorIndexRef: {
|
|
1636
|
+
readonly current: number;
|
|
1637
|
+
};
|
|
1405
1638
|
UNSTABLE_virtual: {
|
|
1406
1639
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1407
1640
|
totalSize: number;
|
|
@@ -1441,10 +1674,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1441
1674
|
}): void;
|
|
1442
1675
|
selectAll(): void;
|
|
1443
1676
|
unselectAll(): void;
|
|
1444
|
-
registerItem(data: {
|
|
1445
|
-
item: any;
|
|
1446
|
-
textValue: string;
|
|
1447
|
-
}): void;
|
|
1448
1677
|
goTo(data: {
|
|
1449
1678
|
id: string;
|
|
1450
1679
|
}): void;
|
|
@@ -1458,6 +1687,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1458
1687
|
goToLastOfRow(): void;
|
|
1459
1688
|
goToNextPage(): void;
|
|
1460
1689
|
goToPreviousPage(): void;
|
|
1690
|
+
registerItem(data: {
|
|
1691
|
+
item: any;
|
|
1692
|
+
textValue: string;
|
|
1693
|
+
}): void;
|
|
1461
1694
|
unregisterItem(data: {
|
|
1462
1695
|
id: string;
|
|
1463
1696
|
}): void;
|
|
@@ -1473,11 +1706,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1473
1706
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1474
1707
|
placement: import("@popperjs/core").Placement;
|
|
1475
1708
|
id: string;
|
|
1476
|
-
visibility:
|
|
1477
|
-
selectedIds:
|
|
1709
|
+
visibility: "hidden" | "visible";
|
|
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;
|
|
@@ -1487,7 +1724,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1487
1724
|
};
|
|
1488
1725
|
UNSTABLE_defaultItemHeight: number;
|
|
1489
1726
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1490
|
-
orientation:
|
|
1727
|
+
orientation: "horizontal" | "vertical";
|
|
1491
1728
|
indexRef: React.MutableRefObject<number>;
|
|
1492
1729
|
nonInteractiveIds: string[];
|
|
1493
1730
|
isVirtualized: boolean;
|
|
@@ -1505,10 +1742,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1505
1742
|
}): void;
|
|
1506
1743
|
selectAll(): void;
|
|
1507
1744
|
unselectAll(): void;
|
|
1508
|
-
registerItem(data: {
|
|
1509
|
-
item: any;
|
|
1510
|
-
textValue: string;
|
|
1511
|
-
}): void;
|
|
1512
1745
|
goTo(data: {
|
|
1513
1746
|
id: string;
|
|
1514
1747
|
}): void;
|
|
@@ -1522,6 +1755,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1522
1755
|
goToLastOfRow(): void;
|
|
1523
1756
|
goToNextPage(): void;
|
|
1524
1757
|
goToPreviousPage(): void;
|
|
1758
|
+
registerItem(data: {
|
|
1759
|
+
item: any;
|
|
1760
|
+
textValue: string;
|
|
1761
|
+
}): void;
|
|
1525
1762
|
unregisterItem(data: {
|
|
1526
1763
|
id: string;
|
|
1527
1764
|
}): void;
|
|
@@ -1537,7 +1774,17 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1537
1774
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1538
1775
|
getId: (item: any) => string;
|
|
1539
1776
|
}>;
|
|
1540
|
-
|
|
1777
|
+
/**
|
|
1778
|
+
* `ActionBar.Item` is a `button` element, by default it's a `SecondaryButton` unless an `as`
|
|
1779
|
+
* prop is passed.
|
|
1780
|
+
*
|
|
1781
|
+
* ```tsx
|
|
1782
|
+
* <ActionBar.Item as={PrimaryButton} onClick={() => console.log('first action')}>
|
|
1783
|
+
* First Action
|
|
1784
|
+
* </ActionBar.Item>
|
|
1785
|
+
* ```
|
|
1786
|
+
*/
|
|
1787
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("./ActionBarItem").ActionBarItemProps, {
|
|
1541
1788
|
state: {
|
|
1542
1789
|
hiddenIds: string[];
|
|
1543
1790
|
nonInteractiveIds: string[];
|
|
@@ -1545,10 +1792,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1545
1792
|
itemWidthCache: Record<string, number>;
|
|
1546
1793
|
containerWidth: number;
|
|
1547
1794
|
overflowTargetWidth: number;
|
|
1548
|
-
selectedIds:
|
|
1795
|
+
selectedIds: string[] | "all";
|
|
1549
1796
|
unselectedIds: string[];
|
|
1550
1797
|
cursorId: string;
|
|
1551
1798
|
columnCount: number;
|
|
1799
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1800
|
+
cursorIndexRef: {
|
|
1801
|
+
readonly current: number;
|
|
1802
|
+
};
|
|
1552
1803
|
UNSTABLE_virtual: {
|
|
1553
1804
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1554
1805
|
totalSize: number;
|
|
@@ -1588,10 +1839,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1588
1839
|
}): void;
|
|
1589
1840
|
selectAll(): void;
|
|
1590
1841
|
unselectAll(): void;
|
|
1591
|
-
registerItem(data: {
|
|
1592
|
-
item: any;
|
|
1593
|
-
textValue: string;
|
|
1594
|
-
}): void;
|
|
1595
1842
|
goTo(data: {
|
|
1596
1843
|
id: string;
|
|
1597
1844
|
}): void;
|
|
@@ -1605,6 +1852,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1605
1852
|
goToLastOfRow(): void;
|
|
1606
1853
|
goToNextPage(): void;
|
|
1607
1854
|
goToPreviousPage(): void;
|
|
1855
|
+
registerItem(data: {
|
|
1856
|
+
item: any;
|
|
1857
|
+
textValue: string;
|
|
1858
|
+
}): void;
|
|
1608
1859
|
unregisterItem(data: {
|
|
1609
1860
|
id: string;
|
|
1610
1861
|
}): void;
|
|
@@ -1620,11 +1871,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1620
1871
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1621
1872
|
placement: import("@popperjs/core").Placement;
|
|
1622
1873
|
id: string;
|
|
1623
|
-
visibility:
|
|
1624
|
-
selectedIds:
|
|
1874
|
+
visibility: "hidden" | "visible";
|
|
1875
|
+
selectedIds: string[] | "all";
|
|
1625
1876
|
unselectedIds: string[];
|
|
1626
1877
|
cursorId: string;
|
|
1627
1878
|
columnCount: number;
|
|
1879
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1880
|
+
cursorIndexRef: {
|
|
1881
|
+
readonly current: number;
|
|
1882
|
+
};
|
|
1628
1883
|
UNSTABLE_virtual: {
|
|
1629
1884
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1630
1885
|
totalSize: number;
|
|
@@ -1634,7 +1889,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1634
1889
|
};
|
|
1635
1890
|
UNSTABLE_defaultItemHeight: number;
|
|
1636
1891
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1637
|
-
orientation:
|
|
1892
|
+
orientation: "horizontal" | "vertical";
|
|
1638
1893
|
indexRef: React.MutableRefObject<number>;
|
|
1639
1894
|
nonInteractiveIds: string[];
|
|
1640
1895
|
isVirtualized: boolean;
|
|
@@ -1652,10 +1907,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1652
1907
|
}): void;
|
|
1653
1908
|
selectAll(): void;
|
|
1654
1909
|
unselectAll(): void;
|
|
1655
|
-
registerItem(data: {
|
|
1656
|
-
item: any;
|
|
1657
|
-
textValue: string;
|
|
1658
|
-
}): void;
|
|
1659
1910
|
goTo(data: {
|
|
1660
1911
|
id: string;
|
|
1661
1912
|
}): void;
|
|
@@ -1669,6 +1920,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1669
1920
|
goToLastOfRow(): void;
|
|
1670
1921
|
goToNextPage(): void;
|
|
1671
1922
|
goToPreviousPage(): void;
|
|
1923
|
+
registerItem(data: {
|
|
1924
|
+
item: any;
|
|
1925
|
+
textValue: string;
|
|
1926
|
+
}): void;
|
|
1672
1927
|
unregisterItem(data: {
|
|
1673
1928
|
id: string;
|
|
1674
1929
|
}): void;
|
|
@@ -1684,7 +1939,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1684
1939
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
1685
1940
|
getId: (item: any) => string;
|
|
1686
1941
|
}>;
|
|
1687
|
-
OverflowButton: import("
|
|
1942
|
+
OverflowButton: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("./ActionBarOverflowButton").ActionBarOverflowButtonProps, {
|
|
1688
1943
|
state: {
|
|
1689
1944
|
hiddenIds: string[];
|
|
1690
1945
|
nonInteractiveIds: string[];
|
|
@@ -1692,10 +1947,14 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1692
1947
|
itemWidthCache: Record<string, number>;
|
|
1693
1948
|
containerWidth: number;
|
|
1694
1949
|
overflowTargetWidth: number;
|
|
1695
|
-
selectedIds:
|
|
1950
|
+
selectedIds: string[] | "all";
|
|
1696
1951
|
unselectedIds: string[];
|
|
1697
1952
|
cursorId: string;
|
|
1698
1953
|
columnCount: number;
|
|
1954
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1955
|
+
cursorIndexRef: {
|
|
1956
|
+
readonly current: number;
|
|
1957
|
+
};
|
|
1699
1958
|
UNSTABLE_virtual: {
|
|
1700
1959
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1701
1960
|
totalSize: number;
|
|
@@ -1735,10 +1994,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1735
1994
|
}): void;
|
|
1736
1995
|
selectAll(): void;
|
|
1737
1996
|
unselectAll(): void;
|
|
1738
|
-
registerItem(data: {
|
|
1739
|
-
item: any;
|
|
1740
|
-
textValue: string;
|
|
1741
|
-
}): void;
|
|
1742
1997
|
goTo(data: {
|
|
1743
1998
|
id: string;
|
|
1744
1999
|
}): void;
|
|
@@ -1752,6 +2007,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1752
2007
|
goToLastOfRow(): void;
|
|
1753
2008
|
goToNextPage(): void;
|
|
1754
2009
|
goToPreviousPage(): void;
|
|
2010
|
+
registerItem(data: {
|
|
2011
|
+
item: any;
|
|
2012
|
+
textValue: string;
|
|
2013
|
+
}): void;
|
|
1755
2014
|
unregisterItem(data: {
|
|
1756
2015
|
id: string;
|
|
1757
2016
|
}): void;
|
|
@@ -1767,11 +2026,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1767
2026
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1768
2027
|
placement: import("@popperjs/core").Placement;
|
|
1769
2028
|
id: string;
|
|
1770
|
-
visibility:
|
|
1771
|
-
selectedIds:
|
|
2029
|
+
visibility: "hidden" | "visible";
|
|
2030
|
+
selectedIds: string[] | "all";
|
|
1772
2031
|
unselectedIds: string[];
|
|
1773
2032
|
cursorId: string;
|
|
1774
2033
|
columnCount: number;
|
|
2034
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2035
|
+
cursorIndexRef: {
|
|
2036
|
+
readonly current: number;
|
|
2037
|
+
};
|
|
1775
2038
|
UNSTABLE_virtual: {
|
|
1776
2039
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1777
2040
|
totalSize: number;
|
|
@@ -1781,7 +2044,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1781
2044
|
};
|
|
1782
2045
|
UNSTABLE_defaultItemHeight: number;
|
|
1783
2046
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1784
|
-
orientation:
|
|
2047
|
+
orientation: "horizontal" | "vertical";
|
|
1785
2048
|
indexRef: React.MutableRefObject<number>;
|
|
1786
2049
|
nonInteractiveIds: string[];
|
|
1787
2050
|
isVirtualized: boolean;
|
|
@@ -1799,10 +2062,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1799
2062
|
}): void;
|
|
1800
2063
|
selectAll(): void;
|
|
1801
2064
|
unselectAll(): void;
|
|
1802
|
-
registerItem(data: {
|
|
1803
|
-
item: any;
|
|
1804
|
-
textValue: string;
|
|
1805
|
-
}): void;
|
|
1806
2065
|
goTo(data: {
|
|
1807
2066
|
id: string;
|
|
1808
2067
|
}): void;
|
|
@@ -1816,6 +2075,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1816
2075
|
goToLastOfRow(): void;
|
|
1817
2076
|
goToNextPage(): void;
|
|
1818
2077
|
goToPreviousPage(): void;
|
|
2078
|
+
registerItem(data: {
|
|
2079
|
+
item: any;
|
|
2080
|
+
textValue: string;
|
|
2081
|
+
}): void;
|
|
1819
2082
|
unregisterItem(data: {
|
|
1820
2083
|
id: string;
|
|
1821
2084
|
}): void;
|
|
@@ -1843,8 +2106,9 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1843
2106
|
* </ActionBar.Menu.Card>
|
|
1844
2107
|
* </ActionBar.Menu.Popper>
|
|
1845
2108
|
*/
|
|
1846
|
-
Menu: import("
|
|
2109
|
+
Menu: import("@workday/canvas-kit-react/common").ComponentM<import("../../menu/lib/Menu").MenuProps & Partial<{
|
|
1847
2110
|
mode: "multiple" | "single";
|
|
2111
|
+
shouldVirtualize: boolean;
|
|
1848
2112
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1849
2113
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
1850
2114
|
id: string;
|
|
@@ -1855,12 +2119,12 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1855
2119
|
initialCursorId: string;
|
|
1856
2120
|
columnCount: number;
|
|
1857
2121
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
2122
|
+
pageSize: number;
|
|
1858
2123
|
getId: (item: any) => string;
|
|
1859
2124
|
getTextValue: (item: any) => string;
|
|
1860
2125
|
nonInteractiveIds: string[];
|
|
1861
2126
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1862
2127
|
defaultItemHeight: number;
|
|
1863
|
-
shouldVirtualize: boolean;
|
|
1864
2128
|
items: any[];
|
|
1865
2129
|
}> & {
|
|
1866
2130
|
onUpdatePlacement?: ((data: {
|
|
@@ -1872,11 +2136,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1872
2136
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1873
2137
|
placement: import("@popperjs/core").Placement;
|
|
1874
2138
|
id: string;
|
|
1875
|
-
visibility:
|
|
1876
|
-
selectedIds:
|
|
2139
|
+
visibility: "hidden" | "visible";
|
|
2140
|
+
selectedIds: string[] | "all";
|
|
1877
2141
|
unselectedIds: string[];
|
|
1878
2142
|
cursorId: string;
|
|
1879
2143
|
columnCount: number;
|
|
2144
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2145
|
+
cursorIndexRef: {
|
|
2146
|
+
readonly current: number;
|
|
2147
|
+
};
|
|
1880
2148
|
UNSTABLE_virtual: {
|
|
1881
2149
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1882
2150
|
totalSize: number;
|
|
@@ -1886,7 +2154,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1886
2154
|
};
|
|
1887
2155
|
UNSTABLE_defaultItemHeight: number;
|
|
1888
2156
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1889
|
-
orientation:
|
|
2157
|
+
orientation: "horizontal" | "vertical";
|
|
1890
2158
|
indexRef: React.MutableRefObject<number>;
|
|
1891
2159
|
nonInteractiveIds: string[];
|
|
1892
2160
|
isVirtualized: boolean;
|
|
@@ -1900,11 +2168,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1900
2168
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1901
2169
|
placement: import("@popperjs/core").Placement;
|
|
1902
2170
|
id: string;
|
|
1903
|
-
visibility:
|
|
1904
|
-
selectedIds:
|
|
2171
|
+
visibility: "hidden" | "visible";
|
|
2172
|
+
selectedIds: string[] | "all";
|
|
1905
2173
|
unselectedIds: string[];
|
|
1906
2174
|
cursorId: string;
|
|
1907
2175
|
columnCount: number;
|
|
2176
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2177
|
+
cursorIndexRef: {
|
|
2178
|
+
readonly current: number;
|
|
2179
|
+
};
|
|
1908
2180
|
UNSTABLE_virtual: {
|
|
1909
2181
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1910
2182
|
totalSize: number;
|
|
@@ -1914,7 +2186,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1914
2186
|
};
|
|
1915
2187
|
UNSTABLE_defaultItemHeight: number;
|
|
1916
2188
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1917
|
-
orientation:
|
|
2189
|
+
orientation: "horizontal" | "vertical";
|
|
1918
2190
|
indexRef: React.MutableRefObject<number>;
|
|
1919
2191
|
nonInteractiveIds: string[];
|
|
1920
2192
|
isVirtualized: boolean;
|
|
@@ -1928,11 +2200,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1928
2200
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1929
2201
|
placement: import("@popperjs/core").Placement;
|
|
1930
2202
|
id: string;
|
|
1931
|
-
visibility:
|
|
1932
|
-
selectedIds:
|
|
2203
|
+
visibility: "hidden" | "visible";
|
|
2204
|
+
selectedIds: string[] | "all";
|
|
1933
2205
|
unselectedIds: string[];
|
|
1934
2206
|
cursorId: string;
|
|
1935
2207
|
columnCount: number;
|
|
2208
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2209
|
+
cursorIndexRef: {
|
|
2210
|
+
readonly current: number;
|
|
2211
|
+
};
|
|
1936
2212
|
UNSTABLE_virtual: {
|
|
1937
2213
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1938
2214
|
totalSize: number;
|
|
@@ -1942,7 +2218,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1942
2218
|
};
|
|
1943
2219
|
UNSTABLE_defaultItemHeight: number;
|
|
1944
2220
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1945
|
-
orientation:
|
|
2221
|
+
orientation: "horizontal" | "vertical";
|
|
1946
2222
|
indexRef: React.MutableRefObject<number>;
|
|
1947
2223
|
nonInteractiveIds: string[];
|
|
1948
2224
|
isVirtualized: boolean;
|
|
@@ -1958,11 +2234,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1958
2234
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1959
2235
|
placement: import("@popperjs/core").Placement;
|
|
1960
2236
|
id: string;
|
|
1961
|
-
visibility:
|
|
1962
|
-
selectedIds:
|
|
2237
|
+
visibility: "hidden" | "visible";
|
|
2238
|
+
selectedIds: string[] | "all";
|
|
1963
2239
|
unselectedIds: string[];
|
|
1964
2240
|
cursorId: string;
|
|
1965
2241
|
columnCount: number;
|
|
2242
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2243
|
+
cursorIndexRef: {
|
|
2244
|
+
readonly current: number;
|
|
2245
|
+
};
|
|
1966
2246
|
UNSTABLE_virtual: {
|
|
1967
2247
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1968
2248
|
totalSize: number;
|
|
@@ -1972,7 +2252,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1972
2252
|
};
|
|
1973
2253
|
UNSTABLE_defaultItemHeight: number;
|
|
1974
2254
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
1975
|
-
orientation:
|
|
2255
|
+
orientation: "horizontal" | "vertical";
|
|
1976
2256
|
indexRef: React.MutableRefObject<number>;
|
|
1977
2257
|
nonInteractiveIds: string[];
|
|
1978
2258
|
isVirtualized: boolean;
|
|
@@ -1986,11 +2266,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
1986
2266
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
1987
2267
|
placement: import("@popperjs/core").Placement;
|
|
1988
2268
|
id: string;
|
|
1989
|
-
visibility:
|
|
1990
|
-
selectedIds:
|
|
2269
|
+
visibility: "hidden" | "visible";
|
|
2270
|
+
selectedIds: string[] | "all";
|
|
1991
2271
|
unselectedIds: string[];
|
|
1992
2272
|
cursorId: string;
|
|
1993
2273
|
columnCount: number;
|
|
2274
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2275
|
+
cursorIndexRef: {
|
|
2276
|
+
readonly current: number;
|
|
2277
|
+
};
|
|
1994
2278
|
UNSTABLE_virtual: {
|
|
1995
2279
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1996
2280
|
totalSize: number;
|
|
@@ -2000,7 +2284,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2000
2284
|
};
|
|
2001
2285
|
UNSTABLE_defaultItemHeight: number;
|
|
2002
2286
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2003
|
-
orientation:
|
|
2287
|
+
orientation: "horizontal" | "vertical";
|
|
2004
2288
|
indexRef: React.MutableRefObject<number>;
|
|
2005
2289
|
nonInteractiveIds: string[];
|
|
2006
2290
|
isVirtualized: boolean;
|
|
@@ -2014,11 +2298,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2014
2298
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2015
2299
|
placement: import("@popperjs/core").Placement;
|
|
2016
2300
|
id: string;
|
|
2017
|
-
visibility:
|
|
2018
|
-
selectedIds:
|
|
2301
|
+
visibility: "hidden" | "visible";
|
|
2302
|
+
selectedIds: string[] | "all";
|
|
2019
2303
|
unselectedIds: string[];
|
|
2020
2304
|
cursorId: string;
|
|
2021
2305
|
columnCount: number;
|
|
2306
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2307
|
+
cursorIndexRef: {
|
|
2308
|
+
readonly current: number;
|
|
2309
|
+
};
|
|
2022
2310
|
UNSTABLE_virtual: {
|
|
2023
2311
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2024
2312
|
totalSize: number;
|
|
@@ -2028,16 +2316,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2028
2316
|
};
|
|
2029
2317
|
UNSTABLE_defaultItemHeight: number;
|
|
2030
2318
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2031
|
-
orientation:
|
|
2319
|
+
orientation: "horizontal" | "vertical";
|
|
2032
2320
|
indexRef: React.MutableRefObject<number>;
|
|
2033
2321
|
nonInteractiveIds: string[];
|
|
2034
2322
|
isVirtualized: boolean;
|
|
2035
2323
|
items: import("../..").Item<any>[];
|
|
2036
2324
|
mode: "multiple" | "single";
|
|
2037
2325
|
}) => void) | undefined;
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
textValue: string;
|
|
2326
|
+
onGoTo?: ((data: {
|
|
2327
|
+
id: string;
|
|
2041
2328
|
}, prevState: {
|
|
2042
2329
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2043
2330
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -2045,11 +2332,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2045
2332
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2046
2333
|
placement: import("@popperjs/core").Placement;
|
|
2047
2334
|
id: string;
|
|
2048
|
-
visibility:
|
|
2049
|
-
selectedIds:
|
|
2335
|
+
visibility: "hidden" | "visible";
|
|
2336
|
+
selectedIds: string[] | "all";
|
|
2050
2337
|
unselectedIds: string[];
|
|
2051
2338
|
cursorId: string;
|
|
2052
2339
|
columnCount: number;
|
|
2340
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2341
|
+
cursorIndexRef: {
|
|
2342
|
+
readonly current: number;
|
|
2343
|
+
};
|
|
2053
2344
|
UNSTABLE_virtual: {
|
|
2054
2345
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2055
2346
|
totalSize: number;
|
|
@@ -2059,27 +2350,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2059
2350
|
};
|
|
2060
2351
|
UNSTABLE_defaultItemHeight: number;
|
|
2061
2352
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2062
|
-
orientation:
|
|
2353
|
+
orientation: "horizontal" | "vertical";
|
|
2063
2354
|
indexRef: React.MutableRefObject<number>;
|
|
2064
2355
|
nonInteractiveIds: string[];
|
|
2065
2356
|
isVirtualized: boolean;
|
|
2066
2357
|
items: import("../..").Item<any>[];
|
|
2067
2358
|
mode: "multiple" | "single";
|
|
2068
2359
|
}) => void) | undefined;
|
|
2069
|
-
|
|
2070
|
-
id: string;
|
|
2071
|
-
}, prevState: {
|
|
2360
|
+
onGoToNext?: ((data: undefined, prevState: {
|
|
2072
2361
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2073
2362
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2074
2363
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2075
2364
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2076
2365
|
placement: import("@popperjs/core").Placement;
|
|
2077
2366
|
id: string;
|
|
2078
|
-
visibility:
|
|
2079
|
-
selectedIds:
|
|
2367
|
+
visibility: "hidden" | "visible";
|
|
2368
|
+
selectedIds: string[] | "all";
|
|
2080
2369
|
unselectedIds: string[];
|
|
2081
2370
|
cursorId: string;
|
|
2082
2371
|
columnCount: number;
|
|
2372
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2373
|
+
cursorIndexRef: {
|
|
2374
|
+
readonly current: number;
|
|
2375
|
+
};
|
|
2083
2376
|
UNSTABLE_virtual: {
|
|
2084
2377
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2085
2378
|
totalSize: number;
|
|
@@ -2089,25 +2382,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2089
2382
|
};
|
|
2090
2383
|
UNSTABLE_defaultItemHeight: number;
|
|
2091
2384
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2092
|
-
orientation:
|
|
2385
|
+
orientation: "horizontal" | "vertical";
|
|
2093
2386
|
indexRef: React.MutableRefObject<number>;
|
|
2094
2387
|
nonInteractiveIds: string[];
|
|
2095
2388
|
isVirtualized: boolean;
|
|
2096
2389
|
items: import("../..").Item<any>[];
|
|
2097
2390
|
mode: "multiple" | "single";
|
|
2098
2391
|
}) => void) | undefined;
|
|
2099
|
-
|
|
2392
|
+
onGoToPrevious?: ((data: undefined, prevState: {
|
|
2100
2393
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2101
2394
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2102
2395
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2103
2396
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2104
2397
|
placement: import("@popperjs/core").Placement;
|
|
2105
2398
|
id: string;
|
|
2106
|
-
visibility:
|
|
2107
|
-
selectedIds:
|
|
2399
|
+
visibility: "hidden" | "visible";
|
|
2400
|
+
selectedIds: string[] | "all";
|
|
2108
2401
|
unselectedIds: string[];
|
|
2109
2402
|
cursorId: string;
|
|
2110
2403
|
columnCount: number;
|
|
2404
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2405
|
+
cursorIndexRef: {
|
|
2406
|
+
readonly current: number;
|
|
2407
|
+
};
|
|
2111
2408
|
UNSTABLE_virtual: {
|
|
2112
2409
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2113
2410
|
totalSize: number;
|
|
@@ -2117,25 +2414,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2117
2414
|
};
|
|
2118
2415
|
UNSTABLE_defaultItemHeight: number;
|
|
2119
2416
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2120
|
-
orientation:
|
|
2417
|
+
orientation: "horizontal" | "vertical";
|
|
2121
2418
|
indexRef: React.MutableRefObject<number>;
|
|
2122
2419
|
nonInteractiveIds: string[];
|
|
2123
2420
|
isVirtualized: boolean;
|
|
2124
2421
|
items: import("../..").Item<any>[];
|
|
2125
2422
|
mode: "multiple" | "single";
|
|
2126
2423
|
}) => void) | undefined;
|
|
2127
|
-
|
|
2424
|
+
onGoToPreviousRow?: ((data: undefined, prevState: {
|
|
2128
2425
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2129
2426
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2130
2427
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2131
2428
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2132
2429
|
placement: import("@popperjs/core").Placement;
|
|
2133
2430
|
id: string;
|
|
2134
|
-
visibility:
|
|
2135
|
-
selectedIds:
|
|
2431
|
+
visibility: "hidden" | "visible";
|
|
2432
|
+
selectedIds: string[] | "all";
|
|
2136
2433
|
unselectedIds: string[];
|
|
2137
2434
|
cursorId: string;
|
|
2138
2435
|
columnCount: number;
|
|
2436
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2437
|
+
cursorIndexRef: {
|
|
2438
|
+
readonly current: number;
|
|
2439
|
+
};
|
|
2139
2440
|
UNSTABLE_virtual: {
|
|
2140
2441
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2141
2442
|
totalSize: number;
|
|
@@ -2145,25 +2446,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2145
2446
|
};
|
|
2146
2447
|
UNSTABLE_defaultItemHeight: number;
|
|
2147
2448
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2148
|
-
orientation:
|
|
2449
|
+
orientation: "horizontal" | "vertical";
|
|
2149
2450
|
indexRef: React.MutableRefObject<number>;
|
|
2150
2451
|
nonInteractiveIds: string[];
|
|
2151
2452
|
isVirtualized: boolean;
|
|
2152
2453
|
items: import("../..").Item<any>[];
|
|
2153
2454
|
mode: "multiple" | "single";
|
|
2154
2455
|
}) => void) | undefined;
|
|
2155
|
-
|
|
2456
|
+
onGoToNextRow?: ((data: undefined, prevState: {
|
|
2156
2457
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2157
2458
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2158
2459
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2159
2460
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2160
2461
|
placement: import("@popperjs/core").Placement;
|
|
2161
2462
|
id: string;
|
|
2162
|
-
visibility:
|
|
2163
|
-
selectedIds:
|
|
2463
|
+
visibility: "hidden" | "visible";
|
|
2464
|
+
selectedIds: string[] | "all";
|
|
2164
2465
|
unselectedIds: string[];
|
|
2165
2466
|
cursorId: string;
|
|
2166
2467
|
columnCount: number;
|
|
2468
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2469
|
+
cursorIndexRef: {
|
|
2470
|
+
readonly current: number;
|
|
2471
|
+
};
|
|
2167
2472
|
UNSTABLE_virtual: {
|
|
2168
2473
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2169
2474
|
totalSize: number;
|
|
@@ -2173,25 +2478,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2173
2478
|
};
|
|
2174
2479
|
UNSTABLE_defaultItemHeight: number;
|
|
2175
2480
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2176
|
-
orientation:
|
|
2481
|
+
orientation: "horizontal" | "vertical";
|
|
2177
2482
|
indexRef: React.MutableRefObject<number>;
|
|
2178
2483
|
nonInteractiveIds: string[];
|
|
2179
2484
|
isVirtualized: boolean;
|
|
2180
2485
|
items: import("../..").Item<any>[];
|
|
2181
2486
|
mode: "multiple" | "single";
|
|
2182
2487
|
}) => void) | undefined;
|
|
2183
|
-
|
|
2488
|
+
onGoToFirst?: ((data: undefined, prevState: {
|
|
2184
2489
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2185
2490
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2186
2491
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2187
2492
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2188
2493
|
placement: import("@popperjs/core").Placement;
|
|
2189
2494
|
id: string;
|
|
2190
|
-
visibility:
|
|
2191
|
-
selectedIds:
|
|
2495
|
+
visibility: "hidden" | "visible";
|
|
2496
|
+
selectedIds: string[] | "all";
|
|
2192
2497
|
unselectedIds: string[];
|
|
2193
2498
|
cursorId: string;
|
|
2194
2499
|
columnCount: number;
|
|
2500
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2501
|
+
cursorIndexRef: {
|
|
2502
|
+
readonly current: number;
|
|
2503
|
+
};
|
|
2195
2504
|
UNSTABLE_virtual: {
|
|
2196
2505
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2197
2506
|
totalSize: number;
|
|
@@ -2201,25 +2510,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2201
2510
|
};
|
|
2202
2511
|
UNSTABLE_defaultItemHeight: number;
|
|
2203
2512
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2204
|
-
orientation:
|
|
2513
|
+
orientation: "horizontal" | "vertical";
|
|
2205
2514
|
indexRef: React.MutableRefObject<number>;
|
|
2206
2515
|
nonInteractiveIds: string[];
|
|
2207
2516
|
isVirtualized: boolean;
|
|
2208
2517
|
items: import("../..").Item<any>[];
|
|
2209
2518
|
mode: "multiple" | "single";
|
|
2210
2519
|
}) => void) | undefined;
|
|
2211
|
-
|
|
2520
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
2212
2521
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2213
2522
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2214
2523
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2215
2524
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2216
2525
|
placement: import("@popperjs/core").Placement;
|
|
2217
2526
|
id: string;
|
|
2218
|
-
visibility:
|
|
2219
|
-
selectedIds:
|
|
2527
|
+
visibility: "hidden" | "visible";
|
|
2528
|
+
selectedIds: string[] | "all";
|
|
2220
2529
|
unselectedIds: string[];
|
|
2221
2530
|
cursorId: string;
|
|
2222
2531
|
columnCount: number;
|
|
2532
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2533
|
+
cursorIndexRef: {
|
|
2534
|
+
readonly current: number;
|
|
2535
|
+
};
|
|
2223
2536
|
UNSTABLE_virtual: {
|
|
2224
2537
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2225
2538
|
totalSize: number;
|
|
@@ -2229,25 +2542,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2229
2542
|
};
|
|
2230
2543
|
UNSTABLE_defaultItemHeight: number;
|
|
2231
2544
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2232
|
-
orientation:
|
|
2545
|
+
orientation: "horizontal" | "vertical";
|
|
2233
2546
|
indexRef: React.MutableRefObject<number>;
|
|
2234
2547
|
nonInteractiveIds: string[];
|
|
2235
2548
|
isVirtualized: boolean;
|
|
2236
2549
|
items: import("../..").Item<any>[];
|
|
2237
2550
|
mode: "multiple" | "single";
|
|
2238
2551
|
}) => void) | undefined;
|
|
2239
|
-
|
|
2552
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
2240
2553
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2241
2554
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2242
2555
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2243
2556
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2244
2557
|
placement: import("@popperjs/core").Placement;
|
|
2245
2558
|
id: string;
|
|
2246
|
-
visibility:
|
|
2247
|
-
selectedIds:
|
|
2559
|
+
visibility: "hidden" | "visible";
|
|
2560
|
+
selectedIds: string[] | "all";
|
|
2248
2561
|
unselectedIds: string[];
|
|
2249
2562
|
cursorId: string;
|
|
2250
2563
|
columnCount: number;
|
|
2564
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2565
|
+
cursorIndexRef: {
|
|
2566
|
+
readonly current: number;
|
|
2567
|
+
};
|
|
2251
2568
|
UNSTABLE_virtual: {
|
|
2252
2569
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2253
2570
|
totalSize: number;
|
|
@@ -2257,25 +2574,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2257
2574
|
};
|
|
2258
2575
|
UNSTABLE_defaultItemHeight: number;
|
|
2259
2576
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2260
|
-
orientation:
|
|
2577
|
+
orientation: "horizontal" | "vertical";
|
|
2261
2578
|
indexRef: React.MutableRefObject<number>;
|
|
2262
2579
|
nonInteractiveIds: string[];
|
|
2263
2580
|
isVirtualized: boolean;
|
|
2264
2581
|
items: import("../..").Item<any>[];
|
|
2265
2582
|
mode: "multiple" | "single";
|
|
2266
2583
|
}) => void) | undefined;
|
|
2267
|
-
|
|
2584
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
2268
2585
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2269
2586
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2270
2587
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2271
2588
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2272
2589
|
placement: import("@popperjs/core").Placement;
|
|
2273
2590
|
id: string;
|
|
2274
|
-
visibility:
|
|
2275
|
-
selectedIds:
|
|
2591
|
+
visibility: "hidden" | "visible";
|
|
2592
|
+
selectedIds: string[] | "all";
|
|
2276
2593
|
unselectedIds: string[];
|
|
2277
2594
|
cursorId: string;
|
|
2278
2595
|
columnCount: number;
|
|
2596
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2597
|
+
cursorIndexRef: {
|
|
2598
|
+
readonly current: number;
|
|
2599
|
+
};
|
|
2279
2600
|
UNSTABLE_virtual: {
|
|
2280
2601
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2281
2602
|
totalSize: number;
|
|
@@ -2285,25 +2606,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2285
2606
|
};
|
|
2286
2607
|
UNSTABLE_defaultItemHeight: number;
|
|
2287
2608
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2288
|
-
orientation:
|
|
2609
|
+
orientation: "horizontal" | "vertical";
|
|
2289
2610
|
indexRef: React.MutableRefObject<number>;
|
|
2290
2611
|
nonInteractiveIds: string[];
|
|
2291
2612
|
isVirtualized: boolean;
|
|
2292
2613
|
items: import("../..").Item<any>[];
|
|
2293
2614
|
mode: "multiple" | "single";
|
|
2294
2615
|
}) => void) | undefined;
|
|
2295
|
-
|
|
2616
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
2296
2617
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2297
2618
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2298
2619
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2299
2620
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2300
2621
|
placement: import("@popperjs/core").Placement;
|
|
2301
2622
|
id: string;
|
|
2302
|
-
visibility:
|
|
2303
|
-
selectedIds:
|
|
2623
|
+
visibility: "hidden" | "visible";
|
|
2624
|
+
selectedIds: string[] | "all";
|
|
2304
2625
|
unselectedIds: string[];
|
|
2305
2626
|
cursorId: string;
|
|
2306
2627
|
columnCount: number;
|
|
2628
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2629
|
+
cursorIndexRef: {
|
|
2630
|
+
readonly current: number;
|
|
2631
|
+
};
|
|
2307
2632
|
UNSTABLE_virtual: {
|
|
2308
2633
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2309
2634
|
totalSize: number;
|
|
@@ -2313,25 +2638,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2313
2638
|
};
|
|
2314
2639
|
UNSTABLE_defaultItemHeight: number;
|
|
2315
2640
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2316
|
-
orientation:
|
|
2641
|
+
orientation: "horizontal" | "vertical";
|
|
2317
2642
|
indexRef: React.MutableRefObject<number>;
|
|
2318
2643
|
nonInteractiveIds: string[];
|
|
2319
2644
|
isVirtualized: boolean;
|
|
2320
2645
|
items: import("../..").Item<any>[];
|
|
2321
2646
|
mode: "multiple" | "single";
|
|
2322
2647
|
}) => void) | undefined;
|
|
2323
|
-
|
|
2648
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
2324
2649
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2325
2650
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2326
2651
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2327
2652
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2328
2653
|
placement: import("@popperjs/core").Placement;
|
|
2329
2654
|
id: string;
|
|
2330
|
-
visibility:
|
|
2331
|
-
selectedIds:
|
|
2655
|
+
visibility: "hidden" | "visible";
|
|
2656
|
+
selectedIds: string[] | "all";
|
|
2332
2657
|
unselectedIds: string[];
|
|
2333
2658
|
cursorId: string;
|
|
2334
2659
|
columnCount: number;
|
|
2660
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2661
|
+
cursorIndexRef: {
|
|
2662
|
+
readonly current: number;
|
|
2663
|
+
};
|
|
2335
2664
|
UNSTABLE_virtual: {
|
|
2336
2665
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2337
2666
|
totalSize: number;
|
|
@@ -2341,25 +2670,32 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2341
2670
|
};
|
|
2342
2671
|
UNSTABLE_defaultItemHeight: number;
|
|
2343
2672
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2344
|
-
orientation:
|
|
2673
|
+
orientation: "horizontal" | "vertical";
|
|
2345
2674
|
indexRef: React.MutableRefObject<number>;
|
|
2346
2675
|
nonInteractiveIds: string[];
|
|
2347
2676
|
isVirtualized: boolean;
|
|
2348
2677
|
items: import("../..").Item<any>[];
|
|
2349
2678
|
mode: "multiple" | "single";
|
|
2350
2679
|
}) => void) | undefined;
|
|
2351
|
-
|
|
2680
|
+
onRegisterItem?: ((data: {
|
|
2681
|
+
item: any;
|
|
2682
|
+
textValue: string;
|
|
2683
|
+
}, prevState: {
|
|
2352
2684
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2353
2685
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2354
2686
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2355
2687
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2356
2688
|
placement: import("@popperjs/core").Placement;
|
|
2357
2689
|
id: string;
|
|
2358
|
-
visibility:
|
|
2359
|
-
selectedIds:
|
|
2690
|
+
visibility: "hidden" | "visible";
|
|
2691
|
+
selectedIds: string[] | "all";
|
|
2360
2692
|
unselectedIds: string[];
|
|
2361
2693
|
cursorId: string;
|
|
2362
2694
|
columnCount: number;
|
|
2695
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2696
|
+
cursorIndexRef: {
|
|
2697
|
+
readonly current: number;
|
|
2698
|
+
};
|
|
2363
2699
|
UNSTABLE_virtual: {
|
|
2364
2700
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2365
2701
|
totalSize: number;
|
|
@@ -2369,7 +2705,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2369
2705
|
};
|
|
2370
2706
|
UNSTABLE_defaultItemHeight: number;
|
|
2371
2707
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2372
|
-
orientation:
|
|
2708
|
+
orientation: "horizontal" | "vertical";
|
|
2373
2709
|
indexRef: React.MutableRefObject<number>;
|
|
2374
2710
|
nonInteractiveIds: string[];
|
|
2375
2711
|
isVirtualized: boolean;
|
|
@@ -2385,11 +2721,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2385
2721
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2386
2722
|
placement: import("@popperjs/core").Placement;
|
|
2387
2723
|
id: string;
|
|
2388
|
-
visibility:
|
|
2389
|
-
selectedIds:
|
|
2724
|
+
visibility: "hidden" | "visible";
|
|
2725
|
+
selectedIds: string[] | "all";
|
|
2390
2726
|
unselectedIds: string[];
|
|
2391
2727
|
cursorId: string;
|
|
2392
2728
|
columnCount: number;
|
|
2729
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2730
|
+
cursorIndexRef: {
|
|
2731
|
+
readonly current: number;
|
|
2732
|
+
};
|
|
2393
2733
|
UNSTABLE_virtual: {
|
|
2394
2734
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2395
2735
|
totalSize: number;
|
|
@@ -2399,7 +2739,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2399
2739
|
};
|
|
2400
2740
|
UNSTABLE_defaultItemHeight: number;
|
|
2401
2741
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2402
|
-
orientation:
|
|
2742
|
+
orientation: "horizontal" | "vertical";
|
|
2403
2743
|
indexRef: React.MutableRefObject<number>;
|
|
2404
2744
|
nonInteractiveIds: string[];
|
|
2405
2745
|
isVirtualized: boolean;
|
|
@@ -2415,11 +2755,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2415
2755
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2416
2756
|
placement: import("@popperjs/core").Placement;
|
|
2417
2757
|
id: string;
|
|
2418
|
-
visibility:
|
|
2419
|
-
selectedIds:
|
|
2758
|
+
visibility: "hidden" | "visible";
|
|
2759
|
+
selectedIds: string[] | "all";
|
|
2420
2760
|
unselectedIds: string[];
|
|
2421
2761
|
cursorId: string;
|
|
2422
2762
|
columnCount: number;
|
|
2763
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2764
|
+
cursorIndexRef: {
|
|
2765
|
+
readonly current: number;
|
|
2766
|
+
};
|
|
2423
2767
|
UNSTABLE_virtual: {
|
|
2424
2768
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2425
2769
|
totalSize: number;
|
|
@@ -2429,7 +2773,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2429
2773
|
};
|
|
2430
2774
|
UNSTABLE_defaultItemHeight: number;
|
|
2431
2775
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2432
|
-
orientation:
|
|
2776
|
+
orientation: "horizontal" | "vertical";
|
|
2433
2777
|
indexRef: React.MutableRefObject<number>;
|
|
2434
2778
|
nonInteractiveIds: string[];
|
|
2435
2779
|
isVirtualized: boolean;
|
|
@@ -2446,11 +2790,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2446
2790
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2447
2791
|
placement: import("@popperjs/core").Placement;
|
|
2448
2792
|
id: string;
|
|
2449
|
-
visibility:
|
|
2450
|
-
selectedIds:
|
|
2793
|
+
visibility: "hidden" | "visible";
|
|
2794
|
+
selectedIds: string[] | "all";
|
|
2451
2795
|
unselectedIds: string[];
|
|
2452
2796
|
cursorId: string;
|
|
2453
2797
|
columnCount: number;
|
|
2798
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2799
|
+
cursorIndexRef: {
|
|
2800
|
+
readonly current: number;
|
|
2801
|
+
};
|
|
2454
2802
|
UNSTABLE_virtual: {
|
|
2455
2803
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2456
2804
|
totalSize: number;
|
|
@@ -2460,7 +2808,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2460
2808
|
};
|
|
2461
2809
|
UNSTABLE_defaultItemHeight: number;
|
|
2462
2810
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2463
|
-
orientation:
|
|
2811
|
+
orientation: "horizontal" | "vertical";
|
|
2464
2812
|
indexRef: React.MutableRefObject<number>;
|
|
2465
2813
|
nonInteractiveIds: string[];
|
|
2466
2814
|
isVirtualized: boolean;
|
|
@@ -2474,11 +2822,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2474
2822
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2475
2823
|
placement: import("@popperjs/core").Placement;
|
|
2476
2824
|
id: string;
|
|
2477
|
-
visibility:
|
|
2478
|
-
selectedIds:
|
|
2825
|
+
visibility: "hidden" | "visible";
|
|
2826
|
+
selectedIds: string[] | "all";
|
|
2479
2827
|
unselectedIds: string[];
|
|
2480
2828
|
cursorId: string;
|
|
2481
2829
|
columnCount: number;
|
|
2830
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2831
|
+
cursorIndexRef: {
|
|
2832
|
+
readonly current: number;
|
|
2833
|
+
};
|
|
2482
2834
|
UNSTABLE_virtual: {
|
|
2483
2835
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2484
2836
|
totalSize: number;
|
|
@@ -2488,7 +2840,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2488
2840
|
};
|
|
2489
2841
|
UNSTABLE_defaultItemHeight: number;
|
|
2490
2842
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2491
|
-
orientation:
|
|
2843
|
+
orientation: "horizontal" | "vertical";
|
|
2492
2844
|
indexRef: React.MutableRefObject<number>;
|
|
2493
2845
|
nonInteractiveIds: string[];
|
|
2494
2846
|
isVirtualized: boolean;
|
|
@@ -2502,11 +2854,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2502
2854
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2503
2855
|
placement: import("@popperjs/core").Placement;
|
|
2504
2856
|
id: string;
|
|
2505
|
-
visibility:
|
|
2506
|
-
selectedIds:
|
|
2857
|
+
visibility: "hidden" | "visible";
|
|
2858
|
+
selectedIds: string[] | "all";
|
|
2507
2859
|
unselectedIds: string[];
|
|
2508
2860
|
cursorId: string;
|
|
2509
2861
|
columnCount: number;
|
|
2862
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2863
|
+
cursorIndexRef: {
|
|
2864
|
+
readonly current: number;
|
|
2865
|
+
};
|
|
2510
2866
|
UNSTABLE_virtual: {
|
|
2511
2867
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2512
2868
|
totalSize: number;
|
|
@@ -2516,7 +2872,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2516
2872
|
};
|
|
2517
2873
|
UNSTABLE_defaultItemHeight: number;
|
|
2518
2874
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2519
|
-
orientation:
|
|
2875
|
+
orientation: "horizontal" | "vertical";
|
|
2520
2876
|
indexRef: React.MutableRefObject<number>;
|
|
2521
2877
|
nonInteractiveIds: string[];
|
|
2522
2878
|
isVirtualized: boolean;
|
|
@@ -2532,11 +2888,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2532
2888
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2533
2889
|
placement: import("@popperjs/core").Placement;
|
|
2534
2890
|
id: string;
|
|
2535
|
-
visibility:
|
|
2536
|
-
selectedIds:
|
|
2891
|
+
visibility: "hidden" | "visible";
|
|
2892
|
+
selectedIds: string[] | "all";
|
|
2537
2893
|
unselectedIds: string[];
|
|
2538
2894
|
cursorId: string;
|
|
2539
2895
|
columnCount: number;
|
|
2896
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2897
|
+
cursorIndexRef: {
|
|
2898
|
+
readonly current: number;
|
|
2899
|
+
};
|
|
2540
2900
|
UNSTABLE_virtual: {
|
|
2541
2901
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2542
2902
|
totalSize: number;
|
|
@@ -2546,7 +2906,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2546
2906
|
};
|
|
2547
2907
|
UNSTABLE_defaultItemHeight: number;
|
|
2548
2908
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2549
|
-
orientation:
|
|
2909
|
+
orientation: "horizontal" | "vertical";
|
|
2550
2910
|
indexRef: React.MutableRefObject<number>;
|
|
2551
2911
|
nonInteractiveIds: string[];
|
|
2552
2912
|
isVirtualized: boolean;
|
|
@@ -2560,11 +2920,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2560
2920
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2561
2921
|
placement: import("@popperjs/core").Placement;
|
|
2562
2922
|
id: string;
|
|
2563
|
-
visibility:
|
|
2564
|
-
selectedIds:
|
|
2923
|
+
visibility: "hidden" | "visible";
|
|
2924
|
+
selectedIds: string[] | "all";
|
|
2565
2925
|
unselectedIds: string[];
|
|
2566
2926
|
cursorId: string;
|
|
2567
2927
|
columnCount: number;
|
|
2928
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2929
|
+
cursorIndexRef: {
|
|
2930
|
+
readonly current: number;
|
|
2931
|
+
};
|
|
2568
2932
|
UNSTABLE_virtual: {
|
|
2569
2933
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2570
2934
|
totalSize: number;
|
|
@@ -2574,7 +2938,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2574
2938
|
};
|
|
2575
2939
|
UNSTABLE_defaultItemHeight: number;
|
|
2576
2940
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2577
|
-
orientation:
|
|
2941
|
+
orientation: "horizontal" | "vertical";
|
|
2578
2942
|
indexRef: React.MutableRefObject<number>;
|
|
2579
2943
|
nonInteractiveIds: string[];
|
|
2580
2944
|
isVirtualized: boolean;
|
|
@@ -2588,11 +2952,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2588
2952
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2589
2953
|
placement: import("@popperjs/core").Placement;
|
|
2590
2954
|
id: string;
|
|
2591
|
-
visibility:
|
|
2592
|
-
selectedIds:
|
|
2955
|
+
visibility: "hidden" | "visible";
|
|
2956
|
+
selectedIds: string[] | "all";
|
|
2593
2957
|
unselectedIds: string[];
|
|
2594
2958
|
cursorId: string;
|
|
2595
2959
|
columnCount: number;
|
|
2960
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2961
|
+
cursorIndexRef: {
|
|
2962
|
+
readonly current: number;
|
|
2963
|
+
};
|
|
2596
2964
|
UNSTABLE_virtual: {
|
|
2597
2965
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2598
2966
|
totalSize: number;
|
|
@@ -2602,16 +2970,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2602
2970
|
};
|
|
2603
2971
|
UNSTABLE_defaultItemHeight: number;
|
|
2604
2972
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2605
|
-
orientation:
|
|
2973
|
+
orientation: "horizontal" | "vertical";
|
|
2606
2974
|
indexRef: React.MutableRefObject<number>;
|
|
2607
2975
|
nonInteractiveIds: string[];
|
|
2608
2976
|
isVirtualized: boolean;
|
|
2609
2977
|
items: import("../..").Item<any>[];
|
|
2610
2978
|
mode: "multiple" | "single";
|
|
2611
2979
|
}) => boolean) | undefined;
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
textValue: string;
|
|
2980
|
+
shouldGoTo?: ((data: {
|
|
2981
|
+
id: string;
|
|
2615
2982
|
}, state: {
|
|
2616
2983
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2617
2984
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -2619,11 +2986,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2619
2986
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2620
2987
|
placement: import("@popperjs/core").Placement;
|
|
2621
2988
|
id: string;
|
|
2622
|
-
visibility:
|
|
2623
|
-
selectedIds:
|
|
2989
|
+
visibility: "hidden" | "visible";
|
|
2990
|
+
selectedIds: string[] | "all";
|
|
2624
2991
|
unselectedIds: string[];
|
|
2625
2992
|
cursorId: string;
|
|
2626
2993
|
columnCount: number;
|
|
2994
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2995
|
+
cursorIndexRef: {
|
|
2996
|
+
readonly current: number;
|
|
2997
|
+
};
|
|
2627
2998
|
UNSTABLE_virtual: {
|
|
2628
2999
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2629
3000
|
totalSize: number;
|
|
@@ -2633,27 +3004,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2633
3004
|
};
|
|
2634
3005
|
UNSTABLE_defaultItemHeight: number;
|
|
2635
3006
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2636
|
-
orientation:
|
|
3007
|
+
orientation: "horizontal" | "vertical";
|
|
2637
3008
|
indexRef: React.MutableRefObject<number>;
|
|
2638
3009
|
nonInteractiveIds: string[];
|
|
2639
3010
|
isVirtualized: boolean;
|
|
2640
3011
|
items: import("../..").Item<any>[];
|
|
2641
3012
|
mode: "multiple" | "single";
|
|
2642
3013
|
}) => boolean) | undefined;
|
|
2643
|
-
|
|
2644
|
-
id: string;
|
|
2645
|
-
}, state: {
|
|
3014
|
+
shouldGoToNext?: ((data: undefined, state: {
|
|
2646
3015
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2647
3016
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2648
3017
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2649
3018
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2650
3019
|
placement: import("@popperjs/core").Placement;
|
|
2651
3020
|
id: string;
|
|
2652
|
-
visibility:
|
|
2653
|
-
selectedIds:
|
|
3021
|
+
visibility: "hidden" | "visible";
|
|
3022
|
+
selectedIds: string[] | "all";
|
|
2654
3023
|
unselectedIds: string[];
|
|
2655
3024
|
cursorId: string;
|
|
2656
3025
|
columnCount: number;
|
|
3026
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3027
|
+
cursorIndexRef: {
|
|
3028
|
+
readonly current: number;
|
|
3029
|
+
};
|
|
2657
3030
|
UNSTABLE_virtual: {
|
|
2658
3031
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2659
3032
|
totalSize: number;
|
|
@@ -2663,25 +3036,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2663
3036
|
};
|
|
2664
3037
|
UNSTABLE_defaultItemHeight: number;
|
|
2665
3038
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2666
|
-
orientation:
|
|
3039
|
+
orientation: "horizontal" | "vertical";
|
|
2667
3040
|
indexRef: React.MutableRefObject<number>;
|
|
2668
3041
|
nonInteractiveIds: string[];
|
|
2669
3042
|
isVirtualized: boolean;
|
|
2670
3043
|
items: import("../..").Item<any>[];
|
|
2671
3044
|
mode: "multiple" | "single";
|
|
2672
3045
|
}) => boolean) | undefined;
|
|
2673
|
-
|
|
3046
|
+
shouldGoToPrevious?: ((data: undefined, state: {
|
|
2674
3047
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2675
3048
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2676
3049
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2677
3050
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2678
3051
|
placement: import("@popperjs/core").Placement;
|
|
2679
3052
|
id: string;
|
|
2680
|
-
visibility:
|
|
2681
|
-
selectedIds:
|
|
3053
|
+
visibility: "hidden" | "visible";
|
|
3054
|
+
selectedIds: string[] | "all";
|
|
2682
3055
|
unselectedIds: string[];
|
|
2683
3056
|
cursorId: string;
|
|
2684
3057
|
columnCount: number;
|
|
3058
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3059
|
+
cursorIndexRef: {
|
|
3060
|
+
readonly current: number;
|
|
3061
|
+
};
|
|
2685
3062
|
UNSTABLE_virtual: {
|
|
2686
3063
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2687
3064
|
totalSize: number;
|
|
@@ -2691,25 +3068,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2691
3068
|
};
|
|
2692
3069
|
UNSTABLE_defaultItemHeight: number;
|
|
2693
3070
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2694
|
-
orientation:
|
|
3071
|
+
orientation: "horizontal" | "vertical";
|
|
2695
3072
|
indexRef: React.MutableRefObject<number>;
|
|
2696
3073
|
nonInteractiveIds: string[];
|
|
2697
3074
|
isVirtualized: boolean;
|
|
2698
3075
|
items: import("../..").Item<any>[];
|
|
2699
3076
|
mode: "multiple" | "single";
|
|
2700
3077
|
}) => boolean) | undefined;
|
|
2701
|
-
|
|
3078
|
+
shouldGoToPreviousRow?: ((data: undefined, state: {
|
|
2702
3079
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2703
3080
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2704
3081
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2705
3082
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2706
3083
|
placement: import("@popperjs/core").Placement;
|
|
2707
3084
|
id: string;
|
|
2708
|
-
visibility:
|
|
2709
|
-
selectedIds:
|
|
3085
|
+
visibility: "hidden" | "visible";
|
|
3086
|
+
selectedIds: string[] | "all";
|
|
2710
3087
|
unselectedIds: string[];
|
|
2711
3088
|
cursorId: string;
|
|
2712
3089
|
columnCount: number;
|
|
3090
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3091
|
+
cursorIndexRef: {
|
|
3092
|
+
readonly current: number;
|
|
3093
|
+
};
|
|
2713
3094
|
UNSTABLE_virtual: {
|
|
2714
3095
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2715
3096
|
totalSize: number;
|
|
@@ -2719,25 +3100,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2719
3100
|
};
|
|
2720
3101
|
UNSTABLE_defaultItemHeight: number;
|
|
2721
3102
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2722
|
-
orientation:
|
|
3103
|
+
orientation: "horizontal" | "vertical";
|
|
2723
3104
|
indexRef: React.MutableRefObject<number>;
|
|
2724
3105
|
nonInteractiveIds: string[];
|
|
2725
3106
|
isVirtualized: boolean;
|
|
2726
3107
|
items: import("../..").Item<any>[];
|
|
2727
3108
|
mode: "multiple" | "single";
|
|
2728
3109
|
}) => boolean) | undefined;
|
|
2729
|
-
|
|
3110
|
+
shouldGoToNextRow?: ((data: undefined, state: {
|
|
2730
3111
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2731
3112
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2732
3113
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2733
3114
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2734
3115
|
placement: import("@popperjs/core").Placement;
|
|
2735
3116
|
id: string;
|
|
2736
|
-
visibility:
|
|
2737
|
-
selectedIds:
|
|
3117
|
+
visibility: "hidden" | "visible";
|
|
3118
|
+
selectedIds: string[] | "all";
|
|
2738
3119
|
unselectedIds: string[];
|
|
2739
3120
|
cursorId: string;
|
|
2740
3121
|
columnCount: number;
|
|
3122
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3123
|
+
cursorIndexRef: {
|
|
3124
|
+
readonly current: number;
|
|
3125
|
+
};
|
|
2741
3126
|
UNSTABLE_virtual: {
|
|
2742
3127
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2743
3128
|
totalSize: number;
|
|
@@ -2747,25 +3132,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2747
3132
|
};
|
|
2748
3133
|
UNSTABLE_defaultItemHeight: number;
|
|
2749
3134
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2750
|
-
orientation:
|
|
3135
|
+
orientation: "horizontal" | "vertical";
|
|
2751
3136
|
indexRef: React.MutableRefObject<number>;
|
|
2752
3137
|
nonInteractiveIds: string[];
|
|
2753
3138
|
isVirtualized: boolean;
|
|
2754
3139
|
items: import("../..").Item<any>[];
|
|
2755
3140
|
mode: "multiple" | "single";
|
|
2756
3141
|
}) => boolean) | undefined;
|
|
2757
|
-
|
|
3142
|
+
shouldGoToFirst?: ((data: undefined, state: {
|
|
2758
3143
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2759
3144
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2760
3145
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2761
3146
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2762
3147
|
placement: import("@popperjs/core").Placement;
|
|
2763
3148
|
id: string;
|
|
2764
|
-
visibility:
|
|
2765
|
-
selectedIds:
|
|
3149
|
+
visibility: "hidden" | "visible";
|
|
3150
|
+
selectedIds: string[] | "all";
|
|
2766
3151
|
unselectedIds: string[];
|
|
2767
3152
|
cursorId: string;
|
|
2768
3153
|
columnCount: number;
|
|
3154
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3155
|
+
cursorIndexRef: {
|
|
3156
|
+
readonly current: number;
|
|
3157
|
+
};
|
|
2769
3158
|
UNSTABLE_virtual: {
|
|
2770
3159
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2771
3160
|
totalSize: number;
|
|
@@ -2775,25 +3164,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2775
3164
|
};
|
|
2776
3165
|
UNSTABLE_defaultItemHeight: number;
|
|
2777
3166
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2778
|
-
orientation:
|
|
3167
|
+
orientation: "horizontal" | "vertical";
|
|
2779
3168
|
indexRef: React.MutableRefObject<number>;
|
|
2780
3169
|
nonInteractiveIds: string[];
|
|
2781
3170
|
isVirtualized: boolean;
|
|
2782
3171
|
items: import("../..").Item<any>[];
|
|
2783
3172
|
mode: "multiple" | "single";
|
|
2784
3173
|
}) => boolean) | undefined;
|
|
2785
|
-
|
|
3174
|
+
shouldGoToLast?: ((data: undefined, state: {
|
|
2786
3175
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2787
3176
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2788
3177
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2789
3178
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2790
3179
|
placement: import("@popperjs/core").Placement;
|
|
2791
3180
|
id: string;
|
|
2792
|
-
visibility:
|
|
2793
|
-
selectedIds:
|
|
3181
|
+
visibility: "hidden" | "visible";
|
|
3182
|
+
selectedIds: string[] | "all";
|
|
2794
3183
|
unselectedIds: string[];
|
|
2795
3184
|
cursorId: string;
|
|
2796
3185
|
columnCount: number;
|
|
3186
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3187
|
+
cursorIndexRef: {
|
|
3188
|
+
readonly current: number;
|
|
3189
|
+
};
|
|
2797
3190
|
UNSTABLE_virtual: {
|
|
2798
3191
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2799
3192
|
totalSize: number;
|
|
@@ -2803,25 +3196,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2803
3196
|
};
|
|
2804
3197
|
UNSTABLE_defaultItemHeight: number;
|
|
2805
3198
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2806
|
-
orientation:
|
|
3199
|
+
orientation: "horizontal" | "vertical";
|
|
2807
3200
|
indexRef: React.MutableRefObject<number>;
|
|
2808
3201
|
nonInteractiveIds: string[];
|
|
2809
3202
|
isVirtualized: boolean;
|
|
2810
3203
|
items: import("../..").Item<any>[];
|
|
2811
3204
|
mode: "multiple" | "single";
|
|
2812
3205
|
}) => boolean) | undefined;
|
|
2813
|
-
|
|
3206
|
+
shouldGoToFirstOfRow?: ((data: undefined, state: {
|
|
2814
3207
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2815
3208
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2816
3209
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2817
3210
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2818
3211
|
placement: import("@popperjs/core").Placement;
|
|
2819
3212
|
id: string;
|
|
2820
|
-
visibility:
|
|
2821
|
-
selectedIds:
|
|
3213
|
+
visibility: "hidden" | "visible";
|
|
3214
|
+
selectedIds: string[] | "all";
|
|
2822
3215
|
unselectedIds: string[];
|
|
2823
3216
|
cursorId: string;
|
|
2824
3217
|
columnCount: number;
|
|
3218
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3219
|
+
cursorIndexRef: {
|
|
3220
|
+
readonly current: number;
|
|
3221
|
+
};
|
|
2825
3222
|
UNSTABLE_virtual: {
|
|
2826
3223
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2827
3224
|
totalSize: number;
|
|
@@ -2831,25 +3228,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2831
3228
|
};
|
|
2832
3229
|
UNSTABLE_defaultItemHeight: number;
|
|
2833
3230
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2834
|
-
orientation:
|
|
3231
|
+
orientation: "horizontal" | "vertical";
|
|
2835
3232
|
indexRef: React.MutableRefObject<number>;
|
|
2836
3233
|
nonInteractiveIds: string[];
|
|
2837
3234
|
isVirtualized: boolean;
|
|
2838
3235
|
items: import("../..").Item<any>[];
|
|
2839
3236
|
mode: "multiple" | "single";
|
|
2840
3237
|
}) => boolean) | undefined;
|
|
2841
|
-
|
|
3238
|
+
shouldGoToLastOfRow?: ((data: undefined, state: {
|
|
2842
3239
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2843
3240
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2844
3241
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2845
3242
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2846
3243
|
placement: import("@popperjs/core").Placement;
|
|
2847
3244
|
id: string;
|
|
2848
|
-
visibility:
|
|
2849
|
-
selectedIds:
|
|
3245
|
+
visibility: "hidden" | "visible";
|
|
3246
|
+
selectedIds: string[] | "all";
|
|
2850
3247
|
unselectedIds: string[];
|
|
2851
3248
|
cursorId: string;
|
|
2852
3249
|
columnCount: number;
|
|
3250
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3251
|
+
cursorIndexRef: {
|
|
3252
|
+
readonly current: number;
|
|
3253
|
+
};
|
|
2853
3254
|
UNSTABLE_virtual: {
|
|
2854
3255
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2855
3256
|
totalSize: number;
|
|
@@ -2859,25 +3260,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2859
3260
|
};
|
|
2860
3261
|
UNSTABLE_defaultItemHeight: number;
|
|
2861
3262
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2862
|
-
orientation:
|
|
3263
|
+
orientation: "horizontal" | "vertical";
|
|
2863
3264
|
indexRef: React.MutableRefObject<number>;
|
|
2864
3265
|
nonInteractiveIds: string[];
|
|
2865
3266
|
isVirtualized: boolean;
|
|
2866
3267
|
items: import("../..").Item<any>[];
|
|
2867
3268
|
mode: "multiple" | "single";
|
|
2868
3269
|
}) => boolean) | undefined;
|
|
2869
|
-
|
|
3270
|
+
shouldGoToNextPage?: ((data: undefined, state: {
|
|
2870
3271
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2871
3272
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2872
3273
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2873
3274
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2874
3275
|
placement: import("@popperjs/core").Placement;
|
|
2875
3276
|
id: string;
|
|
2876
|
-
visibility:
|
|
2877
|
-
selectedIds:
|
|
3277
|
+
visibility: "hidden" | "visible";
|
|
3278
|
+
selectedIds: string[] | "all";
|
|
2878
3279
|
unselectedIds: string[];
|
|
2879
3280
|
cursorId: string;
|
|
2880
3281
|
columnCount: number;
|
|
3282
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3283
|
+
cursorIndexRef: {
|
|
3284
|
+
readonly current: number;
|
|
3285
|
+
};
|
|
2881
3286
|
UNSTABLE_virtual: {
|
|
2882
3287
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2883
3288
|
totalSize: number;
|
|
@@ -2887,25 +3292,29 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2887
3292
|
};
|
|
2888
3293
|
UNSTABLE_defaultItemHeight: number;
|
|
2889
3294
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2890
|
-
orientation:
|
|
3295
|
+
orientation: "horizontal" | "vertical";
|
|
2891
3296
|
indexRef: React.MutableRefObject<number>;
|
|
2892
3297
|
nonInteractiveIds: string[];
|
|
2893
3298
|
isVirtualized: boolean;
|
|
2894
3299
|
items: import("../..").Item<any>[];
|
|
2895
3300
|
mode: "multiple" | "single";
|
|
2896
3301
|
}) => boolean) | undefined;
|
|
2897
|
-
|
|
3302
|
+
shouldGoToPreviousPage?: ((data: undefined, state: {
|
|
2898
3303
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2899
3304
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2900
3305
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2901
3306
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2902
3307
|
placement: import("@popperjs/core").Placement;
|
|
2903
3308
|
id: string;
|
|
2904
|
-
visibility:
|
|
2905
|
-
selectedIds:
|
|
3309
|
+
visibility: "hidden" | "visible";
|
|
3310
|
+
selectedIds: string[] | "all";
|
|
2906
3311
|
unselectedIds: string[];
|
|
2907
3312
|
cursorId: string;
|
|
2908
3313
|
columnCount: number;
|
|
3314
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3315
|
+
cursorIndexRef: {
|
|
3316
|
+
readonly current: number;
|
|
3317
|
+
};
|
|
2909
3318
|
UNSTABLE_virtual: {
|
|
2910
3319
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2911
3320
|
totalSize: number;
|
|
@@ -2915,25 +3324,32 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2915
3324
|
};
|
|
2916
3325
|
UNSTABLE_defaultItemHeight: number;
|
|
2917
3326
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2918
|
-
orientation:
|
|
3327
|
+
orientation: "horizontal" | "vertical";
|
|
2919
3328
|
indexRef: React.MutableRefObject<number>;
|
|
2920
3329
|
nonInteractiveIds: string[];
|
|
2921
3330
|
isVirtualized: boolean;
|
|
2922
3331
|
items: import("../..").Item<any>[];
|
|
2923
3332
|
mode: "multiple" | "single";
|
|
2924
3333
|
}) => boolean) | undefined;
|
|
2925
|
-
|
|
3334
|
+
shouldRegisterItem?: ((data: {
|
|
3335
|
+
item: any;
|
|
3336
|
+
textValue: string;
|
|
3337
|
+
}, state: {
|
|
2926
3338
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
2927
3339
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
2928
3340
|
initialFocusRef: React.RefObject<any> | undefined;
|
|
2929
3341
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2930
3342
|
placement: import("@popperjs/core").Placement;
|
|
2931
3343
|
id: string;
|
|
2932
|
-
visibility:
|
|
2933
|
-
selectedIds:
|
|
3344
|
+
visibility: "hidden" | "visible";
|
|
3345
|
+
selectedIds: string[] | "all";
|
|
2934
3346
|
unselectedIds: string[];
|
|
2935
3347
|
cursorId: string;
|
|
2936
3348
|
columnCount: number;
|
|
3349
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3350
|
+
cursorIndexRef: {
|
|
3351
|
+
readonly current: number;
|
|
3352
|
+
};
|
|
2937
3353
|
UNSTABLE_virtual: {
|
|
2938
3354
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2939
3355
|
totalSize: number;
|
|
@@ -2943,7 +3359,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2943
3359
|
};
|
|
2944
3360
|
UNSTABLE_defaultItemHeight: number;
|
|
2945
3361
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2946
|
-
orientation:
|
|
3362
|
+
orientation: "horizontal" | "vertical";
|
|
2947
3363
|
indexRef: React.MutableRefObject<number>;
|
|
2948
3364
|
nonInteractiveIds: string[];
|
|
2949
3365
|
isVirtualized: boolean;
|
|
@@ -2959,11 +3375,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2959
3375
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2960
3376
|
placement: import("@popperjs/core").Placement;
|
|
2961
3377
|
id: string;
|
|
2962
|
-
visibility:
|
|
2963
|
-
selectedIds:
|
|
3378
|
+
visibility: "hidden" | "visible";
|
|
3379
|
+
selectedIds: string[] | "all";
|
|
2964
3380
|
unselectedIds: string[];
|
|
2965
3381
|
cursorId: string;
|
|
2966
3382
|
columnCount: number;
|
|
3383
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3384
|
+
cursorIndexRef: {
|
|
3385
|
+
readonly current: number;
|
|
3386
|
+
};
|
|
2967
3387
|
UNSTABLE_virtual: {
|
|
2968
3388
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2969
3389
|
totalSize: number;
|
|
@@ -2973,7 +3393,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2973
3393
|
};
|
|
2974
3394
|
UNSTABLE_defaultItemHeight: number;
|
|
2975
3395
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
2976
|
-
orientation:
|
|
3396
|
+
orientation: "horizontal" | "vertical";
|
|
2977
3397
|
indexRef: React.MutableRefObject<number>;
|
|
2978
3398
|
nonInteractiveIds: string[];
|
|
2979
3399
|
isVirtualized: boolean;
|
|
@@ -2989,11 +3409,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
2989
3409
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
2990
3410
|
placement: import("@popperjs/core").Placement;
|
|
2991
3411
|
id: string;
|
|
2992
|
-
visibility:
|
|
2993
|
-
selectedIds:
|
|
3412
|
+
visibility: "hidden" | "visible";
|
|
3413
|
+
selectedIds: string[] | "all";
|
|
2994
3414
|
unselectedIds: string[];
|
|
2995
3415
|
cursorId: string;
|
|
2996
3416
|
columnCount: number;
|
|
3417
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3418
|
+
cursorIndexRef: {
|
|
3419
|
+
readonly current: number;
|
|
3420
|
+
};
|
|
2997
3421
|
UNSTABLE_virtual: {
|
|
2998
3422
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2999
3423
|
totalSize: number;
|
|
@@ -3003,7 +3427,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3003
3427
|
};
|
|
3004
3428
|
UNSTABLE_defaultItemHeight: number;
|
|
3005
3429
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3006
|
-
orientation:
|
|
3430
|
+
orientation: "horizontal" | "vertical";
|
|
3007
3431
|
indexRef: React.MutableRefObject<number>;
|
|
3008
3432
|
nonInteractiveIds: string[];
|
|
3009
3433
|
isVirtualized: boolean;
|
|
@@ -3018,11 +3442,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3018
3442
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3019
3443
|
placement: import("@popperjs/core").Placement;
|
|
3020
3444
|
id: string;
|
|
3021
|
-
visibility:
|
|
3022
|
-
selectedIds:
|
|
3445
|
+
visibility: "hidden" | "visible";
|
|
3446
|
+
selectedIds: string[] | "all";
|
|
3023
3447
|
unselectedIds: string[];
|
|
3024
3448
|
cursorId: string;
|
|
3025
3449
|
columnCount: number;
|
|
3450
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3451
|
+
cursorIndexRef: {
|
|
3452
|
+
readonly current: number;
|
|
3453
|
+
};
|
|
3026
3454
|
UNSTABLE_virtual: {
|
|
3027
3455
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3028
3456
|
totalSize: number;
|
|
@@ -3032,7 +3460,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3032
3460
|
};
|
|
3033
3461
|
UNSTABLE_defaultItemHeight: number;
|
|
3034
3462
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3035
|
-
orientation:
|
|
3463
|
+
orientation: "horizontal" | "vertical";
|
|
3036
3464
|
indexRef: React.MutableRefObject<number>;
|
|
3037
3465
|
nonInteractiveIds: string[];
|
|
3038
3466
|
isVirtualized: boolean;
|
|
@@ -3050,10 +3478,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3050
3478
|
}): void;
|
|
3051
3479
|
selectAll(): void;
|
|
3052
3480
|
unselectAll(): void;
|
|
3053
|
-
registerItem(data: {
|
|
3054
|
-
item: any;
|
|
3055
|
-
textValue: string;
|
|
3056
|
-
}): void;
|
|
3057
3481
|
goTo(data: {
|
|
3058
3482
|
id: string;
|
|
3059
3483
|
}): void;
|
|
@@ -3067,6 +3491,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3067
3491
|
goToLastOfRow(): void;
|
|
3068
3492
|
goToNextPage(): void;
|
|
3069
3493
|
goToPreviousPage(): void;
|
|
3494
|
+
registerItem(data: {
|
|
3495
|
+
item: any;
|
|
3496
|
+
textValue: string;
|
|
3497
|
+
}): void;
|
|
3070
3498
|
unregisterItem(data: {
|
|
3071
3499
|
id: string;
|
|
3072
3500
|
}): void;
|
|
@@ -3078,7 +3506,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3078
3506
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3079
3507
|
getId: (item: any) => string;
|
|
3080
3508
|
}> & {
|
|
3081
|
-
|
|
3509
|
+
Target: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3082
3510
|
state: {
|
|
3083
3511
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3084
3512
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3086,11 +3514,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3086
3514
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3087
3515
|
placement: import("@popperjs/core").Placement;
|
|
3088
3516
|
id: string;
|
|
3089
|
-
visibility:
|
|
3090
|
-
selectedIds:
|
|
3517
|
+
visibility: "hidden" | "visible";
|
|
3518
|
+
selectedIds: string[] | "all";
|
|
3091
3519
|
unselectedIds: string[];
|
|
3092
3520
|
cursorId: string;
|
|
3093
3521
|
columnCount: number;
|
|
3522
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3523
|
+
cursorIndexRef: {
|
|
3524
|
+
readonly current: number;
|
|
3525
|
+
};
|
|
3094
3526
|
UNSTABLE_virtual: {
|
|
3095
3527
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3096
3528
|
totalSize: number;
|
|
@@ -3100,7 +3532,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3100
3532
|
};
|
|
3101
3533
|
UNSTABLE_defaultItemHeight: number;
|
|
3102
3534
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3103
|
-
orientation:
|
|
3535
|
+
orientation: "horizontal" | "vertical";
|
|
3104
3536
|
indexRef: React.MutableRefObject<number>;
|
|
3105
3537
|
nonInteractiveIds: string[];
|
|
3106
3538
|
isVirtualized: boolean;
|
|
@@ -3118,10 +3550,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3118
3550
|
}): void;
|
|
3119
3551
|
selectAll(): void;
|
|
3120
3552
|
unselectAll(): void;
|
|
3121
|
-
registerItem(data: {
|
|
3122
|
-
item: any;
|
|
3123
|
-
textValue: string;
|
|
3124
|
-
}): void;
|
|
3125
3553
|
goTo(data: {
|
|
3126
3554
|
id: string;
|
|
3127
3555
|
}): void;
|
|
@@ -3135,6 +3563,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3135
3563
|
goToLastOfRow(): void;
|
|
3136
3564
|
goToNextPage(): void;
|
|
3137
3565
|
goToPreviousPage(): void;
|
|
3566
|
+
registerItem(data: {
|
|
3567
|
+
item: any;
|
|
3568
|
+
textValue: string;
|
|
3569
|
+
}): void;
|
|
3138
3570
|
unregisterItem(data: {
|
|
3139
3571
|
id: string;
|
|
3140
3572
|
}): void;
|
|
@@ -3146,7 +3578,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3146
3578
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3147
3579
|
getId: (item: any) => string;
|
|
3148
3580
|
}>;
|
|
3149
|
-
|
|
3581
|
+
Card: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuCard").MenuCardProps, {
|
|
3150
3582
|
state: {
|
|
3151
3583
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3152
3584
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3154,11 +3586,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3154
3586
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3155
3587
|
placement: import("@popperjs/core").Placement;
|
|
3156
3588
|
id: string;
|
|
3157
|
-
visibility:
|
|
3158
|
-
selectedIds:
|
|
3589
|
+
visibility: "hidden" | "visible";
|
|
3590
|
+
selectedIds: string[] | "all";
|
|
3159
3591
|
unselectedIds: string[];
|
|
3160
3592
|
cursorId: string;
|
|
3161
3593
|
columnCount: number;
|
|
3594
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3595
|
+
cursorIndexRef: {
|
|
3596
|
+
readonly current: number;
|
|
3597
|
+
};
|
|
3162
3598
|
UNSTABLE_virtual: {
|
|
3163
3599
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3164
3600
|
totalSize: number;
|
|
@@ -3168,7 +3604,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3168
3604
|
};
|
|
3169
3605
|
UNSTABLE_defaultItemHeight: number;
|
|
3170
3606
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3171
|
-
orientation:
|
|
3607
|
+
orientation: "horizontal" | "vertical";
|
|
3172
3608
|
indexRef: React.MutableRefObject<number>;
|
|
3173
3609
|
nonInteractiveIds: string[];
|
|
3174
3610
|
isVirtualized: boolean;
|
|
@@ -3186,10 +3622,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3186
3622
|
}): void;
|
|
3187
3623
|
selectAll(): void;
|
|
3188
3624
|
unselectAll(): void;
|
|
3189
|
-
registerItem(data: {
|
|
3190
|
-
item: any;
|
|
3191
|
-
textValue: string;
|
|
3192
|
-
}): void;
|
|
3193
3625
|
goTo(data: {
|
|
3194
3626
|
id: string;
|
|
3195
3627
|
}): void;
|
|
@@ -3203,6 +3635,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3203
3635
|
goToLastOfRow(): void;
|
|
3204
3636
|
goToNextPage(): void;
|
|
3205
3637
|
goToPreviousPage(): void;
|
|
3638
|
+
registerItem(data: {
|
|
3639
|
+
item: any;
|
|
3640
|
+
textValue: string;
|
|
3641
|
+
}): void;
|
|
3206
3642
|
unregisterItem(data: {
|
|
3207
3643
|
id: string;
|
|
3208
3644
|
}): void;
|
|
@@ -3214,7 +3650,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3214
3650
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3215
3651
|
getId: (item: any) => string;
|
|
3216
3652
|
}>;
|
|
3217
|
-
|
|
3653
|
+
List: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuList").MenuListProps<any>, {
|
|
3218
3654
|
state: {
|
|
3219
3655
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3220
3656
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3222,11 +3658,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3222
3658
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3223
3659
|
placement: import("@popperjs/core").Placement;
|
|
3224
3660
|
id: string;
|
|
3225
|
-
visibility:
|
|
3226
|
-
selectedIds:
|
|
3661
|
+
visibility: "hidden" | "visible";
|
|
3662
|
+
selectedIds: string[] | "all";
|
|
3227
3663
|
unselectedIds: string[];
|
|
3228
3664
|
cursorId: string;
|
|
3229
3665
|
columnCount: number;
|
|
3666
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3667
|
+
cursorIndexRef: {
|
|
3668
|
+
readonly current: number;
|
|
3669
|
+
};
|
|
3230
3670
|
UNSTABLE_virtual: {
|
|
3231
3671
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3232
3672
|
totalSize: number;
|
|
@@ -3236,7 +3676,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3236
3676
|
};
|
|
3237
3677
|
UNSTABLE_defaultItemHeight: number;
|
|
3238
3678
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3239
|
-
orientation:
|
|
3679
|
+
orientation: "horizontal" | "vertical";
|
|
3240
3680
|
indexRef: React.MutableRefObject<number>;
|
|
3241
3681
|
nonInteractiveIds: string[];
|
|
3242
3682
|
isVirtualized: boolean;
|
|
@@ -3254,10 +3694,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3254
3694
|
}): void;
|
|
3255
3695
|
selectAll(): void;
|
|
3256
3696
|
unselectAll(): void;
|
|
3257
|
-
registerItem(data: {
|
|
3258
|
-
item: any;
|
|
3259
|
-
textValue: string;
|
|
3260
|
-
}): void;
|
|
3261
3697
|
goTo(data: {
|
|
3262
3698
|
id: string;
|
|
3263
3699
|
}): void;
|
|
@@ -3271,6 +3707,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3271
3707
|
goToLastOfRow(): void;
|
|
3272
3708
|
goToNextPage(): void;
|
|
3273
3709
|
goToPreviousPage(): void;
|
|
3710
|
+
registerItem(data: {
|
|
3711
|
+
item: any;
|
|
3712
|
+
textValue: string;
|
|
3713
|
+
}): void;
|
|
3274
3714
|
unregisterItem(data: {
|
|
3275
3715
|
id: string;
|
|
3276
3716
|
}): void;
|
|
@@ -3281,15 +3721,8 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3281
3721
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
3282
3722
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3283
3723
|
getId: (item: any) => string;
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
|
-
Text: import("@emotion/styled").StyledComponent<{
|
|
3287
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
3288
|
-
as?: "symbol" | "object" | "s" | "big" | "link" | "small" | "sub" | "sup" | "circle" | "stop" | "path" | "style" | "map" | "filter" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "main" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "samp" | "slot" | "script" | "section" | "select" | "source" | "span" | "strong" | "summary" | "table" | "template" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
|
3289
|
-
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3290
|
-
};
|
|
3291
|
-
Divider: import("../../common").ElementComponent<"hr", unknown>;
|
|
3292
|
-
Target: import("../../common").ElementComponentM<import("../../common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3724
|
+
}>;
|
|
3725
|
+
Item: import("@workday/canvas-kit-react/common").ElementComponentM<"button", import("../../menu/lib/MenuItem").MenuItemProps, {
|
|
3293
3726
|
state: {
|
|
3294
3727
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3295
3728
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3297,11 +3730,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3297
3730
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3298
3731
|
placement: import("@popperjs/core").Placement;
|
|
3299
3732
|
id: string;
|
|
3300
|
-
visibility:
|
|
3301
|
-
selectedIds:
|
|
3733
|
+
visibility: "hidden" | "visible";
|
|
3734
|
+
selectedIds: string[] | "all";
|
|
3302
3735
|
unselectedIds: string[];
|
|
3303
3736
|
cursorId: string;
|
|
3304
3737
|
columnCount: number;
|
|
3738
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3739
|
+
cursorIndexRef: {
|
|
3740
|
+
readonly current: number;
|
|
3741
|
+
};
|
|
3305
3742
|
UNSTABLE_virtual: {
|
|
3306
3743
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3307
3744
|
totalSize: number;
|
|
@@ -3311,7 +3748,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3311
3748
|
};
|
|
3312
3749
|
UNSTABLE_defaultItemHeight: number;
|
|
3313
3750
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3314
|
-
orientation:
|
|
3751
|
+
orientation: "horizontal" | "vertical";
|
|
3315
3752
|
indexRef: React.MutableRefObject<number>;
|
|
3316
3753
|
nonInteractiveIds: string[];
|
|
3317
3754
|
isVirtualized: boolean;
|
|
@@ -3329,10 +3766,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3329
3766
|
}): void;
|
|
3330
3767
|
selectAll(): void;
|
|
3331
3768
|
unselectAll(): void;
|
|
3332
|
-
registerItem(data: {
|
|
3333
|
-
item: any;
|
|
3334
|
-
textValue: string;
|
|
3335
|
-
}): void;
|
|
3336
3769
|
goTo(data: {
|
|
3337
3770
|
id: string;
|
|
3338
3771
|
}): void;
|
|
@@ -3346,6 +3779,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3346
3779
|
goToLastOfRow(): void;
|
|
3347
3780
|
goToNextPage(): void;
|
|
3348
3781
|
goToPreviousPage(): void;
|
|
3782
|
+
registerItem(data: {
|
|
3783
|
+
item: any;
|
|
3784
|
+
textValue: string;
|
|
3785
|
+
}): void;
|
|
3349
3786
|
unregisterItem(data: {
|
|
3350
3787
|
id: string;
|
|
3351
3788
|
}): void;
|
|
@@ -3356,8 +3793,19 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3356
3793
|
selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
|
|
3357
3794
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3358
3795
|
getId: (item: any) => string;
|
|
3359
|
-
}
|
|
3360
|
-
|
|
3796
|
+
}> & {
|
|
3797
|
+
Icon: import("@emotion/styled").StyledComponent<import("../..").SystemIconProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "as" | keyof import("../..").SystemIconProps> & {
|
|
3798
|
+
ref?: React.Ref<HTMLSpanElement> | undefined;
|
|
3799
|
+
} & {
|
|
3800
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
3801
|
+
}, {}, {}>;
|
|
3802
|
+
Text: import("@emotion/styled").StyledComponent<{
|
|
3803
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
3804
|
+
as?: React.ElementType<any> | undefined;
|
|
3805
|
+
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3806
|
+
};
|
|
3807
|
+
Divider: import("@workday/canvas-kit-react/common").ElementComponent<"hr", unknown>;
|
|
3808
|
+
TargetContext: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"button", import("../..").SecondaryButtonProps>, import("../../menu/lib/MenuTarget").MenuTargetProps, {
|
|
3361
3809
|
state: {
|
|
3362
3810
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3363
3811
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3365,11 +3813,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3365
3813
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3366
3814
|
placement: import("@popperjs/core").Placement;
|
|
3367
3815
|
id: string;
|
|
3368
|
-
visibility:
|
|
3369
|
-
selectedIds:
|
|
3816
|
+
visibility: "hidden" | "visible";
|
|
3817
|
+
selectedIds: string[] | "all";
|
|
3370
3818
|
unselectedIds: string[];
|
|
3371
3819
|
cursorId: string;
|
|
3372
3820
|
columnCount: number;
|
|
3821
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3822
|
+
cursorIndexRef: {
|
|
3823
|
+
readonly current: number;
|
|
3824
|
+
};
|
|
3373
3825
|
UNSTABLE_virtual: {
|
|
3374
3826
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3375
3827
|
totalSize: number;
|
|
@@ -3379,7 +3831,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3379
3831
|
};
|
|
3380
3832
|
UNSTABLE_defaultItemHeight: number;
|
|
3381
3833
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3382
|
-
orientation:
|
|
3834
|
+
orientation: "horizontal" | "vertical";
|
|
3383
3835
|
indexRef: React.MutableRefObject<number>;
|
|
3384
3836
|
nonInteractiveIds: string[];
|
|
3385
3837
|
isVirtualized: boolean;
|
|
@@ -3397,10 +3849,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3397
3849
|
}): void;
|
|
3398
3850
|
selectAll(): void;
|
|
3399
3851
|
unselectAll(): void;
|
|
3400
|
-
registerItem(data: {
|
|
3401
|
-
item: any;
|
|
3402
|
-
textValue: string;
|
|
3403
|
-
}): void;
|
|
3404
3852
|
goTo(data: {
|
|
3405
3853
|
id: string;
|
|
3406
3854
|
}): void;
|
|
@@ -3414,6 +3862,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3414
3862
|
goToLastOfRow(): void;
|
|
3415
3863
|
goToNextPage(): void;
|
|
3416
3864
|
goToPreviousPage(): void;
|
|
3865
|
+
registerItem(data: {
|
|
3866
|
+
item: any;
|
|
3867
|
+
textValue: string;
|
|
3868
|
+
}): void;
|
|
3417
3869
|
unregisterItem(data: {
|
|
3418
3870
|
id: string;
|
|
3419
3871
|
}): void;
|
|
@@ -3425,7 +3877,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3425
3877
|
navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
|
|
3426
3878
|
getId: (item: any) => string;
|
|
3427
3879
|
}>;
|
|
3428
|
-
Popper: import("
|
|
3880
|
+
Popper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuPopper").MenuPopperProps, {
|
|
3429
3881
|
state: {
|
|
3430
3882
|
stackRef: React.RefObject<HTMLDivElement>;
|
|
3431
3883
|
targetRef: React.RefObject<HTMLButtonElement>;
|
|
@@ -3433,11 +3885,15 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3433
3885
|
returnFocusRef: React.RefObject<any> | undefined;
|
|
3434
3886
|
placement: import("@popperjs/core").Placement;
|
|
3435
3887
|
id: string;
|
|
3436
|
-
visibility:
|
|
3437
|
-
selectedIds:
|
|
3888
|
+
visibility: "hidden" | "visible";
|
|
3889
|
+
selectedIds: string[] | "all";
|
|
3438
3890
|
unselectedIds: string[];
|
|
3439
3891
|
cursorId: string;
|
|
3440
3892
|
columnCount: number;
|
|
3893
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3894
|
+
cursorIndexRef: {
|
|
3895
|
+
readonly current: number;
|
|
3896
|
+
};
|
|
3441
3897
|
UNSTABLE_virtual: {
|
|
3442
3898
|
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3443
3899
|
totalSize: number;
|
|
@@ -3447,7 +3903,7 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3447
3903
|
};
|
|
3448
3904
|
UNSTABLE_defaultItemHeight: number;
|
|
3449
3905
|
containerRef: React.RefObject<HTMLDivElement>;
|
|
3450
|
-
orientation:
|
|
3906
|
+
orientation: "horizontal" | "vertical";
|
|
3451
3907
|
indexRef: React.MutableRefObject<number>;
|
|
3452
3908
|
nonInteractiveIds: string[];
|
|
3453
3909
|
isVirtualized: boolean;
|
|
@@ -3465,10 +3921,6 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3465
3921
|
}): void;
|
|
3466
3922
|
selectAll(): void;
|
|
3467
3923
|
unselectAll(): void;
|
|
3468
|
-
registerItem(data: {
|
|
3469
|
-
item: any;
|
|
3470
|
-
textValue: string;
|
|
3471
|
-
}): void;
|
|
3472
3924
|
goTo(data: {
|
|
3473
3925
|
id: string;
|
|
3474
3926
|
}): void;
|
|
@@ -3482,6 +3934,10 @@ export declare const ActionBar: import("../../common").ComponentM<ActionBarProps
|
|
|
3482
3934
|
goToLastOfRow(): void;
|
|
3483
3935
|
goToNextPage(): void;
|
|
3484
3936
|
goToPreviousPage(): void;
|
|
3937
|
+
registerItem(data: {
|
|
3938
|
+
item: any;
|
|
3939
|
+
textValue: string;
|
|
3940
|
+
}): void;
|
|
3485
3941
|
unregisterItem(data: {
|
|
3486
3942
|
id: string;
|
|
3487
3943
|
}): void;
|