@elastic/eui 95.10.0 → 95.11.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 (300) hide show
  1. package/dist/eui_theme_dark.css +0 -923
  2. package/dist/eui_theme_dark.min.css +1 -1
  3. package/dist/eui_theme_light.css +0 -923
  4. package/dist/eui_theme_light.min.css +1 -1
  5. package/es/components/basic_table/basic_table.js +4 -3
  6. package/es/components/basic_table/collapsed_item_actions.js +24 -31
  7. package/es/components/datagrid/body/cell/data_grid_cell.js +98 -86
  8. package/es/components/datagrid/body/cell/data_grid_cell.styles.js +107 -0
  9. package/es/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
  10. package/es/components/datagrid/body/cell/data_grid_cell_actions.styles.js +33 -0
  11. package/es/components/datagrid/body/cell/data_grid_cell_popover.js +21 -12
  12. package/es/components/datagrid/body/cell/data_grid_cell_popover.styles.js +19 -0
  13. package/es/components/datagrid/body/cell/focus_utils.js +18 -20
  14. package/es/components/datagrid/body/data_grid_body.js +20 -4
  15. package/es/components/datagrid/body/data_grid_body.styles.js +26 -0
  16. package/es/components/datagrid/body/data_grid_body_custom.js +18 -6
  17. package/es/components/datagrid/body/data_grid_body_virtualized.js +18 -6
  18. package/es/components/datagrid/body/footer/data_grid_footer.styles.js +24 -0
  19. package/es/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
  20. package/es/components/datagrid/body/header/column_actions.js +16 -4
  21. package/es/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
  22. package/es/components/datagrid/body/header/data_grid_column_resizer.styles.js +36 -0
  23. package/es/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
  24. package/es/components/datagrid/body/header/data_grid_header_cell.js +40 -66
  25. package/es/components/datagrid/body/header/data_grid_header_cell.styles.js +29 -0
  26. package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +4 -1
  27. package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +27 -0
  28. package/es/components/datagrid/body/header/data_grid_header_row.js +8 -2
  29. package/es/components/datagrid/body/header/data_grid_header_row.styles.js +21 -0
  30. package/es/components/datagrid/controls/column_selector.js +17 -8
  31. package/es/components/datagrid/controls/column_selector.styles.js +22 -0
  32. package/es/components/datagrid/controls/column_sorting.js +7 -2
  33. package/es/components/datagrid/controls/column_sorting.styles.js +35 -0
  34. package/es/components/datagrid/controls/column_sorting_draggable.js +19 -14
  35. package/es/components/datagrid/controls/data_grid_toolbar.js +8 -1
  36. package/es/components/datagrid/controls/data_grid_toolbar.styles.js +18 -0
  37. package/es/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
  38. package/es/components/datagrid/controls/display_selector.js +14 -3
  39. package/es/components/datagrid/controls/fullscreen_selector.js +8 -5
  40. package/es/components/datagrid/controls/fullscreen_selector.styles.js +20 -0
  41. package/es/components/datagrid/controls/keyboard_shortcuts.js +7 -3
  42. package/es/components/datagrid/controls/keyboard_shortcuts.styles.js +18 -0
  43. package/es/components/datagrid/data_grid.a11y.js +1 -0
  44. package/es/components/datagrid/data_grid.js +16 -8
  45. package/es/components/datagrid/data_grid.stories.utils.js +1386 -0
  46. package/es/components/datagrid/data_grid.styles.js +88 -0
  47. package/es/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
  48. package/es/components/datagrid/pagination/data_grid_pagination.styles.js +16 -0
  49. package/es/components/datagrid/pagination/index.js +9 -0
  50. package/es/components/datagrid/utils/row_heights.js +13 -15
  51. package/es/components/datagrid/utils/scrolling.js +14 -7
  52. package/es/components/datagrid/utils/scrolling.styles.js +30 -0
  53. package/es/components/flyout/flyout_resizable.js +6 -2
  54. package/es/components/flyout/flyout_resizable.styles.js +34 -5
  55. package/es/components/popover/popover.js +1 -1
  56. package/es/components/text/text.js +25 -9
  57. package/es/components/text/text_align.js +19 -6
  58. package/es/components/text/text_color.js +14 -11
  59. package/es/components/text/types.js +1 -0
  60. package/eui.d.ts +581 -108
  61. package/i18ntokens.json +392 -356
  62. package/lib/components/basic_table/basic_table.js +4 -3
  63. package/lib/components/basic_table/collapsed_item_actions.js +23 -30
  64. package/lib/components/datagrid/body/cell/data_grid_cell.js +95 -83
  65. package/lib/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
  66. package/lib/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
  67. package/lib/components/datagrid/body/cell/data_grid_cell_actions.styles.js +38 -0
  68. package/lib/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
  69. package/lib/components/datagrid/body/cell/data_grid_cell_popover.styles.js +24 -0
  70. package/lib/components/datagrid/body/cell/focus_utils.js +17 -19
  71. package/lib/components/datagrid/body/data_grid_body.js +20 -4
  72. package/lib/components/datagrid/body/data_grid_body.styles.js +30 -0
  73. package/lib/components/datagrid/body/data_grid_body_custom.js +18 -6
  74. package/lib/components/datagrid/body/data_grid_body_virtualized.js +18 -6
  75. package/lib/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
  76. package/lib/components/datagrid/body/footer/data_grid_footer_row.js +11 -6
  77. package/lib/components/datagrid/body/header/column_actions.js +16 -4
  78. package/lib/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
  79. package/lib/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
  80. package/lib/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
  81. package/lib/components/datagrid/body/header/data_grid_header_cell.js +47 -74
  82. package/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
  83. package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
  84. package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
  85. package/lib/components/datagrid/body/header/data_grid_header_row.js +8 -2
  86. package/lib/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
  87. package/lib/components/datagrid/controls/column_selector.js +17 -8
  88. package/lib/components/datagrid/controls/column_selector.styles.js +28 -0
  89. package/lib/components/datagrid/controls/column_sorting.js +7 -2
  90. package/lib/components/datagrid/controls/column_sorting.styles.js +41 -0
  91. package/lib/components/datagrid/controls/column_sorting_draggable.js +19 -14
  92. package/lib/components/datagrid/controls/data_grid_toolbar.js +8 -1
  93. package/lib/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
  94. package/lib/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
  95. package/lib/components/datagrid/controls/display_selector.js +13 -2
  96. package/lib/components/datagrid/controls/fullscreen_selector.js +7 -4
  97. package/lib/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
  98. package/lib/components/datagrid/controls/keyboard_shortcuts.js +6 -2
  99. package/lib/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
  100. package/lib/components/datagrid/data_grid.a11y.js +1 -0
  101. package/lib/components/datagrid/data_grid.js +15 -7
  102. package/lib/components/datagrid/data_grid.stories.utils.js +1391 -0
  103. package/lib/components/datagrid/data_grid.styles.js +94 -0
  104. package/lib/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
  105. package/lib/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
  106. package/lib/components/datagrid/pagination/index.js +18 -0
  107. package/lib/components/datagrid/utils/row_heights.js +13 -14
  108. package/lib/components/datagrid/utils/scrolling.js +14 -7
  109. package/lib/components/datagrid/utils/scrolling.styles.js +36 -0
  110. package/lib/components/flyout/flyout_resizable.js +6 -2
  111. package/lib/components/flyout/flyout_resizable.styles.js +34 -5
  112. package/lib/components/popover/popover.js +1 -1
  113. package/lib/components/text/text.js +25 -9
  114. package/lib/components/text/text_align.js +19 -6
  115. package/lib/components/text/text_color.js +14 -11
  116. package/lib/components/text/types.js +5 -0
  117. package/optimize/es/components/basic_table/basic_table.js +4 -3
  118. package/optimize/es/components/basic_table/collapsed_item_actions.js +24 -31
  119. package/optimize/es/components/datagrid/body/cell/data_grid_cell.js +87 -81
  120. package/optimize/es/components/datagrid/body/cell/data_grid_cell.styles.js +107 -0
  121. package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
  122. package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.styles.js +33 -0
  123. package/optimize/es/components/datagrid/body/cell/data_grid_cell_popover.js +21 -12
  124. package/optimize/es/components/datagrid/body/cell/data_grid_cell_popover.styles.js +19 -0
  125. package/optimize/es/components/datagrid/body/cell/focus_utils.js +18 -20
  126. package/optimize/es/components/datagrid/body/data_grid_body.js +9 -2
  127. package/optimize/es/components/datagrid/body/data_grid_body.styles.js +26 -0
  128. package/optimize/es/components/datagrid/body/data_grid_body_custom.js +7 -4
  129. package/optimize/es/components/datagrid/body/data_grid_body_virtualized.js +7 -4
  130. package/optimize/es/components/datagrid/body/footer/data_grid_footer.styles.js +24 -0
  131. package/optimize/es/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
  132. package/optimize/es/components/datagrid/body/header/column_actions.js +16 -4
  133. package/optimize/es/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
  134. package/optimize/es/components/datagrid/body/header/data_grid_column_resizer.styles.js +36 -0
  135. package/optimize/es/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
  136. package/optimize/es/components/datagrid/body/header/data_grid_header_cell.js +40 -61
  137. package/optimize/es/components/datagrid/body/header/data_grid_header_cell.styles.js +29 -0
  138. package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +4 -1
  139. package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +27 -0
  140. package/optimize/es/components/datagrid/body/header/data_grid_header_row.js +8 -2
  141. package/optimize/es/components/datagrid/body/header/data_grid_header_row.styles.js +21 -0
  142. package/optimize/es/components/datagrid/controls/column_selector.js +17 -8
  143. package/optimize/es/components/datagrid/controls/column_selector.styles.js +22 -0
  144. package/optimize/es/components/datagrid/controls/column_sorting.js +7 -2
  145. package/optimize/es/components/datagrid/controls/column_sorting.styles.js +35 -0
  146. package/optimize/es/components/datagrid/controls/column_sorting_draggable.js +19 -14
  147. package/optimize/es/components/datagrid/controls/data_grid_toolbar.js +8 -1
  148. package/optimize/es/components/datagrid/controls/data_grid_toolbar.styles.js +18 -0
  149. package/optimize/es/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
  150. package/optimize/es/components/datagrid/controls/display_selector.js +14 -3
  151. package/optimize/es/components/datagrid/controls/fullscreen_selector.js +8 -5
  152. package/optimize/es/components/datagrid/controls/fullscreen_selector.styles.js +20 -0
  153. package/optimize/es/components/datagrid/controls/keyboard_shortcuts.js +7 -3
  154. package/optimize/es/components/datagrid/controls/keyboard_shortcuts.styles.js +18 -0
  155. package/optimize/es/components/datagrid/data_grid.a11y.js +1 -0
  156. package/optimize/es/components/datagrid/data_grid.js +16 -8
  157. package/optimize/es/components/datagrid/data_grid.stories.utils.js +333 -0
  158. package/optimize/es/components/datagrid/data_grid.styles.js +88 -0
  159. package/optimize/es/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
  160. package/optimize/es/components/datagrid/pagination/data_grid_pagination.styles.js +16 -0
  161. package/optimize/es/components/datagrid/pagination/index.js +9 -0
  162. package/optimize/es/components/datagrid/utils/row_heights.js +13 -15
  163. package/optimize/es/components/datagrid/utils/scrolling.js +14 -7
  164. package/optimize/es/components/datagrid/utils/scrolling.styles.js +30 -0
  165. package/optimize/es/components/flyout/flyout_resizable.js +6 -2
  166. package/optimize/es/components/flyout/flyout_resizable.styles.js +34 -5
  167. package/optimize/es/components/popover/popover.js +1 -1
  168. package/optimize/es/components/text/text.js +9 -4
  169. package/optimize/es/components/text/text_align.js +4 -2
  170. package/optimize/es/components/text/text_color.js +1 -2
  171. package/optimize/es/components/text/types.js +1 -0
  172. package/optimize/lib/components/basic_table/basic_table.js +4 -3
  173. package/optimize/lib/components/basic_table/collapsed_item_actions.js +23 -30
  174. package/optimize/lib/components/datagrid/body/cell/data_grid_cell.js +84 -78
  175. package/optimize/lib/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
  176. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
  177. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.styles.js +39 -0
  178. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
  179. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_popover.styles.js +25 -0
  180. package/optimize/lib/components/datagrid/body/cell/focus_utils.js +17 -19
  181. package/optimize/lib/components/datagrid/body/data_grid_body.js +9 -2
  182. package/optimize/lib/components/datagrid/body/data_grid_body.styles.js +30 -0
  183. package/optimize/lib/components/datagrid/body/data_grid_body_custom.js +7 -4
  184. package/optimize/lib/components/datagrid/body/data_grid_body_virtualized.js +7 -4
  185. package/optimize/lib/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
  186. package/optimize/lib/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
  187. package/optimize/lib/components/datagrid/body/header/column_actions.js +16 -4
  188. package/optimize/lib/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
  189. package/optimize/lib/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
  190. package/optimize/lib/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
  191. package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.js +43 -63
  192. package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
  193. package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
  194. package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
  195. package/optimize/lib/components/datagrid/body/header/data_grid_header_row.js +8 -2
  196. package/optimize/lib/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
  197. package/optimize/lib/components/datagrid/controls/column_selector.js +17 -8
  198. package/optimize/lib/components/datagrid/controls/column_selector.styles.js +28 -0
  199. package/optimize/lib/components/datagrid/controls/column_sorting.js +7 -2
  200. package/optimize/lib/components/datagrid/controls/column_sorting.styles.js +41 -0
  201. package/optimize/lib/components/datagrid/controls/column_sorting_draggable.js +19 -14
  202. package/optimize/lib/components/datagrid/controls/data_grid_toolbar.js +8 -1
  203. package/optimize/lib/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
  204. package/optimize/lib/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
  205. package/optimize/lib/components/datagrid/controls/display_selector.js +13 -2
  206. package/optimize/lib/components/datagrid/controls/fullscreen_selector.js +7 -4
  207. package/optimize/lib/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
  208. package/optimize/lib/components/datagrid/controls/keyboard_shortcuts.js +6 -2
  209. package/optimize/lib/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
  210. package/optimize/lib/components/datagrid/data_grid.a11y.js +1 -0
  211. package/optimize/lib/components/datagrid/data_grid.js +15 -7
  212. package/optimize/lib/components/datagrid/data_grid.stories.utils.js +341 -0
  213. package/optimize/lib/components/datagrid/data_grid.styles.js +94 -0
  214. package/{test-env/components/datagrid/utils → optimize/lib/components/datagrid/pagination}/data_grid_pagination.js +29 -31
  215. package/optimize/lib/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
  216. package/optimize/lib/components/datagrid/pagination/index.js +18 -0
  217. package/optimize/lib/components/datagrid/utils/row_heights.js +13 -14
  218. package/optimize/lib/components/datagrid/utils/scrolling.js +14 -7
  219. package/optimize/lib/components/datagrid/utils/scrolling.styles.js +36 -0
  220. package/optimize/lib/components/flyout/flyout_resizable.js +6 -2
  221. package/optimize/lib/components/flyout/flyout_resizable.styles.js +34 -5
  222. package/optimize/lib/components/popover/popover.js +1 -1
  223. package/optimize/lib/components/text/text.js +9 -4
  224. package/optimize/lib/components/text/text_align.js +4 -2
  225. package/optimize/lib/components/text/text_color.js +1 -2
  226. package/optimize/lib/components/text/types.js +5 -0
  227. package/package.json +3 -3
  228. package/src/themes/amsterdam/theme_dark.scss +0 -7
  229. package/src/themes/amsterdam/theme_light.scss +0 -7
  230. package/test-env/components/basic_table/basic_table.js +4 -3
  231. package/test-env/components/basic_table/collapsed_item_actions.js +23 -30
  232. package/test-env/components/datagrid/body/cell/data_grid_cell.js +90 -83
  233. package/test-env/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
  234. package/test-env/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
  235. package/test-env/components/datagrid/body/cell/data_grid_cell_actions.styles.js +39 -0
  236. package/test-env/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
  237. package/test-env/components/datagrid/body/cell/data_grid_cell_popover.styles.js +25 -0
  238. package/test-env/components/datagrid/body/cell/focus_utils.js +17 -19
  239. package/test-env/components/datagrid/body/data_grid_body.js +20 -4
  240. package/test-env/components/datagrid/body/data_grid_body.styles.js +30 -0
  241. package/test-env/components/datagrid/body/data_grid_body_custom.js +18 -6
  242. package/test-env/components/datagrid/body/data_grid_body_virtualized.js +18 -6
  243. package/test-env/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
  244. package/test-env/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
  245. package/test-env/components/datagrid/body/header/column_actions.js +16 -4
  246. package/test-env/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
  247. package/test-env/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
  248. package/test-env/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
  249. package/test-env/components/datagrid/body/header/data_grid_header_cell.js +43 -67
  250. package/test-env/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
  251. package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
  252. package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
  253. package/test-env/components/datagrid/body/header/data_grid_header_row.js +8 -2
  254. package/test-env/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
  255. package/test-env/components/datagrid/controls/column_selector.js +17 -8
  256. package/test-env/components/datagrid/controls/column_selector.styles.js +28 -0
  257. package/test-env/components/datagrid/controls/column_sorting.js +7 -2
  258. package/test-env/components/datagrid/controls/column_sorting.styles.js +41 -0
  259. package/test-env/components/datagrid/controls/column_sorting_draggable.js +19 -14
  260. package/test-env/components/datagrid/controls/data_grid_toolbar.js +8 -1
  261. package/test-env/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
  262. package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
  263. package/test-env/components/datagrid/controls/display_selector.js +13 -2
  264. package/test-env/components/datagrid/controls/fullscreen_selector.js +7 -4
  265. package/test-env/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
  266. package/test-env/components/datagrid/controls/keyboard_shortcuts.js +6 -2
  267. package/test-env/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
  268. package/test-env/components/datagrid/data_grid.a11y.js +1 -0
  269. package/test-env/components/datagrid/data_grid.js +15 -7
  270. package/test-env/components/datagrid/data_grid.stories.utils.js +1386 -0
  271. package/test-env/components/datagrid/data_grid.styles.js +94 -0
  272. package/{optimize/lib/components/datagrid/utils → test-env/components/datagrid/pagination}/data_grid_pagination.js +29 -31
  273. package/test-env/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
  274. package/test-env/components/datagrid/pagination/index.js +18 -0
  275. package/test-env/components/datagrid/utils/row_heights.js +13 -14
  276. package/test-env/components/datagrid/utils/scrolling.js +14 -7
  277. package/test-env/components/datagrid/utils/scrolling.styles.js +36 -0
  278. package/test-env/components/flyout/flyout_resizable.js +6 -2
  279. package/test-env/components/flyout/flyout_resizable.styles.js +34 -5
  280. package/test-env/components/popover/popover.js +1 -1
  281. package/test-env/components/text/text.js +25 -9
  282. package/test-env/components/text/text_align.js +19 -6
  283. package/test-env/components/text/text_color.js +14 -11
  284. package/test-env/components/text/types.js +5 -0
  285. package/src/components/datagrid/_data_grid.scss +0 -121
  286. package/src/components/datagrid/_data_grid_data_row.scss +0 -303
  287. package/src/components/datagrid/_index.scss +0 -12
  288. package/src/components/datagrid/_mixins.scss +0 -84
  289. package/src/components/datagrid/_variables.scss +0 -11
  290. package/src/components/datagrid/body/footer/_data_grid_footer_row.scss +0 -47
  291. package/src/components/datagrid/body/header/_data_grid_column_resizer.scss +0 -48
  292. package/src/components/datagrid/body/header/_data_grid_header_row.scss +0 -219
  293. package/src/components/datagrid/controls/_data_grid_column_selector.scss +0 -19
  294. package/src/components/datagrid/controls/_data_grid_column_sorting.scss +0 -43
  295. package/src/components/datagrid/controls/_data_grid_display.scss +0 -3
  296. package/src/components/datagrid/controls/_data_grid_keyboard_shortcuts.scss +0 -11
  297. package/src/components/datagrid/controls/_data_grid_toolbar.scss +0 -55
  298. package/src/components/index.scss +0 -3
  299. package/src/themes/amsterdam/overrides/_data_grid.scss +0 -5
  300. package/src/themes/amsterdam/overrides/_index.scss +0 -1
@@ -0,0 +1,1386 @@
1
+ var _excluded = ["pagination", "sorting", "columnVisibility"];
2
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
+ import PropTypes from "prop-types";
4
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
8
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
+ function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
10
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
11
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
12
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
13
+ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
14
+ function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
15
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
16
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.indexOf(n) >= 0) continue; t[n] = r[n]; } return t; }
17
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
18
+ /*
19
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
20
+ * or more contributor license agreements. Licensed under the Elastic License
21
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
22
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
23
+ * Side Public License, v 1.
24
+ */
25
+
26
+ /* eslint-disable storybook/default-exports, storybook/prefer-pascal-case */
27
+
28
+ import React, { useCallback, useEffect, useState } from 'react';
29
+ import { faker } from '@faker-js/faker';
30
+ import { EuiLink } from '../link';
31
+ import { EuiScreenReaderOnly } from '../accessibility';
32
+ import { EuiButtonIcon } from '../button';
33
+ import { MINIMUM_WIDTH_FOR_GRID_CONTROLS } from './controls/data_grid_toolbar';
34
+ import { EuiDataGrid } from './data_grid';
35
+ import { jsx as ___EmotionJSX } from "@emotion/react";
36
+ faker.seed(42);
37
+
38
+ // NOTE: using faker.date.past() is not fully stable for VRT as the date is
39
+ // based on a years time distance (default 1 year) which updates with progressing time
40
+ // faker.seed() ensures the same date is output in the same time frame
41
+ // but after some time the time distance will generate a newer, closer date
42
+ // which then invalidates the VRT
43
+ var staticDates = [new Date('Tue Mar 19 2024 18:54:51 GMT+0100'), new Date('Mon Mar 25 2024 19:27:35 GMT+0100'), new Date('Sat Sep 09 2023 00:32:42 GMT+0200'), new Date('Wed Jun 14 2023 06:48:29 GMT+0200'), new Date('Mon Mar 04 2024 04:40:36 GMT+0100'), new Date('Mon Feb 05 2024 10:51:48 GMT+0100'), new Date('Mon Jun 19 2023 12:08:38 GMT+0200'), new Date('Wed Jul 26 2023 01:15:02 GMT+0200'), new Date('Wed Nov 08 2023 08:49:13 GMT+0100'), new Date('Sun Nov 19 2023 01:49:12 GMT+0100')];
44
+ var dataKeys = ['name', 'email', 'account', 'location', 'date', 'version'];
45
+ export var raw_data = Array.from({
46
+ length: 10
47
+ }).map(function (_, i) {
48
+ var email = faker.internet.email();
49
+ var name = "".concat(faker.person.lastName(), ", ").concat(faker.person.firstName());
50
+ var date = staticDates[i].toDateString();
51
+ var suffix = faker.person.suffix();
52
+ return {
53
+ name: {
54
+ formatted: "".concat(name, " ").concat(suffix),
55
+ raw: name
56
+ },
57
+ email: {
58
+ formatted: ___EmotionJSX(EuiLink, {
59
+ href: ""
60
+ }, faker.internet.email()),
61
+ raw: email
62
+ },
63
+ location: ___EmotionJSX(React.Fragment, null, "".concat(faker.location.city(), ", "), ___EmotionJSX(EuiLink, {
64
+ href: "https://google.com"
65
+ }, faker.location.country())),
66
+ date: "".concat(date),
67
+ account: faker.finance.accountNumber(),
68
+ version: faker.system.semver()
69
+ };
70
+ });
71
+ var columns = [{
72
+ id: 'name',
73
+ displayAsText: 'Name',
74
+ defaultSortDirection: 'asc',
75
+ cellActions: [function (_ref) {
76
+ var rowIndex = _ref.rowIndex,
77
+ Component = _ref.Component;
78
+ var data = raw_data;
79
+ var value = data[rowIndex].name.raw;
80
+ return ___EmotionJSX(Component, {
81
+ onClick: function onClick() {
82
+ return alert("Hi ".concat(value));
83
+ },
84
+ iconType: "heart",
85
+ "aria-label": "Say hi to ".concat(value, "!")
86
+ }, "Say hi");
87
+ }]
88
+ }, {
89
+ id: 'email',
90
+ displayAsText: 'Email address',
91
+ initialWidth: 130,
92
+ cellActions: [function (_ref2) {
93
+ var rowIndex = _ref2.rowIndex,
94
+ Component = _ref2.Component;
95
+ var data = raw_data;
96
+ var value = data[rowIndex].email.raw;
97
+ return ___EmotionJSX(Component, {
98
+ onClick: function onClick() {
99
+ return alert(value);
100
+ },
101
+ iconType: "email",
102
+ "aria-label": "Send email to ".concat(value)
103
+ }, "Send email");
104
+ }]
105
+ }, {
106
+ id: 'location',
107
+ displayAsText: 'Location'
108
+ }, {
109
+ id: 'account',
110
+ displayAsText: 'Account',
111
+ actions: {
112
+ showHide: {
113
+ label: 'Custom hide label'
114
+ },
115
+ showMoveLeft: false,
116
+ showMoveRight: false,
117
+ additional: [{
118
+ label: 'Custom action',
119
+ onClick: function onClick() {},
120
+ iconType: 'cheer',
121
+ size: 'xs',
122
+ color: 'text'
123
+ }]
124
+ },
125
+ cellActions: [function (_ref3) {
126
+ var rowIndex = _ref3.rowIndex,
127
+ Component = _ref3.Component,
128
+ isExpanded = _ref3.isExpanded;
129
+ var data = raw_data;
130
+ var value = data[rowIndex].account;
131
+ var onClick = isExpanded ? function () {
132
+ return alert("Sent money to ".concat(value, " when expanded"));
133
+ } : function () {
134
+ return alert("Sent money to ".concat(value, " when not expanded"));
135
+ };
136
+ return ___EmotionJSX(Component, {
137
+ onClick: onClick,
138
+ iconType: "faceHappy",
139
+ "aria-label": "Send money to ".concat(value)
140
+ }, "Send money");
141
+ }]
142
+ }, {
143
+ id: 'date',
144
+ displayAsText: 'Date',
145
+ defaultSortDirection: 'desc'
146
+ }, {
147
+ id: 'version',
148
+ displayAsText: 'Version',
149
+ defaultSortDirection: 'desc',
150
+ initialWidth: 70,
151
+ isResizable: false,
152
+ actions: false
153
+ }];
154
+ var RenderCellValue = function RenderCellValue(_ref4) {
155
+ var rowIndex = _ref4.rowIndex,
156
+ columnId = _ref4.columnId;
157
+ var data = raw_data;
158
+ var row = data[rowIndex];
159
+ var columnName = columnId;
160
+ var column = row[columnName];
161
+ var getFormatted = function getFormatted() {
162
+ if (_typeof(column) === 'object') {
163
+ var hasFormatted = ('formatted' in column);
164
+ return hasFormatted ? column.formatted : column;
165
+ }
166
+ return typeof column === 'string' ? column : null;
167
+ };
168
+ return data.hasOwnProperty(rowIndex) ? getFormatted() : null;
169
+ };
170
+ export var defaultStorybookArgs = {
171
+ 'aria-label': 'EuiDataGrid',
172
+ columns: columns,
173
+ rowCount: 10,
174
+ renderCellValue: RenderCellValue,
175
+ trailingControlColumns: [{
176
+ id: 'trailing-actions',
177
+ width: 40,
178
+ headerCellRender: function headerCellRender() {
179
+ return ___EmotionJSX(EuiScreenReaderOnly, null, ___EmotionJSX("span", null, "Trailing actions"));
180
+ },
181
+ rowCellRender: function rowCellRender() {
182
+ return ___EmotionJSX(EuiButtonIcon, {
183
+ iconType: "boxesHorizontal"
184
+ });
185
+ }
186
+ }],
187
+ leadingControlColumns: [{
188
+ id: 'leading-actions',
189
+ width: 40,
190
+ headerCellRender: function headerCellRender() {
191
+ return ___EmotionJSX(EuiScreenReaderOnly, null, ___EmotionJSX("span", null, "Leading actions"));
192
+ },
193
+ rowCellRender: function rowCellRender() {
194
+ return ___EmotionJSX(EuiButtonIcon, {
195
+ iconType: "boxesHorizontal"
196
+ });
197
+ }
198
+ }],
199
+ // setup for easier testing/QA
200
+ columnVisibility: {
201
+ visibleColumns: ['name', 'email', 'account', 'location', 'date', 'amount', 'phone', 'version'],
202
+ setVisibleColumns: function setVisibleColumns() {}
203
+ },
204
+ inMemory: {
205
+ level: 'sorting'
206
+ },
207
+ pagination: {
208
+ pageIndex: 0,
209
+ pageSize: 10,
210
+ pageSizeOptions: [10, 20, 50],
211
+ onChangeItemsPerPage: function onChangeItemsPerPage() {},
212
+ onChangePage: function onChangePage() {}
213
+ },
214
+ gridStyle: {
215
+ fontSize: 'm',
216
+ cellPadding: 'm',
217
+ border: 'all',
218
+ stripes: false,
219
+ header: 'shade',
220
+ footer: 'overline',
221
+ stickyFooter: true,
222
+ rowHover: 'highlight',
223
+ rowClasses: {}
224
+ },
225
+ width: '',
226
+ height: '',
227
+ toolbarVisibility: {
228
+ showColumnSelector: true,
229
+ showDisplaySelector: true,
230
+ showSortSelector: true,
231
+ showKeyboardShortcuts: true,
232
+ showFullScreenSelector: true,
233
+ additionalControls: null
234
+ },
235
+ minSizeForControls: MINIMUM_WIDTH_FOR_GRID_CONTROLS,
236
+ rowHeightsOptions: {
237
+ defaultHeight: undefined,
238
+ rowHeights: {},
239
+ lineHeight: undefined,
240
+ scrollAnchorRow: undefined
241
+ }
242
+ };
243
+ export var StatefulDataGrid = function StatefulDataGrid(props) {
244
+ var _pagination$pageIndex, _sorting$columns, _columnVisibility$vis;
245
+ var pagination = props.pagination,
246
+ sorting = props.sorting,
247
+ columnVisibility = props.columnVisibility,
248
+ rest = _objectWithoutProperties(props, _excluded);
249
+
250
+ // Pagination
251
+ var _useState = useState(_objectSpread({
252
+ pageIndex: (_pagination$pageIndex = pagination === null || pagination === void 0 ? void 0 : pagination.pageIndex) !== null && _pagination$pageIndex !== void 0 ? _pagination$pageIndex : 0
253
+ }, pagination)),
254
+ _useState2 = _slicedToArray(_useState, 2),
255
+ _pagination = _useState2[0],
256
+ setPagination = _useState2[1];
257
+ var onChangeItemsPerPage = useCallback(function (pageSize) {
258
+ return setPagination(function (pagination) {
259
+ return _objectSpread(_objectSpread({}, pagination), {}, {
260
+ pageSize: pageSize,
261
+ pageIndex: 0
262
+ });
263
+ });
264
+ }, [setPagination]);
265
+ var onChangePage = useCallback(function (pageIndex) {
266
+ return setPagination(function (pagination) {
267
+ return _objectSpread(_objectSpread({}, pagination), {}, {
268
+ pageIndex: pageIndex
269
+ });
270
+ });
271
+ }, [setPagination]);
272
+ useEffect(function () {
273
+ if (pagination) {
274
+ setPagination(function (curentPagination) {
275
+ return _objectSpread(_objectSpread({}, curentPagination), pagination);
276
+ });
277
+ }
278
+ }, [pagination]);
279
+
280
+ // Sorting
281
+ var _useState3 = useState((_sorting$columns = sorting === null || sorting === void 0 ? void 0 : sorting.columns) !== null && _sorting$columns !== void 0 ? _sorting$columns : []),
282
+ _useState4 = _slicedToArray(_useState3, 2),
283
+ sortingColumns = _useState4[0],
284
+ setSortingColumns = _useState4[1];
285
+ var onSort = useCallback(function (sortingColumns) {
286
+ var _sorting$onSort;
287
+ setSortingColumns(sortingColumns);
288
+ sorting === null || sorting === void 0 || (_sorting$onSort = sorting.onSort) === null || _sorting$onSort === void 0 || _sorting$onSort.call(sorting, sortingColumns);
289
+ }, [setSortingColumns, sorting]);
290
+ useEffect(function () {
291
+ if (sorting && Array.isArray(sorting.columns)) {
292
+ setSortingColumns(sorting.columns);
293
+ }
294
+ }, [sorting]);
295
+
296
+ // Column visibility
297
+ var _useState5 = useState((_columnVisibility$vis = columnVisibility === null || columnVisibility === void 0 ? void 0 : columnVisibility.visibleColumns) !== null && _columnVisibility$vis !== void 0 ? _columnVisibility$vis : columns.map(function (_ref5) {
298
+ var id = _ref5.id;
299
+ return id;
300
+ }) // initialize to the full set of columns
301
+ ),
302
+ _useState6 = _slicedToArray(_useState5, 2),
303
+ visibleColumns = _useState6[0],
304
+ setVisibleColumns = _useState6[1];
305
+ useEffect(function () {
306
+ if ((columnVisibility === null || columnVisibility === void 0 ? void 0 : columnVisibility.visibleColumns) != null) {
307
+ setVisibleColumns(columnVisibility === null || columnVisibility === void 0 ? void 0 : columnVisibility.visibleColumns);
308
+ }
309
+ }, [columnVisibility]);
310
+ return ___EmotionJSX(EuiDataGrid, _extends({}, rest, {
311
+ columnVisibility: {
312
+ visibleColumns: visibleColumns,
313
+ setVisibleColumns: setVisibleColumns
314
+ },
315
+ sorting: {
316
+ columns: sortingColumns,
317
+ onSort: onSort
318
+ },
319
+ pagination: _objectSpread(_objectSpread({}, _pagination), {}, {
320
+ onChangeItemsPerPage: onChangeItemsPerPage,
321
+ onChangePage: onChangePage
322
+ })
323
+ }));
324
+ };
325
+
326
+ /*
327
+ * Components that exist purely for allowing Storybook to parse certain nested
328
+ * interfaces/types into specific example control tables.
329
+ *
330
+ * For whatever reason, they needs to be in a separate file for Storybook's
331
+ * react-typescript-docgen to parse the jsdoc comments into the controls table
332
+ */
333
+
334
+ export var EuiDataGridToolbarPropsComponent = function EuiDataGridToolbarPropsComponent() {
335
+ return ___EmotionJSX(React.Fragment, null);
336
+ };
337
+ EuiDataGridToolbarPropsComponent.propTypes = {
338
+ className: PropTypes.string,
339
+ "aria-label": PropTypes.string,
340
+ "data-test-subj": PropTypes.string,
341
+ css: PropTypes.any,
342
+ /**
343
+ * An array of #EuiDataGridColumn objects. Lists the columns available and the schema and settings tied to it.
344
+ */
345
+ columns: PropTypes.arrayOf(PropTypes.shape({
346
+ /**
347
+ * The unique identifier for this column
348
+ */
349
+ id: PropTypes.string.isRequired,
350
+ /**
351
+ * A `ReactNode` used when rendering the column header. When providing complicated content, please make sure to utilize CSS to respect truncation as space allows. Check the docs example.
352
+ */
353
+ display: PropTypes.node,
354
+ /**
355
+ * Display name as text for the column.
356
+ * This can be used to display a readable column name in column hiding/sorting, where `display` won't be used.
357
+ * This will also be used as a `title` attribute that will display on mouseover (useful if the display text is being truncated by the column width).
358
+ * If not passed, `id` will be shown as the column name.
359
+ * Passing this together with `display` is useful to ensure an accessible label is added to the column.
360
+ */
361
+ displayAsText: PropTypes.string,
362
+ /**
363
+ * Optional props to pass to the column header cell
364
+ */
365
+ displayHeaderCellProps: PropTypes.any,
366
+ /**
367
+ * Initial width (in pixels) of the column
368
+ */
369
+ initialWidth: PropTypes.number,
370
+ /**
371
+ * Defaults to true, always true if cellActions are defined. Defines whether or not the column's cells can be expanded with a popup onClick / keydown.
372
+ */
373
+ isExpandable: PropTypes.bool,
374
+ /**
375
+ * Whether this column's width can be changed by the user, defaults to true
376
+ */
377
+ isResizable: PropTypes.bool,
378
+ /**
379
+ * Whether this column is sortable
380
+ */
381
+ isSortable: PropTypes.bool,
382
+ /**
383
+ * Default sort direction of the column
384
+ */
385
+ defaultSortDirection: PropTypes.oneOf(["asc", "desc"]),
386
+ /**
387
+ * A Schema to use for the column.
388
+ * Built-in values are [`boolean`, `currency`, `datetime`, `numeric`, `json`] but can be expanded by defining your own #EuiDataGrid `schemaDetectors` (for in-memory detection).
389
+ * In general, it is advised to pass in a value here when you are sure of the schema ahead of time, so that you don't need to rely on the automatic detection.
390
+ */
391
+ schema: PropTypes.string,
392
+ /**
393
+ * Configuration of column actions. Set to false to disable or use #EuiDataGridColumnActions to configure the actions displayed in the header cell of the column.
394
+ */
395
+ actions: PropTypes.oneOfType([PropTypes.oneOf([false]), PropTypes.shape({
396
+ /**
397
+ * Show/hide/configure the action to hide a column, provided EuiListGroupItemProps are merged
398
+ */
399
+ showHide: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
400
+ className: PropTypes.string,
401
+ "aria-label": PropTypes.string,
402
+ "data-test-subj": PropTypes.string,
403
+ css: PropTypes.any,
404
+ /**
405
+ * Size of the label text
406
+ */
407
+ size: PropTypes.any,
408
+ /**
409
+ * By default the item will get the color `text`.
410
+ * You can customize the color of the item by passing a color name.
411
+ */
412
+ color: PropTypes.any,
413
+ /**
414
+ * Apply styles indicating an item is active
415
+ */
416
+ isActive: PropTypes.bool,
417
+ /**
418
+ * Apply styles indicating an item is disabled
419
+ */
420
+ isDisabled: PropTypes.bool,
421
+ /**
422
+ * Make the list item label a link.
423
+ * While permitted, `href` and `onClick` should not be used together in most cases and may create problems.
424
+ */
425
+ href: PropTypes.string,
426
+ rel: PropTypes.string,
427
+ target: PropTypes.string,
428
+ /**
429
+ * Set to true to show an icon indicating that it is an external link;
430
+ * Defaults to true if `target="_blank"`
431
+ */
432
+ external: PropTypes.bool,
433
+ /**
434
+ * Further extend the props applied to EuiIcon
435
+ */
436
+ iconProps: PropTypes.any,
437
+ /**
438
+ * Display tooltip on list item
439
+ */
440
+ showToolTip: PropTypes.bool,
441
+ /**
442
+ * An object of #EuiListGroupItemExtraAction props.
443
+ * Adds an `EuiButtonIcon` to the right side of the item; `iconType` is required;
444
+ * pass `alwaysShow` if you don't want the default behavior of only showing on hover
445
+ */
446
+ extraAction: PropTypes.shape({
447
+ alwaysShow: PropTypes.bool,
448
+ type: PropTypes.any,
449
+ onClick: PropTypes.func,
450
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
451
+ /**
452
+ * Any of the named color palette options.
453
+ */
454
+ color: PropTypes.any,
455
+ "aria-label": PropTypes.string,
456
+ "aria-labelledby": PropTypes.string,
457
+ isDisabled: PropTypes.bool,
458
+ /**
459
+ * Overall size of button.
460
+ * Matches the sizes of other EuiButtons
461
+ */
462
+ size: PropTypes.any,
463
+ /**
464
+ * Size of the icon only.
465
+ * This will not affect the overall size of the button
466
+ */
467
+ iconSize: PropTypes.any,
468
+ /**
469
+ * Applies the boolean state as the `aria-pressed` property to create a toggle button.
470
+ * *Only use when the readable text does not change between states.*
471
+ */
472
+ isSelected: PropTypes.bool,
473
+ /**
474
+ * Sets the display style for matching other EuiButton types.
475
+ * `base` is equivalent to a typical EuiButton
476
+ * `fill` is equivalent to a filled EuiButton
477
+ * `empty` (default) is equivalent to an EuiButtonEmpty
478
+ */
479
+ display: PropTypes.any,
480
+ /**
481
+ * Disables the button and changes the icon to a loading spinner
482
+ */
483
+ isLoading: PropTypes.bool,
484
+ className: PropTypes.string,
485
+ "data-test-subj": PropTypes.string,
486
+ css: PropTypes.any,
487
+ buttonRef: PropTypes.any
488
+ }),
489
+ /**
490
+ * Make the list item label a button.
491
+ * While permitted, `href` and `onClick` should not be used together in most cases and may create problems.
492
+ */
493
+ onClick: PropTypes.func,
494
+ /**
495
+ * Allow link text to wrap
496
+ */
497
+ wrapText: PropTypes.bool,
498
+ /**
499
+ * Pass-through ref reference specifically for targeting
500
+ * instances where the item content is rendered as a `button`
501
+ */
502
+ buttonRef: PropTypes.any,
503
+ /**
504
+ * Text to be displayed in the tooltip when `showToolTip` is true.
505
+ * By default the text will be same as the label text.
506
+ */
507
+ toolTipText: PropTypes.string,
508
+ /**
509
+ * Allows customizing the tooltip shown when `showToolTip` is true.
510
+ * Accepts any props that [EuiToolTip](/#/display/tooltip) accepts.
511
+ */
512
+ toolTipProps: PropTypes.any
513
+ }).isRequired]),
514
+ /**
515
+ * Show/hide/configure the action that switches the actual column with the column to the left side, provided EuiListGroupItemProps are merged
516
+ */
517
+ showMoveLeft: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
518
+ className: PropTypes.string,
519
+ "aria-label": PropTypes.string,
520
+ "data-test-subj": PropTypes.string,
521
+ css: PropTypes.any,
522
+ size: PropTypes.any,
523
+ color: PropTypes.any,
524
+ isActive: PropTypes.bool,
525
+ isDisabled: PropTypes.bool,
526
+ href: PropTypes.string,
527
+ rel: PropTypes.string,
528
+ target: PropTypes.string,
529
+ external: PropTypes.bool,
530
+ iconProps: PropTypes.any,
531
+ showToolTip: PropTypes.bool,
532
+ extraAction: PropTypes.shape({
533
+ alwaysShow: PropTypes.bool,
534
+ type: PropTypes.any,
535
+ onClick: PropTypes.func,
536
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
537
+ color: PropTypes.any,
538
+ "aria-label": PropTypes.string,
539
+ "aria-labelledby": PropTypes.string,
540
+ isDisabled: PropTypes.bool,
541
+ size: PropTypes.any,
542
+ iconSize: PropTypes.any,
543
+ isSelected: PropTypes.bool,
544
+ display: PropTypes.any,
545
+ isLoading: PropTypes.bool,
546
+ className: PropTypes.string,
547
+ "data-test-subj": PropTypes.string,
548
+ css: PropTypes.any,
549
+ buttonRef: PropTypes.any
550
+ }),
551
+ onClick: PropTypes.func,
552
+ wrapText: PropTypes.bool,
553
+ buttonRef: PropTypes.any,
554
+ toolTipText: PropTypes.string,
555
+ toolTipProps: PropTypes.any
556
+ }).isRequired]),
557
+ /**
558
+ * Show/hide/configure the action that switches the actual column with the column to the right side, provided EuiListGroupItemProps are merged
559
+ */
560
+ showMoveRight: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
561
+ className: PropTypes.string,
562
+ "aria-label": PropTypes.string,
563
+ "data-test-subj": PropTypes.string,
564
+ css: PropTypes.any,
565
+ size: PropTypes.any,
566
+ color: PropTypes.any,
567
+ isActive: PropTypes.bool,
568
+ isDisabled: PropTypes.bool,
569
+ href: PropTypes.string,
570
+ rel: PropTypes.string,
571
+ target: PropTypes.string,
572
+ external: PropTypes.bool,
573
+ iconProps: PropTypes.any,
574
+ showToolTip: PropTypes.bool,
575
+ extraAction: PropTypes.shape({
576
+ alwaysShow: PropTypes.bool,
577
+ type: PropTypes.any,
578
+ onClick: PropTypes.func,
579
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
580
+ color: PropTypes.any,
581
+ "aria-label": PropTypes.string,
582
+ "aria-labelledby": PropTypes.string,
583
+ isDisabled: PropTypes.bool,
584
+ size: PropTypes.any,
585
+ iconSize: PropTypes.any,
586
+ isSelected: PropTypes.bool,
587
+ display: PropTypes.any,
588
+ isLoading: PropTypes.bool,
589
+ className: PropTypes.string,
590
+ "data-test-subj": PropTypes.string,
591
+ css: PropTypes.any,
592
+ buttonRef: PropTypes.any
593
+ }),
594
+ onClick: PropTypes.func,
595
+ wrapText: PropTypes.bool,
596
+ buttonRef: PropTypes.any,
597
+ toolTipText: PropTypes.string,
598
+ toolTipProps: PropTypes.any
599
+ }).isRequired]),
600
+ /**
601
+ * Show/hide/configure the action to sort ascending by the actual column, provided EuiListGroupItemProps are merged
602
+ */
603
+ showSortAsc: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
604
+ className: PropTypes.string,
605
+ "aria-label": PropTypes.string,
606
+ "data-test-subj": PropTypes.string,
607
+ css: PropTypes.any,
608
+ size: PropTypes.any,
609
+ color: PropTypes.any,
610
+ isActive: PropTypes.bool,
611
+ isDisabled: PropTypes.bool,
612
+ href: PropTypes.string,
613
+ rel: PropTypes.string,
614
+ target: PropTypes.string,
615
+ external: PropTypes.bool,
616
+ iconProps: PropTypes.any,
617
+ showToolTip: PropTypes.bool,
618
+ extraAction: PropTypes.shape({
619
+ alwaysShow: PropTypes.bool,
620
+ type: PropTypes.any,
621
+ onClick: PropTypes.func,
622
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
623
+ color: PropTypes.any,
624
+ "aria-label": PropTypes.string,
625
+ "aria-labelledby": PropTypes.string,
626
+ isDisabled: PropTypes.bool,
627
+ size: PropTypes.any,
628
+ iconSize: PropTypes.any,
629
+ isSelected: PropTypes.bool,
630
+ display: PropTypes.any,
631
+ isLoading: PropTypes.bool,
632
+ className: PropTypes.string,
633
+ "data-test-subj": PropTypes.string,
634
+ css: PropTypes.any,
635
+ buttonRef: PropTypes.any
636
+ }),
637
+ onClick: PropTypes.func,
638
+ wrapText: PropTypes.bool,
639
+ buttonRef: PropTypes.any,
640
+ toolTipText: PropTypes.string,
641
+ toolTipProps: PropTypes.any
642
+ }).isRequired]),
643
+ /**
644
+ * Show/hide/configure the action to sort descending by the actual column, provided EuiListGroupItemProps are merged
645
+ */
646
+ showSortDesc: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
647
+ className: PropTypes.string,
648
+ "aria-label": PropTypes.string,
649
+ "data-test-subj": PropTypes.string,
650
+ css: PropTypes.any,
651
+ size: PropTypes.any,
652
+ color: PropTypes.any,
653
+ isActive: PropTypes.bool,
654
+ isDisabled: PropTypes.bool,
655
+ href: PropTypes.string,
656
+ rel: PropTypes.string,
657
+ target: PropTypes.string,
658
+ external: PropTypes.bool,
659
+ iconProps: PropTypes.any,
660
+ showToolTip: PropTypes.bool,
661
+ extraAction: PropTypes.shape({
662
+ alwaysShow: PropTypes.bool,
663
+ type: PropTypes.any,
664
+ onClick: PropTypes.func,
665
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
666
+ color: PropTypes.any,
667
+ "aria-label": PropTypes.string,
668
+ "aria-labelledby": PropTypes.string,
669
+ isDisabled: PropTypes.bool,
670
+ size: PropTypes.any,
671
+ iconSize: PropTypes.any,
672
+ isSelected: PropTypes.bool,
673
+ display: PropTypes.any,
674
+ isLoading: PropTypes.bool,
675
+ className: PropTypes.string,
676
+ "data-test-subj": PropTypes.string,
677
+ css: PropTypes.any,
678
+ buttonRef: PropTypes.any
679
+ }),
680
+ onClick: PropTypes.func,
681
+ wrapText: PropTypes.bool,
682
+ buttonRef: PropTypes.any,
683
+ toolTipText: PropTypes.string,
684
+ toolTipProps: PropTypes.any
685
+ }).isRequired]),
686
+ /**
687
+ * Append additional actions
688
+ */
689
+ additional: PropTypes.arrayOf(PropTypes.shape({
690
+ className: PropTypes.string,
691
+ "aria-label": PropTypes.string,
692
+ "data-test-subj": PropTypes.string,
693
+ css: PropTypes.any,
694
+ size: PropTypes.any,
695
+ color: PropTypes.any,
696
+ isActive: PropTypes.bool,
697
+ isDisabled: PropTypes.bool,
698
+ href: PropTypes.string,
699
+ rel: PropTypes.string,
700
+ target: PropTypes.string,
701
+ external: PropTypes.bool,
702
+ iconProps: PropTypes.any,
703
+ showToolTip: PropTypes.bool,
704
+ extraAction: PropTypes.shape({
705
+ alwaysShow: PropTypes.bool,
706
+ type: PropTypes.any,
707
+ onClick: PropTypes.func,
708
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
709
+ color: PropTypes.any,
710
+ "aria-label": PropTypes.string,
711
+ "aria-labelledby": PropTypes.string,
712
+ isDisabled: PropTypes.bool,
713
+ size: PropTypes.any,
714
+ iconSize: PropTypes.any,
715
+ isSelected: PropTypes.bool,
716
+ display: PropTypes.any,
717
+ isLoading: PropTypes.bool,
718
+ className: PropTypes.string,
719
+ "data-test-subj": PropTypes.string,
720
+ css: PropTypes.any,
721
+ buttonRef: PropTypes.any
722
+ }),
723
+ onClick: PropTypes.func,
724
+ wrapText: PropTypes.bool,
725
+ buttonRef: PropTypes.any,
726
+ toolTipText: PropTypes.string,
727
+ toolTipProps: PropTypes.any
728
+ }).isRequired)
729
+ }).isRequired]),
730
+ /**
731
+ * Additional actions displayed as icon on hover / focus, and in the expanded view of the cell containing the value
732
+ */
733
+ cellActions: PropTypes.arrayOf(PropTypes.elementType.isRequired),
734
+ /**
735
+ * Configures the amount of cell action buttons immediately visible on a cell.
736
+ * Any cell actions above this number will only display in the cell expansion popover.
737
+ * Defaults to 2.
738
+ */
739
+ visibleCellActions: PropTypes.number
740
+ }).isRequired).isRequired,
741
+ /**
742
+ * An array of #EuiDataGridControlColumn objects. Used to define ancillary columns on the left side of the data grid.
743
+ * Useful for adding items like checkboxes and buttons.
744
+ */
745
+ leadingControlColumns: PropTypes.arrayOf(PropTypes.shape({
746
+ /**
747
+ * Used as the React `key` when rendering content
748
+ */
749
+ id: PropTypes.string.isRequired,
750
+ /**
751
+ * Width of the column, users are unable to change this
752
+ */
753
+ width: PropTypes.number.isRequired,
754
+ /**
755
+ * Component to render in the column header
756
+ */
757
+ headerCellRender: PropTypes.elementType.isRequired,
758
+ /**
759
+ * Optional props to pass to the column header cell
760
+ */
761
+ headerCellProps: PropTypes.any,
762
+ /**
763
+ * Component to render for each row in the column
764
+ */
765
+ rowCellRender: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,
766
+ /**
767
+ * Component to render in the optional column footer
768
+ */
769
+ footerCellRender: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]),
770
+ /**
771
+ * Optional props to pass to the column footer cell
772
+ */
773
+ footerCellProps: PropTypes.any
774
+ }).isRequired),
775
+ /**
776
+ * An array of #EuiDataGridControlColumn objects. Used to define ancillary columns on the right side of the data grid.
777
+ * Useful for adding items like checkboxes and buttons.
778
+ */
779
+ trailingControlColumns: PropTypes.arrayOf(PropTypes.shape({
780
+ /**
781
+ * Used as the React `key` when rendering content
782
+ */
783
+ id: PropTypes.string.isRequired,
784
+ /**
785
+ * Width of the column, users are unable to change this
786
+ */
787
+ width: PropTypes.number.isRequired,
788
+ /**
789
+ * Component to render in the column header
790
+ */
791
+ headerCellRender: PropTypes.elementType.isRequired,
792
+ /**
793
+ * Optional props to pass to the column header cell
794
+ */
795
+ headerCellProps: PropTypes.any,
796
+ /**
797
+ * Component to render for each row in the column
798
+ */
799
+ rowCellRender: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,
800
+ /**
801
+ * Component to render in the optional column footer
802
+ */
803
+ footerCellRender: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]),
804
+ /**
805
+ * Optional props to pass to the column footer cell
806
+ */
807
+ footerCellProps: PropTypes.any
808
+ }).isRequired),
809
+ /**
810
+ * An array of #EuiDataGridColumnVisibility objects.
811
+ * Defines which columns are **intitially** visible in the grid and the order they are displayed.
812
+ * Users can still turn their visibility on/off when `toolbarVisibility.showColumnSelector = true` (which is the default).
813
+ */
814
+ columnVisibility: PropTypes.shape({
815
+ /**
816
+ * An array of #EuiDataGridColumn `id`s dictating the order and visibility of columns.
817
+ */
818
+ visibleColumns: PropTypes.arrayOf(PropTypes.string.isRequired).isRequired,
819
+ /**
820
+ * A callback for when a column's visibility or order is modified by the user.
821
+ */
822
+ setVisibleColumns: PropTypes.func.isRequired
823
+ }).isRequired,
824
+ /**
825
+ * An array of custom #EuiDataGridSchemaDetector objects. You can inject custom schemas to the grid to define the classnames applied.
826
+ */
827
+ schemaDetectors: PropTypes.arrayOf(PropTypes.shape({
828
+ /**
829
+ * The name of this data type, matches #EuiDataGridColumn / `schema`
830
+ */
831
+ type: PropTypes.string.isRequired,
832
+ /**
833
+ * The function given the text value of a cell and returns a score of [0...1] of how well the value matches this data type
834
+ */
835
+ detector: PropTypes.func.isRequired,
836
+ /**
837
+ * A custom comparator function when performing in-memory sorting on this data type, takes `(a: string, b: string, direction: 'asc' | 'desc', indexes: {aIndex: number, bIndex: number}) => -1 | 0 | 1`
838
+ */
839
+ comparator: PropTypes.func,
840
+ /**
841
+ * The icon used to visually represent this data type. Accepts any `EuiIcon IconType`.
842
+ */
843
+ icon: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
844
+ /**
845
+ * The color associated with this data type; it's used to color the icon token
846
+ */
847
+ color: PropTypes.oneOfType([PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.string.isRequired]).isRequired, PropTypes.string.isRequired]),
848
+ /**
849
+ * Text for how to represent an ascending sort of this data type, e.g. 'A -> Z'
850
+ */
851
+ sortTextAsc: PropTypes.node.isRequired,
852
+ /**
853
+ * Text for how to represent a descending sort of this data type, e.g. 'Z -> A'
854
+ */
855
+ sortTextDesc: PropTypes.node.isRequired,
856
+ /**
857
+ * Whether columns with this schema are sortable (defaults to true). Can be overridden at the individual #EuiDataGridColumn level
858
+ */
859
+ isSortable: PropTypes.bool,
860
+ /**
861
+ * This property controls the capitalization of text
862
+ */
863
+ textTransform: PropTypes.oneOf(["uppercase", "lowercase", "capitalize"]),
864
+ /**
865
+ * Default sort direction of columns with this schema. Can be overridden at the individual #EuiDataGridColumn level
866
+ */
867
+ defaultSortDirection: PropTypes.oneOf(["asc", "desc"])
868
+ }).isRequired),
869
+ /**
870
+ * The total number of rows in the dataset (used by e.g. pagination to know how many pages to list).
871
+ */
872
+ rowCount: PropTypes.number.isRequired,
873
+ /**
874
+ * A function called to render a cell's value. Behind the scenes it is treated as a React component
875
+ * allowing hooks, context, and other React concepts to be used. The function receives #EuiDataGridCellValueElementProps
876
+ * as its only argument.
877
+ */
878
+ renderCellValue: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,
879
+ /**
880
+ * An optional object of props passed to the `renderCellValue` component.
881
+ * This API exists to make it easier to define your `renderCellValue` function
882
+ * component statically, and not rerender due to other dependent state.
883
+ */
884
+ cellContext: PropTypes.any,
885
+ /**
886
+ * An optional function that can be used to completely customize the rendering of cell popovers.
887
+ *
888
+ * If not specified, defaults to an `<EuiText>` wrapper around the rendered cell value and an
889
+ * `<EuiPopoverFooter>` around the cell actions.
890
+ *
891
+ * Behind the scenes it is treated as a React component allowing hooks, context, and other React concepts to be used.
892
+ * The function receives #EuiDataGridCellPopoverElementProps as its only argument.
893
+ *
894
+ */
895
+ renderCellPopover: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.func.isRequired]),
896
+ /**
897
+ * An optional function called to render a footer cell. If not specified, no footer row is rendered.
898
+ *
899
+ * Behind the scenes it is treated as a React component
900
+ * allowing hooks, context, and other React concepts to be used. The function receives #EuiDataGridCellValueElementProps
901
+ * as its only argument.
902
+ */
903
+ renderFooterCellValue: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]),
904
+ /**
905
+ * An optional function called to completely customize and control the rendering of
906
+ * EuiDataGrid's body and cell placement. This can be used to, e.g. remove EuiDataGrid's
907
+ * virtualization library, or roll your own.
908
+ *
909
+ * This component is **only** meant as an escape hatch for extremely custom use cases.
910
+ *
911
+ * Behind the scenes, this function is treated as a React component,
912
+ * allowing hooks, context, and other React concepts to be used.
913
+ * It receives #EuiDataGridCustomBodyProps as its only argument.
914
+ */
915
+ renderCustomGridBody: PropTypes.func,
916
+ /**
917
+ * An optional function called to customize placement of controls in EuiDataGrid's toolbar.
918
+ * This can be used to add custom buttons or reorder existing ones.
919
+ *
920
+ * Behind the scenes, this function is treated as a React component,
921
+ * allowing hooks, context, and other React concepts to be used.
922
+ * It receives #EuiDataGridCustomToolbarProps as its only argument.
923
+ */
924
+ renderCustomToolbar: PropTypes.func,
925
+ /**
926
+ * Defines the initial style of the grid. Accepts a partial #EuiDataGridStyle object.
927
+ * Settings provided may be overwritten or merged with user defined preferences if `toolbarVisibility.showDisplaySelector.allowDensity = true` (which is the default).
928
+ */
929
+ gridStyle: PropTypes.shape({
930
+ /**
931
+ * Size of fonts used within the row and column cells
932
+ * @default m
933
+ */
934
+ fontSize: PropTypes.oneOf(["s", "m", "l"]),
935
+ /**
936
+ * Defines the padding with the row and column cells
937
+ * @default m
938
+ */
939
+ cellPadding: PropTypes.oneOf(["s", "m", "l"]),
940
+ /**
941
+ * Border used for the row and column cells
942
+ * @default all
943
+ */
944
+ border: PropTypes.oneOf(["all", "horizontal", "none"]),
945
+ /**
946
+ * If set to true, rows will alternate zebra striping for clarity
947
+ * @default false
948
+ */
949
+ stripes: PropTypes.bool,
950
+ /**
951
+ * Visual style for the column headers. Recommendation is to use the `underline` style in times when #EuiDataGrid `toolbarVisibility` is set to `false`.
952
+ * @default shade
953
+ */
954
+ header: PropTypes.oneOf(["shade", "underline"]),
955
+ /**
956
+ * Visual style for the column footers.
957
+ * @default overline
958
+ */
959
+ footer: PropTypes.oneOf(["shade", "overline", "striped"]),
960
+ /**
961
+ * If set to true, the footer row will be sticky
962
+ * @default true
963
+ */
964
+ stickyFooter: PropTypes.bool,
965
+ /**
966
+ * Will define what visual style to show on row hover
967
+ * @default hover
968
+ */
969
+ rowHover: PropTypes.oneOf(["highlight", "none"]),
970
+ /**
971
+ * Optionally pass custom classes to highlight or customize certain rows
972
+ */
973
+ rowClasses: PropTypes.shape({}),
974
+ /**
975
+ * Optional callback returning the current `gridStyle` config when changes occur from user input (e.g. toolbar display controls).
976
+ * Can be used for, e.g. storing user `gridStyle` in a local storage object.
977
+ */
978
+ onChange: PropTypes.func
979
+ }),
980
+ /**
981
+ * Allows you to configure what features the toolbar shows.
982
+ *
983
+ * Accepts either a boolean or #EuiDataGridToolBarVisibilityOptions object.
984
+ * When used as a boolean, defines the display of the entire toolbar.
985
+ * When passed an object allows you to turn off individual controls within the toolbar as well as add additional buttons.
986
+ */
987
+ toolbarVisibility: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
988
+ /**
989
+ * Allows the ability for the user to hide fields and sort columns, boolean or a #EuiDataGridToolBarVisibilityColumnSelectorOptions
990
+ * @default true
991
+ */
992
+ showColumnSelector: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
993
+ /**
994
+ * When `false`, removes the ability to show & hide columns through the UI
995
+ */
996
+ allowHide: PropTypes.bool,
997
+ /**
998
+ * When `false`, removes the ability to re-order columns through the UI
999
+ */
1000
+ allowReorder: PropTypes.bool
1001
+ }).isRequired]),
1002
+ /**
1003
+ * Allows the ability for the user to customize display settings such as grid density and row heights.
1004
+ * User changes will override what is provided in #EuiDataGridStyle and #EuiDataGridRowHeightsOptions
1005
+ * @default true
1006
+ */
1007
+ showDisplaySelector: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
1008
+ /**
1009
+ * When `false`, removes the ability to change density display through the UI
1010
+ */
1011
+ allowDensity: PropTypes.bool,
1012
+ /**
1013
+ * When `false`, removes the ability to change row height display through the UI
1014
+ */
1015
+ allowRowHeight: PropTypes.bool,
1016
+ /**
1017
+ * When `false`, removes the ability to reset styles to default through the UI
1018
+ */
1019
+ allowResetButton: PropTypes.bool,
1020
+ /**
1021
+ * Allows appending additional content to the bottom of the display settings popover
1022
+ */
1023
+ additionalDisplaySettings: PropTypes.node
1024
+ }).isRequired]),
1025
+ /**
1026
+ * Allows the ability for the user to sort rows based upon column values
1027
+ * @default true
1028
+ */
1029
+ showSortSelector: PropTypes.bool,
1030
+ /**
1031
+ * Displays a popover listing all keyboard controls and shortcuts for the data grid.
1032
+ * If set to `false`, the toggle will be visually hidden, but still focusable by keyboard and screen reader users.
1033
+ * @default true
1034
+ */
1035
+ showKeyboardShortcuts: PropTypes.bool,
1036
+ /**
1037
+ * Allows user to be able to fullscreen the data grid. If set to `false` make sure your grid fits within a large enough panel to still show the other controls.
1038
+ * @default true
1039
+ */
1040
+ showFullScreenSelector: PropTypes.bool,
1041
+ /**
1042
+ * If passed a `ReactNode`, appends the passed custom control into the left side of the toolbar, after the column & sort controls.
1043
+ * Or use #EuiDataGridToolBarAdditionalControlsOptions to customize the location of your control.
1044
+ */
1045
+ additionalControls: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1046
+ /**
1047
+ * If passed a `ReactNode`, appends the passed node into the left side of the toolbar, **after** the column & sort controls.
1048
+ * Or use #EuiDataGridToolBarAdditionalControlsLeftOptions to customize the location of your control.
1049
+ * We recommend using `<EuiButtonEmpty size="xs" />` to match the existing controls on the left.
1050
+ */
1051
+ left: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1052
+ /**
1053
+ * Will prepend the passed node into the left side of the toolbar, **before** the column & sort controls.
1054
+ */
1055
+ prepend: PropTypes.node,
1056
+ /**
1057
+ * Will append the passed node into the left side of the toolbar, **after** the column & sort controls.
1058
+ */
1059
+ append: PropTypes.node
1060
+ }).isRequired]),
1061
+ /**
1062
+ * Will prepend the passed node into the right side of the toolbar, **before** the density & fullscreen controls.
1063
+ * We recommend using `<EuiButtonIcon size="xs" />` to match the existing controls on the right.
1064
+ */
1065
+ right: PropTypes.node
1066
+ }).isRequired])
1067
+ }).isRequired]),
1068
+ /**
1069
+ * A #EuiDataGridInMemory object to define the level of high order schema-detection and sorting logic to use on your data.
1070
+ * **Try to set when possible**.
1071
+ * If omitted, disables all enhancements and assumes content is flat strings.
1072
+ */
1073
+ inMemory: PropTypes.shape({
1074
+ /**
1075
+ Given the data flow Sorting->Pagination:
1076
+ Each step can be performed by service calls or in-memory by the grid.
1077
+ However, we cannot allow any service calls after an in-memory operation.
1078
+ E.g. if Pagination requires a service call the grid cannot perform
1079
+ in-memory Sorting. This means a single value representing the
1080
+ service / in-memory boundary can be used. Thus there are four states for in-memory's level:
1081
+ * "enhancements" - no in-memory operations, but use the available data to enhance the grid
1082
+ * "pagination" - only pagination is performed in-memory
1083
+ * "sorting" - sorting & pagination is performed in-memory
1084
+ */
1085
+ level: PropTypes.oneOf(["enhancements", "pagination", "sorting"]).isRequired,
1086
+ /**
1087
+ * An array of column ids for the in-memory processing to skip
1088
+ */
1089
+ skipColumns: PropTypes.arrayOf(PropTypes.string.isRequired)
1090
+ }),
1091
+ /**
1092
+ * A #EuiDataGridPaginationProps object. Omit to disable pagination completely.
1093
+ */
1094
+ pagination: PropTypes.shape({
1095
+ /**
1096
+ * The index of the current page, starts at 0 for the first page
1097
+ */
1098
+ pageIndex: PropTypes.number.isRequired,
1099
+ /**
1100
+ * How many rows should initially be shown per page.
1101
+ * Pass `0` to display the selected "Show all" option and hide the pagination.
1102
+ *
1103
+ * @default 10
1104
+ */
1105
+ pageSize: PropTypes.number,
1106
+ /**
1107
+ * An array of page sizes the user can select from.
1108
+ * Pass `0` as one of the options to create a "Show all" option.
1109
+ * Pass an empty array to hide "Rows per page" select button.
1110
+ *
1111
+ * @default [10, 25, 50]
1112
+ */
1113
+ pageSizeOptions: PropTypes.arrayOf(PropTypes.number.isRequired),
1114
+ /**
1115
+ * A callback for when the user changes the page size selection
1116
+ */
1117
+ onChangeItemsPerPage: PropTypes.func.isRequired,
1118
+ /**
1119
+ * A callback for when the current page index changes
1120
+ */
1121
+ onChangePage: PropTypes.func.isRequired
1122
+ }),
1123
+ /**
1124
+ * A #EuiDataGridSorting object that provides the sorted columns along with their direction. Provides a callback for when it changes.
1125
+ * Optional, but required when inMemory is set.
1126
+ * Omit to disable, but you'll likely want to also turn off the user sorting controls through the `toolbarVisibility` prop.
1127
+ */
1128
+ sorting: PropTypes.shape({
1129
+ /**
1130
+ * A function that receives updated column sort details in response to user interactions in the toolbar controls
1131
+ */
1132
+ onSort: PropTypes.func.isRequired,
1133
+ /**
1134
+ * An array of the column ids currently being sorted and their sort direction. The array order determines the sort order. `{ id: 'A'; direction: 'asc' }`
1135
+ */
1136
+ columns: PropTypes.arrayOf(PropTypes.shape({
1137
+ id: PropTypes.string.isRequired,
1138
+ direction: PropTypes.oneOf(["asc", "desc"]).isRequired
1139
+ }).isRequired).isRequired
1140
+ }),
1141
+ /**
1142
+ * A callback for when a column's size changes. Callback receives `{ columnId: string, width: number }`.
1143
+ */
1144
+ onColumnResize: PropTypes.func,
1145
+ /**
1146
+ * Defines a minimum width for the grid to show all controls in its toolbar.
1147
+ */
1148
+ minSizeForControls: PropTypes.number,
1149
+ /**
1150
+ * Sets the grid's height, forcing it to overflow in a scrollable container with cell virtualization.
1151
+ */
1152
+ height: PropTypes.any,
1153
+ /**
1154
+ * Sets the grid's width, forcing it to overflow in a scrollable container with cell virtualization.
1155
+ */
1156
+ width: PropTypes.any,
1157
+ /**
1158
+ * Allows customizing the underlying [react-window grid](https://react-window.vercel.app/#/api/VariableSizeGrid) props.
1159
+ */
1160
+ virtualizationOptions: PropTypes.any,
1161
+ /**
1162
+ * A #EuiDataGridRowHeightsOptions object that provides row heights options.
1163
+ * Allows configuring both default and specific heights of grid rows.
1164
+ * Settings provided may be overwritten or merged with user defined preferences if `toolbarVisibility.showDisplaySelector.allowRowHeight = true` (which is the default).
1165
+ */
1166
+ rowHeightsOptions: PropTypes.shape({
1167
+ /**
1168
+ * Defines the default size for all rows. It can be line count or just height.
1169
+ */
1170
+ defaultHeight: PropTypes.oneOfType([PropTypes.number.isRequired, PropTypes.oneOf(["auto"]), PropTypes.shape({
1171
+ lineCount: PropTypes.number,
1172
+ height: PropTypes.number
1173
+ }).isRequired]),
1174
+ /**
1175
+ * Defines the height for a specific row. It can be line count or just height.
1176
+ *
1177
+ * When using row height overrides, we strongly setting the `showDisplaySelector: allowRowHeight`
1178
+ * toolbar control to `false` in #EuiDataGridToolBarVisibilityOptions
1179
+ */
1180
+ rowHeights: PropTypes.any,
1181
+ /**
1182
+ * Defines a global lineHeight style to apply to all cells
1183
+ */
1184
+ lineHeight: PropTypes.string,
1185
+ /**
1186
+ * Optional callback returning the current `rowHeightsOptions` when changes occur from user input (e.g. toolbar display controls).
1187
+ * Can be used for, e.g. storing user `rowHeightsOptions` in a local storage object.
1188
+ */
1189
+ onChange: PropTypes.func,
1190
+ /**
1191
+ * Optional indicator of the row that should be used as an anchor for vertical layout shift compensation.
1192
+ * When set to 'start' or 'center', the topmost or middle visible row will try
1193
+ * to compensate for changes in their top offsets by adjusting the grid's scroll
1194
+ * position.
1195
+ */
1196
+ scrollAnchorRow: PropTypes.oneOf(["start", "center", undefined])
1197
+ }),
1198
+ /**
1199
+ * Allows the ability for the user to hide fields and sort columns, boolean or a #EuiDataGridToolBarVisibilityColumnSelectorOptions
1200
+ * @default true
1201
+ */
1202
+ showColumnSelector: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
1203
+ /**
1204
+ * When `false`, removes the ability to show & hide columns through the UI
1205
+ */
1206
+ allowHide: PropTypes.bool,
1207
+ /**
1208
+ * When `false`, removes the ability to re-order columns through the UI
1209
+ */
1210
+ allowReorder: PropTypes.bool
1211
+ }).isRequired]),
1212
+ /**
1213
+ * Allows the ability for the user to customize display settings such as grid density and row heights.
1214
+ * User changes will override what is provided in #EuiDataGridStyle and #EuiDataGridRowHeightsOptions
1215
+ * @default true
1216
+ */
1217
+ showDisplaySelector: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
1218
+ /**
1219
+ * When `false`, removes the ability to change density display through the UI
1220
+ */
1221
+ allowDensity: PropTypes.bool,
1222
+ /**
1223
+ * When `false`, removes the ability to change row height display through the UI
1224
+ */
1225
+ allowRowHeight: PropTypes.bool,
1226
+ /**
1227
+ * When `false`, removes the ability to reset styles to default through the UI
1228
+ */
1229
+ allowResetButton: PropTypes.bool,
1230
+ /**
1231
+ * Allows appending additional content to the bottom of the display settings popover
1232
+ */
1233
+ additionalDisplaySettings: PropTypes.node
1234
+ }).isRequired]),
1235
+ /**
1236
+ * Allows the ability for the user to sort rows based upon column values
1237
+ * @default true
1238
+ */
1239
+ showSortSelector: PropTypes.bool,
1240
+ /**
1241
+ * Displays a popover listing all keyboard controls and shortcuts for the data grid.
1242
+ * If set to `false`, the toggle will be visually hidden, but still focusable by keyboard and screen reader users.
1243
+ * @default true
1244
+ */
1245
+ showKeyboardShortcuts: PropTypes.bool,
1246
+ /**
1247
+ * Allows user to be able to fullscreen the data grid. If set to `false` make sure your grid fits within a large enough panel to still show the other controls.
1248
+ * @default true
1249
+ */
1250
+ showFullScreenSelector: PropTypes.bool,
1251
+ /**
1252
+ * If passed a `ReactNode`, appends the passed custom control into the left side of the toolbar, after the column & sort controls.
1253
+ * Or use #EuiDataGridToolBarAdditionalControlsOptions to customize the location of your control.
1254
+ */
1255
+ additionalControls: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1256
+ /**
1257
+ * If passed a `ReactNode`, appends the passed node into the left side of the toolbar, **after** the column & sort controls.
1258
+ * Or use #EuiDataGridToolBarAdditionalControlsLeftOptions to customize the location of your control.
1259
+ * We recommend using `<EuiButtonEmpty size="xs" />` to match the existing controls on the left.
1260
+ */
1261
+ left: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1262
+ /**
1263
+ * Will prepend the passed node into the left side of the toolbar, **before** the column & sort controls.
1264
+ */
1265
+ prepend: PropTypes.node,
1266
+ /**
1267
+ * Will append the passed node into the left side of the toolbar, **after** the column & sort controls.
1268
+ */
1269
+ append: PropTypes.node
1270
+ }).isRequired]),
1271
+ /**
1272
+ * Will prepend the passed node into the right side of the toolbar, **before** the density & fullscreen controls.
1273
+ * We recommend using `<EuiButtonIcon size="xs" />` to match the existing controls on the right.
1274
+ */
1275
+ right: PropTypes.node
1276
+ }).isRequired]),
1277
+ /**
1278
+ * If passed a `ReactNode`, appends the passed node into the left side of the toolbar, **after** the column & sort controls.
1279
+ * Or use #EuiDataGridToolBarAdditionalControlsLeftOptions to customize the location of your control.
1280
+ * We recommend using `<EuiButtonEmpty size="xs" />` to match the existing controls on the left.
1281
+ */
1282
+ left: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1283
+ /**
1284
+ * Will prepend the passed node into the left side of the toolbar, **before** the column & sort controls.
1285
+ */
1286
+ prepend: PropTypes.node,
1287
+ /**
1288
+ * Will append the passed node into the left side of the toolbar, **after** the column & sort controls.
1289
+ */
1290
+ append: PropTypes.node
1291
+ }).isRequired]),
1292
+ /**
1293
+ * Will prepend the passed node into the right side of the toolbar, **before** the density & fullscreen controls.
1294
+ * We recommend using `<EuiButtonIcon size="xs" />` to match the existing controls on the right.
1295
+ */
1296
+ right: PropTypes.node
1297
+ };
1298
+ export var EuiDataGridStylePropsComponent = function EuiDataGridStylePropsComponent() {
1299
+ return ___EmotionJSX(React.Fragment, null);
1300
+ };
1301
+ EuiDataGridStylePropsComponent.propTypes = {
1302
+ /**
1303
+ * Size of fonts used within the row and column cells
1304
+ * @default m
1305
+ */
1306
+ fontSize: PropTypes.oneOf(["s", "m", "l"]),
1307
+ /**
1308
+ * Defines the padding with the row and column cells
1309
+ * @default m
1310
+ */
1311
+ cellPadding: PropTypes.oneOf(["s", "m", "l"]),
1312
+ /**
1313
+ * Border used for the row and column cells
1314
+ * @default all
1315
+ */
1316
+ border: PropTypes.oneOf(["all", "horizontal", "none"]),
1317
+ /**
1318
+ * If set to true, rows will alternate zebra striping for clarity
1319
+ * @default false
1320
+ */
1321
+ stripes: PropTypes.bool,
1322
+ /**
1323
+ * Visual style for the column headers. Recommendation is to use the `underline` style in times when #EuiDataGrid `toolbarVisibility` is set to `false`.
1324
+ * @default shade
1325
+ */
1326
+ header: PropTypes.oneOf(["shade", "underline"]),
1327
+ /**
1328
+ * Visual style for the column footers.
1329
+ * @default overline
1330
+ */
1331
+ footer: PropTypes.oneOf(["shade", "overline", "striped"]),
1332
+ /**
1333
+ * If set to true, the footer row will be sticky
1334
+ * @default true
1335
+ */
1336
+ stickyFooter: PropTypes.bool,
1337
+ /**
1338
+ * Will define what visual style to show on row hover
1339
+ * @default hover
1340
+ */
1341
+ rowHover: PropTypes.oneOf(["highlight", "none"]),
1342
+ /**
1343
+ * Optionally pass custom classes to highlight or customize certain rows
1344
+ */
1345
+ rowClasses: PropTypes.shape({}),
1346
+ /**
1347
+ * Optional callback returning the current `gridStyle` config when changes occur from user input (e.g. toolbar display controls).
1348
+ * Can be used for, e.g. storing user `gridStyle` in a local storage object.
1349
+ */
1350
+ onChange: PropTypes.func
1351
+ };
1352
+ export var EuiDataGridRowHeightsPropsComponent = function EuiDataGridRowHeightsPropsComponent() {
1353
+ return ___EmotionJSX(React.Fragment, null);
1354
+ };
1355
+ EuiDataGridRowHeightsPropsComponent.propTypes = {
1356
+ /**
1357
+ * Defines the default size for all rows. It can be line count or just height.
1358
+ */
1359
+ defaultHeight: PropTypes.oneOfType([PropTypes.number.isRequired, PropTypes.oneOf(["auto"]), PropTypes.shape({
1360
+ lineCount: PropTypes.number,
1361
+ height: PropTypes.number
1362
+ }).isRequired]),
1363
+ /**
1364
+ * Defines the height for a specific row. It can be line count or just height.
1365
+ *
1366
+ * When using row height overrides, we strongly setting the `showDisplaySelector: allowRowHeight`
1367
+ * toolbar control to `false` in #EuiDataGridToolBarVisibilityOptions
1368
+ */
1369
+ rowHeights: PropTypes.any,
1370
+ /**
1371
+ * Defines a global lineHeight style to apply to all cells
1372
+ */
1373
+ lineHeight: PropTypes.string,
1374
+ /**
1375
+ * Optional callback returning the current `rowHeightsOptions` when changes occur from user input (e.g. toolbar display controls).
1376
+ * Can be used for, e.g. storing user `rowHeightsOptions` in a local storage object.
1377
+ */
1378
+ onChange: PropTypes.func,
1379
+ /**
1380
+ * Optional indicator of the row that should be used as an anchor for vertical layout shift compensation.
1381
+ * When set to 'start' or 'center', the topmost or middle visible row will try
1382
+ * to compensate for changes in their top offsets by adjusting the grid's scroll
1383
+ * position.
1384
+ */
1385
+ scrollAnchorRow: PropTypes.oneOf(["start", "center", undefined])
1386
+ };