@workday/canvas-kit-react 9.0.0-alpha.419-next.21 → 9.0.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.
Files changed (255) hide show
  1. package/breadcrumbs/lib/BreadcrumbsItem.tsx +1 -1
  2. package/collection/index.ts +2 -0
  3. package/collection/lib/ListBox.tsx +12 -10
  4. package/collection/lib/useBaseListModel.tsx +6 -4
  5. package/collection/lib/useCursorListModel.tsx +1 -1
  6. package/collection/lib/useListActiveDescendant.ts +24 -0
  7. package/collection/lib/useListItemAllowChildStrings.ts +2 -1
  8. package/collection/lib/useListItemRegister.tsx +10 -3
  9. package/collection/lib/useListItemSelect.tsx +1 -1
  10. package/collection/lib/useListKeyboardHandler.ts +28 -0
  11. package/collection/lib/useListLoader.ts +116 -54
  12. package/collection/lib/useOverflowListItemMeasure.tsx +2 -2
  13. package/collection/lib/useOverflowListMeasure.ts +11 -13
  14. package/collection/lib/useOverflowListTarget.tsx +28 -30
  15. package/collection/lib/useSelectionListModel.tsx +1 -0
  16. package/combobox/LICENSE +52 -0
  17. package/combobox/README.md +7 -0
  18. package/combobox/index.ts +8 -0
  19. package/combobox/lib/Combobox.tsx +32 -0
  20. package/combobox/lib/ComboboxCard.tsx +33 -0
  21. package/combobox/lib/ComboboxInput.tsx +104 -0
  22. package/combobox/lib/ComboboxMenu.tsx +67 -0
  23. package/combobox/lib/ComboboxMenuItem.tsx +74 -0
  24. package/combobox/lib/ComboboxMenuList.tsx +45 -0
  25. package/combobox/lib/useComboboxInputOpenWithArrowKeys.ts +21 -0
  26. package/combobox/lib/useComboboxLoader.ts +72 -0
  27. package/combobox/lib/useComboboxModel.tsx +85 -0
  28. package/combobox/package.json +6 -0
  29. package/common/lib/utils/components.ts +15 -16
  30. package/common/lib/utils/models.ts +2 -2
  31. package/dist/commonjs/action-bar/lib/ActionBar.d.ts +2 -2
  32. package/dist/commonjs/action-bar/lib/ActionBarList.d.ts +1 -1
  33. package/dist/commonjs/action-bar/lib/useActionBarModel.d.ts +2 -2
  34. package/dist/commonjs/breadcrumbs/lib/Breadcrumbs.d.ts +2 -2
  35. package/dist/commonjs/breadcrumbs/lib/BreadcrumbsMenu.d.ts +1 -1
  36. package/dist/commonjs/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +2 -2
  37. package/dist/commonjs/collection/index.d.ts +2 -0
  38. package/dist/commonjs/collection/index.d.ts.map +1 -1
  39. package/dist/commonjs/collection/index.js +2 -0
  40. package/dist/commonjs/collection/lib/ListBox.d.ts +7 -6
  41. package/dist/commonjs/collection/lib/ListBox.d.ts.map +1 -1
  42. package/dist/commonjs/collection/lib/ListBox.js +5 -3
  43. package/dist/commonjs/collection/lib/useBaseListModel.d.ts.map +1 -1
  44. package/dist/commonjs/collection/lib/useBaseListModel.js +4 -4
  45. package/dist/commonjs/collection/lib/useCursorListModel.d.ts +0 -34
  46. package/dist/commonjs/collection/lib/useCursorListModel.d.ts.map +1 -1
  47. package/dist/commonjs/collection/lib/useCursorListModel.js +1 -1
  48. package/dist/commonjs/collection/lib/useListActiveDescendant.d.ts +68 -0
  49. package/dist/commonjs/collection/lib/useListActiveDescendant.d.ts.map +1 -0
  50. package/dist/commonjs/collection/lib/useListActiveDescendant.js +25 -0
  51. package/dist/commonjs/collection/lib/useListItemAllowChildStrings.d.ts +2 -1
  52. package/dist/commonjs/collection/lib/useListItemAllowChildStrings.d.ts.map +1 -1
  53. package/dist/commonjs/collection/lib/useListItemAllowChildStrings.js +2 -1
  54. package/dist/commonjs/collection/lib/useListItemRegister.d.ts.map +1 -1
  55. package/dist/commonjs/collection/lib/useListItemRegister.js +5 -1
  56. package/dist/commonjs/collection/lib/useListKeyboardHandler.d.ts +66 -0
  57. package/dist/commonjs/collection/lib/useListKeyboardHandler.d.ts.map +1 -0
  58. package/dist/commonjs/collection/lib/useListKeyboardHandler.js +27 -0
  59. package/dist/commonjs/collection/lib/useListLoader.d.ts +46 -7
  60. package/dist/commonjs/collection/lib/useListLoader.d.ts.map +1 -1
  61. package/dist/commonjs/collection/lib/useListLoader.js +61 -35
  62. package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts +1 -1
  63. package/dist/commonjs/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
  64. package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts +5 -2
  65. package/dist/commonjs/collection/lib/useOverflowListTarget.d.ts.map +1 -1
  66. package/dist/commonjs/collection/lib/useOverflowListTarget.js +1 -1
  67. package/dist/commonjs/collection/lib/useSelectionListModel.d.ts.map +1 -1
  68. package/dist/commonjs/collection/lib/useSelectionListModel.js +1 -0
  69. package/dist/commonjs/combobox/index.d.ts +9 -0
  70. package/dist/commonjs/combobox/index.d.ts.map +1 -0
  71. package/dist/commonjs/combobox/index.js +19 -0
  72. package/dist/commonjs/combobox/lib/Combobox.d.ts +2075 -0
  73. package/dist/commonjs/combobox/lib/Combobox.d.ts.map +1 -0
  74. package/dist/commonjs/combobox/lib/Combobox.js +29 -0
  75. package/dist/commonjs/combobox/lib/ComboboxCard.d.ts +166 -0
  76. package/dist/commonjs/combobox/lib/ComboboxCard.d.ts.map +1 -0
  77. package/dist/commonjs/combobox/lib/ComboboxCard.js +25 -0
  78. package/dist/commonjs/combobox/lib/ComboboxInput.d.ts +186 -0
  79. package/dist/commonjs/combobox/lib/ComboboxInput.d.ts.map +1 -0
  80. package/dist/commonjs/combobox/lib/ComboboxInput.js +84 -0
  81. package/dist/commonjs/combobox/lib/ComboboxMenu.d.ts +428 -0
  82. package/dist/commonjs/combobox/lib/ComboboxMenu.d.ts.map +1 -0
  83. package/dist/commonjs/combobox/lib/ComboboxMenu.js +63 -0
  84. package/dist/commonjs/combobox/lib/ComboboxMenuItem.d.ts +178 -0
  85. package/dist/commonjs/combobox/lib/ComboboxMenuItem.d.ts.map +1 -0
  86. package/dist/commonjs/combobox/lib/ComboboxMenuItem.js +50 -0
  87. package/dist/commonjs/combobox/lib/ComboboxMenuList.d.ts +164 -0
  88. package/dist/commonjs/combobox/lib/ComboboxMenuList.d.ts.map +1 -0
  89. package/dist/commonjs/combobox/lib/ComboboxMenuList.js +31 -0
  90. package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts +84 -0
  91. package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts.map +1 -0
  92. package/dist/commonjs/combobox/lib/useComboboxInputOpenWithArrowKeys.js +20 -0
  93. package/dist/commonjs/combobox/lib/useComboboxLoader.d.ts +28 -0
  94. package/dist/commonjs/combobox/lib/useComboboxLoader.d.ts.map +1 -0
  95. package/dist/commonjs/combobox/lib/useComboboxLoader.js +65 -0
  96. package/dist/commonjs/combobox/lib/useComboboxModel.d.ts +1998 -0
  97. package/dist/commonjs/combobox/lib/useComboboxModel.d.ts.map +1 -0
  98. package/dist/commonjs/combobox/lib/useComboboxModel.js +82 -0
  99. package/dist/commonjs/common/lib/utils/components.d.ts +9 -23
  100. package/dist/commonjs/common/lib/utils/components.d.ts.map +1 -1
  101. package/dist/commonjs/common/lib/utils/components.js +2 -2
  102. package/dist/commonjs/common/lib/utils/models.js +2 -2
  103. package/dist/commonjs/index.d.ts +1 -0
  104. package/dist/commonjs/index.d.ts.map +1 -1
  105. package/dist/commonjs/index.js +1 -0
  106. package/dist/commonjs/menu/index.d.ts +1 -1
  107. package/dist/commonjs/menu/index.d.ts.map +1 -1
  108. package/dist/commonjs/menu/index.js +2 -1
  109. package/dist/commonjs/menu/lib/Menu.d.ts +7 -5
  110. package/dist/commonjs/menu/lib/Menu.d.ts.map +1 -1
  111. package/dist/commonjs/menu/lib/Menu.js +6 -4
  112. package/dist/commonjs/menu/lib/MenuContextTarget.d.ts +2 -2
  113. package/dist/commonjs/menu/lib/MenuItem.d.ts +7 -1
  114. package/dist/commonjs/menu/lib/MenuItem.d.ts.map +1 -1
  115. package/dist/commonjs/menu/lib/MenuItem.js +9 -11
  116. package/dist/commonjs/menu/lib/MenuList.d.ts +3 -3
  117. package/dist/commonjs/menu/lib/MenuList.d.ts.map +1 -1
  118. package/dist/commonjs/menu/lib/MenuList.js +3 -2
  119. package/dist/commonjs/menu/lib/MenuPopper.d.ts +1 -1
  120. package/dist/commonjs/menu/lib/MenuTarget.d.ts +2 -2
  121. package/dist/commonjs/menu/lib/useMenuModel.d.ts +2 -2
  122. package/dist/commonjs/menu/lib/useMenuModel.d.ts.map +1 -1
  123. package/dist/commonjs/menu/lib/useMenuModel.js +3 -5
  124. package/dist/commonjs/popup/lib/hooks/usePopupPopper.d.ts +1 -1
  125. package/dist/commonjs/popup/lib/hooks/usePopupTarget.d.ts +1 -1
  126. package/dist/commonjs/popup/lib/hooks/usePopupTargetContext.d.ts +1 -1
  127. package/dist/commonjs/tabs/lib/Tabs.d.ts +18 -120
  128. package/dist/commonjs/tabs/lib/Tabs.d.ts.map +1 -1
  129. package/dist/commonjs/tabs/lib/TabsItem.d.ts +0 -1
  130. package/dist/commonjs/tabs/lib/TabsItem.d.ts.map +1 -1
  131. package/dist/commonjs/tabs/lib/TabsItem.js +0 -1
  132. package/dist/commonjs/tabs/lib/TabsList.d.ts +1 -1
  133. package/dist/commonjs/tabs/lib/TabsMenuPopper.d.ts +1 -1
  134. package/dist/commonjs/tabs/lib/TabsPanel.d.ts.map +1 -1
  135. package/dist/commonjs/tabs/lib/useTabsModel.d.ts +8 -20
  136. package/dist/commonjs/tabs/lib/useTabsModel.d.ts.map +1 -1
  137. package/dist/commonjs/tabs/lib/useTabsModel.js +1 -0
  138. package/dist/es6/action-bar/lib/ActionBar.d.ts +2 -2
  139. package/dist/es6/action-bar/lib/ActionBarList.d.ts +1 -1
  140. package/dist/es6/action-bar/lib/useActionBarModel.d.ts +2 -2
  141. package/dist/es6/breadcrumbs/lib/Breadcrumbs.d.ts +2 -2
  142. package/dist/es6/breadcrumbs/lib/BreadcrumbsMenu.d.ts +1 -1
  143. package/dist/es6/breadcrumbs/lib/hooks/useBreadcrumbsModel.d.ts +2 -2
  144. package/dist/es6/collection/index.d.ts +2 -0
  145. package/dist/es6/collection/index.d.ts.map +1 -1
  146. package/dist/es6/collection/index.js +2 -0
  147. package/dist/es6/collection/lib/ListBox.d.ts +7 -6
  148. package/dist/es6/collection/lib/ListBox.d.ts.map +1 -1
  149. package/dist/es6/collection/lib/ListBox.js +6 -4
  150. package/dist/es6/collection/lib/useBaseListModel.d.ts.map +1 -1
  151. package/dist/es6/collection/lib/useBaseListModel.js +4 -4
  152. package/dist/es6/collection/lib/useCursorListModel.d.ts +0 -34
  153. package/dist/es6/collection/lib/useCursorListModel.d.ts.map +1 -1
  154. package/dist/es6/collection/lib/useCursorListModel.js +1 -1
  155. package/dist/es6/collection/lib/useListActiveDescendant.d.ts +68 -0
  156. package/dist/es6/collection/lib/useListActiveDescendant.d.ts.map +1 -0
  157. package/dist/es6/collection/lib/useListActiveDescendant.js +22 -0
  158. package/dist/es6/collection/lib/useListItemAllowChildStrings.d.ts +2 -1
  159. package/dist/es6/collection/lib/useListItemAllowChildStrings.d.ts.map +1 -1
  160. package/dist/es6/collection/lib/useListItemAllowChildStrings.js +2 -1
  161. package/dist/es6/collection/lib/useListItemRegister.d.ts.map +1 -1
  162. package/dist/es6/collection/lib/useListItemRegister.js +5 -1
  163. package/dist/es6/collection/lib/useListKeyboardHandler.d.ts +66 -0
  164. package/dist/es6/collection/lib/useListKeyboardHandler.d.ts.map +1 -0
  165. package/dist/es6/collection/lib/useListKeyboardHandler.js +24 -0
  166. package/dist/es6/collection/lib/useListLoader.d.ts +46 -7
  167. package/dist/es6/collection/lib/useListLoader.d.ts.map +1 -1
  168. package/dist/es6/collection/lib/useListLoader.js +61 -35
  169. package/dist/es6/collection/lib/useOverflowListMeasure.d.ts +1 -1
  170. package/dist/es6/collection/lib/useOverflowListMeasure.d.ts.map +1 -1
  171. package/dist/es6/collection/lib/useOverflowListTarget.d.ts +5 -2
  172. package/dist/es6/collection/lib/useOverflowListTarget.d.ts.map +1 -1
  173. package/dist/es6/collection/lib/useOverflowListTarget.js +1 -1
  174. package/dist/es6/collection/lib/useSelectionListModel.d.ts.map +1 -1
  175. package/dist/es6/collection/lib/useSelectionListModel.js +1 -0
  176. package/dist/es6/combobox/index.d.ts +9 -0
  177. package/dist/es6/combobox/index.d.ts.map +1 -0
  178. package/dist/es6/combobox/index.js +8 -0
  179. package/dist/es6/combobox/lib/Combobox.d.ts +2075 -0
  180. package/dist/es6/combobox/lib/Combobox.d.ts.map +1 -0
  181. package/dist/es6/combobox/lib/Combobox.js +23 -0
  182. package/dist/es6/combobox/lib/ComboboxCard.d.ts +166 -0
  183. package/dist/es6/combobox/lib/ComboboxCard.d.ts.map +1 -0
  184. package/dist/es6/combobox/lib/ComboboxCard.js +19 -0
  185. package/dist/es6/combobox/lib/ComboboxInput.d.ts +186 -0
  186. package/dist/es6/combobox/lib/ComboboxInput.d.ts.map +1 -0
  187. package/dist/es6/combobox/lib/ComboboxInput.js +78 -0
  188. package/dist/es6/combobox/lib/ComboboxMenu.d.ts +428 -0
  189. package/dist/es6/combobox/lib/ComboboxMenu.d.ts.map +1 -0
  190. package/dist/es6/combobox/lib/ComboboxMenu.js +57 -0
  191. package/dist/es6/combobox/lib/ComboboxMenuItem.d.ts +178 -0
  192. package/dist/es6/combobox/lib/ComboboxMenuItem.d.ts.map +1 -0
  193. package/dist/es6/combobox/lib/ComboboxMenuItem.js +44 -0
  194. package/dist/es6/combobox/lib/ComboboxMenuList.d.ts +164 -0
  195. package/dist/es6/combobox/lib/ComboboxMenuList.d.ts.map +1 -0
  196. package/dist/es6/combobox/lib/ComboboxMenuList.js +25 -0
  197. package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts +84 -0
  198. package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.d.ts.map +1 -0
  199. package/dist/es6/combobox/lib/useComboboxInputOpenWithArrowKeys.js +17 -0
  200. package/dist/es6/combobox/lib/useComboboxLoader.d.ts +28 -0
  201. package/dist/es6/combobox/lib/useComboboxLoader.d.ts.map +1 -0
  202. package/dist/es6/combobox/lib/useComboboxLoader.js +58 -0
  203. package/dist/es6/combobox/lib/useComboboxModel.d.ts +1998 -0
  204. package/dist/es6/combobox/lib/useComboboxModel.d.ts.map +1 -0
  205. package/dist/es6/combobox/lib/useComboboxModel.js +76 -0
  206. package/dist/es6/common/lib/utils/components.d.ts +9 -23
  207. package/dist/es6/common/lib/utils/components.d.ts.map +1 -1
  208. package/dist/es6/common/lib/utils/components.js +2 -2
  209. package/dist/es6/common/lib/utils/models.js +2 -2
  210. package/dist/es6/index.d.ts +1 -0
  211. package/dist/es6/index.d.ts.map +1 -1
  212. package/dist/es6/index.js +1 -0
  213. package/dist/es6/menu/index.d.ts +1 -1
  214. package/dist/es6/menu/index.d.ts.map +1 -1
  215. package/dist/es6/menu/index.js +1 -1
  216. package/dist/es6/menu/lib/Menu.d.ts +7 -5
  217. package/dist/es6/menu/lib/Menu.d.ts.map +1 -1
  218. package/dist/es6/menu/lib/Menu.js +6 -4
  219. package/dist/es6/menu/lib/MenuContextTarget.d.ts +2 -2
  220. package/dist/es6/menu/lib/MenuItem.d.ts +7 -1
  221. package/dist/es6/menu/lib/MenuItem.d.ts.map +1 -1
  222. package/dist/es6/menu/lib/MenuItem.js +8 -10
  223. package/dist/es6/menu/lib/MenuList.d.ts +3 -3
  224. package/dist/es6/menu/lib/MenuList.d.ts.map +1 -1
  225. package/dist/es6/menu/lib/MenuList.js +4 -3
  226. package/dist/es6/menu/lib/MenuPopper.d.ts +1 -1
  227. package/dist/es6/menu/lib/MenuTarget.d.ts +2 -2
  228. package/dist/es6/menu/lib/useMenuModel.d.ts +2 -2
  229. package/dist/es6/menu/lib/useMenuModel.d.ts.map +1 -1
  230. package/dist/es6/menu/lib/useMenuModel.js +4 -6
  231. package/dist/es6/popup/lib/hooks/usePopupPopper.d.ts +1 -1
  232. package/dist/es6/popup/lib/hooks/usePopupTarget.d.ts +1 -1
  233. package/dist/es6/popup/lib/hooks/usePopupTargetContext.d.ts +1 -1
  234. package/dist/es6/tabs/lib/Tabs.d.ts +18 -120
  235. package/dist/es6/tabs/lib/Tabs.d.ts.map +1 -1
  236. package/dist/es6/tabs/lib/TabsItem.d.ts +0 -1
  237. package/dist/es6/tabs/lib/TabsItem.d.ts.map +1 -1
  238. package/dist/es6/tabs/lib/TabsItem.js +0 -1
  239. package/dist/es6/tabs/lib/TabsList.d.ts +1 -1
  240. package/dist/es6/tabs/lib/TabsMenuPopper.d.ts +1 -1
  241. package/dist/es6/tabs/lib/TabsPanel.d.ts.map +1 -1
  242. package/dist/es6/tabs/lib/useTabsModel.d.ts +8 -20
  243. package/dist/es6/tabs/lib/useTabsModel.d.ts.map +1 -1
  244. package/dist/es6/tabs/lib/useTabsModel.js +1 -0
  245. package/index.ts +1 -0
  246. package/menu/index.ts +1 -1
  247. package/menu/lib/Menu.tsx +6 -4
  248. package/menu/lib/MenuItem.tsx +9 -12
  249. package/menu/lib/MenuList.tsx +16 -10
  250. package/menu/lib/useMenuModel.tsx +4 -7
  251. package/modal/lib/hooks/useModalHeading.ts +2 -2
  252. package/package.json +3 -3
  253. package/tabs/lib/TabsItem.tsx +10 -13
  254. package/tabs/lib/TabsPanel.tsx +1 -5
  255. package/tabs/lib/useTabsModel.tsx +1 -0
@@ -0,0 +1,2075 @@
1
+ import React from 'react';
2
+ export interface ComboboxProps {
3
+ /**
4
+ * Children of the `Combobox`. Should contain a `Combobox.Input` and a `Combobox.Menu`
5
+ */
6
+ children: React.ReactNode;
7
+ }
8
+ export declare const Combobox: import("@workday/canvas-kit-react/common").ComponentM<ComboboxProps & Partial<{
9
+ mode: "multiple" | "single";
10
+ shouldVirtualize: boolean;
11
+ returnFocusRef: React.RefObject<any> | undefined;
12
+ initialFocusRef: React.RefObject<any> | undefined;
13
+ id: string;
14
+ initialVisibility: import("../..").Visibility;
15
+ initialSelectedIds: import("../../collection/lib/useSelectionListModel").SelectedIds;
16
+ initialUnselectedIds: string[];
17
+ selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
18
+ initialCursorId: string;
19
+ columnCount: number;
20
+ navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
21
+ pageSize: number;
22
+ getId: (item: any) => string;
23
+ getTextValue: (item: any) => string;
24
+ nonInteractiveIds: string[];
25
+ orientation: import("../../collection/lib/useBaseListModel").Orientation;
26
+ defaultItemHeight: number;
27
+ items: any[];
28
+ value: string | undefined;
29
+ onChange(event: React.ChangeEvent<HTMLInputElement>): void;
30
+ }> & {
31
+ onSetWidth?: ((data: number, prevState: {
32
+ stackRef: React.RefObject<HTMLDivElement>;
33
+ targetRef: React.RefObject<HTMLButtonElement>;
34
+ initialFocusRef: React.RefObject<any> | undefined;
35
+ returnFocusRef: React.RefObject<any> | undefined;
36
+ placement: import("@popperjs/core").Placement;
37
+ id: string;
38
+ visibility: "hidden" | "visible";
39
+ selectedIds: string[] | "all";
40
+ unselectedIds: string[];
41
+ cursorId: string;
42
+ columnCount: number;
43
+ pageSizeRef: React.MutableRefObject<number>;
44
+ cursorIndexRef: {
45
+ readonly current: number;
46
+ };
47
+ UNSTABLE_virtual: {
48
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
49
+ totalSize: number;
50
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
51
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
52
+ measure: () => void;
53
+ };
54
+ UNSTABLE_defaultItemHeight: number;
55
+ containerRef: React.RefObject<HTMLDivElement>;
56
+ orientation: "horizontal" | "vertical";
57
+ indexRef: React.MutableRefObject<number>;
58
+ nonInteractiveIds: string[];
59
+ isVirtualized: boolean;
60
+ items: import("../..").Item<any>[];
61
+ mode: "multiple" | "single";
62
+ value: string | undefined;
63
+ inputRef: React.RefObject<HTMLInputElement>;
64
+ width: number;
65
+ }) => void) | undefined;
66
+ onUpdatePlacement?: ((data: {
67
+ placement: import("@popperjs/core").Placement;
68
+ }, prevState: {
69
+ stackRef: React.RefObject<HTMLDivElement>;
70
+ targetRef: React.RefObject<HTMLButtonElement>;
71
+ initialFocusRef: React.RefObject<any> | undefined;
72
+ returnFocusRef: React.RefObject<any> | undefined;
73
+ placement: import("@popperjs/core").Placement;
74
+ id: string;
75
+ visibility: "hidden" | "visible";
76
+ selectedIds: string[] | "all";
77
+ unselectedIds: string[];
78
+ cursorId: string;
79
+ columnCount: number;
80
+ pageSizeRef: React.MutableRefObject<number>;
81
+ cursorIndexRef: {
82
+ readonly current: number;
83
+ };
84
+ UNSTABLE_virtual: {
85
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
86
+ totalSize: number;
87
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
88
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
89
+ measure: () => void;
90
+ };
91
+ UNSTABLE_defaultItemHeight: number;
92
+ containerRef: React.RefObject<HTMLDivElement>;
93
+ orientation: "horizontal" | "vertical";
94
+ indexRef: React.MutableRefObject<number>;
95
+ nonInteractiveIds: string[];
96
+ isVirtualized: boolean;
97
+ items: import("../..").Item<any>[];
98
+ mode: "multiple" | "single";
99
+ value: string | undefined;
100
+ inputRef: React.RefObject<HTMLInputElement>;
101
+ width: number;
102
+ }) => void) | undefined;
103
+ onShow?: ((data: Event | React.SyntheticEvent<Element, Event> | undefined, prevState: {
104
+ stackRef: React.RefObject<HTMLDivElement>;
105
+ targetRef: React.RefObject<HTMLButtonElement>;
106
+ initialFocusRef: React.RefObject<any> | undefined;
107
+ returnFocusRef: React.RefObject<any> | undefined;
108
+ placement: import("@popperjs/core").Placement;
109
+ id: string;
110
+ visibility: "hidden" | "visible";
111
+ selectedIds: string[] | "all";
112
+ unselectedIds: string[];
113
+ cursorId: string;
114
+ columnCount: number;
115
+ pageSizeRef: React.MutableRefObject<number>;
116
+ cursorIndexRef: {
117
+ readonly current: number;
118
+ };
119
+ UNSTABLE_virtual: {
120
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
121
+ totalSize: number;
122
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
123
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
124
+ measure: () => void;
125
+ };
126
+ UNSTABLE_defaultItemHeight: number;
127
+ containerRef: React.RefObject<HTMLDivElement>;
128
+ orientation: "horizontal" | "vertical";
129
+ indexRef: React.MutableRefObject<number>;
130
+ nonInteractiveIds: string[];
131
+ isVirtualized: boolean;
132
+ items: import("../..").Item<any>[];
133
+ mode: "multiple" | "single";
134
+ value: string | undefined;
135
+ inputRef: React.RefObject<HTMLInputElement>;
136
+ width: number;
137
+ }) => void) | undefined;
138
+ onHide?: ((data: Event | React.SyntheticEvent<Element, Event> | undefined, prevState: {
139
+ stackRef: React.RefObject<HTMLDivElement>;
140
+ targetRef: React.RefObject<HTMLButtonElement>;
141
+ initialFocusRef: React.RefObject<any> | undefined;
142
+ returnFocusRef: React.RefObject<any> | undefined;
143
+ placement: import("@popperjs/core").Placement;
144
+ id: string;
145
+ visibility: "hidden" | "visible";
146
+ selectedIds: string[] | "all";
147
+ unselectedIds: string[];
148
+ cursorId: string;
149
+ columnCount: number;
150
+ pageSizeRef: React.MutableRefObject<number>;
151
+ cursorIndexRef: {
152
+ readonly current: number;
153
+ };
154
+ UNSTABLE_virtual: {
155
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
156
+ totalSize: number;
157
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
158
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
159
+ measure: () => void;
160
+ };
161
+ UNSTABLE_defaultItemHeight: number;
162
+ containerRef: React.RefObject<HTMLDivElement>;
163
+ orientation: "horizontal" | "vertical";
164
+ indexRef: React.MutableRefObject<number>;
165
+ nonInteractiveIds: string[];
166
+ isVirtualized: boolean;
167
+ items: import("../..").Item<any>[];
168
+ mode: "multiple" | "single";
169
+ value: string | undefined;
170
+ inputRef: React.RefObject<HTMLInputElement>;
171
+ width: number;
172
+ }) => void) | undefined;
173
+ onSelect?: ((data: {
174
+ id: string;
175
+ }, prevState: {
176
+ stackRef: React.RefObject<HTMLDivElement>;
177
+ targetRef: React.RefObject<HTMLButtonElement>;
178
+ initialFocusRef: React.RefObject<any> | undefined;
179
+ returnFocusRef: React.RefObject<any> | undefined;
180
+ placement: import("@popperjs/core").Placement;
181
+ id: string;
182
+ visibility: "hidden" | "visible";
183
+ selectedIds: string[] | "all";
184
+ unselectedIds: string[];
185
+ cursorId: string;
186
+ columnCount: number;
187
+ pageSizeRef: React.MutableRefObject<number>;
188
+ cursorIndexRef: {
189
+ readonly current: number;
190
+ };
191
+ UNSTABLE_virtual: {
192
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
193
+ totalSize: number;
194
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
195
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
196
+ measure: () => void;
197
+ };
198
+ UNSTABLE_defaultItemHeight: number;
199
+ containerRef: React.RefObject<HTMLDivElement>;
200
+ orientation: "horizontal" | "vertical";
201
+ indexRef: React.MutableRefObject<number>;
202
+ nonInteractiveIds: string[];
203
+ isVirtualized: boolean;
204
+ items: import("../..").Item<any>[];
205
+ mode: "multiple" | "single";
206
+ value: string | undefined;
207
+ inputRef: React.RefObject<HTMLInputElement>;
208
+ width: number;
209
+ }) => void) | undefined;
210
+ onSelectAll?: ((data: undefined, prevState: {
211
+ stackRef: React.RefObject<HTMLDivElement>;
212
+ targetRef: React.RefObject<HTMLButtonElement>;
213
+ initialFocusRef: React.RefObject<any> | undefined;
214
+ returnFocusRef: React.RefObject<any> | undefined;
215
+ placement: import("@popperjs/core").Placement;
216
+ id: string;
217
+ visibility: "hidden" | "visible";
218
+ selectedIds: string[] | "all";
219
+ unselectedIds: string[];
220
+ cursorId: string;
221
+ columnCount: number;
222
+ pageSizeRef: React.MutableRefObject<number>;
223
+ cursorIndexRef: {
224
+ readonly current: number;
225
+ };
226
+ UNSTABLE_virtual: {
227
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
228
+ totalSize: number;
229
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
230
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
231
+ measure: () => void;
232
+ };
233
+ UNSTABLE_defaultItemHeight: number;
234
+ containerRef: React.RefObject<HTMLDivElement>;
235
+ orientation: "horizontal" | "vertical";
236
+ indexRef: React.MutableRefObject<number>;
237
+ nonInteractiveIds: string[];
238
+ isVirtualized: boolean;
239
+ items: import("../..").Item<any>[];
240
+ mode: "multiple" | "single";
241
+ value: string | undefined;
242
+ inputRef: React.RefObject<HTMLInputElement>;
243
+ width: number;
244
+ }) => void) | undefined;
245
+ onUnselectAll?: ((data: undefined, prevState: {
246
+ stackRef: React.RefObject<HTMLDivElement>;
247
+ targetRef: React.RefObject<HTMLButtonElement>;
248
+ initialFocusRef: React.RefObject<any> | undefined;
249
+ returnFocusRef: React.RefObject<any> | undefined;
250
+ placement: import("@popperjs/core").Placement;
251
+ id: string;
252
+ visibility: "hidden" | "visible";
253
+ selectedIds: string[] | "all";
254
+ unselectedIds: string[];
255
+ cursorId: string;
256
+ columnCount: number;
257
+ pageSizeRef: React.MutableRefObject<number>;
258
+ cursorIndexRef: {
259
+ readonly current: number;
260
+ };
261
+ UNSTABLE_virtual: {
262
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
263
+ totalSize: number;
264
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
265
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
266
+ measure: () => void;
267
+ };
268
+ UNSTABLE_defaultItemHeight: number;
269
+ containerRef: React.RefObject<HTMLDivElement>;
270
+ orientation: "horizontal" | "vertical";
271
+ indexRef: React.MutableRefObject<number>;
272
+ nonInteractiveIds: string[];
273
+ isVirtualized: boolean;
274
+ items: import("../..").Item<any>[];
275
+ mode: "multiple" | "single";
276
+ value: string | undefined;
277
+ inputRef: React.RefObject<HTMLInputElement>;
278
+ width: number;
279
+ }) => void) | undefined;
280
+ onGoTo?: ((data: {
281
+ id: string;
282
+ }, prevState: {
283
+ stackRef: React.RefObject<HTMLDivElement>;
284
+ targetRef: React.RefObject<HTMLButtonElement>;
285
+ initialFocusRef: React.RefObject<any> | undefined;
286
+ returnFocusRef: React.RefObject<any> | undefined;
287
+ placement: import("@popperjs/core").Placement;
288
+ id: string;
289
+ visibility: "hidden" | "visible";
290
+ selectedIds: string[] | "all";
291
+ unselectedIds: string[];
292
+ cursorId: string;
293
+ columnCount: number;
294
+ pageSizeRef: React.MutableRefObject<number>;
295
+ cursorIndexRef: {
296
+ readonly current: number;
297
+ };
298
+ UNSTABLE_virtual: {
299
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
300
+ totalSize: number;
301
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
302
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
303
+ measure: () => void;
304
+ };
305
+ UNSTABLE_defaultItemHeight: number;
306
+ containerRef: React.RefObject<HTMLDivElement>;
307
+ orientation: "horizontal" | "vertical";
308
+ indexRef: React.MutableRefObject<number>;
309
+ nonInteractiveIds: string[];
310
+ isVirtualized: boolean;
311
+ items: import("../..").Item<any>[];
312
+ mode: "multiple" | "single";
313
+ value: string | undefined;
314
+ inputRef: React.RefObject<HTMLInputElement>;
315
+ width: number;
316
+ }) => void) | undefined;
317
+ onGoToNext?: ((data: undefined, prevState: {
318
+ stackRef: React.RefObject<HTMLDivElement>;
319
+ targetRef: React.RefObject<HTMLButtonElement>;
320
+ initialFocusRef: React.RefObject<any> | undefined;
321
+ returnFocusRef: React.RefObject<any> | undefined;
322
+ placement: import("@popperjs/core").Placement;
323
+ id: string;
324
+ visibility: "hidden" | "visible";
325
+ selectedIds: string[] | "all";
326
+ unselectedIds: string[];
327
+ cursorId: string;
328
+ columnCount: number;
329
+ pageSizeRef: React.MutableRefObject<number>;
330
+ cursorIndexRef: {
331
+ readonly current: number;
332
+ };
333
+ UNSTABLE_virtual: {
334
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
335
+ totalSize: number;
336
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
337
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
338
+ measure: () => void;
339
+ };
340
+ UNSTABLE_defaultItemHeight: number;
341
+ containerRef: React.RefObject<HTMLDivElement>;
342
+ orientation: "horizontal" | "vertical";
343
+ indexRef: React.MutableRefObject<number>;
344
+ nonInteractiveIds: string[];
345
+ isVirtualized: boolean;
346
+ items: import("../..").Item<any>[];
347
+ mode: "multiple" | "single";
348
+ value: string | undefined;
349
+ inputRef: React.RefObject<HTMLInputElement>;
350
+ width: number;
351
+ }) => void) | undefined;
352
+ onGoToPrevious?: ((data: undefined, prevState: {
353
+ stackRef: React.RefObject<HTMLDivElement>;
354
+ targetRef: React.RefObject<HTMLButtonElement>;
355
+ initialFocusRef: React.RefObject<any> | undefined;
356
+ returnFocusRef: React.RefObject<any> | undefined;
357
+ placement: import("@popperjs/core").Placement;
358
+ id: string;
359
+ visibility: "hidden" | "visible";
360
+ selectedIds: string[] | "all";
361
+ unselectedIds: string[];
362
+ cursorId: string;
363
+ columnCount: number;
364
+ pageSizeRef: React.MutableRefObject<number>;
365
+ cursorIndexRef: {
366
+ readonly current: number;
367
+ };
368
+ UNSTABLE_virtual: {
369
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
370
+ totalSize: number;
371
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
372
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
373
+ measure: () => void;
374
+ };
375
+ UNSTABLE_defaultItemHeight: number;
376
+ containerRef: React.RefObject<HTMLDivElement>;
377
+ orientation: "horizontal" | "vertical";
378
+ indexRef: React.MutableRefObject<number>;
379
+ nonInteractiveIds: string[];
380
+ isVirtualized: boolean;
381
+ items: import("../..").Item<any>[];
382
+ mode: "multiple" | "single";
383
+ value: string | undefined;
384
+ inputRef: React.RefObject<HTMLInputElement>;
385
+ width: number;
386
+ }) => void) | undefined;
387
+ onGoToPreviousRow?: ((data: undefined, prevState: {
388
+ stackRef: React.RefObject<HTMLDivElement>;
389
+ targetRef: React.RefObject<HTMLButtonElement>;
390
+ initialFocusRef: React.RefObject<any> | undefined;
391
+ returnFocusRef: React.RefObject<any> | undefined;
392
+ placement: import("@popperjs/core").Placement;
393
+ id: string;
394
+ visibility: "hidden" | "visible";
395
+ selectedIds: string[] | "all";
396
+ unselectedIds: string[];
397
+ cursorId: string;
398
+ columnCount: number;
399
+ pageSizeRef: React.MutableRefObject<number>;
400
+ cursorIndexRef: {
401
+ readonly current: number;
402
+ };
403
+ UNSTABLE_virtual: {
404
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
405
+ totalSize: number;
406
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
407
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
408
+ measure: () => void;
409
+ };
410
+ UNSTABLE_defaultItemHeight: number;
411
+ containerRef: React.RefObject<HTMLDivElement>;
412
+ orientation: "horizontal" | "vertical";
413
+ indexRef: React.MutableRefObject<number>;
414
+ nonInteractiveIds: string[];
415
+ isVirtualized: boolean;
416
+ items: import("../..").Item<any>[];
417
+ mode: "multiple" | "single";
418
+ value: string | undefined;
419
+ inputRef: React.RefObject<HTMLInputElement>;
420
+ width: number;
421
+ }) => void) | undefined;
422
+ onGoToNextRow?: ((data: undefined, prevState: {
423
+ stackRef: React.RefObject<HTMLDivElement>;
424
+ targetRef: React.RefObject<HTMLButtonElement>;
425
+ initialFocusRef: React.RefObject<any> | undefined;
426
+ returnFocusRef: React.RefObject<any> | undefined;
427
+ placement: import("@popperjs/core").Placement;
428
+ id: string;
429
+ visibility: "hidden" | "visible";
430
+ selectedIds: string[] | "all";
431
+ unselectedIds: string[];
432
+ cursorId: string;
433
+ columnCount: number;
434
+ pageSizeRef: React.MutableRefObject<number>;
435
+ cursorIndexRef: {
436
+ readonly current: number;
437
+ };
438
+ UNSTABLE_virtual: {
439
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
440
+ totalSize: number;
441
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
442
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
443
+ measure: () => void;
444
+ };
445
+ UNSTABLE_defaultItemHeight: number;
446
+ containerRef: React.RefObject<HTMLDivElement>;
447
+ orientation: "horizontal" | "vertical";
448
+ indexRef: React.MutableRefObject<number>;
449
+ nonInteractiveIds: string[];
450
+ isVirtualized: boolean;
451
+ items: import("../..").Item<any>[];
452
+ mode: "multiple" | "single";
453
+ value: string | undefined;
454
+ inputRef: React.RefObject<HTMLInputElement>;
455
+ width: number;
456
+ }) => void) | undefined;
457
+ onGoToFirst?: ((data: undefined, prevState: {
458
+ stackRef: React.RefObject<HTMLDivElement>;
459
+ targetRef: React.RefObject<HTMLButtonElement>;
460
+ initialFocusRef: React.RefObject<any> | undefined;
461
+ returnFocusRef: React.RefObject<any> | undefined;
462
+ placement: import("@popperjs/core").Placement;
463
+ id: string;
464
+ visibility: "hidden" | "visible";
465
+ selectedIds: string[] | "all";
466
+ unselectedIds: string[];
467
+ cursorId: string;
468
+ columnCount: number;
469
+ pageSizeRef: React.MutableRefObject<number>;
470
+ cursorIndexRef: {
471
+ readonly current: number;
472
+ };
473
+ UNSTABLE_virtual: {
474
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
475
+ totalSize: number;
476
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
477
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
478
+ measure: () => void;
479
+ };
480
+ UNSTABLE_defaultItemHeight: number;
481
+ containerRef: React.RefObject<HTMLDivElement>;
482
+ orientation: "horizontal" | "vertical";
483
+ indexRef: React.MutableRefObject<number>;
484
+ nonInteractiveIds: string[];
485
+ isVirtualized: boolean;
486
+ items: import("../..").Item<any>[];
487
+ mode: "multiple" | "single";
488
+ value: string | undefined;
489
+ inputRef: React.RefObject<HTMLInputElement>;
490
+ width: number;
491
+ }) => void) | undefined;
492
+ onGoToLast?: ((data: undefined, prevState: {
493
+ stackRef: React.RefObject<HTMLDivElement>;
494
+ targetRef: React.RefObject<HTMLButtonElement>;
495
+ initialFocusRef: React.RefObject<any> | undefined;
496
+ returnFocusRef: React.RefObject<any> | undefined;
497
+ placement: import("@popperjs/core").Placement;
498
+ id: string;
499
+ visibility: "hidden" | "visible";
500
+ selectedIds: string[] | "all";
501
+ unselectedIds: string[];
502
+ cursorId: string;
503
+ columnCount: number;
504
+ pageSizeRef: React.MutableRefObject<number>;
505
+ cursorIndexRef: {
506
+ readonly current: number;
507
+ };
508
+ UNSTABLE_virtual: {
509
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
510
+ totalSize: number;
511
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
512
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
513
+ measure: () => void;
514
+ };
515
+ UNSTABLE_defaultItemHeight: number;
516
+ containerRef: React.RefObject<HTMLDivElement>;
517
+ orientation: "horizontal" | "vertical";
518
+ indexRef: React.MutableRefObject<number>;
519
+ nonInteractiveIds: string[];
520
+ isVirtualized: boolean;
521
+ items: import("../..").Item<any>[];
522
+ mode: "multiple" | "single";
523
+ value: string | undefined;
524
+ inputRef: React.RefObject<HTMLInputElement>;
525
+ width: number;
526
+ }) => void) | undefined;
527
+ onGoToFirstOfRow?: ((data: undefined, prevState: {
528
+ stackRef: React.RefObject<HTMLDivElement>;
529
+ targetRef: React.RefObject<HTMLButtonElement>;
530
+ initialFocusRef: React.RefObject<any> | undefined;
531
+ returnFocusRef: React.RefObject<any> | undefined;
532
+ placement: import("@popperjs/core").Placement;
533
+ id: string;
534
+ visibility: "hidden" | "visible";
535
+ selectedIds: string[] | "all";
536
+ unselectedIds: string[];
537
+ cursorId: string;
538
+ columnCount: number;
539
+ pageSizeRef: React.MutableRefObject<number>;
540
+ cursorIndexRef: {
541
+ readonly current: number;
542
+ };
543
+ UNSTABLE_virtual: {
544
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
545
+ totalSize: number;
546
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
547
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
548
+ measure: () => void;
549
+ };
550
+ UNSTABLE_defaultItemHeight: number;
551
+ containerRef: React.RefObject<HTMLDivElement>;
552
+ orientation: "horizontal" | "vertical";
553
+ indexRef: React.MutableRefObject<number>;
554
+ nonInteractiveIds: string[];
555
+ isVirtualized: boolean;
556
+ items: import("../..").Item<any>[];
557
+ mode: "multiple" | "single";
558
+ value: string | undefined;
559
+ inputRef: React.RefObject<HTMLInputElement>;
560
+ width: number;
561
+ }) => void) | undefined;
562
+ onGoToLastOfRow?: ((data: undefined, prevState: {
563
+ stackRef: React.RefObject<HTMLDivElement>;
564
+ targetRef: React.RefObject<HTMLButtonElement>;
565
+ initialFocusRef: React.RefObject<any> | undefined;
566
+ returnFocusRef: React.RefObject<any> | undefined;
567
+ placement: import("@popperjs/core").Placement;
568
+ id: string;
569
+ visibility: "hidden" | "visible";
570
+ selectedIds: string[] | "all";
571
+ unselectedIds: string[];
572
+ cursorId: string;
573
+ columnCount: number;
574
+ pageSizeRef: React.MutableRefObject<number>;
575
+ cursorIndexRef: {
576
+ readonly current: number;
577
+ };
578
+ UNSTABLE_virtual: {
579
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
580
+ totalSize: number;
581
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
582
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
583
+ measure: () => void;
584
+ };
585
+ UNSTABLE_defaultItemHeight: number;
586
+ containerRef: React.RefObject<HTMLDivElement>;
587
+ orientation: "horizontal" | "vertical";
588
+ indexRef: React.MutableRefObject<number>;
589
+ nonInteractiveIds: string[];
590
+ isVirtualized: boolean;
591
+ items: import("../..").Item<any>[];
592
+ mode: "multiple" | "single";
593
+ value: string | undefined;
594
+ inputRef: React.RefObject<HTMLInputElement>;
595
+ width: number;
596
+ }) => void) | undefined;
597
+ onGoToNextPage?: ((data: undefined, prevState: {
598
+ stackRef: React.RefObject<HTMLDivElement>;
599
+ targetRef: React.RefObject<HTMLButtonElement>;
600
+ initialFocusRef: React.RefObject<any> | undefined;
601
+ returnFocusRef: React.RefObject<any> | undefined;
602
+ placement: import("@popperjs/core").Placement;
603
+ id: string;
604
+ visibility: "hidden" | "visible";
605
+ selectedIds: string[] | "all";
606
+ unselectedIds: string[];
607
+ cursorId: string;
608
+ columnCount: number;
609
+ pageSizeRef: React.MutableRefObject<number>;
610
+ cursorIndexRef: {
611
+ readonly current: number;
612
+ };
613
+ UNSTABLE_virtual: {
614
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
615
+ totalSize: number;
616
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
617
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
618
+ measure: () => void;
619
+ };
620
+ UNSTABLE_defaultItemHeight: number;
621
+ containerRef: React.RefObject<HTMLDivElement>;
622
+ orientation: "horizontal" | "vertical";
623
+ indexRef: React.MutableRefObject<number>;
624
+ nonInteractiveIds: string[];
625
+ isVirtualized: boolean;
626
+ items: import("../..").Item<any>[];
627
+ mode: "multiple" | "single";
628
+ value: string | undefined;
629
+ inputRef: React.RefObject<HTMLInputElement>;
630
+ width: number;
631
+ }) => void) | undefined;
632
+ onGoToPreviousPage?: ((data: undefined, prevState: {
633
+ stackRef: React.RefObject<HTMLDivElement>;
634
+ targetRef: React.RefObject<HTMLButtonElement>;
635
+ initialFocusRef: React.RefObject<any> | undefined;
636
+ returnFocusRef: React.RefObject<any> | undefined;
637
+ placement: import("@popperjs/core").Placement;
638
+ id: string;
639
+ visibility: "hidden" | "visible";
640
+ selectedIds: string[] | "all";
641
+ unselectedIds: string[];
642
+ cursorId: string;
643
+ columnCount: number;
644
+ pageSizeRef: React.MutableRefObject<number>;
645
+ cursorIndexRef: {
646
+ readonly current: number;
647
+ };
648
+ UNSTABLE_virtual: {
649
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
650
+ totalSize: number;
651
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
652
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
653
+ measure: () => void;
654
+ };
655
+ UNSTABLE_defaultItemHeight: number;
656
+ containerRef: React.RefObject<HTMLDivElement>;
657
+ orientation: "horizontal" | "vertical";
658
+ indexRef: React.MutableRefObject<number>;
659
+ nonInteractiveIds: string[];
660
+ isVirtualized: boolean;
661
+ items: import("../..").Item<any>[];
662
+ mode: "multiple" | "single";
663
+ value: string | undefined;
664
+ inputRef: React.RefObject<HTMLInputElement>;
665
+ width: number;
666
+ }) => void) | undefined;
667
+ onRegisterItem?: ((data: {
668
+ item: any;
669
+ textValue: string;
670
+ }, prevState: {
671
+ stackRef: React.RefObject<HTMLDivElement>;
672
+ targetRef: React.RefObject<HTMLButtonElement>;
673
+ initialFocusRef: React.RefObject<any> | undefined;
674
+ returnFocusRef: React.RefObject<any> | undefined;
675
+ placement: import("@popperjs/core").Placement;
676
+ id: string;
677
+ visibility: "hidden" | "visible";
678
+ selectedIds: string[] | "all";
679
+ unselectedIds: string[];
680
+ cursorId: string;
681
+ columnCount: number;
682
+ pageSizeRef: React.MutableRefObject<number>;
683
+ cursorIndexRef: {
684
+ readonly current: number;
685
+ };
686
+ UNSTABLE_virtual: {
687
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
688
+ totalSize: number;
689
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
690
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
691
+ measure: () => void;
692
+ };
693
+ UNSTABLE_defaultItemHeight: number;
694
+ containerRef: React.RefObject<HTMLDivElement>;
695
+ orientation: "horizontal" | "vertical";
696
+ indexRef: React.MutableRefObject<number>;
697
+ nonInteractiveIds: string[];
698
+ isVirtualized: boolean;
699
+ items: import("../..").Item<any>[];
700
+ mode: "multiple" | "single";
701
+ value: string | undefined;
702
+ inputRef: React.RefObject<HTMLInputElement>;
703
+ width: number;
704
+ }) => void) | undefined;
705
+ onUnregisterItem?: ((data: {
706
+ id: string;
707
+ }, prevState: {
708
+ stackRef: React.RefObject<HTMLDivElement>;
709
+ targetRef: React.RefObject<HTMLButtonElement>;
710
+ initialFocusRef: React.RefObject<any> | undefined;
711
+ returnFocusRef: React.RefObject<any> | undefined;
712
+ placement: import("@popperjs/core").Placement;
713
+ id: string;
714
+ visibility: "hidden" | "visible";
715
+ selectedIds: string[] | "all";
716
+ unselectedIds: string[];
717
+ cursorId: string;
718
+ columnCount: number;
719
+ pageSizeRef: React.MutableRefObject<number>;
720
+ cursorIndexRef: {
721
+ readonly current: number;
722
+ };
723
+ UNSTABLE_virtual: {
724
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
725
+ totalSize: number;
726
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
727
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
728
+ measure: () => void;
729
+ };
730
+ UNSTABLE_defaultItemHeight: number;
731
+ containerRef: React.RefObject<HTMLDivElement>;
732
+ orientation: "horizontal" | "vertical";
733
+ indexRef: React.MutableRefObject<number>;
734
+ nonInteractiveIds: string[];
735
+ isVirtualized: boolean;
736
+ items: import("../..").Item<any>[];
737
+ mode: "multiple" | "single";
738
+ value: string | undefined;
739
+ inputRef: React.RefObject<HTMLInputElement>;
740
+ width: number;
741
+ }) => void) | undefined;
742
+ onUpdateItemHeight?: ((data: {
743
+ value: number;
744
+ }, prevState: {
745
+ stackRef: React.RefObject<HTMLDivElement>;
746
+ targetRef: React.RefObject<HTMLButtonElement>;
747
+ initialFocusRef: React.RefObject<any> | undefined;
748
+ returnFocusRef: React.RefObject<any> | undefined;
749
+ placement: import("@popperjs/core").Placement;
750
+ id: string;
751
+ visibility: "hidden" | "visible";
752
+ selectedIds: string[] | "all";
753
+ unselectedIds: string[];
754
+ cursorId: string;
755
+ columnCount: number;
756
+ pageSizeRef: React.MutableRefObject<number>;
757
+ cursorIndexRef: {
758
+ readonly current: number;
759
+ };
760
+ UNSTABLE_virtual: {
761
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
762
+ totalSize: number;
763
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
764
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
765
+ measure: () => void;
766
+ };
767
+ UNSTABLE_defaultItemHeight: number;
768
+ containerRef: React.RefObject<HTMLDivElement>;
769
+ orientation: "horizontal" | "vertical";
770
+ indexRef: React.MutableRefObject<number>;
771
+ nonInteractiveIds: string[];
772
+ isVirtualized: boolean;
773
+ items: import("../..").Item<any>[];
774
+ mode: "multiple" | "single";
775
+ value: string | undefined;
776
+ inputRef: React.RefObject<HTMLInputElement>;
777
+ width: number;
778
+ }) => void) | undefined;
779
+ } & {
780
+ shouldSetWidth?: ((data: number, state: {
781
+ stackRef: React.RefObject<HTMLDivElement>;
782
+ targetRef: React.RefObject<HTMLButtonElement>;
783
+ initialFocusRef: React.RefObject<any> | undefined;
784
+ returnFocusRef: React.RefObject<any> | undefined;
785
+ placement: import("@popperjs/core").Placement;
786
+ id: string;
787
+ visibility: "hidden" | "visible";
788
+ selectedIds: string[] | "all";
789
+ unselectedIds: string[];
790
+ cursorId: string;
791
+ columnCount: number;
792
+ pageSizeRef: React.MutableRefObject<number>;
793
+ cursorIndexRef: {
794
+ readonly current: number;
795
+ };
796
+ UNSTABLE_virtual: {
797
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
798
+ totalSize: number;
799
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
800
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
801
+ measure: () => void;
802
+ };
803
+ UNSTABLE_defaultItemHeight: number;
804
+ containerRef: React.RefObject<HTMLDivElement>;
805
+ orientation: "horizontal" | "vertical";
806
+ indexRef: React.MutableRefObject<number>;
807
+ nonInteractiveIds: string[];
808
+ isVirtualized: boolean;
809
+ items: import("../..").Item<any>[];
810
+ mode: "multiple" | "single";
811
+ value: string | undefined;
812
+ inputRef: React.RefObject<HTMLInputElement>;
813
+ width: number;
814
+ }) => boolean) | undefined;
815
+ shouldUpdatePlacement?: ((data: {
816
+ placement: import("@popperjs/core").Placement;
817
+ }, state: {
818
+ stackRef: React.RefObject<HTMLDivElement>;
819
+ targetRef: React.RefObject<HTMLButtonElement>;
820
+ initialFocusRef: React.RefObject<any> | undefined;
821
+ returnFocusRef: React.RefObject<any> | undefined;
822
+ placement: import("@popperjs/core").Placement;
823
+ id: string;
824
+ visibility: "hidden" | "visible";
825
+ selectedIds: string[] | "all";
826
+ unselectedIds: string[];
827
+ cursorId: string;
828
+ columnCount: number;
829
+ pageSizeRef: React.MutableRefObject<number>;
830
+ cursorIndexRef: {
831
+ readonly current: number;
832
+ };
833
+ UNSTABLE_virtual: {
834
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
835
+ totalSize: number;
836
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
837
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
838
+ measure: () => void;
839
+ };
840
+ UNSTABLE_defaultItemHeight: number;
841
+ containerRef: React.RefObject<HTMLDivElement>;
842
+ orientation: "horizontal" | "vertical";
843
+ indexRef: React.MutableRefObject<number>;
844
+ nonInteractiveIds: string[];
845
+ isVirtualized: boolean;
846
+ items: import("../..").Item<any>[];
847
+ mode: "multiple" | "single";
848
+ value: string | undefined;
849
+ inputRef: React.RefObject<HTMLInputElement>;
850
+ width: number;
851
+ }) => boolean) | undefined;
852
+ shouldShow?: ((data: Event | React.SyntheticEvent<Element, Event> | undefined, state: {
853
+ stackRef: React.RefObject<HTMLDivElement>;
854
+ targetRef: React.RefObject<HTMLButtonElement>;
855
+ initialFocusRef: React.RefObject<any> | undefined;
856
+ returnFocusRef: React.RefObject<any> | undefined;
857
+ placement: import("@popperjs/core").Placement;
858
+ id: string;
859
+ visibility: "hidden" | "visible";
860
+ selectedIds: string[] | "all";
861
+ unselectedIds: string[];
862
+ cursorId: string;
863
+ columnCount: number;
864
+ pageSizeRef: React.MutableRefObject<number>;
865
+ cursorIndexRef: {
866
+ readonly current: number;
867
+ };
868
+ UNSTABLE_virtual: {
869
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
870
+ totalSize: number;
871
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
872
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
873
+ measure: () => void;
874
+ };
875
+ UNSTABLE_defaultItemHeight: number;
876
+ containerRef: React.RefObject<HTMLDivElement>;
877
+ orientation: "horizontal" | "vertical";
878
+ indexRef: React.MutableRefObject<number>;
879
+ nonInteractiveIds: string[];
880
+ isVirtualized: boolean;
881
+ items: import("../..").Item<any>[];
882
+ mode: "multiple" | "single";
883
+ value: string | undefined;
884
+ inputRef: React.RefObject<HTMLInputElement>;
885
+ width: number;
886
+ }) => boolean) | undefined;
887
+ shouldHide?: ((data: Event | React.SyntheticEvent<Element, Event> | undefined, state: {
888
+ stackRef: React.RefObject<HTMLDivElement>;
889
+ targetRef: React.RefObject<HTMLButtonElement>;
890
+ initialFocusRef: React.RefObject<any> | undefined;
891
+ returnFocusRef: React.RefObject<any> | undefined;
892
+ placement: import("@popperjs/core").Placement;
893
+ id: string;
894
+ visibility: "hidden" | "visible";
895
+ selectedIds: string[] | "all";
896
+ unselectedIds: string[];
897
+ cursorId: string;
898
+ columnCount: number;
899
+ pageSizeRef: React.MutableRefObject<number>;
900
+ cursorIndexRef: {
901
+ readonly current: number;
902
+ };
903
+ UNSTABLE_virtual: {
904
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
905
+ totalSize: number;
906
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
907
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
908
+ measure: () => void;
909
+ };
910
+ UNSTABLE_defaultItemHeight: number;
911
+ containerRef: React.RefObject<HTMLDivElement>;
912
+ orientation: "horizontal" | "vertical";
913
+ indexRef: React.MutableRefObject<number>;
914
+ nonInteractiveIds: string[];
915
+ isVirtualized: boolean;
916
+ items: import("../..").Item<any>[];
917
+ mode: "multiple" | "single";
918
+ value: string | undefined;
919
+ inputRef: React.RefObject<HTMLInputElement>;
920
+ width: number;
921
+ }) => boolean) | undefined;
922
+ shouldSelect?: ((data: {
923
+ id: string;
924
+ }, state: {
925
+ stackRef: React.RefObject<HTMLDivElement>;
926
+ targetRef: React.RefObject<HTMLButtonElement>;
927
+ initialFocusRef: React.RefObject<any> | undefined;
928
+ returnFocusRef: React.RefObject<any> | undefined;
929
+ placement: import("@popperjs/core").Placement;
930
+ id: string;
931
+ visibility: "hidden" | "visible";
932
+ selectedIds: string[] | "all";
933
+ unselectedIds: string[];
934
+ cursorId: string;
935
+ columnCount: number;
936
+ pageSizeRef: React.MutableRefObject<number>;
937
+ cursorIndexRef: {
938
+ readonly current: number;
939
+ };
940
+ UNSTABLE_virtual: {
941
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
942
+ totalSize: number;
943
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
944
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
945
+ measure: () => void;
946
+ };
947
+ UNSTABLE_defaultItemHeight: number;
948
+ containerRef: React.RefObject<HTMLDivElement>;
949
+ orientation: "horizontal" | "vertical";
950
+ indexRef: React.MutableRefObject<number>;
951
+ nonInteractiveIds: string[];
952
+ isVirtualized: boolean;
953
+ items: import("../..").Item<any>[];
954
+ mode: "multiple" | "single";
955
+ value: string | undefined;
956
+ inputRef: React.RefObject<HTMLInputElement>;
957
+ width: number;
958
+ }) => boolean) | undefined;
959
+ shouldSelectAll?: ((data: undefined, state: {
960
+ stackRef: React.RefObject<HTMLDivElement>;
961
+ targetRef: React.RefObject<HTMLButtonElement>;
962
+ initialFocusRef: React.RefObject<any> | undefined;
963
+ returnFocusRef: React.RefObject<any> | undefined;
964
+ placement: import("@popperjs/core").Placement;
965
+ id: string;
966
+ visibility: "hidden" | "visible";
967
+ selectedIds: string[] | "all";
968
+ unselectedIds: string[];
969
+ cursorId: string;
970
+ columnCount: number;
971
+ pageSizeRef: React.MutableRefObject<number>;
972
+ cursorIndexRef: {
973
+ readonly current: number;
974
+ };
975
+ UNSTABLE_virtual: {
976
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
977
+ totalSize: number;
978
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
979
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
980
+ measure: () => void;
981
+ };
982
+ UNSTABLE_defaultItemHeight: number;
983
+ containerRef: React.RefObject<HTMLDivElement>;
984
+ orientation: "horizontal" | "vertical";
985
+ indexRef: React.MutableRefObject<number>;
986
+ nonInteractiveIds: string[];
987
+ isVirtualized: boolean;
988
+ items: import("../..").Item<any>[];
989
+ mode: "multiple" | "single";
990
+ value: string | undefined;
991
+ inputRef: React.RefObject<HTMLInputElement>;
992
+ width: number;
993
+ }) => boolean) | undefined;
994
+ shouldUnselectAll?: ((data: undefined, state: {
995
+ stackRef: React.RefObject<HTMLDivElement>;
996
+ targetRef: React.RefObject<HTMLButtonElement>;
997
+ initialFocusRef: React.RefObject<any> | undefined;
998
+ returnFocusRef: React.RefObject<any> | undefined;
999
+ placement: import("@popperjs/core").Placement;
1000
+ id: string;
1001
+ visibility: "hidden" | "visible";
1002
+ selectedIds: string[] | "all";
1003
+ unselectedIds: string[];
1004
+ cursorId: string;
1005
+ columnCount: number;
1006
+ pageSizeRef: React.MutableRefObject<number>;
1007
+ cursorIndexRef: {
1008
+ readonly current: number;
1009
+ };
1010
+ UNSTABLE_virtual: {
1011
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1012
+ totalSize: number;
1013
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1014
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1015
+ measure: () => void;
1016
+ };
1017
+ UNSTABLE_defaultItemHeight: number;
1018
+ containerRef: React.RefObject<HTMLDivElement>;
1019
+ orientation: "horizontal" | "vertical";
1020
+ indexRef: React.MutableRefObject<number>;
1021
+ nonInteractiveIds: string[];
1022
+ isVirtualized: boolean;
1023
+ items: import("../..").Item<any>[];
1024
+ mode: "multiple" | "single";
1025
+ value: string | undefined;
1026
+ inputRef: React.RefObject<HTMLInputElement>;
1027
+ width: number;
1028
+ }) => boolean) | undefined;
1029
+ shouldGoTo?: ((data: {
1030
+ id: string;
1031
+ }, state: {
1032
+ stackRef: React.RefObject<HTMLDivElement>;
1033
+ targetRef: React.RefObject<HTMLButtonElement>;
1034
+ initialFocusRef: React.RefObject<any> | undefined;
1035
+ returnFocusRef: React.RefObject<any> | undefined;
1036
+ placement: import("@popperjs/core").Placement;
1037
+ id: string;
1038
+ visibility: "hidden" | "visible";
1039
+ selectedIds: string[] | "all";
1040
+ unselectedIds: string[];
1041
+ cursorId: string;
1042
+ columnCount: number;
1043
+ pageSizeRef: React.MutableRefObject<number>;
1044
+ cursorIndexRef: {
1045
+ readonly current: number;
1046
+ };
1047
+ UNSTABLE_virtual: {
1048
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1049
+ totalSize: number;
1050
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1051
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1052
+ measure: () => void;
1053
+ };
1054
+ UNSTABLE_defaultItemHeight: number;
1055
+ containerRef: React.RefObject<HTMLDivElement>;
1056
+ orientation: "horizontal" | "vertical";
1057
+ indexRef: React.MutableRefObject<number>;
1058
+ nonInteractiveIds: string[];
1059
+ isVirtualized: boolean;
1060
+ items: import("../..").Item<any>[];
1061
+ mode: "multiple" | "single";
1062
+ value: string | undefined;
1063
+ inputRef: React.RefObject<HTMLInputElement>;
1064
+ width: number;
1065
+ }) => boolean) | undefined;
1066
+ shouldGoToNext?: ((data: undefined, state: {
1067
+ stackRef: React.RefObject<HTMLDivElement>;
1068
+ targetRef: React.RefObject<HTMLButtonElement>;
1069
+ initialFocusRef: React.RefObject<any> | undefined;
1070
+ returnFocusRef: React.RefObject<any> | undefined;
1071
+ placement: import("@popperjs/core").Placement;
1072
+ id: string;
1073
+ visibility: "hidden" | "visible";
1074
+ selectedIds: string[] | "all";
1075
+ unselectedIds: string[];
1076
+ cursorId: string;
1077
+ columnCount: number;
1078
+ pageSizeRef: React.MutableRefObject<number>;
1079
+ cursorIndexRef: {
1080
+ readonly current: number;
1081
+ };
1082
+ UNSTABLE_virtual: {
1083
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1084
+ totalSize: number;
1085
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1086
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1087
+ measure: () => void;
1088
+ };
1089
+ UNSTABLE_defaultItemHeight: number;
1090
+ containerRef: React.RefObject<HTMLDivElement>;
1091
+ orientation: "horizontal" | "vertical";
1092
+ indexRef: React.MutableRefObject<number>;
1093
+ nonInteractiveIds: string[];
1094
+ isVirtualized: boolean;
1095
+ items: import("../..").Item<any>[];
1096
+ mode: "multiple" | "single";
1097
+ value: string | undefined;
1098
+ inputRef: React.RefObject<HTMLInputElement>;
1099
+ width: number;
1100
+ }) => boolean) | undefined;
1101
+ shouldGoToPrevious?: ((data: undefined, state: {
1102
+ stackRef: React.RefObject<HTMLDivElement>;
1103
+ targetRef: React.RefObject<HTMLButtonElement>;
1104
+ initialFocusRef: React.RefObject<any> | undefined;
1105
+ returnFocusRef: React.RefObject<any> | undefined;
1106
+ placement: import("@popperjs/core").Placement;
1107
+ id: string;
1108
+ visibility: "hidden" | "visible";
1109
+ selectedIds: string[] | "all";
1110
+ unselectedIds: string[];
1111
+ cursorId: string;
1112
+ columnCount: number;
1113
+ pageSizeRef: React.MutableRefObject<number>;
1114
+ cursorIndexRef: {
1115
+ readonly current: number;
1116
+ };
1117
+ UNSTABLE_virtual: {
1118
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1119
+ totalSize: number;
1120
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1121
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1122
+ measure: () => void;
1123
+ };
1124
+ UNSTABLE_defaultItemHeight: number;
1125
+ containerRef: React.RefObject<HTMLDivElement>;
1126
+ orientation: "horizontal" | "vertical";
1127
+ indexRef: React.MutableRefObject<number>;
1128
+ nonInteractiveIds: string[];
1129
+ isVirtualized: boolean;
1130
+ items: import("../..").Item<any>[];
1131
+ mode: "multiple" | "single";
1132
+ value: string | undefined;
1133
+ inputRef: React.RefObject<HTMLInputElement>;
1134
+ width: number;
1135
+ }) => boolean) | undefined;
1136
+ shouldGoToPreviousRow?: ((data: undefined, state: {
1137
+ stackRef: React.RefObject<HTMLDivElement>;
1138
+ targetRef: React.RefObject<HTMLButtonElement>;
1139
+ initialFocusRef: React.RefObject<any> | undefined;
1140
+ returnFocusRef: React.RefObject<any> | undefined;
1141
+ placement: import("@popperjs/core").Placement;
1142
+ id: string;
1143
+ visibility: "hidden" | "visible";
1144
+ selectedIds: string[] | "all";
1145
+ unselectedIds: string[];
1146
+ cursorId: string;
1147
+ columnCount: number;
1148
+ pageSizeRef: React.MutableRefObject<number>;
1149
+ cursorIndexRef: {
1150
+ readonly current: number;
1151
+ };
1152
+ UNSTABLE_virtual: {
1153
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1154
+ totalSize: number;
1155
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1156
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1157
+ measure: () => void;
1158
+ };
1159
+ UNSTABLE_defaultItemHeight: number;
1160
+ containerRef: React.RefObject<HTMLDivElement>;
1161
+ orientation: "horizontal" | "vertical";
1162
+ indexRef: React.MutableRefObject<number>;
1163
+ nonInteractiveIds: string[];
1164
+ isVirtualized: boolean;
1165
+ items: import("../..").Item<any>[];
1166
+ mode: "multiple" | "single";
1167
+ value: string | undefined;
1168
+ inputRef: React.RefObject<HTMLInputElement>;
1169
+ width: number;
1170
+ }) => boolean) | undefined;
1171
+ shouldGoToNextRow?: ((data: undefined, state: {
1172
+ stackRef: React.RefObject<HTMLDivElement>;
1173
+ targetRef: React.RefObject<HTMLButtonElement>;
1174
+ initialFocusRef: React.RefObject<any> | undefined;
1175
+ returnFocusRef: React.RefObject<any> | undefined;
1176
+ placement: import("@popperjs/core").Placement;
1177
+ id: string;
1178
+ visibility: "hidden" | "visible";
1179
+ selectedIds: string[] | "all";
1180
+ unselectedIds: string[];
1181
+ cursorId: string;
1182
+ columnCount: number;
1183
+ pageSizeRef: React.MutableRefObject<number>;
1184
+ cursorIndexRef: {
1185
+ readonly current: number;
1186
+ };
1187
+ UNSTABLE_virtual: {
1188
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1189
+ totalSize: number;
1190
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1191
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1192
+ measure: () => void;
1193
+ };
1194
+ UNSTABLE_defaultItemHeight: number;
1195
+ containerRef: React.RefObject<HTMLDivElement>;
1196
+ orientation: "horizontal" | "vertical";
1197
+ indexRef: React.MutableRefObject<number>;
1198
+ nonInteractiveIds: string[];
1199
+ isVirtualized: boolean;
1200
+ items: import("../..").Item<any>[];
1201
+ mode: "multiple" | "single";
1202
+ value: string | undefined;
1203
+ inputRef: React.RefObject<HTMLInputElement>;
1204
+ width: number;
1205
+ }) => boolean) | undefined;
1206
+ shouldGoToFirst?: ((data: undefined, state: {
1207
+ stackRef: React.RefObject<HTMLDivElement>;
1208
+ targetRef: React.RefObject<HTMLButtonElement>;
1209
+ initialFocusRef: React.RefObject<any> | undefined;
1210
+ returnFocusRef: React.RefObject<any> | undefined;
1211
+ placement: import("@popperjs/core").Placement;
1212
+ id: string;
1213
+ visibility: "hidden" | "visible";
1214
+ selectedIds: string[] | "all";
1215
+ unselectedIds: string[];
1216
+ cursorId: string;
1217
+ columnCount: number;
1218
+ pageSizeRef: React.MutableRefObject<number>;
1219
+ cursorIndexRef: {
1220
+ readonly current: number;
1221
+ };
1222
+ UNSTABLE_virtual: {
1223
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1224
+ totalSize: number;
1225
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1226
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1227
+ measure: () => void;
1228
+ };
1229
+ UNSTABLE_defaultItemHeight: number;
1230
+ containerRef: React.RefObject<HTMLDivElement>;
1231
+ orientation: "horizontal" | "vertical";
1232
+ indexRef: React.MutableRefObject<number>;
1233
+ nonInteractiveIds: string[];
1234
+ isVirtualized: boolean;
1235
+ items: import("../..").Item<any>[];
1236
+ mode: "multiple" | "single";
1237
+ value: string | undefined;
1238
+ inputRef: React.RefObject<HTMLInputElement>;
1239
+ width: number;
1240
+ }) => boolean) | undefined;
1241
+ shouldGoToLast?: ((data: undefined, state: {
1242
+ stackRef: React.RefObject<HTMLDivElement>;
1243
+ targetRef: React.RefObject<HTMLButtonElement>;
1244
+ initialFocusRef: React.RefObject<any> | undefined;
1245
+ returnFocusRef: React.RefObject<any> | undefined;
1246
+ placement: import("@popperjs/core").Placement;
1247
+ id: string;
1248
+ visibility: "hidden" | "visible";
1249
+ selectedIds: string[] | "all";
1250
+ unselectedIds: string[];
1251
+ cursorId: string;
1252
+ columnCount: number;
1253
+ pageSizeRef: React.MutableRefObject<number>;
1254
+ cursorIndexRef: {
1255
+ readonly current: number;
1256
+ };
1257
+ UNSTABLE_virtual: {
1258
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1259
+ totalSize: number;
1260
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1261
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1262
+ measure: () => void;
1263
+ };
1264
+ UNSTABLE_defaultItemHeight: number;
1265
+ containerRef: React.RefObject<HTMLDivElement>;
1266
+ orientation: "horizontal" | "vertical";
1267
+ indexRef: React.MutableRefObject<number>;
1268
+ nonInteractiveIds: string[];
1269
+ isVirtualized: boolean;
1270
+ items: import("../..").Item<any>[];
1271
+ mode: "multiple" | "single";
1272
+ value: string | undefined;
1273
+ inputRef: React.RefObject<HTMLInputElement>;
1274
+ width: number;
1275
+ }) => boolean) | undefined;
1276
+ shouldGoToFirstOfRow?: ((data: undefined, state: {
1277
+ stackRef: React.RefObject<HTMLDivElement>;
1278
+ targetRef: React.RefObject<HTMLButtonElement>;
1279
+ initialFocusRef: React.RefObject<any> | undefined;
1280
+ returnFocusRef: React.RefObject<any> | undefined;
1281
+ placement: import("@popperjs/core").Placement;
1282
+ id: string;
1283
+ visibility: "hidden" | "visible";
1284
+ selectedIds: string[] | "all";
1285
+ unselectedIds: string[];
1286
+ cursorId: string;
1287
+ columnCount: number;
1288
+ pageSizeRef: React.MutableRefObject<number>;
1289
+ cursorIndexRef: {
1290
+ readonly current: number;
1291
+ };
1292
+ UNSTABLE_virtual: {
1293
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1294
+ totalSize: number;
1295
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1296
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1297
+ measure: () => void;
1298
+ };
1299
+ UNSTABLE_defaultItemHeight: number;
1300
+ containerRef: React.RefObject<HTMLDivElement>;
1301
+ orientation: "horizontal" | "vertical";
1302
+ indexRef: React.MutableRefObject<number>;
1303
+ nonInteractiveIds: string[];
1304
+ isVirtualized: boolean;
1305
+ items: import("../..").Item<any>[];
1306
+ mode: "multiple" | "single";
1307
+ value: string | undefined;
1308
+ inputRef: React.RefObject<HTMLInputElement>;
1309
+ width: number;
1310
+ }) => boolean) | undefined;
1311
+ shouldGoToLastOfRow?: ((data: undefined, state: {
1312
+ stackRef: React.RefObject<HTMLDivElement>;
1313
+ targetRef: React.RefObject<HTMLButtonElement>;
1314
+ initialFocusRef: React.RefObject<any> | undefined;
1315
+ returnFocusRef: React.RefObject<any> | undefined;
1316
+ placement: import("@popperjs/core").Placement;
1317
+ id: string;
1318
+ visibility: "hidden" | "visible";
1319
+ selectedIds: string[] | "all";
1320
+ unselectedIds: string[];
1321
+ cursorId: string;
1322
+ columnCount: number;
1323
+ pageSizeRef: React.MutableRefObject<number>;
1324
+ cursorIndexRef: {
1325
+ readonly current: number;
1326
+ };
1327
+ UNSTABLE_virtual: {
1328
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1329
+ totalSize: number;
1330
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1331
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1332
+ measure: () => void;
1333
+ };
1334
+ UNSTABLE_defaultItemHeight: number;
1335
+ containerRef: React.RefObject<HTMLDivElement>;
1336
+ orientation: "horizontal" | "vertical";
1337
+ indexRef: React.MutableRefObject<number>;
1338
+ nonInteractiveIds: string[];
1339
+ isVirtualized: boolean;
1340
+ items: import("../..").Item<any>[];
1341
+ mode: "multiple" | "single";
1342
+ value: string | undefined;
1343
+ inputRef: React.RefObject<HTMLInputElement>;
1344
+ width: number;
1345
+ }) => boolean) | undefined;
1346
+ shouldGoToNextPage?: ((data: undefined, state: {
1347
+ stackRef: React.RefObject<HTMLDivElement>;
1348
+ targetRef: React.RefObject<HTMLButtonElement>;
1349
+ initialFocusRef: React.RefObject<any> | undefined;
1350
+ returnFocusRef: React.RefObject<any> | undefined;
1351
+ placement: import("@popperjs/core").Placement;
1352
+ id: string;
1353
+ visibility: "hidden" | "visible";
1354
+ selectedIds: string[] | "all";
1355
+ unselectedIds: string[];
1356
+ cursorId: string;
1357
+ columnCount: number;
1358
+ pageSizeRef: React.MutableRefObject<number>;
1359
+ cursorIndexRef: {
1360
+ readonly current: number;
1361
+ };
1362
+ UNSTABLE_virtual: {
1363
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1364
+ totalSize: number;
1365
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1366
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1367
+ measure: () => void;
1368
+ };
1369
+ UNSTABLE_defaultItemHeight: number;
1370
+ containerRef: React.RefObject<HTMLDivElement>;
1371
+ orientation: "horizontal" | "vertical";
1372
+ indexRef: React.MutableRefObject<number>;
1373
+ nonInteractiveIds: string[];
1374
+ isVirtualized: boolean;
1375
+ items: import("../..").Item<any>[];
1376
+ mode: "multiple" | "single";
1377
+ value: string | undefined;
1378
+ inputRef: React.RefObject<HTMLInputElement>;
1379
+ width: number;
1380
+ }) => boolean) | undefined;
1381
+ shouldGoToPreviousPage?: ((data: undefined, state: {
1382
+ stackRef: React.RefObject<HTMLDivElement>;
1383
+ targetRef: React.RefObject<HTMLButtonElement>;
1384
+ initialFocusRef: React.RefObject<any> | undefined;
1385
+ returnFocusRef: React.RefObject<any> | undefined;
1386
+ placement: import("@popperjs/core").Placement;
1387
+ id: string;
1388
+ visibility: "hidden" | "visible";
1389
+ selectedIds: string[] | "all";
1390
+ unselectedIds: string[];
1391
+ cursorId: string;
1392
+ columnCount: number;
1393
+ pageSizeRef: React.MutableRefObject<number>;
1394
+ cursorIndexRef: {
1395
+ readonly current: number;
1396
+ };
1397
+ UNSTABLE_virtual: {
1398
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1399
+ totalSize: number;
1400
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1401
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1402
+ measure: () => void;
1403
+ };
1404
+ UNSTABLE_defaultItemHeight: number;
1405
+ containerRef: React.RefObject<HTMLDivElement>;
1406
+ orientation: "horizontal" | "vertical";
1407
+ indexRef: React.MutableRefObject<number>;
1408
+ nonInteractiveIds: string[];
1409
+ isVirtualized: boolean;
1410
+ items: import("../..").Item<any>[];
1411
+ mode: "multiple" | "single";
1412
+ value: string | undefined;
1413
+ inputRef: React.RefObject<HTMLInputElement>;
1414
+ width: number;
1415
+ }) => boolean) | undefined;
1416
+ shouldRegisterItem?: ((data: {
1417
+ item: any;
1418
+ textValue: string;
1419
+ }, state: {
1420
+ stackRef: React.RefObject<HTMLDivElement>;
1421
+ targetRef: React.RefObject<HTMLButtonElement>;
1422
+ initialFocusRef: React.RefObject<any> | undefined;
1423
+ returnFocusRef: React.RefObject<any> | undefined;
1424
+ placement: import("@popperjs/core").Placement;
1425
+ id: string;
1426
+ visibility: "hidden" | "visible";
1427
+ selectedIds: string[] | "all";
1428
+ unselectedIds: string[];
1429
+ cursorId: string;
1430
+ columnCount: number;
1431
+ pageSizeRef: React.MutableRefObject<number>;
1432
+ cursorIndexRef: {
1433
+ readonly current: number;
1434
+ };
1435
+ UNSTABLE_virtual: {
1436
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1437
+ totalSize: number;
1438
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1439
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1440
+ measure: () => void;
1441
+ };
1442
+ UNSTABLE_defaultItemHeight: number;
1443
+ containerRef: React.RefObject<HTMLDivElement>;
1444
+ orientation: "horizontal" | "vertical";
1445
+ indexRef: React.MutableRefObject<number>;
1446
+ nonInteractiveIds: string[];
1447
+ isVirtualized: boolean;
1448
+ items: import("../..").Item<any>[];
1449
+ mode: "multiple" | "single";
1450
+ value: string | undefined;
1451
+ inputRef: React.RefObject<HTMLInputElement>;
1452
+ width: number;
1453
+ }) => boolean) | undefined;
1454
+ shouldUnregisterItem?: ((data: {
1455
+ id: string;
1456
+ }, state: {
1457
+ stackRef: React.RefObject<HTMLDivElement>;
1458
+ targetRef: React.RefObject<HTMLButtonElement>;
1459
+ initialFocusRef: React.RefObject<any> | undefined;
1460
+ returnFocusRef: React.RefObject<any> | undefined;
1461
+ placement: import("@popperjs/core").Placement;
1462
+ id: string;
1463
+ visibility: "hidden" | "visible";
1464
+ selectedIds: string[] | "all";
1465
+ unselectedIds: string[];
1466
+ cursorId: string;
1467
+ columnCount: number;
1468
+ pageSizeRef: React.MutableRefObject<number>;
1469
+ cursorIndexRef: {
1470
+ readonly current: number;
1471
+ };
1472
+ UNSTABLE_virtual: {
1473
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1474
+ totalSize: number;
1475
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1476
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1477
+ measure: () => void;
1478
+ };
1479
+ UNSTABLE_defaultItemHeight: number;
1480
+ containerRef: React.RefObject<HTMLDivElement>;
1481
+ orientation: "horizontal" | "vertical";
1482
+ indexRef: React.MutableRefObject<number>;
1483
+ nonInteractiveIds: string[];
1484
+ isVirtualized: boolean;
1485
+ items: import("../..").Item<any>[];
1486
+ mode: "multiple" | "single";
1487
+ value: string | undefined;
1488
+ inputRef: React.RefObject<HTMLInputElement>;
1489
+ width: number;
1490
+ }) => boolean) | undefined;
1491
+ shouldUpdateItemHeight?: ((data: {
1492
+ value: number;
1493
+ }, state: {
1494
+ stackRef: React.RefObject<HTMLDivElement>;
1495
+ targetRef: React.RefObject<HTMLButtonElement>;
1496
+ initialFocusRef: React.RefObject<any> | undefined;
1497
+ returnFocusRef: React.RefObject<any> | undefined;
1498
+ placement: import("@popperjs/core").Placement;
1499
+ id: string;
1500
+ visibility: "hidden" | "visible";
1501
+ selectedIds: string[] | "all";
1502
+ unselectedIds: string[];
1503
+ cursorId: string;
1504
+ columnCount: number;
1505
+ pageSizeRef: React.MutableRefObject<number>;
1506
+ cursorIndexRef: {
1507
+ readonly current: number;
1508
+ };
1509
+ UNSTABLE_virtual: {
1510
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1511
+ totalSize: number;
1512
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1513
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1514
+ measure: () => void;
1515
+ };
1516
+ UNSTABLE_defaultItemHeight: number;
1517
+ containerRef: React.RefObject<HTMLDivElement>;
1518
+ orientation: "horizontal" | "vertical";
1519
+ indexRef: React.MutableRefObject<number>;
1520
+ nonInteractiveIds: string[];
1521
+ isVirtualized: boolean;
1522
+ items: import("../..").Item<any>[];
1523
+ mode: "multiple" | "single";
1524
+ value: string | undefined;
1525
+ inputRef: React.RefObject<HTMLInputElement>;
1526
+ width: number;
1527
+ }) => boolean) | undefined;
1528
+ }, {
1529
+ state: {
1530
+ stackRef: React.RefObject<HTMLDivElement>;
1531
+ targetRef: React.RefObject<HTMLButtonElement>;
1532
+ initialFocusRef: React.RefObject<any> | undefined;
1533
+ returnFocusRef: React.RefObject<any> | undefined;
1534
+ placement: import("@popperjs/core").Placement;
1535
+ id: string;
1536
+ visibility: "hidden" | "visible";
1537
+ selectedIds: string[] | "all";
1538
+ unselectedIds: string[];
1539
+ cursorId: string;
1540
+ columnCount: number;
1541
+ pageSizeRef: React.MutableRefObject<number>;
1542
+ cursorIndexRef: {
1543
+ readonly current: number;
1544
+ };
1545
+ UNSTABLE_virtual: {
1546
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1547
+ totalSize: number;
1548
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1549
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1550
+ measure: () => void;
1551
+ };
1552
+ UNSTABLE_defaultItemHeight: number;
1553
+ containerRef: React.RefObject<HTMLDivElement>;
1554
+ orientation: "horizontal" | "vertical";
1555
+ indexRef: React.MutableRefObject<number>;
1556
+ nonInteractiveIds: string[];
1557
+ isVirtualized: boolean;
1558
+ items: import("../..").Item<any>[];
1559
+ mode: "multiple" | "single";
1560
+ value: string | undefined;
1561
+ inputRef: React.RefObject<HTMLInputElement>;
1562
+ width: number;
1563
+ };
1564
+ events: {
1565
+ setWidth(width: number): void;
1566
+ updatePlacement(data: {
1567
+ placement: import("@popperjs/core").Placement;
1568
+ }): void;
1569
+ show(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1570
+ hide(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1571
+ select(data: {
1572
+ id: string;
1573
+ }): void;
1574
+ selectAll(): void;
1575
+ unselectAll(): void;
1576
+ goTo(data: {
1577
+ id: string;
1578
+ }): void;
1579
+ goToNext(): void;
1580
+ goToPrevious(): void;
1581
+ goToPreviousRow(): void;
1582
+ goToNextRow(): void;
1583
+ goToFirst(): void;
1584
+ goToLast(): void;
1585
+ goToFirstOfRow(): void;
1586
+ goToLastOfRow(): void;
1587
+ goToNextPage(): void;
1588
+ goToPreviousPage(): void;
1589
+ registerItem(data: {
1590
+ item: any;
1591
+ textValue: string;
1592
+ }): void;
1593
+ unregisterItem(data: {
1594
+ id: string;
1595
+ }): void;
1596
+ updateItemHeight(data: {
1597
+ value: number;
1598
+ }): void;
1599
+ };
1600
+ onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
1601
+ selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
1602
+ navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
1603
+ getId: (item: any) => string;
1604
+ }> & {
1605
+ /**
1606
+ * The input of the `Combobox`. This element will have `role="combobox"` applied, along with
1607
+ * `aria-haspopup="true"`
1608
+ */
1609
+ Input: import("@workday/canvas-kit-react/common").ElementComponentM<import("@workday/canvas-kit-react/common").ElementComponent<"input", import("../..").TextInputProps> & {
1610
+ ErrorType: typeof import("@workday/canvas-kit-react/common").ErrorType;
1611
+ }, import("../..").TextInputProps, {
1612
+ state: {
1613
+ stackRef: React.RefObject<HTMLDivElement>;
1614
+ targetRef: React.RefObject<HTMLButtonElement>;
1615
+ initialFocusRef: React.RefObject<any> | undefined;
1616
+ returnFocusRef: React.RefObject<any> | undefined;
1617
+ placement: import("@popperjs/core").Placement;
1618
+ id: string;
1619
+ visibility: "hidden" | "visible";
1620
+ selectedIds: string[] | "all";
1621
+ unselectedIds: string[];
1622
+ cursorId: string;
1623
+ columnCount: number;
1624
+ pageSizeRef: React.MutableRefObject<number>;
1625
+ cursorIndexRef: {
1626
+ readonly current: number;
1627
+ };
1628
+ UNSTABLE_virtual: {
1629
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1630
+ totalSize: number;
1631
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1632
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1633
+ measure: () => void;
1634
+ };
1635
+ UNSTABLE_defaultItemHeight: number;
1636
+ containerRef: React.RefObject<HTMLDivElement>;
1637
+ orientation: "horizontal" | "vertical";
1638
+ indexRef: React.MutableRefObject<number>;
1639
+ nonInteractiveIds: string[];
1640
+ isVirtualized: boolean;
1641
+ items: import("../..").Item<any>[];
1642
+ mode: "multiple" | "single";
1643
+ value: string | undefined;
1644
+ inputRef: React.RefObject<HTMLInputElement>;
1645
+ width: number;
1646
+ };
1647
+ events: {
1648
+ setWidth(width: number): void;
1649
+ updatePlacement(data: {
1650
+ placement: import("@popperjs/core").Placement;
1651
+ }): void;
1652
+ show(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1653
+ hide(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1654
+ select(data: {
1655
+ id: string;
1656
+ }): void;
1657
+ selectAll(): void;
1658
+ unselectAll(): void;
1659
+ goTo(data: {
1660
+ id: string;
1661
+ }): void;
1662
+ goToNext(): void;
1663
+ goToPrevious(): void;
1664
+ goToPreviousRow(): void;
1665
+ goToNextRow(): void;
1666
+ goToFirst(): void;
1667
+ goToLast(): void;
1668
+ goToFirstOfRow(): void;
1669
+ goToLastOfRow(): void;
1670
+ goToNextPage(): void;
1671
+ goToPreviousPage(): void;
1672
+ registerItem(data: {
1673
+ item: any;
1674
+ textValue: string;
1675
+ }): void;
1676
+ unregisterItem(data: {
1677
+ id: string;
1678
+ }): void;
1679
+ updateItemHeight(data: {
1680
+ value: number;
1681
+ }): void;
1682
+ };
1683
+ onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
1684
+ selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
1685
+ navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
1686
+ getId: (item: any) => string;
1687
+ }>;
1688
+ /**
1689
+ * A custom {@link Menu} component that uses `aria-activedescendant` instead of roving tab index
1690
+ * to keep the focus on the {@link ComboboxInput Combobox.Input}.
1691
+ */
1692
+ Menu: import("@workday/canvas-kit-react/common").ElementComponentM<React.FC<{}>, import("./ComboboxMenu").ComboboxMenuProps, {
1693
+ state: {
1694
+ stackRef: React.RefObject<HTMLDivElement>;
1695
+ targetRef: React.RefObject<HTMLButtonElement>;
1696
+ initialFocusRef: React.RefObject<any> | undefined;
1697
+ returnFocusRef: React.RefObject<any> | undefined;
1698
+ placement: import("@popperjs/core").Placement;
1699
+ id: string;
1700
+ visibility: "hidden" | "visible";
1701
+ selectedIds: string[] | "all";
1702
+ unselectedIds: string[];
1703
+ cursorId: string;
1704
+ columnCount: number;
1705
+ pageSizeRef: React.MutableRefObject<number>;
1706
+ cursorIndexRef: {
1707
+ readonly current: number;
1708
+ };
1709
+ UNSTABLE_virtual: {
1710
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1711
+ totalSize: number;
1712
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1713
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1714
+ measure: () => void;
1715
+ };
1716
+ UNSTABLE_defaultItemHeight: number;
1717
+ containerRef: React.RefObject<HTMLDivElement>;
1718
+ orientation: "horizontal" | "vertical";
1719
+ indexRef: React.MutableRefObject<number>;
1720
+ nonInteractiveIds: string[];
1721
+ isVirtualized: boolean;
1722
+ items: import("../..").Item<any>[];
1723
+ mode: "multiple" | "single";
1724
+ value: string | undefined;
1725
+ inputRef: React.RefObject<HTMLInputElement>;
1726
+ width: number;
1727
+ };
1728
+ events: {
1729
+ setWidth(width: number): void;
1730
+ updatePlacement(data: {
1731
+ placement: import("@popperjs/core").Placement;
1732
+ }): void;
1733
+ show(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1734
+ hide(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1735
+ select(data: {
1736
+ id: string;
1737
+ }): void;
1738
+ selectAll(): void;
1739
+ unselectAll(): void;
1740
+ goTo(data: {
1741
+ id: string;
1742
+ }): void;
1743
+ goToNext(): void;
1744
+ goToPrevious(): void;
1745
+ goToPreviousRow(): void;
1746
+ goToNextRow(): void;
1747
+ goToFirst(): void;
1748
+ goToLast(): void;
1749
+ goToFirstOfRow(): void;
1750
+ goToLastOfRow(): void;
1751
+ goToNextPage(): void;
1752
+ goToPreviousPage(): void;
1753
+ registerItem(data: {
1754
+ item: any;
1755
+ textValue: string;
1756
+ }): void;
1757
+ unregisterItem(data: {
1758
+ id: string;
1759
+ }): void;
1760
+ updateItemHeight(data: {
1761
+ value: number;
1762
+ }): void;
1763
+ };
1764
+ onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
1765
+ selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
1766
+ navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
1767
+ getId: (item: any) => string;
1768
+ }> & {
1769
+ Popper: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("../../menu/lib/MenuPopper").MenuPopperProps, {
1770
+ state: {
1771
+ stackRef: React.RefObject<HTMLDivElement>;
1772
+ targetRef: React.RefObject<HTMLButtonElement>;
1773
+ initialFocusRef: React.RefObject<any> | undefined;
1774
+ returnFocusRef: React.RefObject<any> | undefined;
1775
+ placement: import("@popperjs/core").Placement;
1776
+ id: string;
1777
+ visibility: "hidden" | "visible";
1778
+ selectedIds: string[] | "all";
1779
+ unselectedIds: string[];
1780
+ cursorId: string;
1781
+ columnCount: number;
1782
+ pageSizeRef: React.MutableRefObject<number>;
1783
+ cursorIndexRef: {
1784
+ readonly current: number;
1785
+ };
1786
+ UNSTABLE_virtual: {
1787
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1788
+ totalSize: number;
1789
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1790
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1791
+ measure: () => void;
1792
+ };
1793
+ UNSTABLE_defaultItemHeight: number;
1794
+ containerRef: React.RefObject<HTMLDivElement>;
1795
+ orientation: "horizontal" | "vertical";
1796
+ indexRef: React.MutableRefObject<number>;
1797
+ nonInteractiveIds: string[];
1798
+ isVirtualized: boolean;
1799
+ items: import("../..").Item<any>[];
1800
+ mode: "multiple" | "single";
1801
+ };
1802
+ events: {
1803
+ updatePlacement(data: {
1804
+ placement: import("@popperjs/core").Placement;
1805
+ }): void;
1806
+ show(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1807
+ hide(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1808
+ select(data: {
1809
+ id: string;
1810
+ }): void;
1811
+ selectAll(): void;
1812
+ unselectAll(): void;
1813
+ goTo(data: {
1814
+ id: string;
1815
+ }): void;
1816
+ goToNext(): void;
1817
+ goToPrevious(): void;
1818
+ goToPreviousRow(): void;
1819
+ goToNextRow(): void;
1820
+ goToFirst(): void;
1821
+ goToLast(): void;
1822
+ goToFirstOfRow(): void;
1823
+ goToLastOfRow(): void;
1824
+ goToNextPage(): void;
1825
+ goToPreviousPage(): void;
1826
+ registerItem(data: {
1827
+ item: any;
1828
+ textValue: string;
1829
+ }): void;
1830
+ unregisterItem(data: {
1831
+ id: string;
1832
+ }): void;
1833
+ updateItemHeight(data: {
1834
+ value: number;
1835
+ }): void;
1836
+ };
1837
+ selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
1838
+ navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
1839
+ getId: (item: any) => string;
1840
+ }>;
1841
+ List: import("@workday/canvas-kit-react/common").ElementComponentM<"ul", import("./ComboboxMenuList").ComboboxMenuListProps<any>, {
1842
+ state: {
1843
+ stackRef: React.RefObject<HTMLDivElement>;
1844
+ targetRef: React.RefObject<HTMLButtonElement>;
1845
+ initialFocusRef: React.RefObject<any> | undefined;
1846
+ returnFocusRef: React.RefObject<any> | undefined;
1847
+ placement: import("@popperjs/core").Placement;
1848
+ id: string;
1849
+ visibility: "hidden" | "visible";
1850
+ selectedIds: string[] | "all";
1851
+ unselectedIds: string[];
1852
+ cursorId: string;
1853
+ columnCount: number;
1854
+ pageSizeRef: React.MutableRefObject<number>;
1855
+ cursorIndexRef: {
1856
+ readonly current: number;
1857
+ };
1858
+ UNSTABLE_virtual: {
1859
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1860
+ totalSize: number;
1861
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1862
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1863
+ measure: () => void;
1864
+ };
1865
+ UNSTABLE_defaultItemHeight: number;
1866
+ containerRef: React.RefObject<HTMLDivElement>;
1867
+ orientation: "horizontal" | "vertical";
1868
+ indexRef: React.MutableRefObject<number>;
1869
+ nonInteractiveIds: string[];
1870
+ isVirtualized: boolean;
1871
+ items: import("../..").Item<any>[];
1872
+ mode: "multiple" | "single";
1873
+ value: string | undefined;
1874
+ inputRef: React.RefObject<HTMLInputElement>;
1875
+ width: number;
1876
+ };
1877
+ events: {
1878
+ setWidth(width: number): void;
1879
+ updatePlacement(data: {
1880
+ placement: import("@popperjs/core").Placement;
1881
+ }): void;
1882
+ show(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1883
+ hide(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1884
+ select(data: {
1885
+ id: string;
1886
+ }): void;
1887
+ selectAll(): void;
1888
+ unselectAll(): void;
1889
+ goTo(data: {
1890
+ id: string;
1891
+ }): void;
1892
+ goToNext(): void;
1893
+ goToPrevious(): void;
1894
+ goToPreviousRow(): void;
1895
+ goToNextRow(): void;
1896
+ goToFirst(): void;
1897
+ goToLast(): void;
1898
+ goToFirstOfRow(): void;
1899
+ goToLastOfRow(): void;
1900
+ goToNextPage(): void;
1901
+ goToPreviousPage(): void;
1902
+ registerItem(data: {
1903
+ item: any;
1904
+ textValue: string;
1905
+ }): void;
1906
+ unregisterItem(data: {
1907
+ id: string;
1908
+ }): void;
1909
+ updateItemHeight(data: {
1910
+ value: number;
1911
+ }): void;
1912
+ };
1913
+ onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
1914
+ selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
1915
+ navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
1916
+ getId: (item: any) => string;
1917
+ }>;
1918
+ Item: import("@workday/canvas-kit-react/common").ElementComponentM<"li", import("./ComboboxMenuItem").ComboboxMenuItemProps, {
1919
+ state: {
1920
+ stackRef: React.RefObject<HTMLDivElement>;
1921
+ targetRef: React.RefObject<HTMLButtonElement>;
1922
+ initialFocusRef: React.RefObject<any> | undefined;
1923
+ returnFocusRef: React.RefObject<any> | undefined;
1924
+ placement: import("@popperjs/core").Placement;
1925
+ id: string;
1926
+ visibility: "hidden" | "visible";
1927
+ selectedIds: string[] | "all";
1928
+ unselectedIds: string[];
1929
+ cursorId: string;
1930
+ columnCount: number;
1931
+ pageSizeRef: React.MutableRefObject<number>;
1932
+ cursorIndexRef: {
1933
+ readonly current: number;
1934
+ };
1935
+ UNSTABLE_virtual: {
1936
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
1937
+ totalSize: number;
1938
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
1939
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
1940
+ measure: () => void;
1941
+ };
1942
+ UNSTABLE_defaultItemHeight: number;
1943
+ containerRef: React.RefObject<HTMLDivElement>;
1944
+ orientation: "horizontal" | "vertical";
1945
+ indexRef: React.MutableRefObject<number>;
1946
+ nonInteractiveIds: string[];
1947
+ isVirtualized: boolean;
1948
+ items: import("../..").Item<any>[];
1949
+ mode: "multiple" | "single";
1950
+ value: string | undefined;
1951
+ inputRef: React.RefObject<HTMLInputElement>;
1952
+ width: number;
1953
+ };
1954
+ events: {
1955
+ setWidth(width: number): void;
1956
+ updatePlacement(data: {
1957
+ placement: import("@popperjs/core").Placement;
1958
+ }): void;
1959
+ show(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1960
+ hide(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
1961
+ select(data: {
1962
+ id: string;
1963
+ }): void;
1964
+ selectAll(): void;
1965
+ unselectAll(): void;
1966
+ goTo(data: {
1967
+ id: string;
1968
+ }): void;
1969
+ goToNext(): void;
1970
+ goToPrevious(): void;
1971
+ goToPreviousRow(): void;
1972
+ goToNextRow(): void;
1973
+ goToFirst(): void;
1974
+ goToLast(): void;
1975
+ goToFirstOfRow(): void;
1976
+ goToLastOfRow(): void;
1977
+ goToNextPage(): void;
1978
+ goToPreviousPage(): void;
1979
+ registerItem(data: {
1980
+ item: any;
1981
+ textValue: string;
1982
+ }): void;
1983
+ unregisterItem(data: {
1984
+ id: string;
1985
+ }): void;
1986
+ updateItemHeight(data: {
1987
+ value: number;
1988
+ }): void;
1989
+ };
1990
+ onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
1991
+ selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
1992
+ navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
1993
+ getId: (item: any) => string;
1994
+ }>;
1995
+ Card: import("@workday/canvas-kit-react/common").ElementComponentM<"div", import("./ComboboxCard").ComboboxCardProps, {
1996
+ state: {
1997
+ stackRef: React.RefObject<HTMLDivElement>;
1998
+ targetRef: React.RefObject<HTMLButtonElement>;
1999
+ initialFocusRef: React.RefObject<any> | undefined;
2000
+ returnFocusRef: React.RefObject<any> | undefined;
2001
+ placement: import("@popperjs/core").Placement;
2002
+ id: string;
2003
+ visibility: "hidden" | "visible";
2004
+ selectedIds: string[] | "all";
2005
+ unselectedIds: string[];
2006
+ cursorId: string;
2007
+ columnCount: number;
2008
+ pageSizeRef: React.MutableRefObject<number>;
2009
+ cursorIndexRef: {
2010
+ readonly current: number;
2011
+ };
2012
+ UNSTABLE_virtual: {
2013
+ virtualItems: import("../../collection/lib/react-virtual").VirtualItem[];
2014
+ totalSize: number;
2015
+ scrollToOffset: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToOffsetOptions | undefined) => void;
2016
+ scrollToIndex: (index: number, options?: import("../../collection/lib/react-virtual").ScrollToIndexOptions | undefined) => void;
2017
+ measure: () => void;
2018
+ };
2019
+ UNSTABLE_defaultItemHeight: number;
2020
+ containerRef: React.RefObject<HTMLDivElement>;
2021
+ orientation: "horizontal" | "vertical";
2022
+ indexRef: React.MutableRefObject<number>;
2023
+ nonInteractiveIds: string[];
2024
+ isVirtualized: boolean;
2025
+ items: import("../..").Item<any>[];
2026
+ mode: "multiple" | "single";
2027
+ value: string | undefined;
2028
+ inputRef: React.RefObject<HTMLInputElement>;
2029
+ width: number;
2030
+ };
2031
+ events: {
2032
+ setWidth(width: number): void;
2033
+ updatePlacement(data: {
2034
+ placement: import("@popperjs/core").Placement;
2035
+ }): void;
2036
+ show(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
2037
+ hide(event?: Event | React.SyntheticEvent<Element, Event> | undefined): void;
2038
+ select(data: {
2039
+ id: string;
2040
+ }): void;
2041
+ selectAll(): void;
2042
+ unselectAll(): void;
2043
+ goTo(data: {
2044
+ id: string;
2045
+ }): void;
2046
+ goToNext(): void;
2047
+ goToPrevious(): void;
2048
+ goToPreviousRow(): void;
2049
+ goToNextRow(): void;
2050
+ goToFirst(): void;
2051
+ goToLast(): void;
2052
+ goToFirstOfRow(): void;
2053
+ goToLastOfRow(): void;
2054
+ goToNextPage(): void;
2055
+ goToPreviousPage(): void;
2056
+ registerItem(data: {
2057
+ item: any;
2058
+ textValue: string;
2059
+ }): void;
2060
+ unregisterItem(data: {
2061
+ id: string;
2062
+ }): void;
2063
+ updateItemHeight(data: {
2064
+ value: number;
2065
+ }): void;
2066
+ };
2067
+ onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
2068
+ selection: import("../../collection/lib/useSelectionListModel").SelectionManager;
2069
+ navigation: import("../../collection/lib/useCursorListModel").NavigationManager;
2070
+ getId: (item: any) => string;
2071
+ }>;
2072
+ Divider: import("@workday/canvas-kit-react/common").ElementComponent<"hr", unknown>;
2073
+ };
2074
+ };
2075
+ //# sourceMappingURL=Combobox.d.ts.map