@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
|
@@ -103,16 +103,47 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
103
103
|
hiddenIds: string[];
|
|
104
104
|
nonInteractiveIds: string[];
|
|
105
105
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
106
|
+
itemSizeCache: Record<string, number>;
|
|
106
107
|
itemWidthCache: Record<string, number>;
|
|
108
|
+
containerSize: number;
|
|
107
109
|
containerWidth: number;
|
|
108
110
|
containerGap: number;
|
|
109
|
-
overflowTargetWidth: number;
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
111
|
+
overflowTargetWidth: number;
|
|
112
|
+
selectedIds: string[] | "all";
|
|
113
|
+
unselectedIds: string[];
|
|
114
|
+
cursorId: string;
|
|
115
|
+
columnCount: number;
|
|
116
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
117
|
+
cursorIndexRef: {
|
|
118
|
+
readonly current: number;
|
|
119
|
+
};
|
|
120
|
+
UNSTABLE_virtual: {
|
|
121
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
122
|
+
totalSize: number;
|
|
123
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
124
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
125
|
+
measure: () => void;
|
|
126
|
+
};
|
|
127
|
+
UNSTABLE_defaultItemHeight: number;
|
|
128
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
129
|
+
id: string;
|
|
130
|
+
indexRef: React.MutableRefObject<number>;
|
|
131
|
+
isVirtualized: boolean;
|
|
132
|
+
items: import("../..").Item<any>[];
|
|
133
|
+
}) => void) | undefined;
|
|
134
|
+
onSetContainerSize?: ((data: {
|
|
135
|
+
width?: number | undefined;
|
|
136
|
+
height?: number | undefined;
|
|
137
|
+
}, prevState: {
|
|
138
|
+
hiddenIds: string[];
|
|
139
|
+
nonInteractiveIds: string[];
|
|
140
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
141
|
+
itemSizeCache: Record<string, number>;
|
|
142
|
+
itemWidthCache: Record<string, number>;
|
|
143
|
+
containerSize: number;
|
|
144
|
+
containerWidth: number;
|
|
145
|
+
containerGap: number;
|
|
146
|
+
overflowTargetWidth: number;
|
|
116
147
|
selectedIds: string[] | "all";
|
|
117
148
|
unselectedIds: string[];
|
|
118
149
|
cursorId: string;
|
|
@@ -141,16 +172,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
141
172
|
hiddenIds: string[];
|
|
142
173
|
nonInteractiveIds: string[];
|
|
143
174
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
175
|
+
itemSizeCache: Record<string, number>;
|
|
144
176
|
itemWidthCache: Record<string, number>;
|
|
177
|
+
containerSize: number;
|
|
145
178
|
containerWidth: number;
|
|
146
179
|
containerGap: number;
|
|
147
|
-
overflowTargetWidth: number;
|
|
148
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
149
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
150
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
151
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
152
|
-
* truncated
|
|
153
|
-
*/
|
|
180
|
+
overflowTargetWidth: number;
|
|
154
181
|
selectedIds: string[] | "all";
|
|
155
182
|
unselectedIds: string[];
|
|
156
183
|
cursorId: string;
|
|
@@ -179,16 +206,47 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
179
206
|
hiddenIds: string[];
|
|
180
207
|
nonInteractiveIds: string[];
|
|
181
208
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
209
|
+
itemSizeCache: Record<string, number>;
|
|
182
210
|
itemWidthCache: Record<string, number>;
|
|
211
|
+
containerSize: number;
|
|
183
212
|
containerWidth: number;
|
|
184
213
|
containerGap: number;
|
|
185
|
-
overflowTargetWidth: number;
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
214
|
+
overflowTargetWidth: number;
|
|
215
|
+
selectedIds: string[] | "all";
|
|
216
|
+
unselectedIds: string[];
|
|
217
|
+
cursorId: string;
|
|
218
|
+
columnCount: number;
|
|
219
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
220
|
+
cursorIndexRef: {
|
|
221
|
+
readonly current: number;
|
|
222
|
+
};
|
|
223
|
+
UNSTABLE_virtual: {
|
|
224
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
225
|
+
totalSize: number;
|
|
226
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
227
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
228
|
+
measure: () => void;
|
|
229
|
+
};
|
|
230
|
+
UNSTABLE_defaultItemHeight: number;
|
|
231
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
232
|
+
id: string;
|
|
233
|
+
indexRef: React.MutableRefObject<number>;
|
|
234
|
+
isVirtualized: boolean;
|
|
235
|
+
items: import("../..").Item<any>[];
|
|
236
|
+
}) => void) | undefined;
|
|
237
|
+
onSetOverflowTargetSize?: ((data: {
|
|
238
|
+
width: number;
|
|
239
|
+
height: number;
|
|
240
|
+
}, prevState: {
|
|
241
|
+
hiddenIds: string[];
|
|
242
|
+
nonInteractiveIds: string[];
|
|
243
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
244
|
+
itemSizeCache: Record<string, number>;
|
|
245
|
+
itemWidthCache: Record<string, number>;
|
|
246
|
+
containerSize: number;
|
|
247
|
+
containerWidth: number;
|
|
248
|
+
containerGap: number;
|
|
249
|
+
overflowTargetWidth: number;
|
|
192
250
|
selectedIds: string[] | "all";
|
|
193
251
|
unselectedIds: string[];
|
|
194
252
|
cursorId: string;
|
|
@@ -217,16 +275,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
217
275
|
hiddenIds: string[];
|
|
218
276
|
nonInteractiveIds: string[];
|
|
219
277
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
278
|
+
itemSizeCache: Record<string, number>;
|
|
220
279
|
itemWidthCache: Record<string, number>;
|
|
280
|
+
containerSize: number;
|
|
221
281
|
containerWidth: number;
|
|
222
282
|
containerGap: number;
|
|
223
|
-
overflowTargetWidth: number;
|
|
224
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
225
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
226
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
227
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
228
|
-
* truncated
|
|
229
|
-
*/
|
|
283
|
+
overflowTargetWidth: number;
|
|
230
284
|
selectedIds: string[] | "all";
|
|
231
285
|
unselectedIds: string[];
|
|
232
286
|
cursorId: string;
|
|
@@ -256,16 +310,82 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
256
310
|
hiddenIds: string[];
|
|
257
311
|
nonInteractiveIds: string[];
|
|
258
312
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
313
|
+
itemSizeCache: Record<string, number>;
|
|
314
|
+
itemWidthCache: Record<string, number>;
|
|
315
|
+
containerSize: number;
|
|
316
|
+
containerWidth: number;
|
|
317
|
+
containerGap: number;
|
|
318
|
+
overflowTargetWidth: number;
|
|
319
|
+
selectedIds: string[] | "all";
|
|
320
|
+
unselectedIds: string[];
|
|
321
|
+
cursorId: string;
|
|
322
|
+
columnCount: number;
|
|
323
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
324
|
+
cursorIndexRef: {
|
|
325
|
+
readonly current: number;
|
|
326
|
+
};
|
|
327
|
+
UNSTABLE_virtual: {
|
|
328
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
329
|
+
totalSize: number;
|
|
330
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
331
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
332
|
+
measure: () => void;
|
|
333
|
+
};
|
|
334
|
+
UNSTABLE_defaultItemHeight: number;
|
|
335
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
336
|
+
id: string;
|
|
337
|
+
indexRef: React.MutableRefObject<number>;
|
|
338
|
+
isVirtualized: boolean;
|
|
339
|
+
items: import("../..").Item<any>[];
|
|
340
|
+
}) => void) | undefined;
|
|
341
|
+
onAddItemSize?: ((data: {
|
|
342
|
+
id: string;
|
|
343
|
+
width: number;
|
|
344
|
+
height: number;
|
|
345
|
+
}, prevState: {
|
|
346
|
+
hiddenIds: string[];
|
|
347
|
+
nonInteractiveIds: string[];
|
|
348
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
349
|
+
itemSizeCache: Record<string, number>;
|
|
259
350
|
itemWidthCache: Record<string, number>;
|
|
351
|
+
containerSize: number;
|
|
260
352
|
containerWidth: number;
|
|
261
353
|
containerGap: number;
|
|
262
|
-
overflowTargetWidth: number;
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
354
|
+
overflowTargetWidth: number;
|
|
355
|
+
selectedIds: string[] | "all";
|
|
356
|
+
unselectedIds: string[];
|
|
357
|
+
cursorId: string;
|
|
358
|
+
columnCount: number;
|
|
359
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
360
|
+
cursorIndexRef: {
|
|
361
|
+
readonly current: number;
|
|
362
|
+
};
|
|
363
|
+
UNSTABLE_virtual: {
|
|
364
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
365
|
+
totalSize: number;
|
|
366
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
367
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
368
|
+
measure: () => void;
|
|
369
|
+
};
|
|
370
|
+
UNSTABLE_defaultItemHeight: number;
|
|
371
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
372
|
+
id: string;
|
|
373
|
+
indexRef: React.MutableRefObject<number>;
|
|
374
|
+
isVirtualized: boolean;
|
|
375
|
+
items: import("../..").Item<any>[];
|
|
376
|
+
}) => void) | undefined;
|
|
377
|
+
onRemoveItemSize?: ((data: {
|
|
378
|
+
id: string;
|
|
379
|
+
}, prevState: {
|
|
380
|
+
hiddenIds: string[];
|
|
381
|
+
nonInteractiveIds: string[];
|
|
382
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
383
|
+
itemSizeCache: Record<string, number>;
|
|
384
|
+
itemWidthCache: Record<string, number>;
|
|
385
|
+
containerSize: number;
|
|
386
|
+
containerWidth: number;
|
|
387
|
+
containerGap: number;
|
|
388
|
+
overflowTargetWidth: number;
|
|
269
389
|
selectedIds: string[] | "all";
|
|
270
390
|
unselectedIds: string[];
|
|
271
391
|
cursorId: string;
|
|
@@ -294,16 +414,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
294
414
|
hiddenIds: string[];
|
|
295
415
|
nonInteractiveIds: string[];
|
|
296
416
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
417
|
+
itemSizeCache: Record<string, number>;
|
|
297
418
|
itemWidthCache: Record<string, number>;
|
|
419
|
+
containerSize: number;
|
|
298
420
|
containerWidth: number;
|
|
299
421
|
containerGap: number;
|
|
300
|
-
overflowTargetWidth: number;
|
|
301
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
302
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
303
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
304
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
305
|
-
* truncated
|
|
306
|
-
*/
|
|
422
|
+
overflowTargetWidth: number;
|
|
307
423
|
selectedIds: string[] | "all";
|
|
308
424
|
unselectedIds: string[];
|
|
309
425
|
cursorId: string;
|
|
@@ -332,16 +448,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
332
448
|
hiddenIds: string[];
|
|
333
449
|
nonInteractiveIds: string[];
|
|
334
450
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
451
|
+
itemSizeCache: Record<string, number>;
|
|
335
452
|
itemWidthCache: Record<string, number>;
|
|
453
|
+
containerSize: number;
|
|
336
454
|
containerWidth: number;
|
|
337
455
|
containerGap: number;
|
|
338
|
-
overflowTargetWidth: number;
|
|
339
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
340
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
341
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
342
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
343
|
-
* truncated
|
|
344
|
-
*/
|
|
456
|
+
overflowTargetWidth: number;
|
|
345
457
|
selectedIds: string[] | "all";
|
|
346
458
|
unselectedIds: string[];
|
|
347
459
|
cursorId: string;
|
|
@@ -370,16 +482,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
370
482
|
hiddenIds: string[];
|
|
371
483
|
nonInteractiveIds: string[];
|
|
372
484
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
485
|
+
itemSizeCache: Record<string, number>;
|
|
373
486
|
itemWidthCache: Record<string, number>;
|
|
487
|
+
containerSize: number;
|
|
374
488
|
containerWidth: number;
|
|
375
489
|
containerGap: number;
|
|
376
|
-
overflowTargetWidth: number;
|
|
377
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
378
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
379
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
380
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
381
|
-
* truncated
|
|
382
|
-
*/
|
|
490
|
+
overflowTargetWidth: number;
|
|
383
491
|
selectedIds: string[] | "all";
|
|
384
492
|
unselectedIds: string[];
|
|
385
493
|
cursorId: string;
|
|
@@ -406,16 +514,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
406
514
|
hiddenIds: string[];
|
|
407
515
|
nonInteractiveIds: string[];
|
|
408
516
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
517
|
+
itemSizeCache: Record<string, number>;
|
|
409
518
|
itemWidthCache: Record<string, number>;
|
|
519
|
+
containerSize: number;
|
|
410
520
|
containerWidth: number;
|
|
411
521
|
containerGap: number;
|
|
412
|
-
overflowTargetWidth: number;
|
|
413
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
414
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
415
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
416
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
417
|
-
* truncated
|
|
418
|
-
*/
|
|
522
|
+
overflowTargetWidth: number;
|
|
419
523
|
selectedIds: string[] | "all";
|
|
420
524
|
unselectedIds: string[];
|
|
421
525
|
cursorId: string;
|
|
@@ -442,16 +546,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
442
546
|
hiddenIds: string[];
|
|
443
547
|
nonInteractiveIds: string[];
|
|
444
548
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
549
|
+
itemSizeCache: Record<string, number>;
|
|
445
550
|
itemWidthCache: Record<string, number>;
|
|
551
|
+
containerSize: number;
|
|
446
552
|
containerWidth: number;
|
|
447
553
|
containerGap: number;
|
|
448
|
-
overflowTargetWidth: number;
|
|
449
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
450
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
451
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
452
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
453
|
-
* truncated
|
|
454
|
-
*/
|
|
554
|
+
overflowTargetWidth: number;
|
|
455
555
|
selectedIds: string[] | "all";
|
|
456
556
|
unselectedIds: string[];
|
|
457
557
|
cursorId: string;
|
|
@@ -478,16 +578,48 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
478
578
|
hiddenIds: string[];
|
|
479
579
|
nonInteractiveIds: string[];
|
|
480
580
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
581
|
+
itemSizeCache: Record<string, number>;
|
|
582
|
+
itemWidthCache: Record<string, number>;
|
|
583
|
+
containerSize: number;
|
|
584
|
+
containerWidth: number;
|
|
585
|
+
containerGap: number;
|
|
586
|
+
overflowTargetWidth: number;
|
|
587
|
+
selectedIds: string[] | "all";
|
|
588
|
+
unselectedIds: string[];
|
|
589
|
+
cursorId: string;
|
|
590
|
+
columnCount: number;
|
|
591
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
592
|
+
cursorIndexRef: {
|
|
593
|
+
readonly current: number;
|
|
594
|
+
};
|
|
595
|
+
UNSTABLE_virtual: {
|
|
596
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
597
|
+
totalSize: number;
|
|
598
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
599
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
600
|
+
measure: () => void;
|
|
601
|
+
};
|
|
602
|
+
UNSTABLE_defaultItemHeight: number;
|
|
603
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
604
|
+
id: string;
|
|
605
|
+
indexRef: React.MutableRefObject<number>;
|
|
606
|
+
isVirtualized: boolean;
|
|
607
|
+
items: import("../..").Item<any>[];
|
|
608
|
+
}) => void) | undefined;
|
|
609
|
+
onRemove?: ((data: {
|
|
610
|
+
id: string;
|
|
611
|
+
nextId?: string | undefined;
|
|
612
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
613
|
+
}, prevState: {
|
|
614
|
+
hiddenIds: string[];
|
|
615
|
+
nonInteractiveIds: string[];
|
|
616
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
617
|
+
itemSizeCache: Record<string, number>;
|
|
481
618
|
itemWidthCache: Record<string, number>;
|
|
619
|
+
containerSize: number;
|
|
482
620
|
containerWidth: number;
|
|
483
621
|
containerGap: number;
|
|
484
|
-
overflowTargetWidth: number;
|
|
485
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
486
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
487
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
488
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
489
|
-
* truncated
|
|
490
|
-
*/
|
|
622
|
+
overflowTargetWidth: number;
|
|
491
623
|
selectedIds: string[] | "all";
|
|
492
624
|
unselectedIds: string[];
|
|
493
625
|
cursorId: string;
|
|
@@ -516,16 +648,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
516
648
|
hiddenIds: string[];
|
|
517
649
|
nonInteractiveIds: string[];
|
|
518
650
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
651
|
+
itemSizeCache: Record<string, number>;
|
|
519
652
|
itemWidthCache: Record<string, number>;
|
|
653
|
+
containerSize: number;
|
|
520
654
|
containerWidth: number;
|
|
521
655
|
containerGap: number;
|
|
522
|
-
overflowTargetWidth: number;
|
|
523
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
524
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
525
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
526
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
527
|
-
* truncated
|
|
528
|
-
*/
|
|
656
|
+
overflowTargetWidth: number;
|
|
529
657
|
selectedIds: string[] | "all";
|
|
530
658
|
unselectedIds: string[];
|
|
531
659
|
cursorId: string;
|
|
@@ -552,16 +680,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
552
680
|
hiddenIds: string[];
|
|
553
681
|
nonInteractiveIds: string[];
|
|
554
682
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
683
|
+
itemSizeCache: Record<string, number>;
|
|
555
684
|
itemWidthCache: Record<string, number>;
|
|
685
|
+
containerSize: number;
|
|
556
686
|
containerWidth: number;
|
|
557
687
|
containerGap: number;
|
|
558
|
-
overflowTargetWidth: number;
|
|
559
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
560
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
561
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
562
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
563
|
-
* truncated
|
|
564
|
-
*/
|
|
688
|
+
overflowTargetWidth: number;
|
|
565
689
|
selectedIds: string[] | "all";
|
|
566
690
|
unselectedIds: string[];
|
|
567
691
|
cursorId: string;
|
|
@@ -588,16 +712,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
588
712
|
hiddenIds: string[];
|
|
589
713
|
nonInteractiveIds: string[];
|
|
590
714
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
715
|
+
itemSizeCache: Record<string, number>;
|
|
591
716
|
itemWidthCache: Record<string, number>;
|
|
717
|
+
containerSize: number;
|
|
592
718
|
containerWidth: number;
|
|
593
719
|
containerGap: number;
|
|
594
|
-
overflowTargetWidth: number;
|
|
595
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
596
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
597
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
598
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
599
|
-
* truncated
|
|
600
|
-
*/
|
|
720
|
+
overflowTargetWidth: number;
|
|
601
721
|
selectedIds: string[] | "all";
|
|
602
722
|
unselectedIds: string[];
|
|
603
723
|
cursorId: string;
|
|
@@ -624,16 +744,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
624
744
|
hiddenIds: string[];
|
|
625
745
|
nonInteractiveIds: string[];
|
|
626
746
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
747
|
+
itemSizeCache: Record<string, number>;
|
|
627
748
|
itemWidthCache: Record<string, number>;
|
|
749
|
+
containerSize: number;
|
|
628
750
|
containerWidth: number;
|
|
629
751
|
containerGap: number;
|
|
630
|
-
overflowTargetWidth: number;
|
|
631
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
632
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
633
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
634
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
635
|
-
* truncated
|
|
636
|
-
*/
|
|
752
|
+
overflowTargetWidth: number;
|
|
637
753
|
selectedIds: string[] | "all";
|
|
638
754
|
unselectedIds: string[];
|
|
639
755
|
cursorId: string;
|
|
@@ -660,16 +776,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
660
776
|
hiddenIds: string[];
|
|
661
777
|
nonInteractiveIds: string[];
|
|
662
778
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
779
|
+
itemSizeCache: Record<string, number>;
|
|
663
780
|
itemWidthCache: Record<string, number>;
|
|
781
|
+
containerSize: number;
|
|
664
782
|
containerWidth: number;
|
|
665
783
|
containerGap: number;
|
|
666
|
-
overflowTargetWidth: number;
|
|
667
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
668
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
669
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
670
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
671
|
-
* truncated
|
|
672
|
-
*/
|
|
784
|
+
overflowTargetWidth: number;
|
|
673
785
|
selectedIds: string[] | "all";
|
|
674
786
|
unselectedIds: string[];
|
|
675
787
|
cursorId: string;
|
|
@@ -696,16 +808,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
696
808
|
hiddenIds: string[];
|
|
697
809
|
nonInteractiveIds: string[];
|
|
698
810
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
811
|
+
itemSizeCache: Record<string, number>;
|
|
699
812
|
itemWidthCache: Record<string, number>;
|
|
813
|
+
containerSize: number;
|
|
700
814
|
containerWidth: number;
|
|
701
815
|
containerGap: number;
|
|
702
|
-
overflowTargetWidth: number;
|
|
703
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
704
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
705
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
706
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
707
|
-
* truncated
|
|
708
|
-
*/
|
|
816
|
+
overflowTargetWidth: number;
|
|
709
817
|
selectedIds: string[] | "all";
|
|
710
818
|
unselectedIds: string[];
|
|
711
819
|
cursorId: string;
|
|
@@ -732,16 +840,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
732
840
|
hiddenIds: string[];
|
|
733
841
|
nonInteractiveIds: string[];
|
|
734
842
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
843
|
+
itemSizeCache: Record<string, number>;
|
|
735
844
|
itemWidthCache: Record<string, number>;
|
|
845
|
+
containerSize: number;
|
|
736
846
|
containerWidth: number;
|
|
737
847
|
containerGap: number;
|
|
738
|
-
overflowTargetWidth: number;
|
|
739
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
740
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
741
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
742
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
743
|
-
* truncated
|
|
744
|
-
*/
|
|
848
|
+
overflowTargetWidth: number;
|
|
745
849
|
selectedIds: string[] | "all";
|
|
746
850
|
unselectedIds: string[];
|
|
747
851
|
cursorId: string;
|
|
@@ -768,16 +872,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
768
872
|
hiddenIds: string[];
|
|
769
873
|
nonInteractiveIds: string[];
|
|
770
874
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
875
|
+
itemSizeCache: Record<string, number>;
|
|
771
876
|
itemWidthCache: Record<string, number>;
|
|
877
|
+
containerSize: number;
|
|
772
878
|
containerWidth: number;
|
|
773
879
|
containerGap: number;
|
|
774
|
-
overflowTargetWidth: number;
|
|
775
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
776
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
777
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
778
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
779
|
-
* truncated
|
|
780
|
-
*/
|
|
880
|
+
overflowTargetWidth: number;
|
|
781
881
|
selectedIds: string[] | "all";
|
|
782
882
|
unselectedIds: string[];
|
|
783
883
|
cursorId: string;
|
|
@@ -804,16 +904,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
804
904
|
hiddenIds: string[];
|
|
805
905
|
nonInteractiveIds: string[];
|
|
806
906
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
907
|
+
itemSizeCache: Record<string, number>;
|
|
807
908
|
itemWidthCache: Record<string, number>;
|
|
909
|
+
containerSize: number;
|
|
808
910
|
containerWidth: number;
|
|
809
911
|
containerGap: number;
|
|
810
|
-
overflowTargetWidth: number;
|
|
811
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
812
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
813
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
814
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
815
|
-
* truncated
|
|
816
|
-
*/
|
|
912
|
+
overflowTargetWidth: number;
|
|
817
913
|
selectedIds: string[] | "all";
|
|
818
914
|
unselectedIds: string[];
|
|
819
915
|
cursorId: string;
|
|
@@ -840,16 +936,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
840
936
|
hiddenIds: string[];
|
|
841
937
|
nonInteractiveIds: string[];
|
|
842
938
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
939
|
+
itemSizeCache: Record<string, number>;
|
|
843
940
|
itemWidthCache: Record<string, number>;
|
|
941
|
+
containerSize: number;
|
|
844
942
|
containerWidth: number;
|
|
845
943
|
containerGap: number;
|
|
846
|
-
overflowTargetWidth: number;
|
|
847
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
848
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
849
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
850
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
851
|
-
* truncated
|
|
852
|
-
*/
|
|
944
|
+
overflowTargetWidth: number;
|
|
853
945
|
selectedIds: string[] | "all";
|
|
854
946
|
unselectedIds: string[];
|
|
855
947
|
cursorId: string;
|
|
@@ -876,16 +968,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
876
968
|
hiddenIds: string[];
|
|
877
969
|
nonInteractiveIds: string[];
|
|
878
970
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
971
|
+
itemSizeCache: Record<string, number>;
|
|
879
972
|
itemWidthCache: Record<string, number>;
|
|
973
|
+
containerSize: number;
|
|
880
974
|
containerWidth: number;
|
|
881
975
|
containerGap: number;
|
|
882
|
-
overflowTargetWidth: number;
|
|
883
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
884
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
885
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
886
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
887
|
-
* truncated
|
|
888
|
-
*/
|
|
976
|
+
overflowTargetWidth: number;
|
|
889
977
|
selectedIds: string[] | "all";
|
|
890
978
|
unselectedIds: string[];
|
|
891
979
|
cursorId: string;
|
|
@@ -915,16 +1003,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
915
1003
|
hiddenIds: string[];
|
|
916
1004
|
nonInteractiveIds: string[];
|
|
917
1005
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1006
|
+
itemSizeCache: Record<string, number>;
|
|
918
1007
|
itemWidthCache: Record<string, number>;
|
|
1008
|
+
containerSize: number;
|
|
919
1009
|
containerWidth: number;
|
|
920
1010
|
containerGap: number;
|
|
921
|
-
overflowTargetWidth: number;
|
|
922
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
923
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
924
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
925
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
926
|
-
* truncated
|
|
927
|
-
*/
|
|
1011
|
+
overflowTargetWidth: number;
|
|
928
1012
|
selectedIds: string[] | "all";
|
|
929
1013
|
unselectedIds: string[];
|
|
930
1014
|
cursorId: string;
|
|
@@ -953,16 +1037,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
953
1037
|
hiddenIds: string[];
|
|
954
1038
|
nonInteractiveIds: string[];
|
|
955
1039
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1040
|
+
itemSizeCache: Record<string, number>;
|
|
956
1041
|
itemWidthCache: Record<string, number>;
|
|
1042
|
+
containerSize: number;
|
|
957
1043
|
containerWidth: number;
|
|
958
1044
|
containerGap: number;
|
|
959
|
-
overflowTargetWidth: number;
|
|
960
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
961
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
962
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
963
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
964
|
-
* truncated
|
|
965
|
-
*/
|
|
1045
|
+
overflowTargetWidth: number;
|
|
966
1046
|
selectedIds: string[] | "all";
|
|
967
1047
|
unselectedIds: string[];
|
|
968
1048
|
cursorId: string;
|
|
@@ -991,16 +1071,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
991
1071
|
hiddenIds: string[];
|
|
992
1072
|
nonInteractiveIds: string[];
|
|
993
1073
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1074
|
+
itemSizeCache: Record<string, number>;
|
|
994
1075
|
itemWidthCache: Record<string, number>;
|
|
1076
|
+
containerSize: number;
|
|
995
1077
|
containerWidth: number;
|
|
996
1078
|
containerGap: number;
|
|
997
|
-
overflowTargetWidth: number;
|
|
998
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
999
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1000
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1001
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1002
|
-
* truncated
|
|
1003
|
-
*/
|
|
1079
|
+
overflowTargetWidth: number;
|
|
1004
1080
|
selectedIds: string[] | "all";
|
|
1005
1081
|
unselectedIds: string[];
|
|
1006
1082
|
cursorId: string;
|
|
@@ -1030,16 +1106,47 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1030
1106
|
hiddenIds: string[];
|
|
1031
1107
|
nonInteractiveIds: string[];
|
|
1032
1108
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1109
|
+
itemSizeCache: Record<string, number>;
|
|
1110
|
+
itemWidthCache: Record<string, number>;
|
|
1111
|
+
containerSize: number;
|
|
1112
|
+
containerWidth: number;
|
|
1113
|
+
containerGap: number;
|
|
1114
|
+
overflowTargetWidth: number;
|
|
1115
|
+
selectedIds: string[] | "all";
|
|
1116
|
+
unselectedIds: string[];
|
|
1117
|
+
cursorId: string;
|
|
1118
|
+
columnCount: number;
|
|
1119
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1120
|
+
cursorIndexRef: {
|
|
1121
|
+
readonly current: number;
|
|
1122
|
+
};
|
|
1123
|
+
UNSTABLE_virtual: {
|
|
1124
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1125
|
+
totalSize: number;
|
|
1126
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1127
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1128
|
+
measure: () => void;
|
|
1129
|
+
};
|
|
1130
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1131
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1132
|
+
id: string;
|
|
1133
|
+
indexRef: React.MutableRefObject<number>;
|
|
1134
|
+
isVirtualized: boolean;
|
|
1135
|
+
items: import("../..").Item<any>[];
|
|
1136
|
+
}) => boolean) | undefined;
|
|
1137
|
+
shouldSetContainerSize?: ((data: {
|
|
1138
|
+
width?: number | undefined;
|
|
1139
|
+
height?: number | undefined;
|
|
1140
|
+
}, state: {
|
|
1141
|
+
hiddenIds: string[];
|
|
1142
|
+
nonInteractiveIds: string[];
|
|
1143
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1144
|
+
itemSizeCache: Record<string, number>;
|
|
1033
1145
|
itemWidthCache: Record<string, number>;
|
|
1146
|
+
containerSize: number;
|
|
1034
1147
|
containerWidth: number;
|
|
1035
1148
|
containerGap: number;
|
|
1036
|
-
overflowTargetWidth: number;
|
|
1037
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1038
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1039
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1040
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1041
|
-
* truncated
|
|
1042
|
-
*/
|
|
1149
|
+
overflowTargetWidth: number;
|
|
1043
1150
|
selectedIds: string[] | "all";
|
|
1044
1151
|
unselectedIds: string[];
|
|
1045
1152
|
cursorId: string;
|
|
@@ -1068,16 +1175,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1068
1175
|
hiddenIds: string[];
|
|
1069
1176
|
nonInteractiveIds: string[];
|
|
1070
1177
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1178
|
+
itemSizeCache: Record<string, number>;
|
|
1071
1179
|
itemWidthCache: Record<string, number>;
|
|
1180
|
+
containerSize: number;
|
|
1072
1181
|
containerWidth: number;
|
|
1073
1182
|
containerGap: number;
|
|
1074
|
-
overflowTargetWidth: number;
|
|
1075
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1076
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1077
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1078
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1079
|
-
* truncated
|
|
1080
|
-
*/
|
|
1183
|
+
overflowTargetWidth: number;
|
|
1081
1184
|
selectedIds: string[] | "all";
|
|
1082
1185
|
unselectedIds: string[];
|
|
1083
1186
|
cursorId: string;
|
|
@@ -1106,16 +1209,47 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1106
1209
|
hiddenIds: string[];
|
|
1107
1210
|
nonInteractiveIds: string[];
|
|
1108
1211
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1212
|
+
itemSizeCache: Record<string, number>;
|
|
1213
|
+
itemWidthCache: Record<string, number>;
|
|
1214
|
+
containerSize: number;
|
|
1215
|
+
containerWidth: number;
|
|
1216
|
+
containerGap: number;
|
|
1217
|
+
overflowTargetWidth: number;
|
|
1218
|
+
selectedIds: string[] | "all";
|
|
1219
|
+
unselectedIds: string[];
|
|
1220
|
+
cursorId: string;
|
|
1221
|
+
columnCount: number;
|
|
1222
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1223
|
+
cursorIndexRef: {
|
|
1224
|
+
readonly current: number;
|
|
1225
|
+
};
|
|
1226
|
+
UNSTABLE_virtual: {
|
|
1227
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1228
|
+
totalSize: number;
|
|
1229
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1230
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1231
|
+
measure: () => void;
|
|
1232
|
+
};
|
|
1233
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1234
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1235
|
+
id: string;
|
|
1236
|
+
indexRef: React.MutableRefObject<number>;
|
|
1237
|
+
isVirtualized: boolean;
|
|
1238
|
+
items: import("../..").Item<any>[];
|
|
1239
|
+
}) => boolean) | undefined;
|
|
1240
|
+
shouldSetOverflowTargetSize?: ((data: {
|
|
1241
|
+
width: number;
|
|
1242
|
+
height: number;
|
|
1243
|
+
}, state: {
|
|
1244
|
+
hiddenIds: string[];
|
|
1245
|
+
nonInteractiveIds: string[];
|
|
1246
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1247
|
+
itemSizeCache: Record<string, number>;
|
|
1109
1248
|
itemWidthCache: Record<string, number>;
|
|
1249
|
+
containerSize: number;
|
|
1110
1250
|
containerWidth: number;
|
|
1111
1251
|
containerGap: number;
|
|
1112
|
-
overflowTargetWidth: number;
|
|
1113
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1114
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1115
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1116
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1117
|
-
* truncated
|
|
1118
|
-
*/
|
|
1252
|
+
overflowTargetWidth: number;
|
|
1119
1253
|
selectedIds: string[] | "all";
|
|
1120
1254
|
unselectedIds: string[];
|
|
1121
1255
|
cursorId: string;
|
|
@@ -1144,16 +1278,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1144
1278
|
hiddenIds: string[];
|
|
1145
1279
|
nonInteractiveIds: string[];
|
|
1146
1280
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1281
|
+
itemSizeCache: Record<string, number>;
|
|
1147
1282
|
itemWidthCache: Record<string, number>;
|
|
1283
|
+
containerSize: number;
|
|
1148
1284
|
containerWidth: number;
|
|
1149
1285
|
containerGap: number;
|
|
1150
|
-
overflowTargetWidth: number;
|
|
1151
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1152
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1153
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1154
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1155
|
-
* truncated
|
|
1156
|
-
*/
|
|
1286
|
+
overflowTargetWidth: number;
|
|
1157
1287
|
selectedIds: string[] | "all";
|
|
1158
1288
|
unselectedIds: string[];
|
|
1159
1289
|
cursorId: string;
|
|
@@ -1183,16 +1313,82 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1183
1313
|
hiddenIds: string[];
|
|
1184
1314
|
nonInteractiveIds: string[];
|
|
1185
1315
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1316
|
+
itemSizeCache: Record<string, number>;
|
|
1186
1317
|
itemWidthCache: Record<string, number>;
|
|
1318
|
+
containerSize: number;
|
|
1187
1319
|
containerWidth: number;
|
|
1188
1320
|
containerGap: number;
|
|
1189
|
-
overflowTargetWidth: number;
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1321
|
+
overflowTargetWidth: number;
|
|
1322
|
+
selectedIds: string[] | "all";
|
|
1323
|
+
unselectedIds: string[];
|
|
1324
|
+
cursorId: string;
|
|
1325
|
+
columnCount: number;
|
|
1326
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1327
|
+
cursorIndexRef: {
|
|
1328
|
+
readonly current: number;
|
|
1329
|
+
};
|
|
1330
|
+
UNSTABLE_virtual: {
|
|
1331
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1332
|
+
totalSize: number;
|
|
1333
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1334
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1335
|
+
measure: () => void;
|
|
1336
|
+
};
|
|
1337
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1338
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1339
|
+
id: string;
|
|
1340
|
+
indexRef: React.MutableRefObject<number>;
|
|
1341
|
+
isVirtualized: boolean;
|
|
1342
|
+
items: import("../..").Item<any>[];
|
|
1343
|
+
}) => boolean) | undefined;
|
|
1344
|
+
shouldAddItemSize?: ((data: {
|
|
1345
|
+
id: string;
|
|
1346
|
+
width: number;
|
|
1347
|
+
height: number;
|
|
1348
|
+
}, state: {
|
|
1349
|
+
hiddenIds: string[];
|
|
1350
|
+
nonInteractiveIds: string[];
|
|
1351
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1352
|
+
itemSizeCache: Record<string, number>;
|
|
1353
|
+
itemWidthCache: Record<string, number>;
|
|
1354
|
+
containerSize: number;
|
|
1355
|
+
containerWidth: number;
|
|
1356
|
+
containerGap: number;
|
|
1357
|
+
overflowTargetWidth: number;
|
|
1358
|
+
selectedIds: string[] | "all";
|
|
1359
|
+
unselectedIds: string[];
|
|
1360
|
+
cursorId: string;
|
|
1361
|
+
columnCount: number;
|
|
1362
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1363
|
+
cursorIndexRef: {
|
|
1364
|
+
readonly current: number;
|
|
1365
|
+
};
|
|
1366
|
+
UNSTABLE_virtual: {
|
|
1367
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1368
|
+
totalSize: number;
|
|
1369
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1370
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1371
|
+
measure: () => void;
|
|
1372
|
+
};
|
|
1373
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1374
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1375
|
+
id: string;
|
|
1376
|
+
indexRef: React.MutableRefObject<number>;
|
|
1377
|
+
isVirtualized: boolean;
|
|
1378
|
+
items: import("../..").Item<any>[];
|
|
1379
|
+
}) => boolean) | undefined;
|
|
1380
|
+
shouldRemoveItemSize?: ((data: {
|
|
1381
|
+
id: string;
|
|
1382
|
+
}, state: {
|
|
1383
|
+
hiddenIds: string[];
|
|
1384
|
+
nonInteractiveIds: string[];
|
|
1385
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1386
|
+
itemSizeCache: Record<string, number>;
|
|
1387
|
+
itemWidthCache: Record<string, number>;
|
|
1388
|
+
containerSize: number;
|
|
1389
|
+
containerWidth: number;
|
|
1390
|
+
containerGap: number;
|
|
1391
|
+
overflowTargetWidth: number;
|
|
1196
1392
|
selectedIds: string[] | "all";
|
|
1197
1393
|
unselectedIds: string[];
|
|
1198
1394
|
cursorId: string;
|
|
@@ -1221,16 +1417,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1221
1417
|
hiddenIds: string[];
|
|
1222
1418
|
nonInteractiveIds: string[];
|
|
1223
1419
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1420
|
+
itemSizeCache: Record<string, number>;
|
|
1224
1421
|
itemWidthCache: Record<string, number>;
|
|
1422
|
+
containerSize: number;
|
|
1225
1423
|
containerWidth: number;
|
|
1226
1424
|
containerGap: number;
|
|
1227
|
-
overflowTargetWidth: number;
|
|
1228
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1229
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1230
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1231
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1232
|
-
* truncated
|
|
1233
|
-
*/
|
|
1425
|
+
overflowTargetWidth: number;
|
|
1234
1426
|
selectedIds: string[] | "all";
|
|
1235
1427
|
unselectedIds: string[];
|
|
1236
1428
|
cursorId: string;
|
|
@@ -1259,16 +1451,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1259
1451
|
hiddenIds: string[];
|
|
1260
1452
|
nonInteractiveIds: string[];
|
|
1261
1453
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1454
|
+
itemSizeCache: Record<string, number>;
|
|
1262
1455
|
itemWidthCache: Record<string, number>;
|
|
1456
|
+
containerSize: number;
|
|
1263
1457
|
containerWidth: number;
|
|
1264
1458
|
containerGap: number;
|
|
1265
|
-
overflowTargetWidth: number;
|
|
1266
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1267
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1268
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1269
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1270
|
-
* truncated
|
|
1271
|
-
*/
|
|
1459
|
+
overflowTargetWidth: number;
|
|
1272
1460
|
selectedIds: string[] | "all";
|
|
1273
1461
|
unselectedIds: string[];
|
|
1274
1462
|
cursorId: string;
|
|
@@ -1297,16 +1485,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1297
1485
|
hiddenIds: string[];
|
|
1298
1486
|
nonInteractiveIds: string[];
|
|
1299
1487
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1488
|
+
itemSizeCache: Record<string, number>;
|
|
1300
1489
|
itemWidthCache: Record<string, number>;
|
|
1490
|
+
containerSize: number;
|
|
1301
1491
|
containerWidth: number;
|
|
1302
1492
|
containerGap: number;
|
|
1303
|
-
overflowTargetWidth: number;
|
|
1304
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1305
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1306
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1307
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1308
|
-
* truncated
|
|
1309
|
-
*/
|
|
1493
|
+
overflowTargetWidth: number;
|
|
1310
1494
|
selectedIds: string[] | "all";
|
|
1311
1495
|
unselectedIds: string[];
|
|
1312
1496
|
cursorId: string;
|
|
@@ -1333,16 +1517,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1333
1517
|
hiddenIds: string[];
|
|
1334
1518
|
nonInteractiveIds: string[];
|
|
1335
1519
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1520
|
+
itemSizeCache: Record<string, number>;
|
|
1336
1521
|
itemWidthCache: Record<string, number>;
|
|
1522
|
+
containerSize: number;
|
|
1337
1523
|
containerWidth: number;
|
|
1338
1524
|
containerGap: number;
|
|
1339
|
-
overflowTargetWidth: number;
|
|
1340
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1341
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1342
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1343
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1344
|
-
* truncated
|
|
1345
|
-
*/
|
|
1525
|
+
overflowTargetWidth: number;
|
|
1346
1526
|
selectedIds: string[] | "all";
|
|
1347
1527
|
unselectedIds: string[];
|
|
1348
1528
|
cursorId: string;
|
|
@@ -1369,16 +1549,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1369
1549
|
hiddenIds: string[];
|
|
1370
1550
|
nonInteractiveIds: string[];
|
|
1371
1551
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1552
|
+
itemSizeCache: Record<string, number>;
|
|
1372
1553
|
itemWidthCache: Record<string, number>;
|
|
1554
|
+
containerSize: number;
|
|
1373
1555
|
containerWidth: number;
|
|
1374
1556
|
containerGap: number;
|
|
1375
|
-
overflowTargetWidth: number;
|
|
1376
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1377
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1378
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1379
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1380
|
-
* truncated
|
|
1381
|
-
*/
|
|
1557
|
+
overflowTargetWidth: number;
|
|
1382
1558
|
selectedIds: string[] | "all";
|
|
1383
1559
|
unselectedIds: string[];
|
|
1384
1560
|
cursorId: string;
|
|
@@ -1405,16 +1581,48 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1405
1581
|
hiddenIds: string[];
|
|
1406
1582
|
nonInteractiveIds: string[];
|
|
1407
1583
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1584
|
+
itemSizeCache: Record<string, number>;
|
|
1585
|
+
itemWidthCache: Record<string, number>;
|
|
1586
|
+
containerSize: number;
|
|
1587
|
+
containerWidth: number;
|
|
1588
|
+
containerGap: number;
|
|
1589
|
+
overflowTargetWidth: number;
|
|
1590
|
+
selectedIds: string[] | "all";
|
|
1591
|
+
unselectedIds: string[];
|
|
1592
|
+
cursorId: string;
|
|
1593
|
+
columnCount: number;
|
|
1594
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
1595
|
+
cursorIndexRef: {
|
|
1596
|
+
readonly current: number;
|
|
1597
|
+
};
|
|
1598
|
+
UNSTABLE_virtual: {
|
|
1599
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
1600
|
+
totalSize: number;
|
|
1601
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
1602
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
1603
|
+
measure: () => void;
|
|
1604
|
+
};
|
|
1605
|
+
UNSTABLE_defaultItemHeight: number;
|
|
1606
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1607
|
+
id: string;
|
|
1608
|
+
indexRef: React.MutableRefObject<number>;
|
|
1609
|
+
isVirtualized: boolean;
|
|
1610
|
+
items: import("../..").Item<any>[];
|
|
1611
|
+
}) => boolean) | undefined;
|
|
1612
|
+
shouldRemove?: ((data: {
|
|
1613
|
+
id: string;
|
|
1614
|
+
nextId?: string | undefined;
|
|
1615
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
1616
|
+
}, state: {
|
|
1617
|
+
hiddenIds: string[];
|
|
1618
|
+
nonInteractiveIds: string[];
|
|
1619
|
+
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1620
|
+
itemSizeCache: Record<string, number>;
|
|
1408
1621
|
itemWidthCache: Record<string, number>;
|
|
1622
|
+
containerSize: number;
|
|
1409
1623
|
containerWidth: number;
|
|
1410
1624
|
containerGap: number;
|
|
1411
|
-
overflowTargetWidth: number;
|
|
1412
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1413
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1414
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1415
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1416
|
-
* truncated
|
|
1417
|
-
*/
|
|
1625
|
+
overflowTargetWidth: number;
|
|
1418
1626
|
selectedIds: string[] | "all";
|
|
1419
1627
|
unselectedIds: string[];
|
|
1420
1628
|
cursorId: string;
|
|
@@ -1443,16 +1651,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1443
1651
|
hiddenIds: string[];
|
|
1444
1652
|
nonInteractiveIds: string[];
|
|
1445
1653
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1654
|
+
itemSizeCache: Record<string, number>;
|
|
1446
1655
|
itemWidthCache: Record<string, number>;
|
|
1656
|
+
containerSize: number;
|
|
1447
1657
|
containerWidth: number;
|
|
1448
1658
|
containerGap: number;
|
|
1449
|
-
overflowTargetWidth: number;
|
|
1450
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1451
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1452
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1453
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1454
|
-
* truncated
|
|
1455
|
-
*/
|
|
1659
|
+
overflowTargetWidth: number;
|
|
1456
1660
|
selectedIds: string[] | "all";
|
|
1457
1661
|
unselectedIds: string[];
|
|
1458
1662
|
cursorId: string;
|
|
@@ -1479,16 +1683,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1479
1683
|
hiddenIds: string[];
|
|
1480
1684
|
nonInteractiveIds: string[];
|
|
1481
1685
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1686
|
+
itemSizeCache: Record<string, number>;
|
|
1482
1687
|
itemWidthCache: Record<string, number>;
|
|
1688
|
+
containerSize: number;
|
|
1483
1689
|
containerWidth: number;
|
|
1484
1690
|
containerGap: number;
|
|
1485
|
-
overflowTargetWidth: number;
|
|
1486
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1487
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1488
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1489
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1490
|
-
* truncated
|
|
1491
|
-
*/
|
|
1691
|
+
overflowTargetWidth: number;
|
|
1492
1692
|
selectedIds: string[] | "all";
|
|
1493
1693
|
unselectedIds: string[];
|
|
1494
1694
|
cursorId: string;
|
|
@@ -1515,16 +1715,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1515
1715
|
hiddenIds: string[];
|
|
1516
1716
|
nonInteractiveIds: string[];
|
|
1517
1717
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1718
|
+
itemSizeCache: Record<string, number>;
|
|
1518
1719
|
itemWidthCache: Record<string, number>;
|
|
1720
|
+
containerSize: number;
|
|
1519
1721
|
containerWidth: number;
|
|
1520
1722
|
containerGap: number;
|
|
1521
|
-
overflowTargetWidth: number;
|
|
1522
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1523
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1524
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1525
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1526
|
-
* truncated
|
|
1527
|
-
*/
|
|
1723
|
+
overflowTargetWidth: number;
|
|
1528
1724
|
selectedIds: string[] | "all";
|
|
1529
1725
|
unselectedIds: string[];
|
|
1530
1726
|
cursorId: string;
|
|
@@ -1551,16 +1747,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1551
1747
|
hiddenIds: string[];
|
|
1552
1748
|
nonInteractiveIds: string[];
|
|
1553
1749
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1750
|
+
itemSizeCache: Record<string, number>;
|
|
1554
1751
|
itemWidthCache: Record<string, number>;
|
|
1752
|
+
containerSize: number;
|
|
1555
1753
|
containerWidth: number;
|
|
1556
1754
|
containerGap: number;
|
|
1557
|
-
overflowTargetWidth: number;
|
|
1558
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1559
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1560
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1561
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1562
|
-
* truncated
|
|
1563
|
-
*/
|
|
1755
|
+
overflowTargetWidth: number;
|
|
1564
1756
|
selectedIds: string[] | "all";
|
|
1565
1757
|
unselectedIds: string[];
|
|
1566
1758
|
cursorId: string;
|
|
@@ -1587,16 +1779,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1587
1779
|
hiddenIds: string[];
|
|
1588
1780
|
nonInteractiveIds: string[];
|
|
1589
1781
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1782
|
+
itemSizeCache: Record<string, number>;
|
|
1590
1783
|
itemWidthCache: Record<string, number>;
|
|
1784
|
+
containerSize: number;
|
|
1591
1785
|
containerWidth: number;
|
|
1592
1786
|
containerGap: number;
|
|
1593
|
-
overflowTargetWidth: number;
|
|
1594
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1595
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1596
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1597
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1598
|
-
* truncated
|
|
1599
|
-
*/
|
|
1787
|
+
overflowTargetWidth: number;
|
|
1600
1788
|
selectedIds: string[] | "all";
|
|
1601
1789
|
unselectedIds: string[];
|
|
1602
1790
|
cursorId: string;
|
|
@@ -1623,16 +1811,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1623
1811
|
hiddenIds: string[];
|
|
1624
1812
|
nonInteractiveIds: string[];
|
|
1625
1813
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1814
|
+
itemSizeCache: Record<string, number>;
|
|
1626
1815
|
itemWidthCache: Record<string, number>;
|
|
1816
|
+
containerSize: number;
|
|
1627
1817
|
containerWidth: number;
|
|
1628
1818
|
containerGap: number;
|
|
1629
|
-
overflowTargetWidth: number;
|
|
1630
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1631
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1632
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1633
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1634
|
-
* truncated
|
|
1635
|
-
*/
|
|
1819
|
+
overflowTargetWidth: number;
|
|
1636
1820
|
selectedIds: string[] | "all";
|
|
1637
1821
|
unselectedIds: string[];
|
|
1638
1822
|
cursorId: string;
|
|
@@ -1659,16 +1843,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1659
1843
|
hiddenIds: string[];
|
|
1660
1844
|
nonInteractiveIds: string[];
|
|
1661
1845
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1846
|
+
itemSizeCache: Record<string, number>;
|
|
1662
1847
|
itemWidthCache: Record<string, number>;
|
|
1848
|
+
containerSize: number;
|
|
1663
1849
|
containerWidth: number;
|
|
1664
1850
|
containerGap: number;
|
|
1665
|
-
overflowTargetWidth: number;
|
|
1666
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1667
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1668
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1669
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1670
|
-
* truncated
|
|
1671
|
-
*/
|
|
1851
|
+
overflowTargetWidth: number;
|
|
1672
1852
|
selectedIds: string[] | "all";
|
|
1673
1853
|
unselectedIds: string[];
|
|
1674
1854
|
cursorId: string;
|
|
@@ -1695,16 +1875,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1695
1875
|
hiddenIds: string[];
|
|
1696
1876
|
nonInteractiveIds: string[];
|
|
1697
1877
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1878
|
+
itemSizeCache: Record<string, number>;
|
|
1698
1879
|
itemWidthCache: Record<string, number>;
|
|
1880
|
+
containerSize: number;
|
|
1699
1881
|
containerWidth: number;
|
|
1700
1882
|
containerGap: number;
|
|
1701
|
-
overflowTargetWidth: number;
|
|
1702
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1703
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1704
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1705
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1706
|
-
* truncated
|
|
1707
|
-
*/
|
|
1883
|
+
overflowTargetWidth: number;
|
|
1708
1884
|
selectedIds: string[] | "all";
|
|
1709
1885
|
unselectedIds: string[];
|
|
1710
1886
|
cursorId: string;
|
|
@@ -1731,16 +1907,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1731
1907
|
hiddenIds: string[];
|
|
1732
1908
|
nonInteractiveIds: string[];
|
|
1733
1909
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1910
|
+
itemSizeCache: Record<string, number>;
|
|
1734
1911
|
itemWidthCache: Record<string, number>;
|
|
1912
|
+
containerSize: number;
|
|
1735
1913
|
containerWidth: number;
|
|
1736
1914
|
containerGap: number;
|
|
1737
|
-
overflowTargetWidth: number;
|
|
1738
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1739
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1740
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1741
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1742
|
-
* truncated
|
|
1743
|
-
*/
|
|
1915
|
+
overflowTargetWidth: number;
|
|
1744
1916
|
selectedIds: string[] | "all";
|
|
1745
1917
|
unselectedIds: string[];
|
|
1746
1918
|
cursorId: string;
|
|
@@ -1767,16 +1939,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1767
1939
|
hiddenIds: string[];
|
|
1768
1940
|
nonInteractiveIds: string[];
|
|
1769
1941
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1942
|
+
itemSizeCache: Record<string, number>;
|
|
1770
1943
|
itemWidthCache: Record<string, number>;
|
|
1944
|
+
containerSize: number;
|
|
1771
1945
|
containerWidth: number;
|
|
1772
1946
|
containerGap: number;
|
|
1773
|
-
overflowTargetWidth: number;
|
|
1774
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1775
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1776
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1777
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1778
|
-
* truncated
|
|
1779
|
-
*/
|
|
1947
|
+
overflowTargetWidth: number;
|
|
1780
1948
|
selectedIds: string[] | "all";
|
|
1781
1949
|
unselectedIds: string[];
|
|
1782
1950
|
cursorId: string;
|
|
@@ -1803,16 +1971,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1803
1971
|
hiddenIds: string[];
|
|
1804
1972
|
nonInteractiveIds: string[];
|
|
1805
1973
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
1974
|
+
itemSizeCache: Record<string, number>;
|
|
1806
1975
|
itemWidthCache: Record<string, number>;
|
|
1976
|
+
containerSize: number;
|
|
1807
1977
|
containerWidth: number;
|
|
1808
1978
|
containerGap: number;
|
|
1809
|
-
overflowTargetWidth: number;
|
|
1810
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1811
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1812
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1813
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1814
|
-
* truncated
|
|
1815
|
-
*/
|
|
1979
|
+
overflowTargetWidth: number;
|
|
1816
1980
|
selectedIds: string[] | "all";
|
|
1817
1981
|
unselectedIds: string[];
|
|
1818
1982
|
cursorId: string;
|
|
@@ -1842,16 +2006,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1842
2006
|
hiddenIds: string[];
|
|
1843
2007
|
nonInteractiveIds: string[];
|
|
1844
2008
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2009
|
+
itemSizeCache: Record<string, number>;
|
|
1845
2010
|
itemWidthCache: Record<string, number>;
|
|
2011
|
+
containerSize: number;
|
|
1846
2012
|
containerWidth: number;
|
|
1847
2013
|
containerGap: number;
|
|
1848
|
-
overflowTargetWidth: number;
|
|
1849
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1850
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1851
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1852
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1853
|
-
* truncated
|
|
1854
|
-
*/
|
|
2014
|
+
overflowTargetWidth: number;
|
|
1855
2015
|
selectedIds: string[] | "all";
|
|
1856
2016
|
unselectedIds: string[];
|
|
1857
2017
|
cursorId: string;
|
|
@@ -1880,16 +2040,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1880
2040
|
hiddenIds: string[];
|
|
1881
2041
|
nonInteractiveIds: string[];
|
|
1882
2042
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2043
|
+
itemSizeCache: Record<string, number>;
|
|
1883
2044
|
itemWidthCache: Record<string, number>;
|
|
2045
|
+
containerSize: number;
|
|
1884
2046
|
containerWidth: number;
|
|
1885
2047
|
containerGap: number;
|
|
1886
|
-
overflowTargetWidth: number;
|
|
1887
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1888
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1889
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1890
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1891
|
-
* truncated
|
|
1892
|
-
*/
|
|
2048
|
+
overflowTargetWidth: number;
|
|
1893
2049
|
selectedIds: string[] | "all";
|
|
1894
2050
|
unselectedIds: string[];
|
|
1895
2051
|
cursorId: string;
|
|
@@ -1918,16 +2074,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1918
2074
|
hiddenIds: string[];
|
|
1919
2075
|
nonInteractiveIds: string[];
|
|
1920
2076
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2077
|
+
itemSizeCache: Record<string, number>;
|
|
1921
2078
|
itemWidthCache: Record<string, number>;
|
|
2079
|
+
containerSize: number;
|
|
1922
2080
|
containerWidth: number;
|
|
1923
2081
|
containerGap: number;
|
|
1924
|
-
overflowTargetWidth: number;
|
|
1925
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1926
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1927
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1928
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1929
|
-
* truncated
|
|
1930
|
-
*/
|
|
2082
|
+
overflowTargetWidth: number;
|
|
1931
2083
|
selectedIds: string[] | "all";
|
|
1932
2084
|
unselectedIds: string[];
|
|
1933
2085
|
cursorId: string;
|
|
@@ -1955,16 +2107,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1955
2107
|
hiddenIds: string[];
|
|
1956
2108
|
nonInteractiveIds: string[];
|
|
1957
2109
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2110
|
+
itemSizeCache: Record<string, number>;
|
|
1958
2111
|
itemWidthCache: Record<string, number>;
|
|
2112
|
+
containerSize: number;
|
|
1959
2113
|
containerWidth: number;
|
|
1960
2114
|
containerGap: number;
|
|
1961
|
-
overflowTargetWidth: number;
|
|
1962
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
1963
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
1964
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
1965
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
1966
|
-
* truncated
|
|
1967
|
-
*/
|
|
2115
|
+
overflowTargetWidth: number;
|
|
1968
2116
|
selectedIds: string[] | "all";
|
|
1969
2117
|
unselectedIds: string[];
|
|
1970
2118
|
cursorId: string;
|
|
@@ -1991,12 +2139,20 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
1991
2139
|
select(data: {
|
|
1992
2140
|
id: string;
|
|
1993
2141
|
}): void;
|
|
2142
|
+
setContainerSize(data: {
|
|
2143
|
+
width?: number | undefined;
|
|
2144
|
+
height?: number | undefined;
|
|
2145
|
+
}): void;
|
|
1994
2146
|
setContainerWidth(data: {
|
|
1995
2147
|
width?: number | undefined;
|
|
1996
2148
|
}): void;
|
|
1997
2149
|
setContainerGap(data: {
|
|
1998
2150
|
size: number;
|
|
1999
2151
|
}): void;
|
|
2152
|
+
setOverflowTargetSize(data: {
|
|
2153
|
+
width: number;
|
|
2154
|
+
height: number;
|
|
2155
|
+
}): void;
|
|
2000
2156
|
setOverflowTargetWidth(data: {
|
|
2001
2157
|
width: number;
|
|
2002
2158
|
}): void;
|
|
@@ -2004,6 +2160,14 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2004
2160
|
id: string;
|
|
2005
2161
|
width: number;
|
|
2006
2162
|
}): void;
|
|
2163
|
+
addItemSize(data: {
|
|
2164
|
+
id: string;
|
|
2165
|
+
width: number;
|
|
2166
|
+
height: number;
|
|
2167
|
+
}): void;
|
|
2168
|
+
removeItemSize(data: {
|
|
2169
|
+
id: string;
|
|
2170
|
+
}): void;
|
|
2007
2171
|
removeItemWidth(data: {
|
|
2008
2172
|
id: string;
|
|
2009
2173
|
}): void;
|
|
@@ -2016,6 +2180,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2016
2180
|
selectAll(): void;
|
|
2017
2181
|
unselectAll(): void;
|
|
2018
2182
|
setSelectedIds(ids: string[] | "all"): void;
|
|
2183
|
+
remove(data: {
|
|
2184
|
+
id: string;
|
|
2185
|
+
nextId?: string | undefined;
|
|
2186
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2187
|
+
}): void;
|
|
2019
2188
|
goTo(data: {
|
|
2020
2189
|
id: string;
|
|
2021
2190
|
}): void;
|
|
@@ -2085,6 +2254,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2085
2254
|
selectAll(): void;
|
|
2086
2255
|
unselectAll(): void;
|
|
2087
2256
|
setSelectedIds(ids: string[] | "all"): void;
|
|
2257
|
+
remove(data: {
|
|
2258
|
+
id: string;
|
|
2259
|
+
nextId?: string | undefined;
|
|
2260
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2261
|
+
}): void;
|
|
2088
2262
|
goTo(data: {
|
|
2089
2263
|
id: string;
|
|
2090
2264
|
}): void;
|
|
@@ -2143,16 +2317,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2143
2317
|
hiddenIds: string[];
|
|
2144
2318
|
nonInteractiveIds: string[];
|
|
2145
2319
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2320
|
+
itemSizeCache: Record<string, number>;
|
|
2146
2321
|
itemWidthCache: Record<string, number>;
|
|
2322
|
+
containerSize: number;
|
|
2147
2323
|
containerWidth: number;
|
|
2148
2324
|
containerGap: number;
|
|
2149
|
-
overflowTargetWidth: number;
|
|
2150
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
2151
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
2152
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
2153
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
2154
|
-
* truncated
|
|
2155
|
-
*/
|
|
2325
|
+
overflowTargetWidth: number;
|
|
2156
2326
|
selectedIds: string[] | "all";
|
|
2157
2327
|
unselectedIds: string[];
|
|
2158
2328
|
cursorId: string;
|
|
@@ -2179,12 +2349,20 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2179
2349
|
select(data: {
|
|
2180
2350
|
id: string;
|
|
2181
2351
|
}): void;
|
|
2352
|
+
setContainerSize(data: {
|
|
2353
|
+
width?: number | undefined;
|
|
2354
|
+
height?: number | undefined;
|
|
2355
|
+
}): void;
|
|
2182
2356
|
setContainerWidth(data: {
|
|
2183
2357
|
width?: number | undefined;
|
|
2184
2358
|
}): void;
|
|
2185
2359
|
setContainerGap(data: {
|
|
2186
2360
|
size: number;
|
|
2187
2361
|
}): void;
|
|
2362
|
+
setOverflowTargetSize(data: {
|
|
2363
|
+
width: number;
|
|
2364
|
+
height: number;
|
|
2365
|
+
}): void;
|
|
2188
2366
|
setOverflowTargetWidth(data: {
|
|
2189
2367
|
width: number;
|
|
2190
2368
|
}): void;
|
|
@@ -2192,6 +2370,14 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2192
2370
|
id: string;
|
|
2193
2371
|
width: number;
|
|
2194
2372
|
}): void;
|
|
2373
|
+
addItemSize(data: {
|
|
2374
|
+
id: string;
|
|
2375
|
+
width: number;
|
|
2376
|
+
height: number;
|
|
2377
|
+
}): void;
|
|
2378
|
+
removeItemSize(data: {
|
|
2379
|
+
id: string;
|
|
2380
|
+
}): void;
|
|
2195
2381
|
removeItemWidth(data: {
|
|
2196
2382
|
id: string;
|
|
2197
2383
|
}): void;
|
|
@@ -2204,6 +2390,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2204
2390
|
selectAll(): void;
|
|
2205
2391
|
unselectAll(): void;
|
|
2206
2392
|
setSelectedIds(ids: string[] | "all"): void;
|
|
2393
|
+
remove(data: {
|
|
2394
|
+
id: string;
|
|
2395
|
+
nextId?: string | undefined;
|
|
2396
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2397
|
+
}): void;
|
|
2207
2398
|
goTo(data: {
|
|
2208
2399
|
id: string;
|
|
2209
2400
|
}): void;
|
|
@@ -2273,6 +2464,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2273
2464
|
selectAll(): void;
|
|
2274
2465
|
unselectAll(): void;
|
|
2275
2466
|
setSelectedIds(ids: string[] | "all"): void;
|
|
2467
|
+
remove(data: {
|
|
2468
|
+
id: string;
|
|
2469
|
+
nextId?: string | undefined;
|
|
2470
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2471
|
+
}): void;
|
|
2276
2472
|
goTo(data: {
|
|
2277
2473
|
id: string;
|
|
2278
2474
|
}): void;
|
|
@@ -2324,16 +2520,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2324
2520
|
hiddenIds: string[];
|
|
2325
2521
|
nonInteractiveIds: string[];
|
|
2326
2522
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2523
|
+
itemSizeCache: Record<string, number>;
|
|
2327
2524
|
itemWidthCache: Record<string, number>;
|
|
2525
|
+
containerSize: number;
|
|
2328
2526
|
containerWidth: number;
|
|
2329
2527
|
containerGap: number;
|
|
2330
|
-
overflowTargetWidth: number;
|
|
2331
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
2332
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
2333
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
2334
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
2335
|
-
* truncated
|
|
2336
|
-
*/
|
|
2528
|
+
overflowTargetWidth: number;
|
|
2337
2529
|
selectedIds: string[] | "all";
|
|
2338
2530
|
unselectedIds: string[];
|
|
2339
2531
|
cursorId: string;
|
|
@@ -2360,12 +2552,20 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2360
2552
|
select(data: {
|
|
2361
2553
|
id: string;
|
|
2362
2554
|
}): void;
|
|
2555
|
+
setContainerSize(data: {
|
|
2556
|
+
width?: number | undefined;
|
|
2557
|
+
height?: number | undefined;
|
|
2558
|
+
}): void;
|
|
2363
2559
|
setContainerWidth(data: {
|
|
2364
2560
|
width?: number | undefined;
|
|
2365
2561
|
}): void;
|
|
2366
2562
|
setContainerGap(data: {
|
|
2367
2563
|
size: number;
|
|
2368
2564
|
}): void;
|
|
2565
|
+
setOverflowTargetSize(data: {
|
|
2566
|
+
width: number;
|
|
2567
|
+
height: number;
|
|
2568
|
+
}): void;
|
|
2369
2569
|
setOverflowTargetWidth(data: {
|
|
2370
2570
|
width: number;
|
|
2371
2571
|
}): void;
|
|
@@ -2373,6 +2573,14 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2373
2573
|
id: string;
|
|
2374
2574
|
width: number;
|
|
2375
2575
|
}): void;
|
|
2576
|
+
addItemSize(data: {
|
|
2577
|
+
id: string;
|
|
2578
|
+
width: number;
|
|
2579
|
+
height: number;
|
|
2580
|
+
}): void;
|
|
2581
|
+
removeItemSize(data: {
|
|
2582
|
+
id: string;
|
|
2583
|
+
}): void;
|
|
2376
2584
|
removeItemWidth(data: {
|
|
2377
2585
|
id: string;
|
|
2378
2586
|
}): void;
|
|
@@ -2385,6 +2593,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2385
2593
|
selectAll(): void;
|
|
2386
2594
|
unselectAll(): void;
|
|
2387
2595
|
setSelectedIds(ids: string[] | "all"): void;
|
|
2596
|
+
remove(data: {
|
|
2597
|
+
id: string;
|
|
2598
|
+
nextId?: string | undefined;
|
|
2599
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2600
|
+
}): void;
|
|
2388
2601
|
goTo(data: {
|
|
2389
2602
|
id: string;
|
|
2390
2603
|
}): void;
|
|
@@ -2454,6 +2667,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2454
2667
|
selectAll(): void;
|
|
2455
2668
|
unselectAll(): void;
|
|
2456
2669
|
setSelectedIds(ids: string[] | "all"): void;
|
|
2670
|
+
remove(data: {
|
|
2671
|
+
id: string;
|
|
2672
|
+
nextId?: string | undefined;
|
|
2673
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2674
|
+
}): void;
|
|
2457
2675
|
goTo(data: {
|
|
2458
2676
|
id: string;
|
|
2459
2677
|
}): void;
|
|
@@ -2511,16 +2729,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2511
2729
|
hiddenIds: string[];
|
|
2512
2730
|
nonInteractiveIds: string[];
|
|
2513
2731
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2732
|
+
itemSizeCache: Record<string, number>;
|
|
2514
2733
|
itemWidthCache: Record<string, number>;
|
|
2734
|
+
containerSize: number;
|
|
2515
2735
|
containerWidth: number;
|
|
2516
2736
|
containerGap: number;
|
|
2517
|
-
overflowTargetWidth: number;
|
|
2518
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
2519
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
2520
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
2521
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
2522
|
-
* truncated
|
|
2523
|
-
*/
|
|
2737
|
+
overflowTargetWidth: number;
|
|
2524
2738
|
selectedIds: string[] | "all";
|
|
2525
2739
|
unselectedIds: string[];
|
|
2526
2740
|
cursorId: string;
|
|
@@ -2547,12 +2761,20 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2547
2761
|
select(data: {
|
|
2548
2762
|
id: string;
|
|
2549
2763
|
}): void;
|
|
2764
|
+
setContainerSize(data: {
|
|
2765
|
+
width?: number | undefined;
|
|
2766
|
+
height?: number | undefined;
|
|
2767
|
+
}): void;
|
|
2550
2768
|
setContainerWidth(data: {
|
|
2551
2769
|
width?: number | undefined;
|
|
2552
2770
|
}): void;
|
|
2553
2771
|
setContainerGap(data: {
|
|
2554
2772
|
size: number;
|
|
2555
2773
|
}): void;
|
|
2774
|
+
setOverflowTargetSize(data: {
|
|
2775
|
+
width: number;
|
|
2776
|
+
height: number;
|
|
2777
|
+
}): void;
|
|
2556
2778
|
setOverflowTargetWidth(data: {
|
|
2557
2779
|
width: number;
|
|
2558
2780
|
}): void;
|
|
@@ -2560,6 +2782,14 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2560
2782
|
id: string;
|
|
2561
2783
|
width: number;
|
|
2562
2784
|
}): void;
|
|
2785
|
+
addItemSize(data: {
|
|
2786
|
+
id: string;
|
|
2787
|
+
width: number;
|
|
2788
|
+
height: number;
|
|
2789
|
+
}): void;
|
|
2790
|
+
removeItemSize(data: {
|
|
2791
|
+
id: string;
|
|
2792
|
+
}): void;
|
|
2563
2793
|
removeItemWidth(data: {
|
|
2564
2794
|
id: string;
|
|
2565
2795
|
}): void;
|
|
@@ -2572,6 +2802,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2572
2802
|
selectAll(): void;
|
|
2573
2803
|
unselectAll(): void;
|
|
2574
2804
|
setSelectedIds(ids: string[] | "all"): void;
|
|
2805
|
+
remove(data: {
|
|
2806
|
+
id: string;
|
|
2807
|
+
nextId?: string | undefined;
|
|
2808
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2809
|
+
}): void;
|
|
2575
2810
|
goTo(data: {
|
|
2576
2811
|
id: string;
|
|
2577
2812
|
}): void;
|
|
@@ -2641,6 +2876,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2641
2876
|
selectAll(): void;
|
|
2642
2877
|
unselectAll(): void;
|
|
2643
2878
|
setSelectedIds(ids: string[] | "all"): void;
|
|
2879
|
+
remove(data: {
|
|
2880
|
+
id: string;
|
|
2881
|
+
nextId?: string | undefined;
|
|
2882
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
2883
|
+
}): void;
|
|
2644
2884
|
goTo(data: {
|
|
2645
2885
|
id: string;
|
|
2646
2886
|
}): void;
|
|
@@ -2694,16 +2934,12 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2694
2934
|
hiddenIds: string[];
|
|
2695
2935
|
nonInteractiveIds: string[];
|
|
2696
2936
|
orientation: import("../../collection/lib/useBaseListModel").Orientation;
|
|
2937
|
+
itemSizeCache: Record<string, number>;
|
|
2697
2938
|
itemWidthCache: Record<string, number>;
|
|
2939
|
+
containerSize: number;
|
|
2698
2940
|
containerWidth: number;
|
|
2699
2941
|
containerGap: number;
|
|
2700
|
-
overflowTargetWidth: number;
|
|
2701
|
-
* `Breadcrumbs.Link` is a styled `<a>` element that also renders a tooltip if the text is
|
|
2702
|
-
* truncated. The built-in truncation and tooltip functionality provides an easy-to-use,
|
|
2703
|
-
* accessible feature for managing the length of link text. The `maxWidth` is set to `350px` by
|
|
2704
|
-
* default and can be adjusted as needed. Note that tooltips will only render when text is
|
|
2705
|
-
* truncated
|
|
2706
|
-
*/
|
|
2942
|
+
overflowTargetWidth: number;
|
|
2707
2943
|
selectedIds: string[] | "all";
|
|
2708
2944
|
unselectedIds: string[];
|
|
2709
2945
|
cursorId: string;
|
|
@@ -2730,12 +2966,20 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2730
2966
|
select(data: {
|
|
2731
2967
|
id: string;
|
|
2732
2968
|
}): void;
|
|
2969
|
+
setContainerSize(data: {
|
|
2970
|
+
width?: number | undefined;
|
|
2971
|
+
height?: number | undefined;
|
|
2972
|
+
}): void;
|
|
2733
2973
|
setContainerWidth(data: {
|
|
2734
2974
|
width?: number | undefined;
|
|
2735
2975
|
}): void;
|
|
2736
2976
|
setContainerGap(data: {
|
|
2737
2977
|
size: number;
|
|
2738
2978
|
}): void;
|
|
2979
|
+
setOverflowTargetSize(data: {
|
|
2980
|
+
width: number;
|
|
2981
|
+
height: number;
|
|
2982
|
+
}): void;
|
|
2739
2983
|
setOverflowTargetWidth(data: {
|
|
2740
2984
|
width: number;
|
|
2741
2985
|
}): void;
|
|
@@ -2743,6 +2987,14 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2743
2987
|
id: string;
|
|
2744
2988
|
width: number;
|
|
2745
2989
|
}): void;
|
|
2990
|
+
addItemSize(data: {
|
|
2991
|
+
id: string;
|
|
2992
|
+
width: number;
|
|
2993
|
+
height: number;
|
|
2994
|
+
}): void;
|
|
2995
|
+
removeItemSize(data: {
|
|
2996
|
+
id: string;
|
|
2997
|
+
}): void;
|
|
2746
2998
|
removeItemWidth(data: {
|
|
2747
2999
|
id: string;
|
|
2748
3000
|
}): void;
|
|
@@ -2755,6 +3007,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2755
3007
|
selectAll(): void;
|
|
2756
3008
|
unselectAll(): void;
|
|
2757
3009
|
setSelectedIds(ids: string[] | "all"): void;
|
|
3010
|
+
remove(data: {
|
|
3011
|
+
id: string;
|
|
3012
|
+
nextId?: string | undefined;
|
|
3013
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
3014
|
+
}): void;
|
|
2758
3015
|
goTo(data: {
|
|
2759
3016
|
id: string;
|
|
2760
3017
|
}): void;
|
|
@@ -2824,6 +3081,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
2824
3081
|
selectAll(): void;
|
|
2825
3082
|
unselectAll(): void;
|
|
2826
3083
|
setSelectedIds(ids: string[] | "all"): void;
|
|
3084
|
+
remove(data: {
|
|
3085
|
+
id: string;
|
|
3086
|
+
nextId?: string | undefined;
|
|
3087
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
3088
|
+
}): void;
|
|
2827
3089
|
goTo(data: {
|
|
2828
3090
|
id: string;
|
|
2829
3091
|
}): void;
|
|
@@ -3120,6 +3382,42 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
3120
3382
|
items: import("../..").Item<any>[];
|
|
3121
3383
|
mode: "multiple" | "single";
|
|
3122
3384
|
}) => void) | undefined;
|
|
3385
|
+
onRemove?: ((data: {
|
|
3386
|
+
id: string;
|
|
3387
|
+
nextId?: string | undefined;
|
|
3388
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
3389
|
+
}, prevState: {
|
|
3390
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
3391
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
3392
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
3393
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
3394
|
+
placement: import("@popperjs/core").Placement;
|
|
3395
|
+
id: string;
|
|
3396
|
+
visibility: "hidden" | "visible";
|
|
3397
|
+
selectedIds: string[] | "all";
|
|
3398
|
+
unselectedIds: string[];
|
|
3399
|
+
cursorId: string;
|
|
3400
|
+
columnCount: number;
|
|
3401
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
3402
|
+
cursorIndexRef: {
|
|
3403
|
+
readonly current: number;
|
|
3404
|
+
};
|
|
3405
|
+
UNSTABLE_virtual: {
|
|
3406
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
3407
|
+
totalSize: number;
|
|
3408
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
3409
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
3410
|
+
measure: () => void;
|
|
3411
|
+
};
|
|
3412
|
+
UNSTABLE_defaultItemHeight: number;
|
|
3413
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3414
|
+
orientation: "horizontal" | "vertical";
|
|
3415
|
+
indexRef: React.MutableRefObject<number>;
|
|
3416
|
+
nonInteractiveIds: string[];
|
|
3417
|
+
isVirtualized: boolean;
|
|
3418
|
+
items: import("../..").Item<any>[];
|
|
3419
|
+
mode: "multiple" | "single";
|
|
3420
|
+
}) => void) | undefined;
|
|
3123
3421
|
onGoTo?: ((data: {
|
|
3124
3422
|
id: string;
|
|
3125
3423
|
}, prevState: {
|
|
@@ -3806,6 +4104,42 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
3806
4104
|
items: import("../..").Item<any>[];
|
|
3807
4105
|
mode: "multiple" | "single";
|
|
3808
4106
|
}) => boolean) | undefined;
|
|
4107
|
+
shouldRemove?: ((data: {
|
|
4108
|
+
id: string;
|
|
4109
|
+
nextId?: string | undefined;
|
|
4110
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4111
|
+
}, state: {
|
|
4112
|
+
stackRef: React.RefObject<HTMLDivElement>;
|
|
4113
|
+
targetRef: React.RefObject<HTMLButtonElement>;
|
|
4114
|
+
initialFocusRef: React.RefObject<any> | undefined;
|
|
4115
|
+
returnFocusRef: React.RefObject<any> | undefined;
|
|
4116
|
+
placement: import("@popperjs/core").Placement;
|
|
4117
|
+
id: string;
|
|
4118
|
+
visibility: "hidden" | "visible";
|
|
4119
|
+
selectedIds: string[] | "all";
|
|
4120
|
+
unselectedIds: string[];
|
|
4121
|
+
cursorId: string;
|
|
4122
|
+
columnCount: number;
|
|
4123
|
+
pageSizeRef: React.MutableRefObject<number>;
|
|
4124
|
+
cursorIndexRef: {
|
|
4125
|
+
readonly current: number;
|
|
4126
|
+
};
|
|
4127
|
+
UNSTABLE_virtual: {
|
|
4128
|
+
virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
|
|
4129
|
+
totalSize: number;
|
|
4130
|
+
scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
|
|
4131
|
+
scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
|
|
4132
|
+
measure: () => void;
|
|
4133
|
+
};
|
|
4134
|
+
UNSTABLE_defaultItemHeight: number;
|
|
4135
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
4136
|
+
orientation: "horizontal" | "vertical";
|
|
4137
|
+
indexRef: React.MutableRefObject<number>;
|
|
4138
|
+
nonInteractiveIds: string[];
|
|
4139
|
+
isVirtualized: boolean;
|
|
4140
|
+
items: import("../..").Item<any>[];
|
|
4141
|
+
mode: "multiple" | "single";
|
|
4142
|
+
}) => boolean) | undefined;
|
|
3809
4143
|
shouldGoTo?: ((data: {
|
|
3810
4144
|
id: string;
|
|
3811
4145
|
}, state: {
|
|
@@ -4308,6 +4642,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
4308
4642
|
selectAll(): void;
|
|
4309
4643
|
unselectAll(): void;
|
|
4310
4644
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4645
|
+
remove(data: {
|
|
4646
|
+
id: string;
|
|
4647
|
+
nextId?: string | undefined;
|
|
4648
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4649
|
+
}): void;
|
|
4311
4650
|
goTo(data: {
|
|
4312
4651
|
id: string;
|
|
4313
4652
|
}): void;
|
|
@@ -4380,6 +4719,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
4380
4719
|
selectAll(): void;
|
|
4381
4720
|
unselectAll(): void;
|
|
4382
4721
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4722
|
+
remove(data: {
|
|
4723
|
+
id: string;
|
|
4724
|
+
nextId?: string | undefined;
|
|
4725
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4726
|
+
}): void;
|
|
4383
4727
|
goTo(data: {
|
|
4384
4728
|
id: string;
|
|
4385
4729
|
}): void;
|
|
@@ -4453,6 +4797,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
4453
4797
|
selectAll(): void;
|
|
4454
4798
|
unselectAll(): void;
|
|
4455
4799
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4800
|
+
remove(data: {
|
|
4801
|
+
id: string;
|
|
4802
|
+
nextId?: string | undefined;
|
|
4803
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4804
|
+
}): void;
|
|
4456
4805
|
goTo(data: {
|
|
4457
4806
|
id: string;
|
|
4458
4807
|
}): void;
|
|
@@ -4526,6 +4875,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
4526
4875
|
selectAll(): void;
|
|
4527
4876
|
unselectAll(): void;
|
|
4528
4877
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4878
|
+
remove(data: {
|
|
4879
|
+
id: string;
|
|
4880
|
+
nextId?: string | undefined;
|
|
4881
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4882
|
+
}): void;
|
|
4529
4883
|
goTo(data: {
|
|
4530
4884
|
id: string;
|
|
4531
4885
|
}): void;
|
|
@@ -4599,6 +4953,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
4599
4953
|
selectAll(): void;
|
|
4600
4954
|
unselectAll(): void;
|
|
4601
4955
|
setSelectedIds(ids: string[] | "all"): void;
|
|
4956
|
+
remove(data: {
|
|
4957
|
+
id: string;
|
|
4958
|
+
nextId?: string | undefined;
|
|
4959
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
4960
|
+
}): void;
|
|
4602
4961
|
goTo(data: {
|
|
4603
4962
|
id: string;
|
|
4604
4963
|
}): void;
|
|
@@ -4673,6 +5032,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
4673
5032
|
selectAll(): void;
|
|
4674
5033
|
unselectAll(): void;
|
|
4675
5034
|
setSelectedIds(ids: string[] | "all"): void;
|
|
5035
|
+
remove(data: {
|
|
5036
|
+
id: string;
|
|
5037
|
+
nextId?: string | undefined;
|
|
5038
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
5039
|
+
}): void;
|
|
4676
5040
|
goTo(data: {
|
|
4677
5041
|
id: string;
|
|
4678
5042
|
}): void;
|
|
@@ -4746,6 +5110,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
4746
5110
|
selectAll(): void;
|
|
4747
5111
|
unselectAll(): void;
|
|
4748
5112
|
setSelectedIds(ids: string[] | "all"): void;
|
|
5113
|
+
remove(data: {
|
|
5114
|
+
id: string;
|
|
5115
|
+
nextId?: string | undefined;
|
|
5116
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
5117
|
+
}): void;
|
|
4749
5118
|
goTo(data: {
|
|
4750
5119
|
id: string;
|
|
4751
5120
|
}): void;
|
|
@@ -4819,6 +5188,11 @@ export declare const Breadcrumbs: import("@workday/canvas-kit-react/common").Ele
|
|
|
4819
5188
|
selectAll(): void;
|
|
4820
5189
|
unselectAll(): void;
|
|
4821
5190
|
setSelectedIds(ids: string[] | "all"): void;
|
|
5191
|
+
remove(data: {
|
|
5192
|
+
id: string;
|
|
5193
|
+
nextId?: string | undefined;
|
|
5194
|
+
event?: Event | React.SyntheticEvent<Element, Event> | undefined;
|
|
5195
|
+
}): void;
|
|
4822
5196
|
goTo(data: {
|
|
4823
5197
|
id: string;
|
|
4824
5198
|
}): void;
|