@workday/canvas-kit-react 13.0.0-alpha.944-next.0 → 13.0.0-alpha.950-next.0
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/collection/index.ts +3 -0
- package/collection/lib/focusOnCurrentCursor.ts +55 -0
- package/collection/lib/listItemRemove.ts +21 -0
- package/collection/lib/useListItemRemoveOnDeleteKey.tsx +40 -0
- package/collection/lib/useListItemRovingFocus.tsx +8 -34
- package/collection/lib/useListLoader.ts +2 -0
- package/collection/lib/useListResetCursorOnBlur.tsx +16 -2
- package/collection/lib/useOverflowListItemMeasure.tsx +6 -2
- package/collection/lib/useOverflowListMeasure.ts +1 -1
- package/collection/lib/useOverflowListModel.tsx +90 -51
- package/collection/lib/useOverflowListTarget.tsx +5 -1
- package/collection/lib/useSelectionListModel.tsx +10 -0
- package/combobox/lib/hooks/useComboboxInput.ts +7 -10
- package/dist/commonjs/action-bar/lib/ActionBar.d.ts +676 -0
- package/dist/commonjs/action-bar/lib/ActionBar.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarItem.d.ts +51 -0
- package/dist/commonjs/action-bar/lib/ActionBarItem.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts +51 -0
- package/dist/commonjs/action-bar/lib/ActionBarList.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts +56 -0
- package/dist/commonjs/action-bar/lib/ActionBarOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/action-bar/lib/useActionBarModel.d.ts +531 -0
- package/dist/commonjs/action-bar/lib/useActionBarModel.d.ts.map +1 -1
- package/dist/commonjs/avatar/lib/Avatar.js +21 -21
- package/dist/commonjs/badge/lib/CountBadge.js +3 -3
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts +759 -385
- package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +56 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts +51 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsItem.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.d.ts +28 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsList.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts +112 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +56 -0
- package/dist/commonjs/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +531 -0
- package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts.map +1 -1
- package/dist/commonjs/button/lib/BaseButton.js +21 -21
- package/dist/commonjs/button/lib/DeleteButton.js +1 -1
- package/dist/commonjs/button/lib/PrimaryButton.js +2 -2
- package/dist/commonjs/button/lib/SecondaryButton.js +2 -2
- package/dist/commonjs/button/lib/TertiaryButton.js +18 -18
- package/dist/commonjs/card/lib/Card.js +1 -1
- package/dist/commonjs/card/lib/CardBody.js +1 -1
- package/dist/commonjs/card/lib/CardHeading.js +1 -1
- package/dist/commonjs/checkbox/lib/CheckBackground.js +3 -3
- package/dist/commonjs/checkbox/lib/CheckboxCheck.js +5 -5
- package/dist/commonjs/checkbox/lib/CheckboxContainer.js +1 -1
- package/dist/commonjs/checkbox/lib/CheckboxInput.js +5 -5
- package/dist/commonjs/checkbox/lib/CheckboxRipple.js +1 -1
- package/dist/commonjs/collection/index.d.ts +3 -0
- package/dist/commonjs/collection/index.d.ts.map +1 -1
- package/dist/commonjs/collection/index.js +3 -0
- package/dist/commonjs/collection/lib/ListBox.d.ts +78 -0
- package/dist/commonjs/collection/lib/ListBox.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/ListBox.js +3 -3
- package/dist/commonjs/collection/lib/focusOnCurrentCursor.d.ts +3 -0
- package/dist/commonjs/collection/lib/focusOnCurrentCursor.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/focusOnCurrentCursor.js +45 -0
- package/dist/commonjs/collection/lib/listItemRemove.d.ts +3 -0
- package/dist/commonjs/collection/lib/listItemRemove.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/listItemRemove.js +19 -0
- package/dist/commonjs/collection/lib/useGridModel.d.ts +73 -0
- package/dist/commonjs/collection/lib/useGridModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemAllowChildStrings.d.ts +5 -0
- package/dist/commonjs/collection/lib/useListItemAllowChildStrings.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRegister.d.ts +5 -0
- package/dist/commonjs/collection/lib/useListItemRegister.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRemoveOnDeleteKey.d.ts +86 -0
- package/dist/commonjs/collection/lib/useListItemRemoveOnDeleteKey.d.ts.map +1 -0
- package/dist/commonjs/collection/lib/useListItemRemoveOnDeleteKey.js +40 -0
- package/dist/commonjs/collection/lib/useListItemRovingFocus.d.ts +1 -1
- package/dist/commonjs/collection/lib/useListItemRovingFocus.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListItemRovingFocus.js +6 -29
- package/dist/commonjs/collection/lib/useListItemSelect.d.ts +5 -0
- package/dist/commonjs/collection/lib/useListItemSelect.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListLoader.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListLoader.js +2 -0
- package/dist/commonjs/collection/lib/useListModel.d.ts +73 -0
- package/dist/commonjs/collection/lib/useListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.d.ts +5 -0
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useListResetCursorOnBlur.js +13 -1
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.d.ts +23 -0
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListItemMeasure.js +5 -2
- package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts +23 -0
- package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListMeasure.js +1 -1
- package/dist/commonjs/collection/lib/useOverflowListModel.d.ts +945 -1
- package/dist/commonjs/collection/lib/useOverflowListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListModel.js +73 -35
- package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts +23 -0
- package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useOverflowListTarget.js +4 -1
- package/dist/commonjs/collection/lib/useSelectionListModel.d.ts +94 -0
- package/dist/commonjs/collection/lib/useSelectionListModel.d.ts.map +1 -1
- package/dist/commonjs/collection/lib/useSelectionListModel.js +10 -0
- package/dist/commonjs/combobox/lib/Combobox.d.ts +113 -0
- package/dist/commonjs/combobox/lib/Combobox.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/ComboboxCard.d.ts +10 -0
- package/dist/commonjs/combobox/lib/ComboboxCard.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/ComboboxInput.d.ts +5 -0
- package/dist/commonjs/combobox/lib/ComboboxInput.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/ComboboxMenu.d.ts +25 -0
- package/dist/commonjs/combobox/lib/ComboboxMenu.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/ComboboxMenuItem.d.ts +5 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuItem.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/ComboboxMenuList.d.ts +10 -0
- package/dist/commonjs/combobox/lib/ComboboxMenuList.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/ComboboxMenuList.js +1 -1
- package/dist/commonjs/combobox/lib/ComboboxPopper.d.ts +5 -0
- package/dist/commonjs/combobox/lib/ComboboxPopper.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxInput.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxInput.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxInput.js +5 -9
- package/dist/commonjs/combobox/lib/hooks/useComboboxInputArbitrary.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxInputArbitrary.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxInputConstrained.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxInputConstrained.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxInputOpenWithArrowKeys.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxInputOpenWithArrowKeys.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxKeyboardTypeAhead.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxKeyboardTypeAhead.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxListKeyboardHandler.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxListKeyboardHandler.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxModel.d.ts +101 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxModel.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxMoveCursorToSelected.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxMoveCursorToSelected.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxResetCursorToSelected.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useComboboxResetCursorToSelected.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/hooks/useSetPopupWidth.d.ts +5 -0
- package/dist/commonjs/combobox/lib/hooks/useSetPopupWidth.d.ts.map +1 -1
- package/dist/commonjs/common/lib/AccessibleHide.js +1 -1
- package/dist/commonjs/common/lib/CanvasProvider.js +1 -1
- package/dist/commonjs/form-field/lib/FormFieldContainer.js +1 -1
- package/dist/commonjs/form-field/lib/FormFieldField.js +1 -1
- package/dist/commonjs/form-field/lib/FormFieldGroupLabel.js +5 -5
- package/dist/commonjs/form-field/lib/FormFieldGroupList.js +3 -3
- package/dist/commonjs/form-field/lib/FormFieldHint.js +3 -3
- package/dist/commonjs/form-field/lib/FormFieldLabel.js +6 -6
- package/dist/commonjs/form-field/lib/formFieldStencil.js +8 -8
- package/dist/commonjs/icon/lib/AccentIcon.js +2 -2
- package/dist/commonjs/icon/lib/AppletIcon.js +1 -1
- package/dist/commonjs/icon/lib/Graphic.js +2 -2
- package/dist/commonjs/icon/lib/Svg.js +2 -2
- package/dist/commonjs/icon/lib/SystemIcon.js +1 -1
- package/dist/commonjs/icon/lib/SystemIconCircle.js +1 -1
- package/dist/commonjs/loading-dots/lib/LoadingDots.js +2 -2
- package/dist/commonjs/menu/lib/Menu.d.ts +112 -0
- package/dist/commonjs/menu/lib/Menu.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuCard.d.ts +10 -0
- package/dist/commonjs/menu/lib/MenuCard.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuCard.js +1 -1
- package/dist/commonjs/menu/lib/MenuContextTarget.d.ts +15 -0
- package/dist/commonjs/menu/lib/MenuContextTarget.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuItem.d.ts +11 -1
- package/dist/commonjs/menu/lib/MenuItem.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuItem.js +1 -1
- package/dist/commonjs/menu/lib/MenuList.d.ts +10 -0
- package/dist/commonjs/menu/lib/MenuList.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuList.js +3 -3
- package/dist/commonjs/menu/lib/MenuOption.d.ts +10 -0
- package/dist/commonjs/menu/lib/MenuOption.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuOption.js +1 -1
- package/dist/commonjs/menu/lib/MenuPopper.d.ts +5 -0
- package/dist/commonjs/menu/lib/MenuPopper.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/MenuTarget.d.ts +25 -0
- package/dist/commonjs/menu/lib/MenuTarget.d.ts.map +1 -1
- package/dist/commonjs/menu/lib/useMenuModel.d.ts +87 -0
- package/dist/commonjs/menu/lib/useMenuModel.d.ts.map +1 -1
- package/dist/commonjs/modal/lib/ModalBody.js +1 -1
- package/dist/commonjs/modal/lib/ModalCard.js +1 -1
- package/dist/commonjs/modal/lib/ModalHeading.js +1 -1
- package/dist/commonjs/modal/lib/ModalOverflowOverlay.js +1 -1
- package/dist/commonjs/modal/lib/ModalOverlay.js +2 -2
- package/dist/commonjs/popup/lib/PopupBody.js +1 -1
- package/dist/commonjs/popup/lib/PopupCard.js +2 -2
- package/dist/commonjs/popup/lib/PopupCloseIcon.js +1 -1
- package/dist/commonjs/popup/lib/PopupHeading.js +1 -1
- package/dist/commonjs/select/lib/Select.d.ts +118 -0
- package/dist/commonjs/select/lib/Select.d.ts.map +1 -1
- package/dist/commonjs/select/lib/SelectCard.d.ts +10 -0
- package/dist/commonjs/select/lib/SelectCard.d.ts.map +1 -1
- package/dist/commonjs/select/lib/SelectCard.js +1 -1
- package/dist/commonjs/select/lib/SelectInput.d.ts +5 -0
- package/dist/commonjs/select/lib/SelectInput.d.ts.map +1 -1
- package/dist/commonjs/select/lib/SelectInput.js +3 -3
- package/dist/commonjs/select/lib/SelectItem.d.ts +10 -0
- package/dist/commonjs/select/lib/SelectItem.d.ts.map +1 -1
- package/dist/commonjs/select/lib/hooks/useSelectCard.d.ts +5 -0
- package/dist/commonjs/select/lib/hooks/useSelectCard.d.ts.map +1 -1
- package/dist/commonjs/select/lib/hooks/useSelectInput.d.ts +5 -0
- package/dist/commonjs/select/lib/hooks/useSelectInput.d.ts.map +1 -1
- package/dist/commonjs/select/lib/hooks/useSelectModel.d.ts +93 -0
- package/dist/commonjs/select/lib/hooks/useSelectModel.d.ts.map +1 -1
- package/dist/commonjs/switch/lib/Switch.js +7 -7
- package/dist/commonjs/table/lib/Table.js +1 -1
- package/dist/commonjs/table/lib/TableBody.js +1 -1
- package/dist/commonjs/table/lib/TableCaption.js +1 -1
- package/dist/commonjs/table/lib/TableCell.js +1 -1
- package/dist/commonjs/table/lib/TableFooter.js +1 -1
- package/dist/commonjs/table/lib/TableHead.js +1 -1
- package/dist/commonjs/table/lib/TableHeader.js +1 -1
- package/dist/commonjs/table/lib/TableRow.js +1 -1
- package/dist/commonjs/tabs/lib/Tabs.d.ts +891 -44
- package/dist/commonjs/tabs/lib/Tabs.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsItem.d.ts +57 -1
- package/dist/commonjs/tabs/lib/TabsItem.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsList.d.ts +56 -0
- package/dist/commonjs/tabs/lib/TabsList.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsMenuPopper.d.ts +5 -0
- package/dist/commonjs/tabs/lib/TabsMenuPopper.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsOverflowButton.d.ts +56 -0
- package/dist/commonjs/tabs/lib/TabsOverflowButton.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsPanel.d.ts +56 -0
- package/dist/commonjs/tabs/lib/TabsPanel.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/TabsPanels.d.ts +28 -0
- package/dist/commonjs/tabs/lib/TabsPanels.d.ts.map +1 -1
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts +867 -74
- package/dist/commonjs/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/commonjs/text/lib/LabelText.js +6 -6
- package/dist/commonjs/text/lib/Text.js +16 -16
- package/dist/commonjs/text/lib/TypeLevelComponents.js +4 -4
- package/dist/commonjs/text-area/lib/TextArea.js +5 -5
- package/dist/commonjs/text-input/lib/InputGroup.js +6 -6
- package/dist/commonjs/text-input/lib/TextInput.js +5 -5
- package/dist/commonjs/toast/lib/Toast.js +1 -1
- package/dist/commonjs/toast/lib/ToastBody.js +1 -1
- package/dist/commonjs/toast/lib/ToastCloseIcon.js +1 -1
- package/dist/commonjs/toast/lib/ToastIcon.js +1 -1
- package/dist/commonjs/toast/lib/ToastMessage.js +1 -1
- package/dist/es6/action-bar/lib/ActionBar.d.ts +676 -0
- package/dist/es6/action-bar/lib/ActionBar.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarItem.d.ts +51 -0
- package/dist/es6/action-bar/lib/ActionBarItem.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarList.d.ts +51 -0
- package/dist/es6/action-bar/lib/ActionBarList.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts +56 -0
- package/dist/es6/action-bar/lib/ActionBarOverflowButton.d.ts.map +1 -1
- package/dist/es6/action-bar/lib/useActionBarModel.d.ts +531 -0
- package/dist/es6/action-bar/lib/useActionBarModel.d.ts.map +1 -1
- package/dist/es6/avatar/lib/Avatar.js +21 -21
- package/dist/es6/badge/lib/CountBadge.js +3 -3
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts +759 -385
- package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts +56 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsCurrentItem.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts +51 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsItem.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.d.ts +28 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsList.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts +112 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts +56 -0
- package/dist/es6/breadcrumbs/lib/BreadcrumbsOverflowButton.d.ts.map +1 -1
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +531 -0
- package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts.map +1 -1
- package/dist/es6/button/lib/BaseButton.js +21 -21
- package/dist/es6/button/lib/DeleteButton.js +1 -1
- package/dist/es6/button/lib/PrimaryButton.js +2 -2
- package/dist/es6/button/lib/SecondaryButton.js +2 -2
- package/dist/es6/button/lib/TertiaryButton.js +18 -18
- package/dist/es6/card/lib/Card.js +1 -1
- package/dist/es6/card/lib/CardBody.js +1 -1
- package/dist/es6/card/lib/CardHeading.js +1 -1
- package/dist/es6/checkbox/lib/CheckBackground.js +3 -3
- package/dist/es6/checkbox/lib/CheckboxCheck.js +5 -5
- package/dist/es6/checkbox/lib/CheckboxContainer.js +1 -1
- package/dist/es6/checkbox/lib/CheckboxInput.js +5 -5
- package/dist/es6/checkbox/lib/CheckboxRipple.js +1 -1
- package/dist/es6/collection/index.d.ts +3 -0
- package/dist/es6/collection/index.d.ts.map +1 -1
- package/dist/es6/collection/index.js +3 -0
- package/dist/es6/collection/lib/ListBox.d.ts +78 -0
- package/dist/es6/collection/lib/ListBox.d.ts.map +1 -1
- package/dist/es6/collection/lib/ListBox.js +3 -3
- package/dist/es6/collection/lib/focusOnCurrentCursor.d.ts +3 -0
- package/dist/es6/collection/lib/focusOnCurrentCursor.d.ts.map +1 -0
- package/dist/es6/collection/lib/focusOnCurrentCursor.js +41 -0
- package/dist/es6/collection/lib/listItemRemove.d.ts +3 -0
- package/dist/es6/collection/lib/listItemRemove.d.ts.map +1 -0
- package/dist/es6/collection/lib/listItemRemove.js +15 -0
- package/dist/es6/collection/lib/useGridModel.d.ts +73 -0
- package/dist/es6/collection/lib/useGridModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemAllowChildStrings.d.ts +5 -0
- package/dist/es6/collection/lib/useListItemAllowChildStrings.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRegister.d.ts +5 -0
- package/dist/es6/collection/lib/useListItemRegister.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRemoveOnDeleteKey.d.ts +86 -0
- package/dist/es6/collection/lib/useListItemRemoveOnDeleteKey.d.ts.map +1 -0
- package/dist/es6/collection/lib/useListItemRemoveOnDeleteKey.js +37 -0
- package/dist/es6/collection/lib/useListItemRovingFocus.d.ts +1 -1
- package/dist/es6/collection/lib/useListItemRovingFocus.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListItemRovingFocus.js +6 -29
- package/dist/es6/collection/lib/useListItemSelect.d.ts +5 -0
- package/dist/es6/collection/lib/useListItemSelect.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListLoader.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListLoader.js +2 -0
- package/dist/es6/collection/lib/useListModel.d.ts +73 -0
- package/dist/es6/collection/lib/useListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListResetCursorOnBlur.d.ts +5 -0
- package/dist/es6/collection/lib/useListResetCursorOnBlur.d.ts.map +1 -1
- package/dist/es6/collection/lib/useListResetCursorOnBlur.js +14 -2
- package/dist/es6/collection/lib/useOverflowListItemMeasure.d.ts +23 -0
- package/dist/es6/collection/lib/useOverflowListItemMeasure.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListItemMeasure.js +5 -2
- package/dist/es6/collection/lib/useOverflowListMeasure.d.ts +23 -0
- package/dist/es6/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListMeasure.js +1 -1
- package/dist/es6/collection/lib/useOverflowListModel.d.ts +945 -1
- package/dist/es6/collection/lib/useOverflowListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListModel.js +73 -35
- package/dist/es6/collection/lib/useOverflowListTarget.d.ts +23 -0
- package/dist/es6/collection/lib/useOverflowListTarget.d.ts.map +1 -1
- package/dist/es6/collection/lib/useOverflowListTarget.js +4 -1
- package/dist/es6/collection/lib/useSelectionListModel.d.ts +94 -0
- package/dist/es6/collection/lib/useSelectionListModel.d.ts.map +1 -1
- package/dist/es6/collection/lib/useSelectionListModel.js +10 -0
- package/dist/es6/combobox/lib/Combobox.d.ts +113 -0
- package/dist/es6/combobox/lib/Combobox.d.ts.map +1 -1
- package/dist/es6/combobox/lib/ComboboxCard.d.ts +10 -0
- package/dist/es6/combobox/lib/ComboboxCard.d.ts.map +1 -1
- package/dist/es6/combobox/lib/ComboboxInput.d.ts +5 -0
- package/dist/es6/combobox/lib/ComboboxInput.d.ts.map +1 -1
- package/dist/es6/combobox/lib/ComboboxMenu.d.ts +25 -0
- package/dist/es6/combobox/lib/ComboboxMenu.d.ts.map +1 -1
- package/dist/es6/combobox/lib/ComboboxMenuItem.d.ts +5 -0
- package/dist/es6/combobox/lib/ComboboxMenuItem.d.ts.map +1 -1
- package/dist/es6/combobox/lib/ComboboxMenuList.d.ts +10 -0
- package/dist/es6/combobox/lib/ComboboxMenuList.d.ts.map +1 -1
- package/dist/es6/combobox/lib/ComboboxMenuList.js +1 -1
- package/dist/es6/combobox/lib/ComboboxPopper.d.ts +5 -0
- package/dist/es6/combobox/lib/ComboboxPopper.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxInput.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useComboboxInput.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxInput.js +5 -9
- package/dist/es6/combobox/lib/hooks/useComboboxInputArbitrary.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useComboboxInputArbitrary.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxInputConstrained.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useComboboxInputConstrained.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxInputOpenWithArrowKeys.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useComboboxInputOpenWithArrowKeys.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxKeyboardTypeAhead.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useComboboxKeyboardTypeAhead.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxListKeyboardHandler.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useComboboxListKeyboardHandler.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxModel.d.ts +101 -0
- package/dist/es6/combobox/lib/hooks/useComboboxModel.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxMoveCursorToSelected.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useComboboxMoveCursorToSelected.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxResetCursorToSelected.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useComboboxResetCursorToSelected.d.ts.map +1 -1
- package/dist/es6/combobox/lib/hooks/useSetPopupWidth.d.ts +5 -0
- package/dist/es6/combobox/lib/hooks/useSetPopupWidth.d.ts.map +1 -1
- package/dist/es6/common/lib/AccessibleHide.js +1 -1
- package/dist/es6/common/lib/CanvasProvider.js +1 -1
- package/dist/es6/form-field/lib/FormFieldContainer.js +1 -1
- package/dist/es6/form-field/lib/FormFieldField.js +1 -1
- package/dist/es6/form-field/lib/FormFieldGroupLabel.js +5 -5
- package/dist/es6/form-field/lib/FormFieldGroupList.js +3 -3
- package/dist/es6/form-field/lib/FormFieldHint.js +3 -3
- package/dist/es6/form-field/lib/FormFieldLabel.js +6 -6
- package/dist/es6/form-field/lib/formFieldStencil.js +8 -8
- package/dist/es6/icon/lib/AccentIcon.js +2 -2
- package/dist/es6/icon/lib/AppletIcon.js +1 -1
- package/dist/es6/icon/lib/Graphic.js +2 -2
- package/dist/es6/icon/lib/Svg.js +2 -2
- package/dist/es6/icon/lib/SystemIcon.js +1 -1
- package/dist/es6/icon/lib/SystemIconCircle.js +1 -1
- package/dist/es6/loading-dots/lib/LoadingDots.js +2 -2
- package/dist/es6/menu/lib/Menu.d.ts +112 -0
- package/dist/es6/menu/lib/Menu.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuCard.d.ts +10 -0
- package/dist/es6/menu/lib/MenuCard.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuCard.js +1 -1
- package/dist/es6/menu/lib/MenuContextTarget.d.ts +15 -0
- package/dist/es6/menu/lib/MenuContextTarget.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuItem.d.ts +11 -1
- package/dist/es6/menu/lib/MenuItem.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuItem.js +1 -1
- package/dist/es6/menu/lib/MenuList.d.ts +10 -0
- package/dist/es6/menu/lib/MenuList.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuList.js +3 -3
- package/dist/es6/menu/lib/MenuOption.d.ts +10 -0
- package/dist/es6/menu/lib/MenuOption.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuOption.js +1 -1
- package/dist/es6/menu/lib/MenuPopper.d.ts +5 -0
- package/dist/es6/menu/lib/MenuPopper.d.ts.map +1 -1
- package/dist/es6/menu/lib/MenuTarget.d.ts +25 -0
- package/dist/es6/menu/lib/MenuTarget.d.ts.map +1 -1
- package/dist/es6/menu/lib/useMenuModel.d.ts +87 -0
- package/dist/es6/menu/lib/useMenuModel.d.ts.map +1 -1
- package/dist/es6/modal/lib/ModalBody.js +1 -1
- package/dist/es6/modal/lib/ModalCard.js +1 -1
- package/dist/es6/modal/lib/ModalHeading.js +1 -1
- package/dist/es6/modal/lib/ModalOverflowOverlay.js +1 -1
- package/dist/es6/modal/lib/ModalOverlay.js +2 -2
- package/dist/es6/popup/lib/PopupBody.js +1 -1
- package/dist/es6/popup/lib/PopupCard.js +2 -2
- package/dist/es6/popup/lib/PopupCloseIcon.js +1 -1
- package/dist/es6/popup/lib/PopupHeading.js +1 -1
- package/dist/es6/select/lib/Select.d.ts +118 -0
- package/dist/es6/select/lib/Select.d.ts.map +1 -1
- package/dist/es6/select/lib/SelectCard.d.ts +10 -0
- package/dist/es6/select/lib/SelectCard.d.ts.map +1 -1
- package/dist/es6/select/lib/SelectCard.js +1 -1
- package/dist/es6/select/lib/SelectInput.d.ts +5 -0
- package/dist/es6/select/lib/SelectInput.d.ts.map +1 -1
- package/dist/es6/select/lib/SelectInput.js +3 -3
- package/dist/es6/select/lib/SelectItem.d.ts +10 -0
- package/dist/es6/select/lib/SelectItem.d.ts.map +1 -1
- package/dist/es6/select/lib/hooks/useSelectCard.d.ts +5 -0
- package/dist/es6/select/lib/hooks/useSelectCard.d.ts.map +1 -1
- package/dist/es6/select/lib/hooks/useSelectInput.d.ts +5 -0
- package/dist/es6/select/lib/hooks/useSelectInput.d.ts.map +1 -1
- package/dist/es6/select/lib/hooks/useSelectModel.d.ts +93 -0
- package/dist/es6/select/lib/hooks/useSelectModel.d.ts.map +1 -1
- package/dist/es6/switch/lib/Switch.js +7 -7
- package/dist/es6/table/lib/Table.js +1 -1
- package/dist/es6/table/lib/TableBody.js +1 -1
- package/dist/es6/table/lib/TableCaption.js +1 -1
- package/dist/es6/table/lib/TableCell.js +1 -1
- package/dist/es6/table/lib/TableFooter.js +1 -1
- package/dist/es6/table/lib/TableHead.js +1 -1
- package/dist/es6/table/lib/TableHeader.js +1 -1
- package/dist/es6/table/lib/TableRow.js +1 -1
- package/dist/es6/tabs/lib/Tabs.d.ts +891 -44
- package/dist/es6/tabs/lib/Tabs.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsItem.d.ts +57 -1
- package/dist/es6/tabs/lib/TabsItem.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsList.d.ts +56 -0
- package/dist/es6/tabs/lib/TabsList.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsMenuPopper.d.ts +5 -0
- package/dist/es6/tabs/lib/TabsMenuPopper.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsOverflowButton.d.ts +56 -0
- package/dist/es6/tabs/lib/TabsOverflowButton.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsPanel.d.ts +56 -0
- package/dist/es6/tabs/lib/TabsPanel.d.ts.map +1 -1
- package/dist/es6/tabs/lib/TabsPanels.d.ts +28 -0
- package/dist/es6/tabs/lib/TabsPanels.d.ts.map +1 -1
- package/dist/es6/tabs/lib/useTabsModel.d.ts +867 -74
- package/dist/es6/tabs/lib/useTabsModel.d.ts.map +1 -1
- package/dist/es6/text/lib/LabelText.js +6 -6
- package/dist/es6/text/lib/Text.js +16 -16
- package/dist/es6/text/lib/TypeLevelComponents.js +4 -4
- package/dist/es6/text-area/lib/TextArea.js +5 -5
- package/dist/es6/text-input/lib/InputGroup.js +6 -6
- package/dist/es6/text-input/lib/TextInput.js +5 -5
- package/dist/es6/toast/lib/Toast.js +1 -1
- package/dist/es6/toast/lib/ToastBody.js +1 -1
- package/dist/es6/toast/lib/ToastCloseIcon.js +1 -1
- package/dist/es6/toast/lib/ToastIcon.js +1 -1
- package/dist/es6/toast/lib/ToastMessage.js +1 -1
- package/package.json +4 -4
|
@@ -284,6 +284,42 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
284
284
|
items: import("../..").Item<any>[];
|
|
285
285
|
mode: "multiple" | "single";
|
|
286
286
|
}) => void) | undefined;
|
|
287
|
+
onRemove?: ((data: {
|
|
288
|
+
id: string;
|
|
289
|
+
nextId?: string | undefined;
|
|
290
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
291
|
+
}, prevState: {
|
|
292
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
293
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
294
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
295
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
296
|
+
placement: import("@popperjs/core").Placement;
|
|
297
|
+
id: string;
|
|
298
|
+
visibility: "hidden" | "visible";
|
|
299
|
+
selectedIds: string[] | "all";
|
|
300
|
+
unselectedIds: string[];
|
|
301
|
+
cursorId: string;
|
|
302
|
+
columnCount: number;
|
|
303
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
304
|
+
cursorIndexRef: {
|
|
305
|
+
readonly current: number;
|
|
306
|
+
};
|
|
307
|
+
UNSTABLE_virtual: {
|
|
308
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
309
|
+
totalSize: number;
|
|
310
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
311
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
312
|
+
measure: () => void;
|
|
313
|
+
};
|
|
314
|
+
UNSTABLE_defaultItemHeight: number;
|
|
315
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
316
|
+
orientation: "horizontal" | "vertical";
|
|
317
|
+
indexRef: React.MutableRefObject<number>;
|
|
318
|
+
nonInteractiveIds: string[];
|
|
319
|
+
isVirtualized: boolean;
|
|
320
|
+
items: import("../..").Item<any>[];
|
|
321
|
+
mode: "multiple" | "single";
|
|
322
|
+
}) => void) | undefined;
|
|
287
323
|
onGoTo?: ((data: {
|
|
288
324
|
id: string;
|
|
289
325
|
}, prevState: {
|
|
@@ -970,6 +1006,42 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
970
1006
|
items: import("../..").Item<any>[];
|
|
971
1007
|
mode: "multiple" | "single";
|
|
972
1008
|
}) => boolean) | undefined;
|
|
1009
|
+
shouldRemove?: ((data: {
|
|
1010
|
+
id: string;
|
|
1011
|
+
nextId?: string | undefined;
|
|
1012
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
1013
|
+
}, state: {
|
|
1014
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
1015
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
1016
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
1017
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
1018
|
+
placement: import("@popperjs/core").Placement;
|
|
1019
|
+
id: string;
|
|
1020
|
+
visibility: "hidden" | "visible";
|
|
1021
|
+
selectedIds: string[] | "all";
|
|
1022
|
+
unselectedIds: string[];
|
|
1023
|
+
cursorId: string;
|
|
1024
|
+
columnCount: number;
|
|
1025
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1026
|
+
cursorIndexRef: {
|
|
1027
|
+
readonly current: number;
|
|
1028
|
+
};
|
|
1029
|
+
UNSTABLE_virtual: {
|
|
1030
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1031
|
+
totalSize: number;
|
|
1032
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1033
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1034
|
+
measure: () => void;
|
|
1035
|
+
};
|
|
1036
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1037
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1038
|
+
orientation: "horizontal" | "vertical";
|
|
1039
|
+
indexRef: React.MutableRefObject<number>;
|
|
1040
|
+
nonInteractiveIds: string[];
|
|
1041
|
+
isVirtualized: boolean;
|
|
1042
|
+
items: import("../..").Item<any>[];
|
|
1043
|
+
mode: "multiple" | "single";
|
|
1044
|
+
}) => boolean) | undefined;
|
|
973
1045
|
shouldGoTo?: ((data: {
|
|
974
1046
|
id: string;
|
|
975
1047
|
}, state: {
|
|
@@ -1454,7 +1526,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1454
1526
|
panels: import("../..").Item<any>[];
|
|
1455
1527
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1456
1528
|
hiddenIds: string[];
|
|
1529
|
+
itemSizeCache: Record<string, number>;
|
|
1457
1530
|
itemWidthCache: Record<string, number>;
|
|
1531
|
+
containerSize: number;
|
|
1458
1532
|
containerWidth: number;
|
|
1459
1533
|
containerGap: number;
|
|
1460
1534
|
overflowTargetWidth: number;
|
|
@@ -1489,7 +1563,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1489
1563
|
panels: import("../..").Item<any>[];
|
|
1490
1564
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1491
1565
|
hiddenIds: string[];
|
|
1566
|
+
itemSizeCache: Record<string, number>;
|
|
1492
1567
|
itemWidthCache: Record<string, number>;
|
|
1568
|
+
containerSize: number;
|
|
1493
1569
|
containerWidth: number;
|
|
1494
1570
|
containerGap: number;
|
|
1495
1571
|
overflowTargetWidth: number;
|
|
@@ -1524,7 +1600,47 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1524
1600
|
panels: import("../..").Item<any>[];
|
|
1525
1601
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1526
1602
|
hiddenIds: string[];
|
|
1603
|
+
itemSizeCache: Record<string, number>;
|
|
1604
|
+
itemWidthCache: Record<string, number>;
|
|
1605
|
+
containerSize: number;
|
|
1606
|
+
containerWidth: number;
|
|
1607
|
+
containerGap: number;
|
|
1608
|
+
overflowTargetWidth: number;
|
|
1609
|
+
selectedIds: string[] | "all";
|
|
1610
|
+
unselectedIds: string[];
|
|
1611
|
+
cursorId: string;
|
|
1612
|
+
columnCount: number;
|
|
1613
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1614
|
+
cursorIndexRef: {
|
|
1615
|
+
readonly current: number;
|
|
1616
|
+
};
|
|
1617
|
+
UNSTABLE_virtual: {
|
|
1618
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1619
|
+
totalSize: number;
|
|
1620
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1621
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1622
|
+
measure: () => void;
|
|
1623
|
+
};
|
|
1624
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1625
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1626
|
+
id: string;
|
|
1627
|
+
indexRef: React.MutableRefObject<number>;
|
|
1628
|
+
nonInteractiveIds: string[];
|
|
1629
|
+
isVirtualized: boolean;
|
|
1630
|
+
items: import("../..").Item<any>[];
|
|
1631
|
+
}) => void) | undefined;
|
|
1632
|
+
onSetContainerSize?: ((data: {
|
|
1633
|
+
width?: number | undefined;
|
|
1634
|
+
height?: number | undefined;
|
|
1635
|
+
}, prevState: {
|
|
1636
|
+
getId: (item: any) => string;
|
|
1637
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1638
|
+
panels: import("../..").Item<any>[];
|
|
1639
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
1640
|
+
hiddenIds: string[];
|
|
1641
|
+
itemSizeCache: Record<string, number>;
|
|
1527
1642
|
itemWidthCache: Record<string, number>;
|
|
1643
|
+
containerSize: number;
|
|
1528
1644
|
containerWidth: number;
|
|
1529
1645
|
containerGap: number;
|
|
1530
1646
|
overflowTargetWidth: number;
|
|
@@ -1559,7 +1675,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1559
1675
|
panels: import("../..").Item<any>[];
|
|
1560
1676
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1561
1677
|
hiddenIds: string[];
|
|
1678
|
+
itemSizeCache: Record<string, number>;
|
|
1562
1679
|
itemWidthCache: Record<string, number>;
|
|
1680
|
+
containerSize: number;
|
|
1563
1681
|
containerWidth: number;
|
|
1564
1682
|
containerGap: number;
|
|
1565
1683
|
overflowTargetWidth: number;
|
|
@@ -1594,7 +1712,47 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1594
1712
|
panels: import("../..").Item<any>[];
|
|
1595
1713
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1596
1714
|
hiddenIds: string[];
|
|
1715
|
+
itemSizeCache: Record<string, number>;
|
|
1597
1716
|
itemWidthCache: Record<string, number>;
|
|
1717
|
+
containerSize: number;
|
|
1718
|
+
containerWidth: number;
|
|
1719
|
+
containerGap: number;
|
|
1720
|
+
overflowTargetWidth: number;
|
|
1721
|
+
selectedIds: string[] | "all";
|
|
1722
|
+
unselectedIds: string[];
|
|
1723
|
+
cursorId: string;
|
|
1724
|
+
columnCount: number;
|
|
1725
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1726
|
+
cursorIndexRef: {
|
|
1727
|
+
readonly current: number;
|
|
1728
|
+
};
|
|
1729
|
+
UNSTABLE_virtual: {
|
|
1730
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1731
|
+
totalSize: number;
|
|
1732
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1733
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1734
|
+
measure: () => void;
|
|
1735
|
+
};
|
|
1736
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1737
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1738
|
+
id: string;
|
|
1739
|
+
indexRef: React.MutableRefObject<number>;
|
|
1740
|
+
nonInteractiveIds: string[];
|
|
1741
|
+
isVirtualized: boolean;
|
|
1742
|
+
items: import("../..").Item<any>[];
|
|
1743
|
+
}) => void) | undefined;
|
|
1744
|
+
onSetOverflowTargetSize?: ((data: {
|
|
1745
|
+
width: number;
|
|
1746
|
+
height: number;
|
|
1747
|
+
}, prevState: {
|
|
1748
|
+
getId: (item: any) => string;
|
|
1749
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1750
|
+
panels: import("../..").Item<any>[];
|
|
1751
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
1752
|
+
hiddenIds: string[];
|
|
1753
|
+
itemSizeCache: Record<string, number>;
|
|
1754
|
+
itemWidthCache: Record<string, number>;
|
|
1755
|
+
containerSize: number;
|
|
1598
1756
|
containerWidth: number;
|
|
1599
1757
|
containerGap: number;
|
|
1600
1758
|
overflowTargetWidth: number;
|
|
@@ -1629,7 +1787,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1629
1787
|
panels: import("../..").Item<any>[];
|
|
1630
1788
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1631
1789
|
hiddenIds: string[];
|
|
1790
|
+
itemSizeCache: Record<string, number>;
|
|
1632
1791
|
itemWidthCache: Record<string, number>;
|
|
1792
|
+
containerSize: number;
|
|
1633
1793
|
containerWidth: number;
|
|
1634
1794
|
containerGap: number;
|
|
1635
1795
|
overflowTargetWidth: number;
|
|
@@ -1665,7 +1825,85 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1665
1825
|
panels: import("../..").Item<any>[];
|
|
1666
1826
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1667
1827
|
hiddenIds: string[];
|
|
1828
|
+
itemSizeCache: Record<string, number>;
|
|
1829
|
+
itemWidthCache: Record<string, number>;
|
|
1830
|
+
containerSize: number;
|
|
1831
|
+
containerWidth: number;
|
|
1832
|
+
containerGap: number;
|
|
1833
|
+
overflowTargetWidth: number;
|
|
1834
|
+
selectedIds: string[] | "all";
|
|
1835
|
+
unselectedIds: string[];
|
|
1836
|
+
cursorId: string;
|
|
1837
|
+
columnCount: number;
|
|
1838
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1839
|
+
cursorIndexRef: {
|
|
1840
|
+
readonly current: number;
|
|
1841
|
+
};
|
|
1842
|
+
UNSTABLE_virtual: {
|
|
1843
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1844
|
+
totalSize: number;
|
|
1845
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1846
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1847
|
+
measure: () => void;
|
|
1848
|
+
};
|
|
1849
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1850
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1851
|
+
id: string;
|
|
1852
|
+
indexRef: React.MutableRefObject<number>;
|
|
1853
|
+
nonInteractiveIds: string[];
|
|
1854
|
+
isVirtualized: boolean;
|
|
1855
|
+
items: import("../..").Item<any>[];
|
|
1856
|
+
}) => void) | undefined;
|
|
1857
|
+
onAddItemSize?: ((data: {
|
|
1858
|
+
id: string;
|
|
1859
|
+
width: number;
|
|
1860
|
+
height: number;
|
|
1861
|
+
}, prevState: {
|
|
1862
|
+
getId: (item: any) => string;
|
|
1863
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1864
|
+
panels: import("../..").Item<any>[];
|
|
1865
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
1866
|
+
hiddenIds: string[];
|
|
1867
|
+
itemSizeCache: Record<string, number>;
|
|
1868
|
+
itemWidthCache: Record<string, number>;
|
|
1869
|
+
containerSize: number;
|
|
1870
|
+
containerWidth: number;
|
|
1871
|
+
containerGap: number;
|
|
1872
|
+
overflowTargetWidth: number;
|
|
1873
|
+
selectedIds: string[] | "all";
|
|
1874
|
+
unselectedIds: string[];
|
|
1875
|
+
cursorId: string;
|
|
1876
|
+
columnCount: number;
|
|
1877
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1878
|
+
cursorIndexRef: {
|
|
1879
|
+
readonly current: number;
|
|
1880
|
+
};
|
|
1881
|
+
UNSTABLE_virtual: {
|
|
1882
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1883
|
+
totalSize: number;
|
|
1884
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1885
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1886
|
+
measure: () => void;
|
|
1887
|
+
};
|
|
1888
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1889
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1890
|
+
id: string;
|
|
1891
|
+
indexRef: React.MutableRefObject<number>;
|
|
1892
|
+
nonInteractiveIds: string[];
|
|
1893
|
+
isVirtualized: boolean;
|
|
1894
|
+
items: import("../..").Item<any>[];
|
|
1895
|
+
}) => void) | undefined;
|
|
1896
|
+
onRemoveItemSize?: ((data: {
|
|
1897
|
+
id: string;
|
|
1898
|
+
}, prevState: {
|
|
1899
|
+
getId: (item: any) => string;
|
|
1900
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1901
|
+
panels: import("../..").Item<any>[];
|
|
1902
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
1903
|
+
hiddenIds: string[];
|
|
1904
|
+
itemSizeCache: Record<string, number>;
|
|
1668
1905
|
itemWidthCache: Record<string, number>;
|
|
1906
|
+
containerSize: number;
|
|
1669
1907
|
containerWidth: number;
|
|
1670
1908
|
containerGap: number;
|
|
1671
1909
|
overflowTargetWidth: number;
|
|
@@ -1700,7 +1938,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1700
1938
|
panels: import("../..").Item<any>[];
|
|
1701
1939
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1702
1940
|
hiddenIds: string[];
|
|
1941
|
+
itemSizeCache: Record<string, number>;
|
|
1703
1942
|
itemWidthCache: Record<string, number>;
|
|
1943
|
+
containerSize: number;
|
|
1704
1944
|
containerWidth: number;
|
|
1705
1945
|
containerGap: number;
|
|
1706
1946
|
overflowTargetWidth: number;
|
|
@@ -1735,7 +1975,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1735
1975
|
panels: import("../..").Item<any>[];
|
|
1736
1976
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1737
1977
|
hiddenIds: string[];
|
|
1978
|
+
itemSizeCache: Record<string, number>;
|
|
1738
1979
|
itemWidthCache: Record<string, number>;
|
|
1980
|
+
containerSize: number;
|
|
1739
1981
|
containerWidth: number;
|
|
1740
1982
|
containerGap: number;
|
|
1741
1983
|
overflowTargetWidth: number;
|
|
@@ -1770,7 +2012,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1770
2012
|
panels: import("../..").Item<any>[];
|
|
1771
2013
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1772
2014
|
hiddenIds: string[];
|
|
2015
|
+
itemSizeCache: Record<string, number>;
|
|
1773
2016
|
itemWidthCache: Record<string, number>;
|
|
2017
|
+
containerSize: number;
|
|
1774
2018
|
containerWidth: number;
|
|
1775
2019
|
containerGap: number;
|
|
1776
2020
|
overflowTargetWidth: number;
|
|
@@ -1803,7 +2047,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1803
2047
|
panels: import("../..").Item<any>[];
|
|
1804
2048
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1805
2049
|
hiddenIds: string[];
|
|
2050
|
+
itemSizeCache: Record<string, number>;
|
|
1806
2051
|
itemWidthCache: Record<string, number>;
|
|
2052
|
+
containerSize: number;
|
|
1807
2053
|
containerWidth: number;
|
|
1808
2054
|
containerGap: number;
|
|
1809
2055
|
overflowTargetWidth: number;
|
|
@@ -1836,7 +2082,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1836
2082
|
panels: import("../..").Item<any>[];
|
|
1837
2083
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1838
2084
|
hiddenIds: string[];
|
|
2085
|
+
itemSizeCache: Record<string, number>;
|
|
1839
2086
|
itemWidthCache: Record<string, number>;
|
|
2087
|
+
containerSize: number;
|
|
1840
2088
|
containerWidth: number;
|
|
1841
2089
|
containerGap: number;
|
|
1842
2090
|
overflowTargetWidth: number;
|
|
@@ -1869,7 +2117,48 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1869
2117
|
panels: import("../..").Item<any>[];
|
|
1870
2118
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1871
2119
|
hiddenIds: string[];
|
|
2120
|
+
itemSizeCache: Record<string, number>;
|
|
1872
2121
|
itemWidthCache: Record<string, number>;
|
|
2122
|
+
containerSize: number;
|
|
2123
|
+
containerWidth: number;
|
|
2124
|
+
containerGap: number;
|
|
2125
|
+
overflowTargetWidth: number;
|
|
2126
|
+
selectedIds: string[] | "all";
|
|
2127
|
+
unselectedIds: string[];
|
|
2128
|
+
cursorId: string;
|
|
2129
|
+
columnCount: number;
|
|
2130
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2131
|
+
cursorIndexRef: {
|
|
2132
|
+
readonly current: number;
|
|
2133
|
+
};
|
|
2134
|
+
UNSTABLE_virtual: {
|
|
2135
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2136
|
+
totalSize: number;
|
|
2137
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
2138
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
2139
|
+
measure: () => void;
|
|
2140
|
+
};
|
|
2141
|
+
UNSTABLE_defaultItemHeight: number;
|
|
2142
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2143
|
+
id: string;
|
|
2144
|
+
indexRef: React.MutableRefObject<number>;
|
|
2145
|
+
nonInteractiveIds: string[];
|
|
2146
|
+
isVirtualized: boolean;
|
|
2147
|
+
items: import("../..").Item<any>[];
|
|
2148
|
+
}) => void) | undefined;
|
|
2149
|
+
onRemove?: ((data: {
|
|
2150
|
+
id: string;
|
|
2151
|
+
nextId?: string | undefined;
|
|
2152
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2153
|
+
}, prevState: {
|
|
2154
|
+
getId: (item: any) => string;
|
|
2155
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2156
|
+
panels: import("../..").Item<any>[];
|
|
2157
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
2158
|
+
hiddenIds: string[];
|
|
2159
|
+
itemSizeCache: Record<string, number>;
|
|
2160
|
+
itemWidthCache: Record<string, number>;
|
|
2161
|
+
containerSize: number;
|
|
1873
2162
|
containerWidth: number;
|
|
1874
2163
|
containerGap: number;
|
|
1875
2164
|
overflowTargetWidth: number;
|
|
@@ -1904,7 +2193,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1904
2193
|
panels: import("../..").Item<any>[];
|
|
1905
2194
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1906
2195
|
hiddenIds: string[];
|
|
2196
|
+
itemSizeCache: Record<string, number>;
|
|
1907
2197
|
itemWidthCache: Record<string, number>;
|
|
2198
|
+
containerSize: number;
|
|
1908
2199
|
containerWidth: number;
|
|
1909
2200
|
containerGap: number;
|
|
1910
2201
|
overflowTargetWidth: number;
|
|
@@ -1937,7 +2228,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1937
2228
|
panels: import("../..").Item<any>[];
|
|
1938
2229
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1939
2230
|
hiddenIds: string[];
|
|
2231
|
+
itemSizeCache: Record<string, number>;
|
|
1940
2232
|
itemWidthCache: Record<string, number>;
|
|
2233
|
+
containerSize: number;
|
|
1941
2234
|
containerWidth: number;
|
|
1942
2235
|
containerGap: number;
|
|
1943
2236
|
overflowTargetWidth: number;
|
|
@@ -1970,7 +2263,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
1970
2263
|
panels: import("../..").Item<any>[];
|
|
1971
2264
|
panelIndexRef: React.MutableRefObject<number>;
|
|
1972
2265
|
hiddenIds: string[];
|
|
2266
|
+
itemSizeCache: Record<string, number>;
|
|
1973
2267
|
itemWidthCache: Record<string, number>;
|
|
2268
|
+
containerSize: number;
|
|
1974
2269
|
containerWidth: number;
|
|
1975
2270
|
containerGap: number;
|
|
1976
2271
|
overflowTargetWidth: number;
|
|
@@ -2003,7 +2298,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2003
2298
|
panels: import("../..").Item<any>[];
|
|
2004
2299
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2005
2300
|
hiddenIds: string[];
|
|
2301
|
+
itemSizeCache: Record<string, number>;
|
|
2006
2302
|
itemWidthCache: Record<string, number>;
|
|
2303
|
+
containerSize: number;
|
|
2007
2304
|
containerWidth: number;
|
|
2008
2305
|
containerGap: number;
|
|
2009
2306
|
overflowTargetWidth: number;
|
|
@@ -2036,7 +2333,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2036
2333
|
panels: import("../..").Item<any>[];
|
|
2037
2334
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2038
2335
|
hiddenIds: string[];
|
|
2336
|
+
itemSizeCache: Record<string, number>;
|
|
2039
2337
|
itemWidthCache: Record<string, number>;
|
|
2338
|
+
containerSize: number;
|
|
2040
2339
|
containerWidth: number;
|
|
2041
2340
|
containerGap: number;
|
|
2042
2341
|
overflowTargetWidth: number;
|
|
@@ -2069,7 +2368,184 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2069
2368
|
panels: import("../..").Item<any>[];
|
|
2070
2369
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2071
2370
|
hiddenIds: string[];
|
|
2371
|
+
itemSizeCache: Record<string, number>;
|
|
2372
|
+
itemWidthCache: Record<string, number>;
|
|
2373
|
+
containerSize: number;
|
|
2374
|
+
containerWidth: number;
|
|
2375
|
+
containerGap: number;
|
|
2376
|
+
overflowTargetWidth: number;
|
|
2377
|
+
selectedIds: string[] | "all";
|
|
2378
|
+
unselectedIds: string[];
|
|
2379
|
+
cursorId: string;
|
|
2380
|
+
columnCount: number;
|
|
2381
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2382
|
+
cursorIndexRef: {
|
|
2383
|
+
readonly current: number;
|
|
2384
|
+
};
|
|
2385
|
+
UNSTABLE_virtual: {
|
|
2386
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2387
|
+
totalSize: number;
|
|
2388
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
2389
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
2390
|
+
measure: () => void;
|
|
2391
|
+
};
|
|
2392
|
+
UNSTABLE_defaultItemHeight: number;
|
|
2393
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2394
|
+
id: string;
|
|
2395
|
+
indexRef: React.MutableRefObject<number>;
|
|
2396
|
+
nonInteractiveIds: string[];
|
|
2397
|
+
isVirtualized: boolean;
|
|
2398
|
+
items: import("../..").Item<any>[];
|
|
2399
|
+
}) => void) | undefined;
|
|
2400
|
+
onGoToLast?: ((data: undefined, prevState: {
|
|
2401
|
+
getId: (item: any) => string;
|
|
2402
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2403
|
+
panels: import("../..").Item<any>[];
|
|
2404
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
2405
|
+
hiddenIds: string[];
|
|
2406
|
+
itemSizeCache: Record<string, number>;
|
|
2407
|
+
itemWidthCache: Record<string, number>;
|
|
2408
|
+
containerSize: number;
|
|
2409
|
+
containerWidth: number;
|
|
2410
|
+
containerGap: number;
|
|
2411
|
+
overflowTargetWidth: number;
|
|
2412
|
+
selectedIds: string[] | "all";
|
|
2413
|
+
unselectedIds: string[];
|
|
2414
|
+
cursorId: string;
|
|
2415
|
+
columnCount: number;
|
|
2416
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2417
|
+
cursorIndexRef: {
|
|
2418
|
+
readonly current: number;
|
|
2419
|
+
};
|
|
2420
|
+
UNSTABLE_virtual: {
|
|
2421
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2422
|
+
totalSize: number;
|
|
2423
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
2424
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
2425
|
+
measure: () => void;
|
|
2426
|
+
};
|
|
2427
|
+
UNSTABLE_defaultItemHeight: number;
|
|
2428
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2429
|
+
id: string;
|
|
2430
|
+
indexRef: React.MutableRefObject<number>;
|
|
2431
|
+
nonInteractiveIds: string[];
|
|
2432
|
+
isVirtualized: boolean;
|
|
2433
|
+
items: import("../..").Item<any>[];
|
|
2434
|
+
}) => void) | undefined;
|
|
2435
|
+
onGoToFirstOfRow?: ((data: undefined, prevState: {
|
|
2436
|
+
getId: (item: any) => string;
|
|
2437
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2438
|
+
panels: import("../..").Item<any>[];
|
|
2439
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
2440
|
+
hiddenIds: string[];
|
|
2441
|
+
itemSizeCache: Record<string, number>;
|
|
2442
|
+
itemWidthCache: Record<string, number>;
|
|
2443
|
+
containerSize: number;
|
|
2444
|
+
containerWidth: number;
|
|
2445
|
+
containerGap: number;
|
|
2446
|
+
overflowTargetWidth: number;
|
|
2447
|
+
selectedIds: string[] | "all";
|
|
2448
|
+
unselectedIds: string[];
|
|
2449
|
+
cursorId: string;
|
|
2450
|
+
columnCount: number;
|
|
2451
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2452
|
+
cursorIndexRef: {
|
|
2453
|
+
readonly current: number;
|
|
2454
|
+
};
|
|
2455
|
+
UNSTABLE_virtual: {
|
|
2456
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2457
|
+
totalSize: number;
|
|
2458
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
2459
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
2460
|
+
measure: () => void;
|
|
2461
|
+
};
|
|
2462
|
+
UNSTABLE_defaultItemHeight: number;
|
|
2463
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2464
|
+
id: string;
|
|
2465
|
+
indexRef: React.MutableRefObject<number>;
|
|
2466
|
+
nonInteractiveIds: string[];
|
|
2467
|
+
isVirtualized: boolean;
|
|
2468
|
+
items: import("../..").Item<any>[];
|
|
2469
|
+
}) => void) | undefined;
|
|
2470
|
+
onGoToLastOfRow?: ((data: undefined, prevState: {
|
|
2471
|
+
getId: (item: any) => string;
|
|
2472
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2473
|
+
panels: import("../..").Item<any>[];
|
|
2474
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
2475
|
+
hiddenIds: string[];
|
|
2476
|
+
itemSizeCache: Record<string, number>;
|
|
2477
|
+
itemWidthCache: Record<string, number>;
|
|
2478
|
+
containerSize: number;
|
|
2479
|
+
containerWidth: number;
|
|
2480
|
+
containerGap: number;
|
|
2481
|
+
overflowTargetWidth: number;
|
|
2482
|
+
selectedIds: string[] | "all";
|
|
2483
|
+
unselectedIds: string[];
|
|
2484
|
+
cursorId: string;
|
|
2485
|
+
columnCount: number;
|
|
2486
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2487
|
+
cursorIndexRef: {
|
|
2488
|
+
readonly current: number;
|
|
2489
|
+
};
|
|
2490
|
+
UNSTABLE_virtual: {
|
|
2491
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2492
|
+
totalSize: number;
|
|
2493
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
2494
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
2495
|
+
measure: () => void;
|
|
2496
|
+
};
|
|
2497
|
+
UNSTABLE_defaultItemHeight: number;
|
|
2498
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2499
|
+
id: string;
|
|
2500
|
+
indexRef: React.MutableRefObject<number>;
|
|
2501
|
+
nonInteractiveIds: string[];
|
|
2502
|
+
isVirtualized: boolean;
|
|
2503
|
+
items: import("../..").Item<any>[];
|
|
2504
|
+
}) => void) | undefined;
|
|
2505
|
+
onGoToNextPage?: ((data: undefined, prevState: {
|
|
2506
|
+
getId: (item: any) => string;
|
|
2507
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2508
|
+
panels: import("../..").Item<any>[];
|
|
2509
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
2510
|
+
hiddenIds: string[];
|
|
2511
|
+
itemSizeCache: Record<string, number>;
|
|
2512
|
+
itemWidthCache: Record<string, number>;
|
|
2513
|
+
containerSize: number;
|
|
2514
|
+
containerWidth: number;
|
|
2515
|
+
containerGap: number;
|
|
2516
|
+
overflowTargetWidth: number;
|
|
2517
|
+
selectedIds: string[] | "all";
|
|
2518
|
+
unselectedIds: string[];
|
|
2519
|
+
cursorId: string;
|
|
2520
|
+
columnCount: number;
|
|
2521
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
2522
|
+
cursorIndexRef: {
|
|
2523
|
+
readonly current: number;
|
|
2524
|
+
};
|
|
2525
|
+
UNSTABLE_virtual: {
|
|
2526
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
2527
|
+
totalSize: number;
|
|
2528
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
2529
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
2530
|
+
measure: () => void;
|
|
2531
|
+
};
|
|
2532
|
+
UNSTABLE_defaultItemHeight: number;
|
|
2533
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2534
|
+
id: string;
|
|
2535
|
+
indexRef: React.MutableRefObject<number>;
|
|
2536
|
+
nonInteractiveIds: string[];
|
|
2537
|
+
isVirtualized: boolean;
|
|
2538
|
+
items: import("../..").Item<any>[];
|
|
2539
|
+
}) => void) | undefined;
|
|
2540
|
+
onGoToPreviousPage?: ((data: undefined, prevState: {
|
|
2541
|
+
getId: (item: any) => string;
|
|
2542
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2543
|
+
panels: import("../..").Item<any>[];
|
|
2544
|
+
panelIndexRef: React.MutableRefObject<number>;
|
|
2545
|
+
hiddenIds: string[];
|
|
2546
|
+
itemSizeCache: Record<string, number>;
|
|
2072
2547
|
itemWidthCache: Record<string, number>;
|
|
2548
|
+
containerSize: number;
|
|
2073
2549
|
containerWidth: number;
|
|
2074
2550
|
containerGap: number;
|
|
2075
2551
|
overflowTargetWidth: number;
|
|
@@ -2096,13 +2572,18 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2096
2572
|
isVirtualized: boolean;
|
|
2097
2573
|
items: import("../..").Item<any>[];
|
|
2098
2574
|
}) => void) | undefined;
|
|
2099
|
-
|
|
2575
|
+
onRegisterItem?: ((data: {
|
|
2576
|
+
item: any;
|
|
2577
|
+
textValue: string;
|
|
2578
|
+
}, prevState: {
|
|
2100
2579
|
getId: (item: any) => string;
|
|
2101
2580
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2102
2581
|
panels: import("../..").Item<any>[];
|
|
2103
2582
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2104
2583
|
hiddenIds: string[];
|
|
2584
|
+
itemSizeCache: Record<string, number>;
|
|
2105
2585
|
itemWidthCache: Record<string, number>;
|
|
2586
|
+
containerSize: number;
|
|
2106
2587
|
containerWidth: number;
|
|
2107
2588
|
containerGap: number;
|
|
2108
2589
|
overflowTargetWidth: number;
|
|
@@ -2129,13 +2610,17 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2129
2610
|
isVirtualized: boolean;
|
|
2130
2611
|
items: import("../..").Item<any>[];
|
|
2131
2612
|
}) => void) | undefined;
|
|
2132
|
-
|
|
2613
|
+
onUnregisterItem?: ((data: {
|
|
2614
|
+
id: string;
|
|
2615
|
+
}, prevState: {
|
|
2133
2616
|
getId: (item: any) => string;
|
|
2134
2617
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2135
2618
|
panels: import("../..").Item<any>[];
|
|
2136
2619
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2137
2620
|
hiddenIds: string[];
|
|
2621
|
+
itemSizeCache: Record<string, number>;
|
|
2138
2622
|
itemWidthCache: Record<string, number>;
|
|
2623
|
+
containerSize: number;
|
|
2139
2624
|
containerWidth: number;
|
|
2140
2625
|
containerGap: number;
|
|
2141
2626
|
overflowTargetWidth: number;
|
|
@@ -2162,13 +2647,17 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2162
2647
|
isVirtualized: boolean;
|
|
2163
2648
|
items: import("../..").Item<any>[];
|
|
2164
2649
|
}) => void) | undefined;
|
|
2165
|
-
|
|
2650
|
+
onUpdateItemHeight?: ((data: {
|
|
2651
|
+
value: number;
|
|
2652
|
+
}, prevState: {
|
|
2166
2653
|
getId: (item: any) => string;
|
|
2167
2654
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2168
2655
|
panels: import("../..").Item<any>[];
|
|
2169
2656
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2170
2657
|
hiddenIds: string[];
|
|
2658
|
+
itemSizeCache: Record<string, number>;
|
|
2171
2659
|
itemWidthCache: Record<string, number>;
|
|
2660
|
+
containerSize: number;
|
|
2172
2661
|
containerWidth: number;
|
|
2173
2662
|
containerGap: number;
|
|
2174
2663
|
overflowTargetWidth: number;
|
|
@@ -2195,13 +2684,19 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2195
2684
|
isVirtualized: boolean;
|
|
2196
2685
|
items: import("../..").Item<any>[];
|
|
2197
2686
|
}) => void) | undefined;
|
|
2198
|
-
|
|
2687
|
+
} & {
|
|
2688
|
+
shouldRegisterPanel?: ((data: {
|
|
2689
|
+
item: any;
|
|
2690
|
+
textValue: string;
|
|
2691
|
+
}, state: {
|
|
2199
2692
|
getId: (item: any) => string;
|
|
2200
2693
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2201
2694
|
panels: import("../..").Item<any>[];
|
|
2202
2695
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2203
2696
|
hiddenIds: string[];
|
|
2697
|
+
itemSizeCache: Record<string, number>;
|
|
2204
2698
|
itemWidthCache: Record<string, number>;
|
|
2699
|
+
containerSize: number;
|
|
2205
2700
|
containerWidth: number;
|
|
2206
2701
|
containerGap: number;
|
|
2207
2702
|
overflowTargetWidth: number;
|
|
@@ -2227,14 +2722,18 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2227
2722
|
nonInteractiveIds: string[];
|
|
2228
2723
|
isVirtualized: boolean;
|
|
2229
2724
|
items: import("../..").Item<any>[];
|
|
2230
|
-
}) =>
|
|
2231
|
-
|
|
2725
|
+
}) => boolean) | undefined;
|
|
2726
|
+
shouldUnregisterPanel?: ((data: {
|
|
2727
|
+
id: string;
|
|
2728
|
+
}, state: {
|
|
2232
2729
|
getId: (item: any) => string;
|
|
2233
2730
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2234
2731
|
panels: import("../..").Item<any>[];
|
|
2235
2732
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2236
2733
|
hiddenIds: string[];
|
|
2734
|
+
itemSizeCache: Record<string, number>;
|
|
2237
2735
|
itemWidthCache: Record<string, number>;
|
|
2736
|
+
containerSize: number;
|
|
2238
2737
|
containerWidth: number;
|
|
2239
2738
|
containerGap: number;
|
|
2240
2739
|
overflowTargetWidth: number;
|
|
@@ -2260,17 +2759,18 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2260
2759
|
nonInteractiveIds: string[];
|
|
2261
2760
|
isVirtualized: boolean;
|
|
2262
2761
|
items: import("../..").Item<any>[];
|
|
2263
|
-
}) =>
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
}, prevState: {
|
|
2762
|
+
}) => boolean) | undefined;
|
|
2763
|
+
shouldSelect?: ((data: {
|
|
2764
|
+
id: string;
|
|
2765
|
+
}, state: {
|
|
2268
2766
|
getId: (item: any) => string;
|
|
2269
2767
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2270
2768
|
panels: import("../..").Item<any>[];
|
|
2271
2769
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2272
2770
|
hiddenIds: string[];
|
|
2771
|
+
itemSizeCache: Record<string, number>;
|
|
2273
2772
|
itemWidthCache: Record<string, number>;
|
|
2773
|
+
containerSize: number;
|
|
2274
2774
|
containerWidth: number;
|
|
2275
2775
|
containerGap: number;
|
|
2276
2776
|
overflowTargetWidth: number;
|
|
@@ -2296,16 +2796,19 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2296
2796
|
nonInteractiveIds: string[];
|
|
2297
2797
|
isVirtualized: boolean;
|
|
2298
2798
|
items: import("../..").Item<any>[];
|
|
2299
|
-
}) =>
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2799
|
+
}) => boolean) | undefined;
|
|
2800
|
+
shouldSetContainerSize?: ((data: {
|
|
2801
|
+
width?: number | undefined;
|
|
2802
|
+
height?: number | undefined;
|
|
2803
|
+
}, state: {
|
|
2303
2804
|
getId: (item: any) => string;
|
|
2304
2805
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2305
2806
|
panels: import("../..").Item<any>[];
|
|
2306
2807
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2307
2808
|
hiddenIds: string[];
|
|
2809
|
+
itemSizeCache: Record<string, number>;
|
|
2308
2810
|
itemWidthCache: Record<string, number>;
|
|
2811
|
+
containerSize: number;
|
|
2309
2812
|
containerWidth: number;
|
|
2310
2813
|
containerGap: number;
|
|
2311
2814
|
overflowTargetWidth: number;
|
|
@@ -2331,16 +2834,18 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2331
2834
|
nonInteractiveIds: string[];
|
|
2332
2835
|
isVirtualized: boolean;
|
|
2333
2836
|
items: import("../..").Item<any>[];
|
|
2334
|
-
}) =>
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
},
|
|
2837
|
+
}) => boolean) | undefined;
|
|
2838
|
+
shouldSetContainerWidth?: ((data: {
|
|
2839
|
+
width?: number | undefined;
|
|
2840
|
+
}, state: {
|
|
2338
2841
|
getId: (item: any) => string;
|
|
2339
2842
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2340
2843
|
panels: import("../..").Item<any>[];
|
|
2341
2844
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2342
2845
|
hiddenIds: string[];
|
|
2846
|
+
itemSizeCache: Record<string, number>;
|
|
2343
2847
|
itemWidthCache: Record<string, number>;
|
|
2848
|
+
containerSize: number;
|
|
2344
2849
|
containerWidth: number;
|
|
2345
2850
|
containerGap: number;
|
|
2346
2851
|
overflowTargetWidth: number;
|
|
@@ -2366,18 +2871,18 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2366
2871
|
nonInteractiveIds: string[];
|
|
2367
2872
|
isVirtualized: boolean;
|
|
2368
2873
|
items: import("../..").Item<any>[];
|
|
2369
|
-
}) =>
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
item: any;
|
|
2373
|
-
textValue: string;
|
|
2874
|
+
}) => boolean) | undefined;
|
|
2875
|
+
shouldSetContainerGap?: ((data: {
|
|
2876
|
+
size: number;
|
|
2374
2877
|
}, state: {
|
|
2375
2878
|
getId: (item: any) => string;
|
|
2376
2879
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2377
2880
|
panels: import("../..").Item<any>[];
|
|
2378
2881
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2379
2882
|
hiddenIds: string[];
|
|
2883
|
+
itemSizeCache: Record<string, number>;
|
|
2380
2884
|
itemWidthCache: Record<string, number>;
|
|
2885
|
+
containerSize: number;
|
|
2381
2886
|
containerWidth: number;
|
|
2382
2887
|
containerGap: number;
|
|
2383
2888
|
overflowTargetWidth: number;
|
|
@@ -2404,15 +2909,18 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2404
2909
|
isVirtualized: boolean;
|
|
2405
2910
|
items: import("../..").Item<any>[];
|
|
2406
2911
|
}) => boolean) | undefined;
|
|
2407
|
-
|
|
2408
|
-
|
|
2912
|
+
shouldSetOverflowTargetSize?: ((data: {
|
|
2913
|
+
width: number;
|
|
2914
|
+
height: number;
|
|
2409
2915
|
}, state: {
|
|
2410
2916
|
getId: (item: any) => string;
|
|
2411
2917
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2412
2918
|
panels: import("../..").Item<any>[];
|
|
2413
2919
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2414
2920
|
hiddenIds: string[];
|
|
2921
|
+
itemSizeCache: Record<string, number>;
|
|
2415
2922
|
itemWidthCache: Record<string, number>;
|
|
2923
|
+
containerSize: number;
|
|
2416
2924
|
containerWidth: number;
|
|
2417
2925
|
containerGap: number;
|
|
2418
2926
|
overflowTargetWidth: number;
|
|
@@ -2439,15 +2947,17 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2439
2947
|
isVirtualized: boolean;
|
|
2440
2948
|
items: import("../..").Item<any>[];
|
|
2441
2949
|
}) => boolean) | undefined;
|
|
2442
|
-
|
|
2443
|
-
|
|
2950
|
+
shouldSetOverflowTargetWidth?: ((data: {
|
|
2951
|
+
width: number;
|
|
2444
2952
|
}, state: {
|
|
2445
2953
|
getId: (item: any) => string;
|
|
2446
2954
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2447
2955
|
panels: import("../..").Item<any>[];
|
|
2448
2956
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2449
2957
|
hiddenIds: string[];
|
|
2958
|
+
itemSizeCache: Record<string, number>;
|
|
2450
2959
|
itemWidthCache: Record<string, number>;
|
|
2960
|
+
containerSize: number;
|
|
2451
2961
|
containerWidth: number;
|
|
2452
2962
|
containerGap: number;
|
|
2453
2963
|
overflowTargetWidth: number;
|
|
@@ -2474,15 +2984,18 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2474
2984
|
isVirtualized: boolean;
|
|
2475
2985
|
items: import("../..").Item<any>[];
|
|
2476
2986
|
}) => boolean) | undefined;
|
|
2477
|
-
|
|
2478
|
-
|
|
2987
|
+
shouldAddItemWidth?: ((data: {
|
|
2988
|
+
id: string;
|
|
2989
|
+
width: number;
|
|
2479
2990
|
}, state: {
|
|
2480
2991
|
getId: (item: any) => string;
|
|
2481
2992
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2482
2993
|
panels: import("../..").Item<any>[];
|
|
2483
2994
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2484
2995
|
hiddenIds: string[];
|
|
2996
|
+
itemSizeCache: Record<string, number>;
|
|
2485
2997
|
itemWidthCache: Record<string, number>;
|
|
2998
|
+
containerSize: number;
|
|
2486
2999
|
containerWidth: number;
|
|
2487
3000
|
containerGap: number;
|
|
2488
3001
|
overflowTargetWidth: number;
|
|
@@ -2509,15 +3022,19 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2509
3022
|
isVirtualized: boolean;
|
|
2510
3023
|
items: import("../..").Item<any>[];
|
|
2511
3024
|
}) => boolean) | undefined;
|
|
2512
|
-
|
|
2513
|
-
|
|
3025
|
+
shouldAddItemSize?: ((data: {
|
|
3026
|
+
id: string;
|
|
3027
|
+
width: number;
|
|
3028
|
+
height: number;
|
|
2514
3029
|
}, state: {
|
|
2515
3030
|
getId: (item: any) => string;
|
|
2516
3031
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2517
3032
|
panels: import("../..").Item<any>[];
|
|
2518
3033
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2519
3034
|
hiddenIds: string[];
|
|
3035
|
+
itemSizeCache: Record<string, number>;
|
|
2520
3036
|
itemWidthCache: Record<string, number>;
|
|
3037
|
+
containerSize: number;
|
|
2521
3038
|
containerWidth: number;
|
|
2522
3039
|
containerGap: number;
|
|
2523
3040
|
overflowTargetWidth: number;
|
|
@@ -2544,15 +3061,17 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2544
3061
|
isVirtualized: boolean;
|
|
2545
3062
|
items: import("../..").Item<any>[];
|
|
2546
3063
|
}) => boolean) | undefined;
|
|
2547
|
-
|
|
2548
|
-
|
|
3064
|
+
shouldRemoveItemSize?: ((data: {
|
|
3065
|
+
id: string;
|
|
2549
3066
|
}, state: {
|
|
2550
3067
|
getId: (item: any) => string;
|
|
2551
3068
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2552
3069
|
panels: import("../..").Item<any>[];
|
|
2553
3070
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2554
3071
|
hiddenIds: string[];
|
|
3072
|
+
itemSizeCache: Record<string, number>;
|
|
2555
3073
|
itemWidthCache: Record<string, number>;
|
|
3074
|
+
containerSize: number;
|
|
2556
3075
|
containerWidth: number;
|
|
2557
3076
|
containerGap: number;
|
|
2558
3077
|
overflowTargetWidth: number;
|
|
@@ -2579,16 +3098,17 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2579
3098
|
isVirtualized: boolean;
|
|
2580
3099
|
items: import("../..").Item<any>[];
|
|
2581
3100
|
}) => boolean) | undefined;
|
|
2582
|
-
|
|
3101
|
+
shouldRemoveItemWidth?: ((data: {
|
|
2583
3102
|
id: string;
|
|
2584
|
-
width: number;
|
|
2585
3103
|
}, state: {
|
|
2586
3104
|
getId: (item: any) => string;
|
|
2587
3105
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2588
3106
|
panels: import("../..").Item<any>[];
|
|
2589
3107
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2590
3108
|
hiddenIds: string[];
|
|
3109
|
+
itemSizeCache: Record<string, number>;
|
|
2591
3110
|
itemWidthCache: Record<string, number>;
|
|
3111
|
+
containerSize: number;
|
|
2592
3112
|
containerWidth: number;
|
|
2593
3113
|
containerGap: number;
|
|
2594
3114
|
overflowTargetWidth: number;
|
|
@@ -2615,7 +3135,7 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2615
3135
|
isVirtualized: boolean;
|
|
2616
3136
|
items: import("../..").Item<any>[];
|
|
2617
3137
|
}) => boolean) | undefined;
|
|
2618
|
-
|
|
3138
|
+
shouldAddHiddenKey?: ((data: {
|
|
2619
3139
|
id: string;
|
|
2620
3140
|
}, state: {
|
|
2621
3141
|
getId: (item: any) => string;
|
|
@@ -2623,7 +3143,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2623
3143
|
panels: import("../..").Item<any>[];
|
|
2624
3144
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2625
3145
|
hiddenIds: string[];
|
|
3146
|
+
itemSizeCache: Record<string, number>;
|
|
2626
3147
|
itemWidthCache: Record<string, number>;
|
|
3148
|
+
containerSize: number;
|
|
2627
3149
|
containerWidth: number;
|
|
2628
3150
|
containerGap: number;
|
|
2629
3151
|
overflowTargetWidth: number;
|
|
@@ -2650,7 +3172,7 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2650
3172
|
isVirtualized: boolean;
|
|
2651
3173
|
items: import("../..").Item<any>[];
|
|
2652
3174
|
}) => boolean) | undefined;
|
|
2653
|
-
|
|
3175
|
+
shouldRemoveHiddenKey?: ((data: {
|
|
2654
3176
|
id: string;
|
|
2655
3177
|
}, state: {
|
|
2656
3178
|
getId: (item: any) => string;
|
|
@@ -2658,7 +3180,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2658
3180
|
panels: import("../..").Item<any>[];
|
|
2659
3181
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2660
3182
|
hiddenIds: string[];
|
|
3183
|
+
itemSizeCache: Record<string, number>;
|
|
2661
3184
|
itemWidthCache: Record<string, number>;
|
|
3185
|
+
containerSize: number;
|
|
2662
3186
|
containerWidth: number;
|
|
2663
3187
|
containerGap: number;
|
|
2664
3188
|
overflowTargetWidth: number;
|
|
@@ -2685,15 +3209,15 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2685
3209
|
isVirtualized: boolean;
|
|
2686
3210
|
items: import("../..").Item<any>[];
|
|
2687
3211
|
}) => boolean) | undefined;
|
|
2688
|
-
|
|
2689
|
-
id: string;
|
|
2690
|
-
}, state: {
|
|
3212
|
+
shouldSelectAll?: ((data: undefined, state: {
|
|
2691
3213
|
getId: (item: any) => string;
|
|
2692
3214
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2693
3215
|
panels: import("../..").Item<any>[];
|
|
2694
3216
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2695
3217
|
hiddenIds: string[];
|
|
3218
|
+
itemSizeCache: Record<string, number>;
|
|
2696
3219
|
itemWidthCache: Record<string, number>;
|
|
3220
|
+
containerSize: number;
|
|
2697
3221
|
containerWidth: number;
|
|
2698
3222
|
containerGap: number;
|
|
2699
3223
|
overflowTargetWidth: number;
|
|
@@ -2720,13 +3244,15 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2720
3244
|
isVirtualized: boolean;
|
|
2721
3245
|
items: import("../..").Item<any>[];
|
|
2722
3246
|
}) => boolean) | undefined;
|
|
2723
|
-
|
|
3247
|
+
shouldUnselectAll?: ((data: undefined, state: {
|
|
2724
3248
|
getId: (item: any) => string;
|
|
2725
3249
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2726
3250
|
panels: import("../..").Item<any>[];
|
|
2727
3251
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2728
3252
|
hiddenIds: string[];
|
|
3253
|
+
itemSizeCache: Record<string, number>;
|
|
2729
3254
|
itemWidthCache: Record<string, number>;
|
|
3255
|
+
containerSize: number;
|
|
2730
3256
|
containerWidth: number;
|
|
2731
3257
|
containerGap: number;
|
|
2732
3258
|
overflowTargetWidth: number;
|
|
@@ -2753,13 +3279,15 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2753
3279
|
isVirtualized: boolean;
|
|
2754
3280
|
items: import("../..").Item<any>[];
|
|
2755
3281
|
}) => boolean) | undefined;
|
|
2756
|
-
|
|
3282
|
+
shouldSetSelectedIds?: ((data: string[] | "all", state: {
|
|
2757
3283
|
getId: (item: any) => string;
|
|
2758
3284
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2759
3285
|
panels: import("../..").Item<any>[];
|
|
2760
3286
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2761
3287
|
hiddenIds: string[];
|
|
3288
|
+
itemSizeCache: Record<string, number>;
|
|
2762
3289
|
itemWidthCache: Record<string, number>;
|
|
3290
|
+
containerSize: number;
|
|
2763
3291
|
containerWidth: number;
|
|
2764
3292
|
containerGap: number;
|
|
2765
3293
|
overflowTargetWidth: number;
|
|
@@ -2786,13 +3314,19 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2786
3314
|
isVirtualized: boolean;
|
|
2787
3315
|
items: import("../..").Item<any>[];
|
|
2788
3316
|
}) => boolean) | undefined;
|
|
2789
|
-
|
|
3317
|
+
shouldRemove?: ((data: {
|
|
3318
|
+
id: string;
|
|
3319
|
+
nextId?: string | undefined;
|
|
3320
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
3321
|
+
}, state: {
|
|
2790
3322
|
getId: (item: any) => string;
|
|
2791
3323
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2792
3324
|
panels: import("../..").Item<any>[];
|
|
2793
3325
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2794
3326
|
hiddenIds: string[];
|
|
3327
|
+
itemSizeCache: Record<string, number>;
|
|
2795
3328
|
itemWidthCache: Record<string, number>;
|
|
3329
|
+
containerSize: number;
|
|
2796
3330
|
containerWidth: number;
|
|
2797
3331
|
containerGap: number;
|
|
2798
3332
|
overflowTargetWidth: number;
|
|
@@ -2827,7 +3361,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2827
3361
|
panels: import("../..").Item<any>[];
|
|
2828
3362
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2829
3363
|
hiddenIds: string[];
|
|
3364
|
+
itemSizeCache: Record<string, number>;
|
|
2830
3365
|
itemWidthCache: Record<string, number>;
|
|
3366
|
+
containerSize: number;
|
|
2831
3367
|
containerWidth: number;
|
|
2832
3368
|
containerGap: number;
|
|
2833
3369
|
overflowTargetWidth: number;
|
|
@@ -2860,7 +3396,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2860
3396
|
panels: import("../..").Item<any>[];
|
|
2861
3397
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2862
3398
|
hiddenIds: string[];
|
|
3399
|
+
itemSizeCache: Record<string, number>;
|
|
2863
3400
|
itemWidthCache: Record<string, number>;
|
|
3401
|
+
containerSize: number;
|
|
2864
3402
|
containerWidth: number;
|
|
2865
3403
|
containerGap: number;
|
|
2866
3404
|
overflowTargetWidth: number;
|
|
@@ -2893,7 +3431,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2893
3431
|
panels: import("../..").Item<any>[];
|
|
2894
3432
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2895
3433
|
hiddenIds: string[];
|
|
3434
|
+
itemSizeCache: Record<string, number>;
|
|
2896
3435
|
itemWidthCache: Record<string, number>;
|
|
3436
|
+
containerSize: number;
|
|
2897
3437
|
containerWidth: number;
|
|
2898
3438
|
containerGap: number;
|
|
2899
3439
|
overflowTargetWidth: number;
|
|
@@ -2926,7 +3466,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2926
3466
|
panels: import("../..").Item<any>[];
|
|
2927
3467
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2928
3468
|
hiddenIds: string[];
|
|
3469
|
+
itemSizeCache: Record<string, number>;
|
|
2929
3470
|
itemWidthCache: Record<string, number>;
|
|
3471
|
+
containerSize: number;
|
|
2930
3472
|
containerWidth: number;
|
|
2931
3473
|
containerGap: number;
|
|
2932
3474
|
overflowTargetWidth: number;
|
|
@@ -2959,7 +3501,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2959
3501
|
panels: import("../..").Item<any>[];
|
|
2960
3502
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2961
3503
|
hiddenIds: string[];
|
|
3504
|
+
itemSizeCache: Record<string, number>;
|
|
2962
3505
|
itemWidthCache: Record<string, number>;
|
|
3506
|
+
containerSize: number;
|
|
2963
3507
|
containerWidth: number;
|
|
2964
3508
|
containerGap: number;
|
|
2965
3509
|
overflowTargetWidth: number;
|
|
@@ -2992,7 +3536,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
2992
3536
|
panels: import("../..").Item<any>[];
|
|
2993
3537
|
panelIndexRef: React.MutableRefObject<number>;
|
|
2994
3538
|
hiddenIds: string[];
|
|
3539
|
+
itemSizeCache: Record<string, number>;
|
|
2995
3540
|
itemWidthCache: Record<string, number>;
|
|
3541
|
+
containerSize: number;
|
|
2996
3542
|
containerWidth: number;
|
|
2997
3543
|
containerGap: number;
|
|
2998
3544
|
overflowTargetWidth: number;
|
|
@@ -3025,7 +3571,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3025
3571
|
panels: import("../..").Item<any>[];
|
|
3026
3572
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3027
3573
|
hiddenIds: string[];
|
|
3574
|
+
itemSizeCache: Record<string, number>;
|
|
3028
3575
|
itemWidthCache: Record<string, number>;
|
|
3576
|
+
containerSize: number;
|
|
3029
3577
|
containerWidth: number;
|
|
3030
3578
|
containerGap: number;
|
|
3031
3579
|
overflowTargetWidth: number;
|
|
@@ -3058,7 +3606,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3058
3606
|
panels: import("../..").Item<any>[];
|
|
3059
3607
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3060
3608
|
hiddenIds: string[];
|
|
3609
|
+
itemSizeCache: Record<string, number>;
|
|
3061
3610
|
itemWidthCache: Record<string, number>;
|
|
3611
|
+
containerSize: number;
|
|
3062
3612
|
containerWidth: number;
|
|
3063
3613
|
containerGap: number;
|
|
3064
3614
|
overflowTargetWidth: number;
|
|
@@ -3091,7 +3641,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3091
3641
|
panels: import("../..").Item<any>[];
|
|
3092
3642
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3093
3643
|
hiddenIds: string[];
|
|
3644
|
+
itemSizeCache: Record<string, number>;
|
|
3094
3645
|
itemWidthCache: Record<string, number>;
|
|
3646
|
+
containerSize: number;
|
|
3095
3647
|
containerWidth: number;
|
|
3096
3648
|
containerGap: number;
|
|
3097
3649
|
overflowTargetWidth: number;
|
|
@@ -3124,7 +3676,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3124
3676
|
panels: import("../..").Item<any>[];
|
|
3125
3677
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3126
3678
|
hiddenIds: string[];
|
|
3679
|
+
itemSizeCache: Record<string, number>;
|
|
3127
3680
|
itemWidthCache: Record<string, number>;
|
|
3681
|
+
containerSize: number;
|
|
3128
3682
|
containerWidth: number;
|
|
3129
3683
|
containerGap: number;
|
|
3130
3684
|
overflowTargetWidth: number;
|
|
@@ -3157,7 +3711,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3157
3711
|
panels: import("../..").Item<any>[];
|
|
3158
3712
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3159
3713
|
hiddenIds: string[];
|
|
3714
|
+
itemSizeCache: Record<string, number>;
|
|
3160
3715
|
itemWidthCache: Record<string, number>;
|
|
3716
|
+
containerSize: number;
|
|
3161
3717
|
containerWidth: number;
|
|
3162
3718
|
containerGap: number;
|
|
3163
3719
|
overflowTargetWidth: number;
|
|
@@ -3193,7 +3749,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3193
3749
|
panels: import("../..").Item<any>[];
|
|
3194
3750
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3195
3751
|
hiddenIds: string[];
|
|
3752
|
+
itemSizeCache: Record<string, number>;
|
|
3196
3753
|
itemWidthCache: Record<string, number>;
|
|
3754
|
+
containerSize: number;
|
|
3197
3755
|
containerWidth: number;
|
|
3198
3756
|
containerGap: number;
|
|
3199
3757
|
overflowTargetWidth: number;
|
|
@@ -3228,7 +3786,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3228
3786
|
panels: import("../..").Item<any>[];
|
|
3229
3787
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3230
3788
|
hiddenIds: string[];
|
|
3789
|
+
itemSizeCache: Record<string, number>;
|
|
3231
3790
|
itemWidthCache: Record<string, number>;
|
|
3791
|
+
containerSize: number;
|
|
3232
3792
|
containerWidth: number;
|
|
3233
3793
|
containerGap: number;
|
|
3234
3794
|
overflowTargetWidth: number;
|
|
@@ -3263,7 +3823,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3263
3823
|
panels: import("../..").Item<any>[];
|
|
3264
3824
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3265
3825
|
hiddenIds: string[];
|
|
3826
|
+
itemSizeCache: Record<string, number>;
|
|
3266
3827
|
itemWidthCache: Record<string, number>;
|
|
3828
|
+
containerSize: number;
|
|
3267
3829
|
containerWidth: number;
|
|
3268
3830
|
containerGap: number;
|
|
3269
3831
|
overflowTargetWidth: number;
|
|
@@ -3297,7 +3859,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3297
3859
|
panels: import("../..").Item<any>[];
|
|
3298
3860
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3299
3861
|
hiddenIds: string[];
|
|
3862
|
+
itemSizeCache: Record<string, number>;
|
|
3300
3863
|
itemWidthCache: Record<string, number>;
|
|
3864
|
+
containerSize: number;
|
|
3301
3865
|
containerWidth: number;
|
|
3302
3866
|
containerGap: number;
|
|
3303
3867
|
overflowTargetWidth: number;
|
|
@@ -3335,12 +3899,20 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3335
3899
|
select(data: {
|
|
3336
3900
|
id: string;
|
|
3337
3901
|
}): void;
|
|
3902
|
+
setContainerSize(data: {
|
|
3903
|
+
width?: number | undefined;
|
|
3904
|
+
height?: number | undefined;
|
|
3905
|
+
}): void;
|
|
3338
3906
|
setContainerWidth(data: {
|
|
3339
3907
|
width?: number | undefined;
|
|
3340
3908
|
}): void;
|
|
3341
3909
|
setContainerGap(data: {
|
|
3342
3910
|
size: number;
|
|
3343
3911
|
}): void;
|
|
3912
|
+
setOverflowTargetSize(data: {
|
|
3913
|
+
width: number;
|
|
3914
|
+
height: number;
|
|
3915
|
+
}): void;
|
|
3344
3916
|
setOverflowTargetWidth(data: {
|
|
3345
3917
|
width: number;
|
|
3346
3918
|
}): void;
|
|
@@ -3348,6 +3920,14 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3348
3920
|
id: string;
|
|
3349
3921
|
width: number;
|
|
3350
3922
|
}): void;
|
|
3923
|
+
addItemSize(data: {
|
|
3924
|
+
id: string;
|
|
3925
|
+
width: number;
|
|
3926
|
+
height: number;
|
|
3927
|
+
}): void;
|
|
3928
|
+
removeItemSize(data: {
|
|
3929
|
+
id: string;
|
|
3930
|
+
}): void;
|
|
3351
3931
|
removeItemWidth(data: {
|
|
3352
3932
|
id: string;
|
|
3353
3933
|
}): void;
|
|
@@ -3360,6 +3940,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3360
3940
|
selectAll(): void;
|
|
3361
3941
|
unselectAll(): void;
|
|
3362
3942
|
setSelectedIds(ids: string[] | "all"): void;
|
|
3943
|
+
remove(data: {
|
|
3944
|
+
id: string;
|
|
3945
|
+
nextId?: string | undefined;
|
|
3946
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
3947
|
+
}): void;
|
|
3363
3948
|
goTo(data: {
|
|
3364
3949
|
id: string;
|
|
3365
3950
|
}): void;
|
|
@@ -3429,6 +4014,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3429
4014
|
selectAll(): void;
|
|
3430
4015
|
unselectAll(): void;
|
|
3431
4016
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4017
|
+
remove(data: {
|
|
4018
|
+
id: string;
|
|
4019
|
+
nextId?: string | undefined;
|
|
4020
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4021
|
+
}): void;
|
|
3432
4022
|
goTo(data: {
|
|
3433
4023
|
id: string;
|
|
3434
4024
|
}): void;
|
|
@@ -3476,7 +4066,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3476
4066
|
panels: import("../..").Item<any>[];
|
|
3477
4067
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3478
4068
|
hiddenIds: string[];
|
|
4069
|
+
itemSizeCache: Record<string, number>;
|
|
3479
4070
|
itemWidthCache: Record<string, number>;
|
|
4071
|
+
containerSize: number;
|
|
3480
4072
|
containerWidth: number;
|
|
3481
4073
|
containerGap: number;
|
|
3482
4074
|
overflowTargetWidth: number;
|
|
@@ -3514,12 +4106,20 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3514
4106
|
select(data: {
|
|
3515
4107
|
id: string;
|
|
3516
4108
|
}): void;
|
|
4109
|
+
setContainerSize(data: {
|
|
4110
|
+
width?: number | undefined;
|
|
4111
|
+
height?: number | undefined;
|
|
4112
|
+
}): void;
|
|
3517
4113
|
setContainerWidth(data: {
|
|
3518
4114
|
width?: number | undefined;
|
|
3519
4115
|
}): void;
|
|
3520
4116
|
setContainerGap(data: {
|
|
3521
4117
|
size: number;
|
|
3522
4118
|
}): void;
|
|
4119
|
+
setOverflowTargetSize(data: {
|
|
4120
|
+
width: number;
|
|
4121
|
+
height: number;
|
|
4122
|
+
}): void;
|
|
3523
4123
|
setOverflowTargetWidth(data: {
|
|
3524
4124
|
width: number;
|
|
3525
4125
|
}): void;
|
|
@@ -3527,6 +4127,14 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3527
4127
|
id: string;
|
|
3528
4128
|
width: number;
|
|
3529
4129
|
}): void;
|
|
4130
|
+
addItemSize(data: {
|
|
4131
|
+
id: string;
|
|
4132
|
+
width: number;
|
|
4133
|
+
height: number;
|
|
4134
|
+
}): void;
|
|
4135
|
+
removeItemSize(data: {
|
|
4136
|
+
id: string;
|
|
4137
|
+
}): void;
|
|
3530
4138
|
removeItemWidth(data: {
|
|
3531
4139
|
id: string;
|
|
3532
4140
|
}): void;
|
|
@@ -3539,6 +4147,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3539
4147
|
selectAll(): void;
|
|
3540
4148
|
unselectAll(): void;
|
|
3541
4149
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4150
|
+
remove(data: {
|
|
4151
|
+
id: string;
|
|
4152
|
+
nextId?: string | undefined;
|
|
4153
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4154
|
+
}): void;
|
|
3542
4155
|
goTo(data: {
|
|
3543
4156
|
id: string;
|
|
3544
4157
|
}): void;
|
|
@@ -3608,6 +4221,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3608
4221
|
selectAll(): void;
|
|
3609
4222
|
unselectAll(): void;
|
|
3610
4223
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4224
|
+
remove(data: {
|
|
4225
|
+
id: string;
|
|
4226
|
+
nextId?: string | undefined;
|
|
4227
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4228
|
+
}): void;
|
|
3611
4229
|
goTo(data: {
|
|
3612
4230
|
id: string;
|
|
3613
4231
|
}): void;
|
|
@@ -3656,7 +4274,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3656
4274
|
panels: import("../..").Item<any>[];
|
|
3657
4275
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3658
4276
|
hiddenIds: string[];
|
|
4277
|
+
itemSizeCache: Record<string, number>;
|
|
3659
4278
|
itemWidthCache: Record<string, number>;
|
|
4279
|
+
containerSize: number;
|
|
3660
4280
|
containerWidth: number;
|
|
3661
4281
|
containerGap: number;
|
|
3662
4282
|
overflowTargetWidth: number;
|
|
@@ -3694,12 +4314,20 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3694
4314
|
select(data: {
|
|
3695
4315
|
id: string;
|
|
3696
4316
|
}): void;
|
|
4317
|
+
setContainerSize(data: {
|
|
4318
|
+
width?: number | undefined;
|
|
4319
|
+
height?: number | undefined;
|
|
4320
|
+
}): void;
|
|
3697
4321
|
setContainerWidth(data: {
|
|
3698
4322
|
width?: number | undefined;
|
|
3699
4323
|
}): void;
|
|
3700
4324
|
setContainerGap(data: {
|
|
3701
4325
|
size: number;
|
|
3702
4326
|
}): void;
|
|
4327
|
+
setOverflowTargetSize(data: {
|
|
4328
|
+
width: number;
|
|
4329
|
+
height: number;
|
|
4330
|
+
}): void;
|
|
3703
4331
|
setOverflowTargetWidth(data: {
|
|
3704
4332
|
width: number;
|
|
3705
4333
|
}): void;
|
|
@@ -3707,6 +4335,14 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3707
4335
|
id: string;
|
|
3708
4336
|
width: number;
|
|
3709
4337
|
}): void;
|
|
4338
|
+
addItemSize(data: {
|
|
4339
|
+
id: string;
|
|
4340
|
+
width: number;
|
|
4341
|
+
height: number;
|
|
4342
|
+
}): void;
|
|
4343
|
+
removeItemSize(data: {
|
|
4344
|
+
id: string;
|
|
4345
|
+
}): void;
|
|
3710
4346
|
removeItemWidth(data: {
|
|
3711
4347
|
id: string;
|
|
3712
4348
|
}): void;
|
|
@@ -3719,6 +4355,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3719
4355
|
selectAll(): void;
|
|
3720
4356
|
unselectAll(): void;
|
|
3721
4357
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4358
|
+
remove(data: {
|
|
4359
|
+
id: string;
|
|
4360
|
+
nextId?: string | undefined;
|
|
4361
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4362
|
+
}): void;
|
|
3722
4363
|
goTo(data: {
|
|
3723
4364
|
id: string;
|
|
3724
4365
|
}): void;
|
|
@@ -3788,6 +4429,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3788
4429
|
selectAll(): void;
|
|
3789
4430
|
unselectAll(): void;
|
|
3790
4431
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4432
|
+
remove(data: {
|
|
4433
|
+
id: string;
|
|
4434
|
+
nextId?: string | undefined;
|
|
4435
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4436
|
+
}): void;
|
|
3791
4437
|
goTo(data: {
|
|
3792
4438
|
id: string;
|
|
3793
4439
|
}): void;
|
|
@@ -3842,7 +4488,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3842
4488
|
panels: import("../..").Item<any>[];
|
|
3843
4489
|
panelIndexRef: React.MutableRefObject<number>;
|
|
3844
4490
|
hiddenIds: string[];
|
|
4491
|
+
itemSizeCache: Record<string, number>;
|
|
3845
4492
|
itemWidthCache: Record<string, number>;
|
|
4493
|
+
containerSize: number;
|
|
3846
4494
|
containerWidth: number;
|
|
3847
4495
|
containerGap: number;
|
|
3848
4496
|
overflowTargetWidth: number;
|
|
@@ -3880,12 +4528,20 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3880
4528
|
select(data: {
|
|
3881
4529
|
id: string;
|
|
3882
4530
|
}): void;
|
|
4531
|
+
setContainerSize(data: {
|
|
4532
|
+
width?: number | undefined;
|
|
4533
|
+
height?: number | undefined;
|
|
4534
|
+
}): void;
|
|
3883
4535
|
setContainerWidth(data: {
|
|
3884
4536
|
width?: number | undefined;
|
|
3885
4537
|
}): void;
|
|
3886
4538
|
setContainerGap(data: {
|
|
3887
4539
|
size: number;
|
|
3888
4540
|
}): void;
|
|
4541
|
+
setOverflowTargetSize(data: {
|
|
4542
|
+
width: number;
|
|
4543
|
+
height: number;
|
|
4544
|
+
}): void;
|
|
3889
4545
|
setOverflowTargetWidth(data: {
|
|
3890
4546
|
width: number;
|
|
3891
4547
|
}): void;
|
|
@@ -3893,6 +4549,14 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3893
4549
|
id: string;
|
|
3894
4550
|
width: number;
|
|
3895
4551
|
}): void;
|
|
4552
|
+
addItemSize(data: {
|
|
4553
|
+
id: string;
|
|
4554
|
+
width: number;
|
|
4555
|
+
height: number;
|
|
4556
|
+
}): void;
|
|
4557
|
+
removeItemSize(data: {
|
|
4558
|
+
id: string;
|
|
4559
|
+
}): void;
|
|
3896
4560
|
removeItemWidth(data: {
|
|
3897
4561
|
id: string;
|
|
3898
4562
|
}): void;
|
|
@@ -3905,6 +4569,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3905
4569
|
selectAll(): void;
|
|
3906
4570
|
unselectAll(): void;
|
|
3907
4571
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4572
|
+
remove(data: {
|
|
4573
|
+
id: string;
|
|
4574
|
+
nextId?: string | undefined;
|
|
4575
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4576
|
+
}): void;
|
|
3908
4577
|
goTo(data: {
|
|
3909
4578
|
id: string;
|
|
3910
4579
|
}): void;
|
|
@@ -3974,6 +4643,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
3974
4643
|
selectAll(): void;
|
|
3975
4644
|
unselectAll(): void;
|
|
3976
4645
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4646
|
+
remove(data: {
|
|
4647
|
+
id: string;
|
|
4648
|
+
nextId?: string | undefined;
|
|
4649
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4650
|
+
}): void;
|
|
3977
4651
|
goTo(data: {
|
|
3978
4652
|
id: string;
|
|
3979
4653
|
}): void;
|
|
@@ -4027,7 +4701,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4027
4701
|
panels: import("../..").Item<any>[];
|
|
4028
4702
|
panelIndexRef: React.MutableRefObject<number>;
|
|
4029
4703
|
hiddenIds: string[];
|
|
4704
|
+
itemSizeCache: Record<string, number>;
|
|
4030
4705
|
itemWidthCache: Record<string, number>;
|
|
4706
|
+
containerSize: number;
|
|
4031
4707
|
containerWidth: number;
|
|
4032
4708
|
containerGap: number;
|
|
4033
4709
|
overflowTargetWidth: number;
|
|
@@ -4065,12 +4741,20 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4065
4741
|
select(data: {
|
|
4066
4742
|
id: string;
|
|
4067
4743
|
}): void;
|
|
4744
|
+
setContainerSize(data: {
|
|
4745
|
+
width?: number | undefined;
|
|
4746
|
+
height?: number | undefined;
|
|
4747
|
+
}): void;
|
|
4068
4748
|
setContainerWidth(data: {
|
|
4069
4749
|
width?: number | undefined;
|
|
4070
4750
|
}): void;
|
|
4071
4751
|
setContainerGap(data: {
|
|
4072
4752
|
size: number;
|
|
4073
4753
|
}): void;
|
|
4754
|
+
setOverflowTargetSize(data: {
|
|
4755
|
+
width: number;
|
|
4756
|
+
height: number;
|
|
4757
|
+
}): void;
|
|
4074
4758
|
setOverflowTargetWidth(data: {
|
|
4075
4759
|
width: number;
|
|
4076
4760
|
}): void;
|
|
@@ -4078,6 +4762,14 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4078
4762
|
id: string;
|
|
4079
4763
|
width: number;
|
|
4080
4764
|
}): void;
|
|
4765
|
+
addItemSize(data: {
|
|
4766
|
+
id: string;
|
|
4767
|
+
width: number;
|
|
4768
|
+
height: number;
|
|
4769
|
+
}): void;
|
|
4770
|
+
removeItemSize(data: {
|
|
4771
|
+
id: string;
|
|
4772
|
+
}): void;
|
|
4081
4773
|
removeItemWidth(data: {
|
|
4082
4774
|
id: string;
|
|
4083
4775
|
}): void;
|
|
@@ -4090,6 +4782,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4090
4782
|
selectAll(): void;
|
|
4091
4783
|
unselectAll(): void;
|
|
4092
4784
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4785
|
+
remove(data: {
|
|
4786
|
+
id: string;
|
|
4787
|
+
nextId?: string | undefined;
|
|
4788
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4789
|
+
}): void;
|
|
4093
4790
|
goTo(data: {
|
|
4094
4791
|
id: string;
|
|
4095
4792
|
}): void;
|
|
@@ -4159,6 +4856,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4159
4856
|
selectAll(): void;
|
|
4160
4857
|
unselectAll(): void;
|
|
4161
4858
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4859
|
+
remove(data: {
|
|
4860
|
+
id: string;
|
|
4861
|
+
nextId?: string | undefined;
|
|
4862
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4863
|
+
}): void;
|
|
4162
4864
|
goTo(data: {
|
|
4163
4865
|
id: string;
|
|
4164
4866
|
}): void;
|
|
@@ -4212,7 +4914,9 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4212
4914
|
panels: import("../..").Item<any>[];
|
|
4213
4915
|
panelIndexRef: React.MutableRefObject<number>;
|
|
4214
4916
|
hiddenIds: string[];
|
|
4917
|
+
itemSizeCache: Record<string, number>;
|
|
4215
4918
|
itemWidthCache: Record<string, number>;
|
|
4919
|
+
containerSize: number;
|
|
4216
4920
|
containerWidth: number;
|
|
4217
4921
|
containerGap: number;
|
|
4218
4922
|
overflowTargetWidth: number;
|
|
@@ -4250,12 +4954,20 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4250
4954
|
select(data: {
|
|
4251
4955
|
id: string;
|
|
4252
4956
|
}): void;
|
|
4957
|
+
setContainerSize(data: {
|
|
4958
|
+
width?: number | undefined;
|
|
4959
|
+
height?: number | undefined;
|
|
4960
|
+
}): void;
|
|
4253
4961
|
setContainerWidth(data: {
|
|
4254
4962
|
width?: number | undefined;
|
|
4255
4963
|
}): void;
|
|
4256
4964
|
setContainerGap(data: {
|
|
4257
4965
|
size: number;
|
|
4258
4966
|
}): void;
|
|
4967
|
+
setOverflowTargetSize(data: {
|
|
4968
|
+
width: number;
|
|
4969
|
+
height: number;
|
|
4970
|
+
}): void;
|
|
4259
4971
|
setOverflowTargetWidth(data: {
|
|
4260
4972
|
width: number;
|
|
4261
4973
|
}): void;
|
|
@@ -4263,6 +4975,14 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4263
4975
|
id: string;
|
|
4264
4976
|
width: number;
|
|
4265
4977
|
}): void;
|
|
4978
|
+
addItemSize(data: {
|
|
4979
|
+
id: string;
|
|
4980
|
+
width: number;
|
|
4981
|
+
height: number;
|
|
4982
|
+
}): void;
|
|
4983
|
+
removeItemSize(data: {
|
|
4984
|
+
id: string;
|
|
4985
|
+
}): void;
|
|
4266
4986
|
removeItemWidth(data: {
|
|
4267
4987
|
id: string;
|
|
4268
4988
|
}): void;
|
|
@@ -4275,6 +4995,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4275
4995
|
selectAll(): void;
|
|
4276
4996
|
unselectAll(): void;
|
|
4277
4997
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4998
|
+
remove(data: {
|
|
4999
|
+
id: string;
|
|
5000
|
+
nextId?: string | undefined;
|
|
5001
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
5002
|
+
}): void;
|
|
4278
5003
|
goTo(data: {
|
|
4279
5004
|
id: string;
|
|
4280
5005
|
}): void;
|
|
@@ -4344,6 +5069,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4344
5069
|
selectAll(): void;
|
|
4345
5070
|
unselectAll(): void;
|
|
4346
5071
|
setSelectedIds(ids: string[] | "all"): void;
|
|
5072
|
+
remove(data: {
|
|
5073
|
+
id: string;
|
|
5074
|
+
nextId?: string | undefined;
|
|
5075
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
5076
|
+
}): void;
|
|
4347
5077
|
goTo(data: {
|
|
4348
5078
|
id: string;
|
|
4349
5079
|
}): void;
|
|
@@ -4424,6 +5154,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4424
5154
|
selectAll(): void;
|
|
4425
5155
|
unselectAll(): void;
|
|
4426
5156
|
setSelectedIds(ids: string[] | "all"): void;
|
|
5157
|
+
remove(data: {
|
|
5158
|
+
id: string;
|
|
5159
|
+
nextId?: string | undefined;
|
|
5160
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
5161
|
+
}): void;
|
|
4427
5162
|
goTo(data: {
|
|
4428
5163
|
id: string;
|
|
4429
5164
|
}): void;
|
|
@@ -4717,6 +5452,42 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
4717
5452
|
items: import("../..").Item<any>[];
|
|
4718
5453
|
mode: "multiple" | "single";
|
|
4719
5454
|
}) => void) | undefined;
|
|
5455
|
+
onRemove?: ((data: {
|
|
5456
|
+
id: string;
|
|
5457
|
+
nextId?: string | undefined;
|
|
5458
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
5459
|
+
}, prevState: {
|
|
5460
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
5461
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
5462
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
5463
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
5464
|
+
placement: import("@popperjs/core").Placement;
|
|
5465
|
+
id: string;
|
|
5466
|
+
visibility: "hidden" | "visible";
|
|
5467
|
+
selectedIds: string[] | "all";
|
|
5468
|
+
unselectedIds: string[];
|
|
5469
|
+
cursorId: string;
|
|
5470
|
+
columnCount: number;
|
|
5471
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
5472
|
+
cursorIndexRef: {
|
|
5473
|
+
readonly current: number;
|
|
5474
|
+
};
|
|
5475
|
+
UNSTABLE_virtual: {
|
|
5476
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
5477
|
+
totalSize: number;
|
|
5478
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
5479
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
5480
|
+
measure: () => void;
|
|
5481
|
+
};
|
|
5482
|
+
UNSTABLE_defaultItemHeight: number;
|
|
5483
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
5484
|
+
orientation: "horizontal" | "vertical";
|
|
5485
|
+
indexRef: React.MutableRefObject<number>;
|
|
5486
|
+
nonInteractiveIds: string[];
|
|
5487
|
+
isVirtualized: boolean;
|
|
5488
|
+
items: import("../..").Item<any>[];
|
|
5489
|
+
mode: "multiple" | "single";
|
|
5490
|
+
}) => void) | undefined;
|
|
4720
5491
|
onGoTo?: ((data: {
|
|
4721
5492
|
id: string;
|
|
4722
5493
|
}, prevState: {
|
|
@@ -5403,6 +6174,42 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
5403
6174
|
items: import("../..").Item<any>[];
|
|
5404
6175
|
mode: "multiple" | "single";
|
|
5405
6176
|
}) => boolean) | undefined;
|
|
6177
|
+
shouldRemove?: ((data: {
|
|
6178
|
+
id: string;
|
|
6179
|
+
nextId?: string | undefined;
|
|
6180
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
6181
|
+
}, state: {
|
|
6182
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
6183
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
6184
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
6185
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
6186
|
+
placement: import("@popperjs/core").Placement;
|
|
6187
|
+
id: string;
|
|
6188
|
+
visibility: "hidden" | "visible";
|
|
6189
|
+
selectedIds: string[] | "all";
|
|
6190
|
+
unselectedIds: string[];
|
|
6191
|
+
cursorId: string;
|
|
6192
|
+
columnCount: number;
|
|
6193
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
6194
|
+
cursorIndexRef: {
|
|
6195
|
+
readonly current: number;
|
|
6196
|
+
};
|
|
6197
|
+
UNSTABLE_virtual: {
|
|
6198
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
6199
|
+
totalSize: number;
|
|
6200
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
6201
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
6202
|
+
measure: () => void;
|
|
6203
|
+
};
|
|
6204
|
+
UNSTABLE_defaultItemHeight: number;
|
|
6205
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
6206
|
+
orientation: "horizontal" | "vertical";
|
|
6207
|
+
indexRef: React.MutableRefObject<number>;
|
|
6208
|
+
nonInteractiveIds: string[];
|
|
6209
|
+
isVirtualized: boolean;
|
|
6210
|
+
items: import("../..").Item<any>[];
|
|
6211
|
+
mode: "multiple" | "single";
|
|
6212
|
+
}) => boolean) | undefined;
|
|
5406
6213
|
shouldGoTo?: ((data: {
|
|
5407
6214
|
id: string;
|
|
5408
6215
|
}, state: {
|
|
@@ -5905,6 +6712,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
5905
6712
|
selectAll(): void;
|
|
5906
6713
|
unselectAll(): void;
|
|
5907
6714
|
setSelectedIds(ids: string[] | "all"): void;
|
|
6715
|
+
remove(data: {
|
|
6716
|
+
id: string;
|
|
6717
|
+
nextId?: string | undefined;
|
|
6718
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
6719
|
+
}): void;
|
|
5908
6720
|
goTo(data: {
|
|
5909
6721
|
id: string;
|
|
5910
6722
|
}): void;
|
|
@@ -5978,6 +6790,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
5978
6790
|
selectAll(): void;
|
|
5979
6791
|
unselectAll(): void;
|
|
5980
6792
|
setSelectedIds(ids: string[] | "all"): void;
|
|
6793
|
+
remove(data: {
|
|
6794
|
+
id: string;
|
|
6795
|
+
nextId?: string | undefined;
|
|
6796
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
6797
|
+
}): void;
|
|
5981
6798
|
goTo(data: {
|
|
5982
6799
|
id: string;
|
|
5983
6800
|
}): void;
|
|
@@ -6051,6 +6868,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
6051
6868
|
selectAll(): void;
|
|
6052
6869
|
unselectAll(): void;
|
|
6053
6870
|
setSelectedIds(ids: string[] | "all"): void;
|
|
6871
|
+
remove(data: {
|
|
6872
|
+
id: string;
|
|
6873
|
+
nextId?: string | undefined;
|
|
6874
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
6875
|
+
}): void;
|
|
6054
6876
|
goTo(data: {
|
|
6055
6877
|
id: string;
|
|
6056
6878
|
}): void;
|
|
@@ -6124,6 +6946,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
6124
6946
|
selectAll(): void;
|
|
6125
6947
|
unselectAll(): void;
|
|
6126
6948
|
setSelectedIds(ids: string[] | "all"): void;
|
|
6949
|
+
remove(data: {
|
|
6950
|
+
id: string;
|
|
6951
|
+
nextId?: string | undefined;
|
|
6952
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
6953
|
+
}): void;
|
|
6127
6954
|
goTo(data: {
|
|
6128
6955
|
id: string;
|
|
6129
6956
|
}): void;
|
|
@@ -6197,6 +7024,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
6197
7024
|
selectAll(): void;
|
|
6198
7025
|
unselectAll(): void;
|
|
6199
7026
|
setSelectedIds(ids: string[] | "all"): void;
|
|
7027
|
+
remove(data: {
|
|
7028
|
+
id: string;
|
|
7029
|
+
nextId?: string | undefined;
|
|
7030
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
7031
|
+
}): void;
|
|
6200
7032
|
goTo(data: {
|
|
6201
7033
|
id: string;
|
|
6202
7034
|
}): void;
|
|
@@ -6275,6 +7107,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
6275
7107
|
selectAll(): void;
|
|
6276
7108
|
unselectAll(): void;
|
|
6277
7109
|
setSelectedIds(ids: string[] | "all"): void;
|
|
7110
|
+
remove(data: {
|
|
7111
|
+
id: string;
|
|
7112
|
+
nextId?: string | undefined;
|
|
7113
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
7114
|
+
}): void;
|
|
6278
7115
|
goTo(data: {
|
|
6279
7116
|
id: string;
|
|
6280
7117
|
}): void;
|
|
@@ -6354,6 +7191,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
6354
7191
|
selectAll(): void;
|
|
6355
7192
|
unselectAll(): void;
|
|
6356
7193
|
setSelectedIds(ids: string[] | "all"): void;
|
|
7194
|
+
remove(data: {
|
|
7195
|
+
id: string;
|
|
7196
|
+
nextId?: string | undefined;
|
|
7197
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
7198
|
+
}): void;
|
|
6357
7199
|
goTo(data: {
|
|
6358
7200
|
id: string;
|
|
6359
7201
|
}): void;
|
|
@@ -6427,6 +7269,11 @@ export declare const Tabs: import("@workday/canvas-kit-react/common").ComponentM
|
|
|
6427
7269
|
selectAll(): void;
|
|
6428
7270
|
unselectAll(): void;
|
|
6429
7271
|
setSelectedIds(ids: string[] | "all"): void;
|
|
7272
|
+
remove(data: {
|
|
7273
|
+
id: string;
|
|
7274
|
+
nextId?: string | undefined;
|
|
7275
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
7276
|
+
}): void;
|
|
6430
7277
|
goTo(data: {
|
|
6431
7278
|
id: string;
|
|
6432
7279
|
}): void;
|