@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
package/i18ntokens.json CHANGED
@@ -149,14 +149,14 @@
149
149
  "highlighting": "string",
150
150
  "loc": {
151
151
  "start": {
152
- "line": 1118,
152
+ "line": 1119,
153
153
  "column": 8,
154
- "index": 31036
154
+ "index": 31058
155
155
  },
156
156
  "end": {
157
- "line": 1122,
157
+ "line": 1123,
158
158
  "column": 9,
159
- "index": 31191
159
+ "index": 31213
160
160
  }
161
161
  },
162
162
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -167,68 +167,68 @@
167
167
  "highlighting": "string",
168
168
  "loc": {
169
169
  "start": {
170
- "line": 1347,
170
+ "line": 1350,
171
171
  "column": 8,
172
- "index": 37908
172
+ "index": 37993
173
173
  },
174
174
  "end": {
175
- "line": 1351,
175
+ "line": 1354,
176
176
  "column": 9,
177
- "index": 38067
177
+ "index": 38152
178
178
  }
179
179
  },
180
180
  "filepath": "src/components/basic_table/basic_table.tsx"
181
181
  },
182
182
  {
183
- "token": "euiCollapsedItemActions.allActions",
183
+ "token": "euiCollapsedItemActions.allActionsTooltip",
184
184
  "defString": "All actions",
185
185
  "highlighting": "string",
186
186
  "loc": {
187
187
  "start": {
188
- "line": 110,
189
- "column": 4,
190
- "index": 3586
188
+ "line": 45,
189
+ "column": 28,
190
+ "index": 1373
191
191
  },
192
192
  "end": {
193
- "line": 119,
194
- "column": 5,
195
- "index": 3853
193
+ "line": 48,
194
+ "column": 3,
195
+ "index": 1455
196
196
  }
197
197
  },
198
198
  "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
199
199
  },
200
200
  {
201
- "token": "euiCollapsedItemActions.allActionsDisabled",
202
- "defString": "Individual item actions are disabled when rows are being selected.",
201
+ "token": "euiCollapsedItemActions.allActions",
202
+ "defString": "All actions, row {index}",
203
203
  "highlighting": "string",
204
204
  "loc": {
205
205
  "start": {
206
- "line": 110,
207
- "column": 4,
208
- "index": 3586
206
+ "line": 50,
207
+ "column": 36,
208
+ "index": 1494
209
209
  },
210
210
  "end": {
211
- "line": 119,
212
- "column": 5,
213
- "index": 3853
211
+ "line": 56,
212
+ "column": 3,
213
+ "index": 1631
214
214
  }
215
215
  },
216
216
  "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
217
217
  },
218
218
  {
219
- "token": "euiCollapsedItemActions.allActions",
220
- "defString": "All actions",
219
+ "token": "euiCollapsedItemActions.allActionsDisabled",
220
+ "defString": "Individual item actions are disabled when rows are being selected.",
221
221
  "highlighting": "string",
222
222
  "loc": {
223
223
  "start": {
224
- "line": 136,
225
- "column": 4,
226
- "index": 4413
224
+ "line": 58,
225
+ "column": 44,
226
+ "index": 1678
227
227
  },
228
228
  "end": {
229
- "line": 136,
230
- "column": 78,
231
- "index": 4487
229
+ "line": 61,
230
+ "column": 3,
231
+ "index": 1816
232
232
  }
233
233
  },
234
234
  "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
@@ -1013,32 +1013,32 @@
1013
1013
  "highlighting": "string",
1014
1014
  "loc": {
1015
1015
  "start": {
1016
- "line": 44,
1016
+ "line": 49,
1017
1017
  "column": 6,
1018
- "index": 1456
1018
+ "index": 1668
1019
1019
  },
1020
1020
  "end": {
1021
- "line": 48,
1021
+ "line": 53,
1022
1022
  "column": 7,
1023
- "index": 1619
1023
+ "index": 1831
1024
1024
  }
1025
1025
  },
1026
1026
  "filepath": "src/components/datagrid/body/cell/data_grid_cell_actions.tsx"
1027
1027
  },
1028
1028
  {
1029
1029
  "token": "euiDataGridCell.position",
1030
- "defString": "{columnId}, column {col}, row {row}",
1030
+ "defString": "{columnName}, column {columnIndex}, row {rowIndex}",
1031
1031
  "highlighting": "string",
1032
1032
  "loc": {
1033
1033
  "start": {
1034
- "line": 130,
1035
- "column": 12,
1036
- "index": 3863
1034
+ "line": 722,
1035
+ "column": 23,
1036
+ "index": 22753
1037
1037
  },
1038
1038
  "end": {
1039
- "line": 138,
1040
- "column": 14,
1041
- "index": 4170
1039
+ "line": 726,
1040
+ "column": 3,
1041
+ "index": 22900
1042
1042
  }
1043
1043
  },
1044
1044
  "filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
@@ -1049,14 +1049,14 @@
1049
1049
  "highlighting": "string",
1050
1050
  "loc": {
1051
1051
  "start": {
1052
- "line": 142,
1053
- "column": 16,
1054
- "index": 4261
1052
+ "line": 727,
1053
+ "column": 25,
1054
+ "index": 22927
1055
1055
  },
1056
1056
  "end": {
1057
- "line": 145,
1058
- "column": 18,
1059
- "index": 4420
1057
+ "line": 730,
1058
+ "column": 3,
1059
+ "index": 23033
1060
1060
  }
1061
1061
  },
1062
1062
  "filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
@@ -1068,13 +1068,13 @@
1068
1068
  "loc": {
1069
1069
  "start": {
1070
1070
  "line": 187,
1071
- "column": 12,
1072
- "index": 6538
1071
+ "column": 10,
1072
+ "index": 6439
1073
1073
  },
1074
1074
  "end": {
1075
1075
  "line": 191,
1076
- "column": 14,
1077
- "index": 6717
1076
+ "column": 12,
1077
+ "index": 6610
1078
1078
  }
1079
1079
  },
1080
1080
  "filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
@@ -1085,14 +1085,14 @@
1085
1085
  "highlighting": "string",
1086
1086
  "loc": {
1087
1087
  "start": {
1088
- "line": 198,
1089
- "column": 12,
1090
- "index": 6899
1088
+ "line": 194,
1089
+ "column": 10,
1090
+ "index": 6661
1091
1091
  },
1092
1092
  "end": {
1093
- "line": 202,
1094
- "column": 14,
1095
- "index": 7117
1093
+ "line": 198,
1094
+ "column": 12,
1095
+ "index": 6871
1096
1096
  }
1097
1097
  },
1098
1098
  "filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
@@ -1151,20 +1151,56 @@
1151
1151
  },
1152
1152
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
1153
1153
  },
1154
+ {
1155
+ "token": "euiColumnActions.unsort",
1156
+ "defString": "Unsort {schemaLabel}",
1157
+ "highlighting": "string",
1158
+ "loc": {
1159
+ "start": {
1160
+ "line": 283,
1161
+ "column": 8,
1162
+ "index": 7566
1163
+ },
1164
+ "end": {
1165
+ "line": 287,
1166
+ "column": 10,
1167
+ "index": 7710
1168
+ }
1169
+ },
1170
+ "filepath": "src/components/datagrid/body/header/column_actions.tsx"
1171
+ },
1154
1172
  {
1155
1173
  "token": "euiColumnActions.sort",
1156
1174
  "defString": "Sort {schemaLabel}",
1157
1175
  "highlighting": "string",
1158
1176
  "loc": {
1159
1177
  "start": {
1160
- "line": 280,
1178
+ "line": 289,
1161
1179
  "column": 8,
1162
- "index": 7459
1180
+ "index": 7731
1163
1181
  },
1164
1182
  "end": {
1165
- "line": 284,
1183
+ "line": 293,
1166
1184
  "column": 10,
1167
- "index": 7599
1185
+ "index": 7871
1186
+ }
1187
+ },
1188
+ "filepath": "src/components/datagrid/body/header/column_actions.tsx"
1189
+ },
1190
+ {
1191
+ "token": "euiColumnActions.unsort",
1192
+ "defString": "Unsort {schemaLabel}",
1193
+ "highlighting": "string",
1194
+ "loc": {
1195
+ "start": {
1196
+ "line": 319,
1197
+ "column": 8,
1198
+ "index": 8519
1199
+ },
1200
+ "end": {
1201
+ "line": 323,
1202
+ "column": 10,
1203
+ "index": 8663
1168
1204
  }
1169
1205
  },
1170
1206
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -1175,14 +1211,14 @@
1175
1211
  "highlighting": "string",
1176
1212
  "loc": {
1177
1213
  "start": {
1178
- "line": 311,
1214
+ "line": 325,
1179
1215
  "column": 8,
1180
- "index": 8297
1216
+ "index": 8684
1181
1217
  },
1182
1218
  "end": {
1183
- "line": 315,
1219
+ "line": 329,
1184
1220
  "column": 10,
1185
- "index": 8437
1221
+ "index": 8824
1186
1222
  }
1187
1223
  },
1188
1224
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -1193,14 +1229,14 @@
1193
1229
  "highlighting": "string",
1194
1230
  "loc": {
1195
1231
  "start": {
1196
- "line": 125,
1232
+ "line": 112,
1197
1233
  "column": 37,
1198
- "index": 3889
1234
+ "index": 3493
1199
1235
  },
1200
1236
  "end": {
1201
- "line": 129,
1237
+ "line": 116,
1202
1238
  "column": 7,
1203
- "index": 4039
1239
+ "index": 3643
1204
1240
  }
1205
1241
  },
1206
1242
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1211,14 +1247,14 @@
1211
1247
  "highlighting": "string",
1212
1248
  "loc": {
1213
1249
  "start": {
1214
- "line": 130,
1250
+ "line": 117,
1215
1251
  "column": 42,
1216
- "index": 4083
1252
+ "index": 3687
1217
1253
  },
1218
1254
  "end": {
1219
- "line": 133,
1255
+ "line": 120,
1220
1256
  "column": 7,
1221
- "index": 4223
1257
+ "index": 3827
1222
1258
  }
1223
1259
  },
1224
1260
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1229,14 +1265,14 @@
1229
1265
  "highlighting": "string",
1230
1266
  "loc": {
1231
1267
  "start": {
1232
- "line": 306,
1268
+ "line": 304,
1233
1269
  "column": 16,
1234
- "index": 9972
1270
+ "index": 9927
1235
1271
  },
1236
1272
  "end": {
1237
- "line": 310,
1273
+ "line": 308,
1238
1274
  "column": 18,
1239
- "index": 10146
1275
+ "index": 10101
1240
1276
  }
1241
1277
  },
1242
1278
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1247,14 +1283,14 @@
1247
1283
  "highlighting": "string",
1248
1284
  "loc": {
1249
1285
  "start": {
1250
- "line": 314,
1286
+ "line": 312,
1251
1287
  "column": 16,
1252
- "index": 10224
1288
+ "index": 10179
1253
1289
  },
1254
1290
  "end": {
1255
- "line": 318,
1291
+ "line": 316,
1256
1292
  "column": 18,
1257
- "index": 10400
1293
+ "index": 10355
1258
1294
  }
1259
1295
  },
1260
1296
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1265,14 +1301,14 @@
1265
1301
  "highlighting": "string",
1266
1302
  "loc": {
1267
1303
  "start": {
1268
- "line": 324,
1304
+ "line": 322,
1269
1305
  "column": 16,
1270
- "index": 10546
1306
+ "index": 10501
1271
1307
  },
1272
1308
  "end": {
1273
- "line": 329,
1309
+ "line": 327,
1274
1310
  "column": 18,
1275
- "index": 10774
1311
+ "index": 10729
1276
1312
  }
1277
1313
  },
1278
1314
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1283,14 +1319,14 @@
1283
1319
  "highlighting": "string",
1284
1320
  "loc": {
1285
1321
  "start": {
1286
- "line": 333,
1322
+ "line": 331,
1287
1323
  "column": 16,
1288
- "index": 10852
1324
+ "index": 10807
1289
1325
  },
1290
1326
  "end": {
1291
- "line": 338,
1327
+ "line": 336,
1292
1328
  "column": 18,
1293
- "index": 11082
1329
+ "index": 11037
1294
1330
  }
1295
1331
  },
1296
1332
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1301,14 +1337,14 @@
1301
1337
  "highlighting": "string",
1302
1338
  "loc": {
1303
1339
  "start": {
1304
- "line": 344,
1340
+ "line": 342,
1305
1341
  "column": 16,
1306
- "index": 11211
1342
+ "index": 11166
1307
1343
  },
1308
1344
  "end": {
1309
- "line": 349,
1345
+ "line": 347,
1310
1346
  "column": 18,
1311
- "index": 11449
1347
+ "index": 11404
1312
1348
  }
1313
1349
  },
1314
1350
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1319,14 +1355,14 @@
1319
1355
  "highlighting": "string",
1320
1356
  "loc": {
1321
1357
  "start": {
1322
- "line": 353,
1358
+ "line": 351,
1323
1359
  "column": 16,
1324
- "index": 11527
1360
+ "index": 11482
1325
1361
  },
1326
1362
  "end": {
1327
- "line": 358,
1363
+ "line": 356,
1328
1364
  "column": 18,
1329
- "index": 11767
1365
+ "index": 11722
1330
1366
  }
1331
1367
  },
1332
1368
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1337,14 +1373,14 @@
1337
1373
  "highlighting": "string",
1338
1374
  "loc": {
1339
1375
  "start": {
1340
- "line": 423,
1376
+ "line": 421,
1341
1377
  "column": 6,
1342
- "index": 13613
1378
+ "index": 13568
1343
1379
  },
1344
1380
  "end": {
1345
- "line": 426,
1381
+ "line": 424,
1346
1382
  "column": 8,
1347
- "index": 13806
1383
+ "index": 13761
1348
1384
  }
1349
1385
  },
1350
1386
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1355,14 +1391,14 @@
1355
1391
  "highlighting": "string",
1356
1392
  "loc": {
1357
1393
  "start": {
1358
- "line": 117,
1394
+ "line": 119,
1359
1395
  "column": 30,
1360
- "index": 3555
1396
+ "index": 3691
1361
1397
  },
1362
1398
  "end": {
1363
- "line": 120,
1399
+ "line": 122,
1364
1400
  "column": 3,
1365
- "index": 3633
1401
+ "index": 3769
1366
1402
  }
1367
1403
  },
1368
1404
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1373,14 +1409,14 @@
1373
1409
  "highlighting": "string",
1374
1410
  "loc": {
1375
1411
  "start": {
1376
- "line": 155,
1412
+ "line": 159,
1377
1413
  "column": 12,
1378
- "index": 4781
1414
+ "index": 4993
1379
1415
  },
1380
1416
  "end": {
1381
- "line": 155,
1417
+ "line": 159,
1382
1418
  "column": 74,
1383
- "index": 4843
1419
+ "index": 5055
1384
1420
  }
1385
1421
  },
1386
1422
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1391,14 +1427,14 @@
1391
1427
  "highlighting": "string",
1392
1428
  "loc": {
1393
1429
  "start": {
1394
- "line": 161,
1430
+ "line": 165,
1395
1431
  "column": 12,
1396
- "index": 4973
1432
+ "index": 5201
1397
1433
  },
1398
1434
  "end": {
1399
- "line": 167,
1435
+ "line": 171,
1400
1436
  "column": 13,
1401
- "index": 5185
1437
+ "index": 5413
1402
1438
  }
1403
1439
  },
1404
1440
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1409,14 +1445,14 @@
1409
1445
  "highlighting": "string",
1410
1446
  "loc": {
1411
1447
  "start": {
1412
- "line": 161,
1448
+ "line": 165,
1413
1449
  "column": 12,
1414
- "index": 4973
1450
+ "index": 5201
1415
1451
  },
1416
1452
  "end": {
1417
- "line": 167,
1453
+ "line": 171,
1418
1454
  "column": 13,
1419
- "index": 5185
1455
+ "index": 5413
1420
1456
  }
1421
1457
  },
1422
1458
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1427,14 +1463,14 @@
1427
1463
  "highlighting": "string",
1428
1464
  "loc": {
1429
1465
  "start": {
1430
- "line": 280,
1466
+ "line": 288,
1431
1467
  "column": 18,
1432
- "index": 9968
1468
+ "index": 10378
1433
1469
  },
1434
1470
  "end": {
1435
- "line": 283,
1471
+ "line": 291,
1436
1472
  "column": 20,
1437
- "index": 10092
1473
+ "index": 10502
1438
1474
  }
1439
1475
  },
1440
1476
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1445,14 +1481,14 @@
1445
1481
  "highlighting": "string",
1446
1482
  "loc": {
1447
1483
  "start": {
1448
- "line": 293,
1484
+ "line": 301,
1449
1485
  "column": 18,
1450
- "index": 10452
1486
+ "index": 10862
1451
1487
  },
1452
1488
  "end": {
1453
- "line": 296,
1489
+ "line": 304,
1454
1490
  "column": 20,
1455
- "index": 10574
1491
+ "index": 10984
1456
1492
  }
1457
1493
  },
1458
1494
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1463,14 +1499,14 @@
1463
1499
  "highlighting": "string",
1464
1500
  "loc": {
1465
1501
  "start": {
1466
- "line": 24,
1502
+ "line": 27,
1467
1503
  "column": 2,
1468
- "index": 1033
1504
+ "index": 1166
1469
1505
  },
1470
1506
  "end": {
1471
- "line": 24,
1507
+ "line": 27,
1472
1508
  "column": 76,
1473
- "index": 1107
1509
+ "index": 1240
1474
1510
  }
1475
1511
  },
1476
1512
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1481,14 +1517,14 @@
1481
1517
  "highlighting": "string",
1482
1518
  "loc": {
1483
1519
  "start": {
1484
- "line": 27,
1520
+ "line": 30,
1485
1521
  "column": 2,
1486
- "index": 1151
1522
+ "index": 1284
1487
1523
  },
1488
1524
  "end": {
1489
- "line": 27,
1525
+ "line": 30,
1490
1526
  "column": 77,
1491
- "index": 1226
1527
+ "index": 1359
1492
1528
  }
1493
1529
  },
1494
1530
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1499,14 +1535,14 @@
1499
1535
  "highlighting": "string",
1500
1536
  "loc": {
1501
1537
  "start": {
1502
- "line": 68,
1538
+ "line": 71,
1503
1539
  "column": 30,
1504
- "index": 2190
1540
+ "index": 2323
1505
1541
  },
1506
1542
  "end": {
1507
- "line": 71,
1543
+ "line": 74,
1508
1544
  "column": 3,
1509
- "index": 2276
1545
+ "index": 2409
1510
1546
  }
1511
1547
  },
1512
1548
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1517,14 +1553,14 @@
1517
1553
  "highlighting": "string",
1518
1554
  "loc": {
1519
1555
  "start": {
1520
- "line": 109,
1556
+ "line": 119,
1521
1557
  "column": 14,
1522
- "index": 3319
1558
+ "index": 3743
1523
1559
  },
1524
1560
  "end": {
1525
- "line": 113,
1561
+ "line": 123,
1526
1562
  "column": 15,
1527
- "index": 3508
1563
+ "index": 3932
1528
1564
  }
1529
1565
  },
1530
1566
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1535,14 +1571,14 @@
1535
1571
  "highlighting": "string",
1536
1572
  "loc": {
1537
1573
  "start": {
1538
- "line": 125,
1539
- "column": 14,
1540
- "index": 3900
1574
+ "line": 129,
1575
+ "column": 12,
1576
+ "index": 4120
1541
1577
  },
1542
1578
  "end": {
1543
- "line": 129,
1544
- "column": 15,
1545
- "index": 4090
1579
+ "line": 133,
1580
+ "column": 13,
1581
+ "index": 4302
1546
1582
  }
1547
1583
  },
1548
1584
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1553,14 +1589,14 @@
1553
1589
  "highlighting": "string",
1554
1590
  "loc": {
1555
1591
  "start": {
1556
- "line": 174,
1557
- "column": 14,
1558
- "index": 5666
1592
+ "line": 177,
1593
+ "column": 12,
1594
+ "index": 5805
1559
1595
  },
1560
1596
  "end": {
1561
- "line": 178,
1562
- "column": 15,
1563
- "index": 5852
1597
+ "line": 181,
1598
+ "column": 13,
1599
+ "index": 5983
1564
1600
  }
1565
1601
  },
1566
1602
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1571,14 +1607,14 @@
1571
1607
  "highlighting": "string",
1572
1608
  "loc": {
1573
1609
  "start": {
1574
- "line": 62,
1610
+ "line": 66,
1575
1611
  "column": 30,
1576
- "index": 1986
1612
+ "index": 2120
1577
1613
  },
1578
1614
  "end": {
1579
- "line": 65,
1615
+ "line": 69,
1580
1616
  "column": 5,
1581
- "index": 2056
1617
+ "index": 2190
1582
1618
  }
1583
1619
  },
1584
1620
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
@@ -1589,14 +1625,14 @@
1589
1625
  "highlighting": "string",
1590
1626
  "loc": {
1591
1627
  "start": {
1592
- "line": 66,
1628
+ "line": 70,
1593
1629
  "column": 31,
1594
- "index": 2089
1630
+ "index": 2223
1595
1631
  },
1596
1632
  "end": {
1597
- "line": 69,
1633
+ "line": 73,
1598
1634
  "column": 5,
1599
- "index": 2169
1635
+ "index": 2303
1600
1636
  }
1601
1637
  },
1602
1638
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
@@ -1607,14 +1643,14 @@
1607
1643
  "highlighting": "string",
1608
1644
  "loc": {
1609
1645
  "start": {
1610
- "line": 215,
1646
+ "line": 221,
1611
1647
  "column": 14,
1612
- "index": 6750
1648
+ "index": 6957
1613
1649
  },
1614
1650
  "end": {
1615
- "line": 218,
1651
+ "line": 224,
1616
1652
  "column": 16,
1617
- "index": 6886
1653
+ "index": 7093
1618
1654
  }
1619
1655
  },
1620
1656
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
@@ -1625,14 +1661,14 @@
1625
1661
  "highlighting": "string",
1626
1662
  "loc": {
1627
1663
  "start": {
1628
- "line": 248,
1664
+ "line": 254,
1629
1665
  "column": 24,
1630
- "index": 8109
1666
+ "index": 8316
1631
1667
  },
1632
1668
  "end": {
1633
- "line": 251,
1669
+ "line": 257,
1634
1670
  "column": 26,
1635
- "index": 8265
1671
+ "index": 8472
1636
1672
  }
1637
1673
  },
1638
1674
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
@@ -1643,14 +1679,14 @@
1643
1679
  "highlighting": "string",
1644
1680
  "loc": {
1645
1681
  "start": {
1646
- "line": 321,
1682
+ "line": 329,
1647
1683
  "column": 20,
1648
- "index": 11473
1684
+ "index": 11826
1649
1685
  },
1650
1686
  "end": {
1651
- "line": 324,
1687
+ "line": 332,
1652
1688
  "column": 22,
1653
- "index": 11606
1689
+ "index": 11959
1654
1690
  }
1655
1691
  },
1656
1692
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
@@ -1679,14 +1715,14 @@
1679
1715
  "highlighting": "string",
1680
1716
  "loc": {
1681
1717
  "start": {
1682
- "line": 226,
1718
+ "line": 228,
1683
1719
  "column": 22,
1684
- "index": 7270
1720
+ "index": 7412
1685
1721
  },
1686
1722
  "end": {
1687
- "line": 229,
1723
+ "line": 231,
1688
1724
  "column": 3,
1689
- "index": 7344
1725
+ "index": 7486
1690
1726
  }
1691
1727
  },
1692
1728
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1697,14 +1733,14 @@
1697
1733
  "highlighting": "string",
1698
1734
  "loc": {
1699
1735
  "start": {
1700
- "line": 230,
1736
+ "line": 232,
1701
1737
  "column": 27,
1702
- "index": 7373
1738
+ "index": 7515
1703
1739
  },
1704
1740
  "end": {
1705
- "line": 233,
1741
+ "line": 235,
1706
1742
  "column": 3,
1707
- "index": 7453
1743
+ "index": 7595
1708
1744
  }
1709
1745
  },
1710
1746
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1715,14 +1751,14 @@
1715
1751
  "highlighting": "string",
1716
1752
  "loc": {
1717
1753
  "start": {
1718
- "line": 260,
1754
+ "line": 272,
1719
1755
  "column": 10,
1720
- "index": 8312
1756
+ "index": 8779
1721
1757
  },
1722
1758
  "end": {
1723
- "line": 268,
1759
+ "line": 280,
1724
1760
  "column": 11,
1725
- "index": 8633
1761
+ "index": 9100
1726
1762
  }
1727
1763
  },
1728
1764
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1733,14 +1769,14 @@
1733
1769
  "highlighting": "string",
1734
1770
  "loc": {
1735
1771
  "start": {
1736
- "line": 260,
1772
+ "line": 272,
1737
1773
  "column": 10,
1738
- "index": 8312
1774
+ "index": 8779
1739
1775
  },
1740
1776
  "end": {
1741
- "line": 268,
1777
+ "line": 280,
1742
1778
  "column": 11,
1743
- "index": 8633
1779
+ "index": 9100
1744
1780
  }
1745
1781
  },
1746
1782
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1751,14 +1787,14 @@
1751
1787
  "highlighting": "string",
1752
1788
  "loc": {
1753
1789
  "start": {
1754
- "line": 260,
1790
+ "line": 272,
1755
1791
  "column": 10,
1756
- "index": 8312
1792
+ "index": 8779
1757
1793
  },
1758
1794
  "end": {
1759
- "line": 268,
1795
+ "line": 280,
1760
1796
  "column": 11,
1761
- "index": 8633
1797
+ "index": 9100
1762
1798
  }
1763
1799
  },
1764
1800
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1769,14 +1805,14 @@
1769
1805
  "highlighting": "string",
1770
1806
  "loc": {
1771
1807
  "start": {
1772
- "line": 260,
1808
+ "line": 272,
1773
1809
  "column": 10,
1774
- "index": 8312
1810
+ "index": 8779
1775
1811
  },
1776
1812
  "end": {
1777
- "line": 268,
1813
+ "line": 280,
1778
1814
  "column": 11,
1779
- "index": 8633
1815
+ "index": 9100
1780
1816
  }
1781
1817
  },
1782
1818
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1787,14 +1823,14 @@
1787
1823
  "highlighting": "string",
1788
1824
  "loc": {
1789
1825
  "start": {
1790
- "line": 303,
1826
+ "line": 315,
1791
1827
  "column": 10,
1792
- "index": 9740
1828
+ "index": 10207
1793
1829
  },
1794
1830
  "end": {
1795
- "line": 318,
1831
+ "line": 330,
1796
1832
  "column": 11,
1797
- "index": 10213
1833
+ "index": 10680
1798
1834
  }
1799
1835
  },
1800
1836
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1805,14 +1841,14 @@
1805
1841
  "highlighting": "string",
1806
1842
  "loc": {
1807
1843
  "start": {
1808
- "line": 303,
1844
+ "line": 315,
1809
1845
  "column": 10,
1810
- "index": 9740
1846
+ "index": 10207
1811
1847
  },
1812
1848
  "end": {
1813
- "line": 318,
1849
+ "line": 330,
1814
1850
  "column": 11,
1815
- "index": 10213
1851
+ "index": 10680
1816
1852
  }
1817
1853
  },
1818
1854
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1823,14 +1859,14 @@
1823
1859
  "highlighting": "string",
1824
1860
  "loc": {
1825
1861
  "start": {
1826
- "line": 303,
1862
+ "line": 315,
1827
1863
  "column": 10,
1828
- "index": 9740
1864
+ "index": 10207
1829
1865
  },
1830
1866
  "end": {
1831
- "line": 318,
1867
+ "line": 330,
1832
1868
  "column": 11,
1833
- "index": 10213
1869
+ "index": 10680
1834
1870
  }
1835
1871
  },
1836
1872
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1841,14 +1877,14 @@
1841
1877
  "highlighting": "string",
1842
1878
  "loc": {
1843
1879
  "start": {
1844
- "line": 303,
1880
+ "line": 315,
1845
1881
  "column": 10,
1846
- "index": 9740
1882
+ "index": 10207
1847
1883
  },
1848
1884
  "end": {
1849
- "line": 318,
1885
+ "line": 330,
1850
1886
  "column": 11,
1851
- "index": 10213
1887
+ "index": 10680
1852
1888
  }
1853
1889
  },
1854
1890
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1859,14 +1895,14 @@
1859
1895
  "highlighting": "string",
1860
1896
  "loc": {
1861
1897
  "start": {
1862
- "line": 303,
1898
+ "line": 315,
1863
1899
  "column": 10,
1864
- "index": 9740
1900
+ "index": 10207
1865
1901
  },
1866
1902
  "end": {
1867
- "line": 318,
1903
+ "line": 330,
1868
1904
  "column": 11,
1869
- "index": 10213
1905
+ "index": 10680
1870
1906
  }
1871
1907
  },
1872
1908
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1877,14 +1913,14 @@
1877
1913
  "highlighting": "string",
1878
1914
  "loc": {
1879
1915
  "start": {
1880
- "line": 34,
1916
+ "line": 37,
1881
1917
  "column": 53,
1882
- "index": 1075
1918
+ "index": 1202
1883
1919
  },
1884
1920
  "end": {
1885
- "line": 40,
1921
+ "line": 43,
1886
1922
  "column": 3,
1887
- "index": 1249
1923
+ "index": 1376
1888
1924
  }
1889
1925
  },
1890
1926
  "filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
@@ -1895,14 +1931,14 @@
1895
1931
  "highlighting": "string",
1896
1932
  "loc": {
1897
1933
  "start": {
1898
- "line": 34,
1934
+ "line": 37,
1899
1935
  "column": 53,
1900
- "index": 1075
1936
+ "index": 1202
1901
1937
  },
1902
1938
  "end": {
1903
- "line": 40,
1939
+ "line": 43,
1904
1940
  "column": 3,
1905
- "index": 1249
1941
+ "index": 1376
1906
1942
  }
1907
1943
  },
1908
1944
  "filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
@@ -1913,14 +1949,14 @@
1913
1949
  "highlighting": "string",
1914
1950
  "loc": {
1915
1951
  "start": {
1916
- "line": 24,
1952
+ "line": 26,
1917
1953
  "column": 16,
1918
- "index": 928
1954
+ "index": 1033
1919
1955
  },
1920
1956
  "end": {
1921
- "line": 24,
1957
+ "line": 26,
1922
1958
  "column": 78,
1923
- "index": 990
1959
+ "index": 1095
1924
1960
  }
1925
1961
  },
1926
1962
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -1931,14 +1967,14 @@
1931
1967
  "highlighting": "string",
1932
1968
  "loc": {
1933
1969
  "start": {
1934
- "line": 61,
1970
+ "line": 70,
1935
1971
  "column": 20,
1936
- "index": 2114
1972
+ "index": 2420
1937
1973
  },
1938
1974
  "end": {
1939
- "line": 64,
1975
+ "line": 73,
1940
1976
  "column": 22,
1941
- "index": 2250
1977
+ "index": 2556
1942
1978
  }
1943
1979
  },
1944
1980
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -1949,14 +1985,14 @@
1949
1985
  "highlighting": "string",
1950
1986
  "loc": {
1951
1987
  "start": {
1952
- "line": 68,
1988
+ "line": 77,
1953
1989
  "column": 18,
1954
- "index": 2344
1990
+ "index": 2650
1955
1991
  },
1956
1992
  "end": {
1957
- "line": 71,
1993
+ "line": 80,
1958
1994
  "column": 20,
1959
- "index": 2488
1995
+ "index": 2794
1960
1996
  }
1961
1997
  },
1962
1998
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -1967,14 +2003,14 @@
1967
2003
  "highlighting": "string",
1968
2004
  "loc": {
1969
2005
  "start": {
1970
- "line": 77,
2006
+ "line": 86,
1971
2007
  "column": 20,
1972
- "index": 2610
2008
+ "index": 2916
1973
2009
  },
1974
2010
  "end": {
1975
- "line": 80,
2011
+ "line": 89,
1976
2012
  "column": 22,
1977
- "index": 2750
2013
+ "index": 3056
1978
2014
  }
1979
2015
  },
1980
2016
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -1985,14 +2021,14 @@
1985
2021
  "highlighting": "string",
1986
2022
  "loc": {
1987
2023
  "start": {
1988
- "line": 84,
2024
+ "line": 93,
1989
2025
  "column": 18,
1990
- "index": 2844
2026
+ "index": 3150
1991
2027
  },
1992
2028
  "end": {
1993
- "line": 87,
2029
+ "line": 96,
1994
2030
  "column": 20,
1995
- "index": 2992
2031
+ "index": 3298
1996
2032
  }
1997
2033
  },
1998
2034
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2003,14 +2039,14 @@
2003
2039
  "highlighting": "string",
2004
2040
  "loc": {
2005
2041
  "start": {
2006
- "line": 93,
2042
+ "line": 102,
2007
2043
  "column": 20,
2008
- "index": 3114
2044
+ "index": 3420
2009
2045
  },
2010
2046
  "end": {
2011
- "line": 96,
2047
+ "line": 105,
2012
2048
  "column": 22,
2013
- "index": 3256
2049
+ "index": 3562
2014
2050
  }
2015
2051
  },
2016
2052
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2021,14 +2057,14 @@
2021
2057
  "highlighting": "string",
2022
2058
  "loc": {
2023
2059
  "start": {
2024
- "line": 100,
2060
+ "line": 109,
2025
2061
  "column": 18,
2026
- "index": 3350
2062
+ "index": 3656
2027
2063
  },
2028
2064
  "end": {
2029
- "line": 103,
2065
+ "line": 112,
2030
2066
  "column": 20,
2031
- "index": 3500
2067
+ "index": 3806
2032
2068
  }
2033
2069
  },
2034
2070
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2039,14 +2075,14 @@
2039
2075
  "highlighting": "string",
2040
2076
  "loc": {
2041
2077
  "start": {
2042
- "line": 109,
2078
+ "line": 118,
2043
2079
  "column": 20,
2044
- "index": 3622
2080
+ "index": 3928
2045
2081
  },
2046
2082
  "end": {
2047
- "line": 112,
2083
+ "line": 121,
2048
2084
  "column": 22,
2049
- "index": 3762
2085
+ "index": 4068
2050
2086
  }
2051
2087
  },
2052
2088
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2057,14 +2093,14 @@
2057
2093
  "highlighting": "string",
2058
2094
  "loc": {
2059
2095
  "start": {
2060
- "line": 116,
2096
+ "line": 125,
2061
2097
  "column": 18,
2062
- "index": 3856
2098
+ "index": 4162
2063
2099
  },
2064
2100
  "end": {
2065
- "line": 119,
2101
+ "line": 128,
2066
2102
  "column": 20,
2067
- "index": 4004
2103
+ "index": 4310
2068
2104
  }
2069
2105
  },
2070
2106
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2075,14 +2111,14 @@
2075
2111
  "highlighting": "string",
2076
2112
  "loc": {
2077
2113
  "start": {
2078
- "line": 125,
2114
+ "line": 134,
2079
2115
  "column": 20,
2080
- "index": 4126
2116
+ "index": 4432
2081
2117
  },
2082
2118
  "end": {
2083
- "line": 128,
2119
+ "line": 137,
2084
2120
  "column": 22,
2085
- "index": 4255
2121
+ "index": 4561
2086
2122
  }
2087
2123
  },
2088
2124
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2093,14 +2129,14 @@
2093
2129
  "highlighting": "string",
2094
2130
  "loc": {
2095
2131
  "start": {
2096
- "line": 132,
2132
+ "line": 141,
2097
2133
  "column": 18,
2098
- "index": 4349
2134
+ "index": 4655
2099
2135
  },
2100
2136
  "end": {
2101
- "line": 135,
2137
+ "line": 144,
2102
2138
  "column": 20,
2103
- "index": 4515
2139
+ "index": 4821
2104
2140
  }
2105
2141
  },
2106
2142
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2111,14 +2147,14 @@
2111
2147
  "highlighting": "string",
2112
2148
  "loc": {
2113
2149
  "start": {
2114
- "line": 141,
2150
+ "line": 150,
2115
2151
  "column": 20,
2116
- "index": 4637
2152
+ "index": 4943
2117
2153
  },
2118
2154
  "end": {
2119
- "line": 144,
2155
+ "line": 153,
2120
2156
  "column": 22,
2121
- "index": 4764
2157
+ "index": 5070
2122
2158
  }
2123
2159
  },
2124
2160
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2129,14 +2165,14 @@
2129
2165
  "highlighting": "string",
2130
2166
  "loc": {
2131
2167
  "start": {
2132
- "line": 148,
2168
+ "line": 157,
2133
2169
  "column": 18,
2134
- "index": 4858
2170
+ "index": 5164
2135
2171
  },
2136
2172
  "end": {
2137
- "line": 151,
2173
+ "line": 160,
2138
2174
  "column": 20,
2139
- "index": 5022
2175
+ "index": 5328
2140
2176
  }
2141
2177
  },
2142
2178
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2147,14 +2183,14 @@
2147
2183
  "highlighting": "string",
2148
2184
  "loc": {
2149
2185
  "start": {
2150
- "line": 158,
2186
+ "line": 167,
2151
2187
  "column": 22,
2152
- "index": 5169
2188
+ "index": 5475
2153
2189
  },
2154
2190
  "end": {
2155
- "line": 161,
2191
+ "line": 170,
2156
2192
  "column": 24,
2157
- "index": 5299
2193
+ "index": 5605
2158
2194
  }
2159
2195
  },
2160
2196
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2165,14 +2201,14 @@
2165
2201
  "highlighting": "string",
2166
2202
  "loc": {
2167
2203
  "start": {
2168
- "line": 164,
2204
+ "line": 173,
2169
2205
  "column": 22,
2170
- "index": 5380
2206
+ "index": 5686
2171
2207
  },
2172
2208
  "end": {
2173
- "line": 167,
2209
+ "line": 176,
2174
2210
  "column": 24,
2175
- "index": 5515
2211
+ "index": 5821
2176
2212
  }
2177
2213
  },
2178
2214
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2183,14 +2219,14 @@
2183
2219
  "highlighting": "string",
2184
2220
  "loc": {
2185
2221
  "start": {
2186
- "line": 172,
2222
+ "line": 181,
2187
2223
  "column": 18,
2188
- "index": 5633
2224
+ "index": 5939
2189
2225
  },
2190
2226
  "end": {
2191
- "line": 175,
2227
+ "line": 184,
2192
2228
  "column": 20,
2193
- "index": 5804
2229
+ "index": 6110
2194
2230
  }
2195
2231
  },
2196
2232
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2201,14 +2237,14 @@
2201
2237
  "highlighting": "string",
2202
2238
  "loc": {
2203
2239
  "start": {
2204
- "line": 182,
2240
+ "line": 191,
2205
2241
  "column": 22,
2206
- "index": 5951
2242
+ "index": 6257
2207
2243
  },
2208
2244
  "end": {
2209
- "line": 185,
2245
+ "line": 194,
2210
2246
  "column": 24,
2211
- "index": 6081
2247
+ "index": 6387
2212
2248
  }
2213
2249
  },
2214
2250
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2219,14 +2255,14 @@
2219
2255
  "highlighting": "string",
2220
2256
  "loc": {
2221
2257
  "start": {
2222
- "line": 188,
2258
+ "line": 197,
2223
2259
  "column": 22,
2224
- "index": 6162
2260
+ "index": 6468
2225
2261
  },
2226
2262
  "end": {
2227
- "line": 191,
2263
+ "line": 200,
2228
2264
  "column": 24,
2229
- "index": 6295
2265
+ "index": 6601
2230
2266
  }
2231
2267
  },
2232
2268
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2237,14 +2273,14 @@
2237
2273
  "highlighting": "string",
2238
2274
  "loc": {
2239
2275
  "start": {
2240
- "line": 196,
2276
+ "line": 205,
2241
2277
  "column": 18,
2242
- "index": 6413
2278
+ "index": 6719
2243
2279
  },
2244
2280
  "end": {
2245
- "line": 199,
2281
+ "line": 208,
2246
2282
  "column": 20,
2247
- "index": 6582
2283
+ "index": 6888
2248
2284
  }
2249
2285
  },
2250
2286
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2255,14 +2291,14 @@
2255
2291
  "highlighting": "string",
2256
2292
  "loc": {
2257
2293
  "start": {
2258
- "line": 205,
2294
+ "line": 214,
2259
2295
  "column": 20,
2260
- "index": 6704
2296
+ "index": 7010
2261
2297
  },
2262
2298
  "end": {
2263
- "line": 208,
2299
+ "line": 217,
2264
2300
  "column": 22,
2265
- "index": 6838
2301
+ "index": 7144
2266
2302
  }
2267
2303
  },
2268
2304
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2273,14 +2309,14 @@
2273
2309
  "highlighting": "string",
2274
2310
  "loc": {
2275
2311
  "start": {
2276
- "line": 212,
2312
+ "line": 221,
2277
2313
  "column": 18,
2278
- "index": 6932
2314
+ "index": 7238
2279
2315
  },
2280
2316
  "end": {
2281
- "line": 215,
2317
+ "line": 224,
2282
2318
  "column": 20,
2283
- "index": 7098
2319
+ "index": 7404
2284
2320
  }
2285
2321
  },
2286
2322
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2291,14 +2327,14 @@
2291
2327
  "highlighting": "string",
2292
2328
  "loc": {
2293
2329
  "start": {
2294
- "line": 221,
2330
+ "line": 230,
2295
2331
  "column": 20,
2296
- "index": 7220
2332
+ "index": 7526
2297
2333
  },
2298
2334
  "end": {
2299
- "line": 224,
2335
+ "line": 233,
2300
2336
  "column": 22,
2301
- "index": 7358
2337
+ "index": 7664
2302
2338
  }
2303
2339
  },
2304
2340
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2309,14 +2345,14 @@
2309
2345
  "highlighting": "string",
2310
2346
  "loc": {
2311
2347
  "start": {
2312
- "line": 228,
2348
+ "line": 237,
2313
2349
  "column": 18,
2314
- "index": 7452
2350
+ "index": 7758
2315
2351
  },
2316
2352
  "end": {
2317
- "line": 231,
2353
+ "line": 240,
2318
2354
  "column": 20,
2319
- "index": 7617
2355
+ "index": 7923
2320
2356
  }
2321
2357
  },
2322
2358
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2327,14 +2363,14 @@
2327
2363
  "highlighting": "string",
2328
2364
  "loc": {
2329
2365
  "start": {
2330
- "line": 237,
2366
+ "line": 246,
2331
2367
  "column": 20,
2332
- "index": 7739
2368
+ "index": 8045
2333
2369
  },
2334
2370
  "end": {
2335
- "line": 240,
2371
+ "line": 249,
2336
2372
  "column": 22,
2337
- "index": 7870
2373
+ "index": 8176
2338
2374
  }
2339
2375
  },
2340
2376
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2345,14 +2381,14 @@
2345
2381
  "highlighting": "string",
2346
2382
  "loc": {
2347
2383
  "start": {
2348
- "line": 244,
2384
+ "line": 253,
2349
2385
  "column": 18,
2350
- "index": 7964
2386
+ "index": 8270
2351
2387
  },
2352
2388
  "end": {
2353
- "line": 247,
2389
+ "line": 256,
2354
2390
  "column": 20,
2355
- "index": 8119
2391
+ "index": 8425
2356
2392
  }
2357
2393
  },
2358
2394
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2363,14 +2399,14 @@
2363
2399
  "highlighting": "string",
2364
2400
  "loc": {
2365
2401
  "start": {
2366
- "line": 253,
2402
+ "line": 262,
2367
2403
  "column": 20,
2368
- "index": 8241
2404
+ "index": 8547
2369
2405
  },
2370
2406
  "end": {
2371
- "line": 256,
2407
+ "line": 265,
2372
2408
  "column": 22,
2373
- "index": 8374
2409
+ "index": 8680
2374
2410
  }
2375
2411
  },
2376
2412
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2381,14 +2417,14 @@
2381
2417
  "highlighting": "string",
2382
2418
  "loc": {
2383
2419
  "start": {
2384
- "line": 260,
2420
+ "line": 269,
2385
2421
  "column": 18,
2386
- "index": 8468
2422
+ "index": 8774
2387
2423
  },
2388
2424
  "end": {
2389
- "line": 263,
2425
+ "line": 272,
2390
2426
  "column": 20,
2391
- "index": 8625
2427
+ "index": 8931
2392
2428
  }
2393
2429
  },
2394
2430
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2399,14 +2435,14 @@
2399
2435
  "highlighting": "string",
2400
2436
  "loc": {
2401
2437
  "start": {
2402
- "line": 375,
2438
+ "line": 380,
2403
2439
  "column": 22,
2404
- "index": 10168
2440
+ "index": 10405
2405
2441
  },
2406
2442
  "end": {
2407
- "line": 379,
2443
+ "line": 384,
2408
2444
  "column": 5,
2409
- "index": 10340
2445
+ "index": 10577
2410
2446
  }
2411
2447
  },
2412
2448
  "filepath": "src/components/datagrid/data_grid.tsx"
@@ -2417,14 +2453,14 @@
2417
2453
  "highlighting": "string",
2418
2454
  "loc": {
2419
2455
  "start": {
2420
- "line": 380,
2456
+ "line": 385,
2421
2457
  "column": 27,
2422
- "index": 10369
2458
+ "index": 10606
2423
2459
  },
2424
2460
  "end": {
2425
- "line": 384,
2461
+ "line": 389,
2426
2462
  "column": 5,
2427
- "index": 10510
2463
+ "index": 10747
2428
2464
  }
2429
2465
  },
2430
2466
  "filepath": "src/components/datagrid/data_grid.tsx"
@@ -2435,14 +2471,14 @@
2435
2471
  "highlighting": "string",
2436
2472
  "loc": {
2437
2473
  "start": {
2438
- "line": 527,
2474
+ "line": 543,
2439
2475
  "column": 18,
2440
- "index": 16306
2476
+ "index": 16933
2441
2477
  },
2442
2478
  "end": {
2443
- "line": 530,
2479
+ "line": 546,
2444
2480
  "column": 20,
2445
- "index": 16459
2481
+ "index": 17086
2446
2482
  }
2447
2483
  },
2448
2484
  "filepath": "src/components/datagrid/data_grid.tsx"
@@ -2453,17 +2489,17 @@
2453
2489
  "highlighting": "string",
2454
2490
  "loc": {
2455
2491
  "start": {
2456
- "line": 36,
2492
+ "line": 51,
2457
2493
  "column": 34,
2458
- "index": 1275
2494
+ "index": 1785
2459
2495
  },
2460
2496
  "end": {
2461
- "line": 40,
2497
+ "line": 55,
2462
2498
  "column": 3,
2463
- "index": 1420
2499
+ "index": 1930
2464
2500
  }
2465
2501
  },
2466
- "filepath": "src/components/datagrid/utils/data_grid_pagination.tsx"
2502
+ "filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
2467
2503
  },
2468
2504
  {
2469
2505
  "token": "euiDataGridPagination.paginationLabel",
@@ -2471,17 +2507,17 @@
2471
2507
  "highlighting": "string",
2472
2508
  "loc": {
2473
2509
  "start": {
2474
- "line": 41,
2510
+ "line": 56,
2475
2511
  "column": 26,
2476
- "index": 1448
2512
+ "index": 1958
2477
2513
  },
2478
2514
  "end": {
2479
- "line": 44,
2515
+ "line": 59,
2480
2516
  "column": 3,
2481
- "index": 1544
2517
+ "index": 2054
2482
2518
  }
2483
2519
  },
2484
- "filepath": "src/components/datagrid/utils/data_grid_pagination.tsx"
2520
+ "filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
2485
2521
  },
2486
2522
  {
2487
2523
  "token": "euiDataGridSchema.booleanSortTextAsc",