@elastic/eui 93.3.0 → 93.4.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 (286) hide show
  1. package/dist/eui_charts_theme.d.ts +9 -0
  2. package/dist/eui_charts_theme.js +56 -14
  3. package/dist/eui_charts_theme.js.map +1 -1
  4. package/es/components/breadcrumbs/_breadcrumb_content.js +362 -0
  5. package/es/components/breadcrumbs/_breadcrumb_content.styles.js +48 -0
  6. package/es/components/breadcrumbs/breadcrumb.js +10 -327
  7. package/es/components/breadcrumbs/breadcrumb.styles.js +5 -27
  8. package/es/components/breadcrumbs/breadcrumbs.js +4 -4
  9. package/es/components/breadcrumbs/types.js +1 -0
  10. package/es/components/button/button_group/button_group.js +16 -2
  11. package/es/components/button/button_group/button_group.styles.js +1 -1
  12. package/es/components/button/button_group/button_group_button.js +59 -5
  13. package/es/components/button/button_group/button_group_button.styles.js +39 -3
  14. package/es/components/datagrid/body/cell/data_grid_cell.js +97 -58
  15. package/es/components/datagrid/body/cell/data_grid_cell_actions.js +24 -18
  16. package/es/components/datagrid/body/cell/data_grid_cell_popover.js +64 -56
  17. package/es/components/datagrid/body/cell/data_grid_cell_wrapper.js +32 -31
  18. package/es/components/datagrid/body/cell/index.js +1 -1
  19. package/es/components/datagrid/body/data_grid_body.js +13 -0
  20. package/es/components/datagrid/body/data_grid_body_custom.js +52 -36
  21. package/es/components/datagrid/body/data_grid_body_virtualized.js +84 -56
  22. package/es/components/datagrid/body/data_grid_row_manager.js +6 -4
  23. package/es/components/datagrid/body/footer/use_data_grid_footer.js +1 -2
  24. package/es/components/datagrid/body/header/data_grid_control_header_cell.js +5 -4
  25. package/es/components/datagrid/body/header/data_grid_header_cell.js +73 -53
  26. package/es/components/datagrid/body/header/data_grid_header_row.js +15 -551
  27. package/es/components/datagrid/body/header/use_data_grid_header.js +7 -6
  28. package/es/components/datagrid/controls/column_selector.js +126 -123
  29. package/es/components/datagrid/controls/column_sorting.js +605 -103
  30. package/es/components/datagrid/controls/column_sorting_draggable.js +24 -22
  31. package/es/components/datagrid/controls/display_selector.js +109 -107
  32. package/es/components/datagrid/data_grid.a11y.js +13 -12
  33. package/es/components/datagrid/data_grid.js +45 -22
  34. package/es/components/datagrid/utils/col_widths.js +12 -8
  35. package/es/components/datagrid/utils/focus.js +10 -8
  36. package/es/components/datagrid/utils/grid_height_width.js +31 -30
  37. package/es/components/datagrid/utils/ref.js +1 -1
  38. package/es/components/datagrid/utils/row_heights.js +2 -2
  39. package/es/components/datagrid/utils/sorting.js +29 -27
  40. package/es/components/date_picker/super_date_picker/super_date_picker.js +9 -0
  41. package/es/components/date_picker/super_date_picker/super_update_button.js +57 -29
  42. package/es/components/flex/flex_grid.js +22 -8
  43. package/es/components/flex/flex_grid.styles.js +13 -6
  44. package/es/components/flex/flex_group.js +10 -11
  45. package/es/components/flex/flex_item.js +9 -11
  46. package/es/components/flex/flex_item.styles.js +107 -122
  47. package/es/components/flyout/flyout.js +16 -18
  48. package/es/components/header/header_breadcrumbs/header_breadcrumbs.js +3 -5
  49. package/es/components/modal/confirm_modal.js +2 -1
  50. package/es/components/modal/modal.js +12 -3
  51. package/es/components/observer/resize_observer/resize_observer.js +15 -24
  52. package/es/components/spacer/spacer.js +2 -3
  53. package/es/components/toast/global_toast_list.js +70 -73
  54. package/es/components/toast/toast.js +27 -42
  55. package/es/components/toast/toast.styles.js +2 -17
  56. package/es/services/color/eui_palettes.js +21 -13
  57. package/es/services/color/index.js +1 -1
  58. package/es/services/hooks/index.js +1 -0
  59. package/es/services/hooks/useDeepEqual.js +23 -0
  60. package/es/services/index.js +1 -1
  61. package/eui.d.ts +2442 -2337
  62. package/i18ntokens.json +259 -259
  63. package/lib/components/breadcrumbs/_breadcrumb_content.js +372 -0
  64. package/lib/components/breadcrumbs/_breadcrumb_content.styles.js +55 -0
  65. package/lib/components/breadcrumbs/breadcrumb.js +11 -331
  66. package/lib/components/breadcrumbs/breadcrumb.styles.js +5 -29
  67. package/lib/components/breadcrumbs/breadcrumbs.js +3 -3
  68. package/lib/components/breadcrumbs/types.js +5 -0
  69. package/lib/components/button/button_group/button_group.js +16 -2
  70. package/lib/components/button/button_group/button_group.styles.js +1 -1
  71. package/lib/components/button/button_group/button_group_button.js +59 -5
  72. package/lib/components/button/button_group/button_group_button.styles.js +45 -11
  73. package/lib/components/datagrid/body/cell/data_grid_cell.js +95 -57
  74. package/lib/components/datagrid/body/cell/data_grid_cell_actions.js +24 -18
  75. package/lib/components/datagrid/body/cell/data_grid_cell_popover.js +63 -55
  76. package/lib/components/datagrid/body/cell/data_grid_cell_wrapper.js +32 -31
  77. package/lib/components/datagrid/body/cell/index.js +2 -2
  78. package/lib/components/datagrid/body/data_grid_body.js +13 -0
  79. package/lib/components/datagrid/body/data_grid_body_custom.js +51 -35
  80. package/lib/components/datagrid/body/data_grid_body_virtualized.js +83 -55
  81. package/lib/components/datagrid/body/data_grid_row_manager.js +5 -3
  82. package/lib/components/datagrid/body/footer/use_data_grid_footer.js +1 -2
  83. package/lib/components/datagrid/body/header/data_grid_control_header_cell.js +8 -4
  84. package/lib/components/datagrid/body/header/data_grid_header_cell.js +72 -52
  85. package/lib/components/datagrid/body/header/data_grid_header_row.js +14 -550
  86. package/lib/components/datagrid/body/header/use_data_grid_header.js +7 -6
  87. package/lib/components/datagrid/controls/column_selector.js +126 -123
  88. package/lib/components/datagrid/controls/column_sorting.js +615 -110
  89. package/lib/components/datagrid/controls/column_sorting_draggable.js +27 -22
  90. package/lib/components/datagrid/controls/display_selector.js +109 -107
  91. package/lib/components/datagrid/data_grid.a11y.js +13 -12
  92. package/lib/components/datagrid/data_grid.js +43 -20
  93. package/lib/components/datagrid/utils/col_widths.js +12 -8
  94. package/lib/components/datagrid/utils/focus.js +10 -8
  95. package/lib/components/datagrid/utils/grid_height_width.js +29 -28
  96. package/lib/components/datagrid/utils/ref.js +1 -1
  97. package/lib/components/datagrid/utils/row_heights.js +1 -1
  98. package/lib/components/datagrid/utils/sorting.js +31 -29
  99. package/lib/components/date_picker/super_date_picker/super_date_picker.js +9 -0
  100. package/lib/components/date_picker/super_date_picker/super_update_button.js +57 -29
  101. package/lib/components/flex/flex_grid.js +23 -7
  102. package/lib/components/flex/flex_grid.styles.js +13 -6
  103. package/lib/components/flex/flex_group.js +10 -10
  104. package/lib/components/flex/flex_item.js +13 -13
  105. package/lib/components/flex/flex_item.styles.js +107 -122
  106. package/lib/components/flyout/flyout.js +16 -18
  107. package/lib/components/header/header_breadcrumbs/header_breadcrumbs.js +3 -5
  108. package/lib/components/modal/confirm_modal.js +2 -1
  109. package/lib/components/modal/modal.js +12 -3
  110. package/lib/components/observer/resize_observer/resize_observer.js +15 -24
  111. package/lib/components/spacer/spacer.js +1 -2
  112. package/lib/components/toast/global_toast_list.js +68 -71
  113. package/lib/components/toast/toast.js +25 -40
  114. package/lib/components/toast/toast.styles.js +11 -25
  115. package/lib/services/color/eui_palettes.js +24 -14
  116. package/lib/services/color/index.js +14 -0
  117. package/lib/services/hooks/index.js +11 -0
  118. package/lib/services/hooks/useDeepEqual.js +30 -0
  119. package/lib/services/index.js +15 -1
  120. package/optimize/es/components/breadcrumbs/_breadcrumb_content.js +153 -0
  121. package/optimize/es/components/breadcrumbs/_breadcrumb_content.styles.js +48 -0
  122. package/optimize/es/components/breadcrumbs/breadcrumb.js +10 -110
  123. package/optimize/es/components/breadcrumbs/breadcrumb.styles.js +5 -27
  124. package/optimize/es/components/breadcrumbs/breadcrumbs.js +4 -4
  125. package/optimize/es/components/breadcrumbs/types.js +1 -0
  126. package/optimize/es/components/button/button_group/button_group.js +2 -2
  127. package/optimize/es/components/button/button_group/button_group.styles.js +1 -1
  128. package/optimize/es/components/button/button_group/button_group_button.js +36 -4
  129. package/optimize/es/components/button/button_group/button_group_button.styles.js +39 -3
  130. package/optimize/es/components/datagrid/body/cell/data_grid_cell.js +80 -55
  131. package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.js +24 -18
  132. package/optimize/es/components/datagrid/body/cell/data_grid_cell_popover.js +64 -56
  133. package/optimize/es/components/datagrid/body/cell/data_grid_cell_wrapper.js +32 -31
  134. package/optimize/es/components/datagrid/body/cell/index.js +1 -1
  135. package/optimize/es/components/datagrid/body/data_grid_body_custom.js +39 -36
  136. package/optimize/es/components/datagrid/body/data_grid_body_virtualized.js +69 -49
  137. package/optimize/es/components/datagrid/body/data_grid_row_manager.js +6 -4
  138. package/optimize/es/components/datagrid/body/footer/use_data_grid_footer.js +1 -2
  139. package/optimize/es/components/datagrid/body/header/data_grid_control_header_cell.js +4 -3
  140. package/optimize/es/components/datagrid/body/header/data_grid_header_cell.js +65 -49
  141. package/optimize/es/components/datagrid/body/header/data_grid_header_row.js +15 -13
  142. package/optimize/es/components/datagrid/body/header/use_data_grid_header.js +7 -6
  143. package/optimize/es/components/datagrid/controls/column_selector.js +126 -123
  144. package/optimize/es/components/datagrid/controls/column_sorting.js +121 -103
  145. package/optimize/es/components/datagrid/controls/column_sorting_draggable.js +24 -22
  146. package/optimize/es/components/datagrid/controls/display_selector.js +109 -107
  147. package/optimize/es/components/datagrid/data_grid.a11y.js +13 -12
  148. package/optimize/es/components/datagrid/data_grid.js +45 -22
  149. package/optimize/es/components/datagrid/utils/col_widths.js +9 -5
  150. package/optimize/es/components/datagrid/utils/focus.js +10 -8
  151. package/optimize/es/components/datagrid/utils/grid_height_width.js +31 -30
  152. package/optimize/es/components/datagrid/utils/ref.js +1 -1
  153. package/optimize/es/components/datagrid/utils/row_heights.js +2 -2
  154. package/optimize/es/components/datagrid/utils/sorting.js +29 -27
  155. package/optimize/es/components/date_picker/super_date_picker/super_update_button.js +49 -29
  156. package/optimize/es/components/flex/flex_grid.js +19 -8
  157. package/optimize/es/components/flex/flex_grid.styles.js +13 -6
  158. package/optimize/es/components/flex/flex_group.js +9 -10
  159. package/optimize/es/components/flex/flex_item.js +9 -11
  160. package/optimize/es/components/flex/flex_item.styles.js +107 -122
  161. package/optimize/es/components/flyout/flyout.js +16 -18
  162. package/optimize/es/components/header/header_breadcrumbs/header_breadcrumbs.js +3 -5
  163. package/optimize/es/components/modal/confirm_modal.js +2 -1
  164. package/optimize/es/components/modal/modal.js +6 -2
  165. package/optimize/es/components/observer/resize_observer/resize_observer.js +15 -24
  166. package/optimize/es/components/spacer/spacer.js +2 -3
  167. package/optimize/es/components/toast/global_toast_list.js +70 -73
  168. package/optimize/es/components/toast/toast.js +27 -42
  169. package/optimize/es/components/toast/toast.styles.js +2 -17
  170. package/optimize/es/services/color/eui_palettes.js +21 -13
  171. package/optimize/es/services/color/index.js +1 -1
  172. package/optimize/es/services/hooks/index.js +1 -0
  173. package/optimize/es/services/hooks/useDeepEqual.js +23 -0
  174. package/optimize/es/services/index.js +1 -1
  175. package/optimize/lib/components/breadcrumbs/_breadcrumb_content.js +163 -0
  176. package/optimize/lib/components/breadcrumbs/_breadcrumb_content.styles.js +55 -0
  177. package/optimize/lib/components/breadcrumbs/breadcrumb.js +10 -113
  178. package/optimize/lib/components/breadcrumbs/breadcrumb.styles.js +5 -29
  179. package/optimize/lib/components/breadcrumbs/breadcrumbs.js +3 -3
  180. package/optimize/lib/components/breadcrumbs/types.js +5 -0
  181. package/optimize/lib/components/button/button_group/button_group.js +2 -2
  182. package/optimize/lib/components/button/button_group/button_group.styles.js +1 -1
  183. package/optimize/lib/components/button/button_group/button_group_button.js +37 -5
  184. package/optimize/lib/components/button/button_group/button_group_button.styles.js +45 -11
  185. package/optimize/lib/components/datagrid/body/cell/data_grid_cell.js +78 -54
  186. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.js +24 -18
  187. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_popover.js +63 -55
  188. package/optimize/lib/components/datagrid/body/cell/data_grid_cell_wrapper.js +32 -31
  189. package/optimize/lib/components/datagrid/body/cell/index.js +2 -2
  190. package/optimize/lib/components/datagrid/body/data_grid_body_custom.js +38 -35
  191. package/optimize/lib/components/datagrid/body/data_grid_body_virtualized.js +70 -50
  192. package/optimize/lib/components/datagrid/body/data_grid_row_manager.js +5 -3
  193. package/optimize/lib/components/datagrid/body/footer/use_data_grid_footer.js +1 -2
  194. package/optimize/lib/components/datagrid/body/header/data_grid_control_header_cell.js +8 -4
  195. package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.js +65 -49
  196. package/optimize/lib/components/datagrid/body/header/data_grid_header_row.js +14 -12
  197. package/optimize/lib/components/datagrid/body/header/use_data_grid_header.js +7 -6
  198. package/optimize/lib/components/datagrid/controls/column_selector.js +126 -123
  199. package/optimize/lib/components/datagrid/controls/column_sorting.js +125 -107
  200. package/optimize/lib/components/datagrid/controls/column_sorting_draggable.js +27 -22
  201. package/optimize/lib/components/datagrid/controls/display_selector.js +109 -107
  202. package/optimize/lib/components/datagrid/data_grid.a11y.js +13 -12
  203. package/optimize/lib/components/datagrid/data_grid.js +43 -20
  204. package/optimize/lib/components/datagrid/utils/col_widths.js +9 -5
  205. package/optimize/lib/components/datagrid/utils/focus.js +10 -8
  206. package/optimize/lib/components/datagrid/utils/grid_height_width.js +29 -28
  207. package/optimize/lib/components/datagrid/utils/ref.js +1 -1
  208. package/optimize/lib/components/datagrid/utils/row_heights.js +1 -1
  209. package/optimize/lib/components/datagrid/utils/sorting.js +31 -29
  210. package/optimize/lib/components/date_picker/super_date_picker/super_update_button.js +49 -29
  211. package/optimize/lib/components/flex/flex_grid.js +21 -7
  212. package/optimize/lib/components/flex/flex_grid.styles.js +13 -6
  213. package/optimize/lib/components/flex/flex_group.js +9 -9
  214. package/optimize/lib/components/flex/flex_item.js +13 -13
  215. package/optimize/lib/components/flex/flex_item.styles.js +107 -122
  216. package/optimize/lib/components/flyout/flyout.js +16 -18
  217. package/optimize/lib/components/header/header_breadcrumbs/header_breadcrumbs.js +3 -5
  218. package/optimize/lib/components/modal/confirm_modal.js +2 -1
  219. package/optimize/lib/components/modal/modal.js +6 -2
  220. package/optimize/lib/components/observer/resize_observer/resize_observer.js +15 -24
  221. package/optimize/lib/components/spacer/spacer.js +1 -2
  222. package/optimize/lib/components/toast/global_toast_list.js +68 -71
  223. package/optimize/lib/components/toast/toast.js +25 -40
  224. package/optimize/lib/components/toast/toast.styles.js +11 -25
  225. package/optimize/lib/services/color/eui_palettes.js +24 -14
  226. package/optimize/lib/services/color/index.js +14 -0
  227. package/optimize/lib/services/hooks/index.js +11 -0
  228. package/optimize/lib/services/hooks/useDeepEqual.js +30 -0
  229. package/optimize/lib/services/index.js +15 -1
  230. package/package.json +2 -2
  231. package/test-env/components/breadcrumbs/_breadcrumb_content.js +363 -0
  232. package/test-env/components/breadcrumbs/_breadcrumb_content.styles.js +55 -0
  233. package/test-env/components/breadcrumbs/breadcrumb.js +11 -326
  234. package/test-env/components/breadcrumbs/breadcrumb.styles.js +5 -29
  235. package/test-env/components/breadcrumbs/breadcrumbs.js +3 -3
  236. package/test-env/components/breadcrumbs/types.js +5 -0
  237. package/test-env/components/button/button_group/button_group.js +16 -2
  238. package/test-env/components/button/button_group/button_group.styles.js +1 -1
  239. package/test-env/components/button/button_group/button_group_button.js +56 -5
  240. package/test-env/components/button/button_group/button_group_button.styles.js +45 -11
  241. package/test-env/components/datagrid/body/cell/data_grid_cell.js +95 -57
  242. package/test-env/components/datagrid/body/cell/data_grid_cell_actions.js +24 -18
  243. package/test-env/components/datagrid/body/cell/data_grid_cell_popover.js +63 -55
  244. package/test-env/components/datagrid/body/cell/data_grid_cell_wrapper.js +32 -31
  245. package/test-env/components/datagrid/body/cell/index.js +2 -2
  246. package/test-env/components/datagrid/body/data_grid_body.js +13 -0
  247. package/test-env/components/datagrid/body/data_grid_body_custom.js +51 -35
  248. package/test-env/components/datagrid/body/data_grid_body_virtualized.js +83 -55
  249. package/test-env/components/datagrid/body/data_grid_row_manager.js +5 -3
  250. package/test-env/components/datagrid/body/footer/use_data_grid_footer.js +1 -2
  251. package/test-env/components/datagrid/body/header/data_grid_control_header_cell.js +8 -4
  252. package/test-env/components/datagrid/body/header/data_grid_header_cell.js +72 -52
  253. package/test-env/components/datagrid/body/header/data_grid_header_row.js +14 -550
  254. package/test-env/components/datagrid/body/header/use_data_grid_header.js +7 -6
  255. package/test-env/components/datagrid/controls/column_selector.js +126 -123
  256. package/test-env/components/datagrid/controls/column_sorting.js +607 -106
  257. package/test-env/components/datagrid/controls/column_sorting_draggable.js +27 -22
  258. package/test-env/components/datagrid/controls/display_selector.js +109 -107
  259. package/test-env/components/datagrid/data_grid.a11y.js +13 -12
  260. package/test-env/components/datagrid/data_grid.js +43 -20
  261. package/test-env/components/datagrid/utils/col_widths.js +9 -5
  262. package/test-env/components/datagrid/utils/focus.js +10 -8
  263. package/test-env/components/datagrid/utils/grid_height_width.js +29 -28
  264. package/test-env/components/datagrid/utils/ref.js +1 -1
  265. package/test-env/components/datagrid/utils/row_heights.js +1 -1
  266. package/test-env/components/datagrid/utils/sorting.js +31 -29
  267. package/test-env/components/date_picker/super_date_picker/super_date_picker.js +9 -0
  268. package/test-env/components/date_picker/super_date_picker/super_update_button.js +57 -29
  269. package/test-env/components/flex/flex_grid.js +21 -7
  270. package/test-env/components/flex/flex_grid.styles.js +13 -6
  271. package/test-env/components/flex/flex_group.js +10 -10
  272. package/test-env/components/flex/flex_item.js +13 -13
  273. package/test-env/components/flex/flex_item.styles.js +107 -122
  274. package/test-env/components/header/header_breadcrumbs/header_breadcrumbs.js +3 -5
  275. package/test-env/components/modal/confirm_modal.js +2 -1
  276. package/test-env/components/modal/modal.js +12 -3
  277. package/test-env/components/spacer/spacer.js +1 -2
  278. package/test-env/components/toast/global_toast_list.js +68 -71
  279. package/test-env/components/toast/toast.js +25 -40
  280. package/test-env/components/toast/toast.styles.js +11 -25
  281. package/test-env/services/color/eui_palettes.js +24 -14
  282. package/test-env/services/color/index.js +14 -0
  283. package/test-env/services/hooks/index.js +11 -0
  284. package/test-env/services/hooks/useDeepEqual.js +30 -0
  285. package/test-env/services/index.js +15 -1
  286. package/src/themes/charts/theme.scss +0 -5
package/i18ntokens.json CHANGED
@@ -275,17 +275,17 @@
275
275
  "highlighting": "string",
276
276
  "loc": {
277
277
  "start": {
278
- "line": 157,
279
- "column": 27,
280
- "index": 4839
278
+ "line": 167,
279
+ "column": 29,
280
+ "index": 4882
281
281
  },
282
282
  "end": {
283
- "line": 160,
284
- "column": 3,
285
- "index": 4949
283
+ "line": 173,
284
+ "column": 5,
285
+ "index": 5215
286
286
  }
287
287
  },
288
- "filepath": "src/components/breadcrumbs/breadcrumb.tsx"
288
+ "filepath": "src/components/breadcrumbs/_breadcrumb_content.tsx"
289
289
  },
290
290
  {
291
291
  "token": "euiBreadcrumb.collapsedBadge.ariaLabel",
@@ -293,14 +293,14 @@
293
293
  "highlighting": "string",
294
294
  "loc": {
295
295
  "start": {
296
- "line": 238,
296
+ "line": 56,
297
297
  "column": 20,
298
- "index": 7303
298
+ "index": 1691
299
299
  },
300
300
  "end": {
301
- "line": 241,
301
+ "line": 59,
302
302
  "column": 3,
303
- "index": 7396
303
+ "index": 1784
304
304
  }
305
305
  },
306
306
  "filepath": "src/components/breadcrumbs/breadcrumb.tsx"
@@ -311,14 +311,14 @@
311
311
  "highlighting": "string",
312
312
  "loc": {
313
313
  "start": {
314
- "line": 96,
314
+ "line": 42,
315
315
  "column": 20,
316
- "index": 2734
316
+ "index": 1274
317
317
  },
318
318
  "end": {
319
- "line": 96,
319
+ "line": 42,
320
320
  "column": 77,
321
- "index": 2791
321
+ "index": 1331
322
322
  }
323
323
  },
324
324
  "filepath": "src/components/breadcrumbs/breadcrumbs.tsx"
@@ -923,14 +923,14 @@
923
923
  "highlighting": "string",
924
924
  "loc": {
925
925
  "start": {
926
- "line": 41,
927
- "column": 4,
928
- "index": 1369
926
+ "line": 44,
927
+ "column": 6,
928
+ "index": 1456
929
929
  },
930
930
  "end": {
931
- "line": 45,
932
- "column": 5,
933
- "index": 1524
931
+ "line": 48,
932
+ "column": 7,
933
+ "index": 1619
934
934
  }
935
935
  },
936
936
  "filepath": "src/components/datagrid/body/cell/data_grid_cell_actions.tsx"
@@ -941,14 +941,14 @@
941
941
  "highlighting": "string",
942
942
  "loc": {
943
943
  "start": {
944
- "line": 121,
945
- "column": 10,
946
- "index": 3572
947
- },
948
- "end": {
949
- "line": 129,
944
+ "line": 130,
950
945
  "column": 12,
951
946
  "index": 3863
947
+ },
948
+ "end": {
949
+ "line": 138,
950
+ "column": 14,
951
+ "index": 4170
952
952
  }
953
953
  },
954
954
  "filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
@@ -959,14 +959,14 @@
959
959
  "highlighting": "string",
960
960
  "loc": {
961
961
  "start": {
962
- "line": 133,
963
- "column": 14,
964
- "index": 3942
962
+ "line": 142,
963
+ "column": 16,
964
+ "index": 4261
965
965
  },
966
966
  "end": {
967
- "line": 136,
968
- "column": 16,
969
- "index": 4095
967
+ "line": 145,
968
+ "column": 18,
969
+ "index": 4420
970
970
  }
971
971
  },
972
972
  "filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
@@ -1085,14 +1085,14 @@
1085
1085
  "highlighting": "string",
1086
1086
  "loc": {
1087
1087
  "start": {
1088
- "line": 197,
1089
- "column": 12,
1090
- "index": 6252
1088
+ "line": 225,
1089
+ "column": 16,
1090
+ "index": 7475
1091
1091
  },
1092
1092
  "end": {
1093
- "line": 200,
1094
- "column": 14,
1095
- "index": 6393
1093
+ "line": 228,
1094
+ "column": 18,
1095
+ "index": 7628
1096
1096
  }
1097
1097
  },
1098
1098
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1103,14 +1103,14 @@
1103
1103
  "highlighting": "string",
1104
1104
  "loc": {
1105
1105
  "start": {
1106
- "line": 264,
1106
+ "line": 296,
1107
1107
  "column": 16,
1108
- "index": 8238
1108
+ "index": 9645
1109
1109
  },
1110
1110
  "end": {
1111
- "line": 268,
1111
+ "line": 300,
1112
1112
  "column": 18,
1113
- "index": 8412
1113
+ "index": 9819
1114
1114
  }
1115
1115
  },
1116
1116
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1121,14 +1121,14 @@
1121
1121
  "highlighting": "string",
1122
1122
  "loc": {
1123
1123
  "start": {
1124
- "line": 272,
1124
+ "line": 304,
1125
1125
  "column": 16,
1126
- "index": 8490
1126
+ "index": 9897
1127
1127
  },
1128
1128
  "end": {
1129
- "line": 276,
1129
+ "line": 308,
1130
1130
  "column": 18,
1131
- "index": 8666
1131
+ "index": 10073
1132
1132
  }
1133
1133
  },
1134
1134
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1139,14 +1139,14 @@
1139
1139
  "highlighting": "string",
1140
1140
  "loc": {
1141
1141
  "start": {
1142
- "line": 282,
1142
+ "line": 314,
1143
1143
  "column": 16,
1144
- "index": 8812
1144
+ "index": 10219
1145
1145
  },
1146
1146
  "end": {
1147
- "line": 287,
1147
+ "line": 319,
1148
1148
  "column": 18,
1149
- "index": 9040
1149
+ "index": 10447
1150
1150
  }
1151
1151
  },
1152
1152
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1157,14 +1157,14 @@
1157
1157
  "highlighting": "string",
1158
1158
  "loc": {
1159
1159
  "start": {
1160
- "line": 291,
1160
+ "line": 323,
1161
1161
  "column": 16,
1162
- "index": 9118
1162
+ "index": 10525
1163
1163
  },
1164
1164
  "end": {
1165
- "line": 296,
1165
+ "line": 328,
1166
1166
  "column": 18,
1167
- "index": 9348
1167
+ "index": 10755
1168
1168
  }
1169
1169
  },
1170
1170
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1175,14 +1175,14 @@
1175
1175
  "highlighting": "string",
1176
1176
  "loc": {
1177
1177
  "start": {
1178
- "line": 302,
1178
+ "line": 334,
1179
1179
  "column": 16,
1180
- "index": 9477
1180
+ "index": 10884
1181
1181
  },
1182
1182
  "end": {
1183
- "line": 307,
1183
+ "line": 339,
1184
1184
  "column": 18,
1185
- "index": 9715
1185
+ "index": 11122
1186
1186
  }
1187
1187
  },
1188
1188
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1193,14 +1193,14 @@
1193
1193
  "highlighting": "string",
1194
1194
  "loc": {
1195
1195
  "start": {
1196
- "line": 311,
1196
+ "line": 343,
1197
1197
  "column": 16,
1198
- "index": 9793
1198
+ "index": 11200
1199
1199
  },
1200
1200
  "end": {
1201
- "line": 316,
1201
+ "line": 348,
1202
1202
  "column": 18,
1203
- "index": 10033
1203
+ "index": 11440
1204
1204
  }
1205
1205
  },
1206
1206
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1211,14 +1211,14 @@
1211
1211
  "highlighting": "string",
1212
1212
  "loc": {
1213
1213
  "start": {
1214
- "line": 381,
1214
+ "line": 413,
1215
1215
  "column": 6,
1216
- "index": 11879
1216
+ "index": 13286
1217
1217
  },
1218
1218
  "end": {
1219
- "line": 384,
1219
+ "line": 416,
1220
1220
  "column": 8,
1221
- "index": 12072
1221
+ "index": 13479
1222
1222
  }
1223
1223
  },
1224
1224
  "filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
@@ -1247,14 +1247,14 @@
1247
1247
  "highlighting": "string",
1248
1248
  "loc": {
1249
1249
  "start": {
1250
- "line": 123,
1251
- "column": 4,
1252
- "index": 3663
1250
+ "line": 155,
1251
+ "column": 12,
1252
+ "index": 4781
1253
1253
  },
1254
1254
  "end": {
1255
- "line": 123,
1256
- "column": 66,
1257
- "index": 3725
1255
+ "line": 155,
1256
+ "column": 74,
1257
+ "index": 4843
1258
1258
  }
1259
1259
  },
1260
1260
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1265,14 +1265,14 @@
1265
1265
  "highlighting": "string",
1266
1266
  "loc": {
1267
1267
  "start": {
1268
- "line": 165,
1268
+ "line": 161,
1269
1269
  "column": 12,
1270
- "index": 4996
1270
+ "index": 4973
1271
1271
  },
1272
1272
  "end": {
1273
- "line": 171,
1273
+ "line": 167,
1274
1274
  "column": 13,
1275
- "index": 5208
1275
+ "index": 5185
1276
1276
  }
1277
1277
  },
1278
1278
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1283,14 +1283,14 @@
1283
1283
  "highlighting": "string",
1284
1284
  "loc": {
1285
1285
  "start": {
1286
- "line": 165,
1286
+ "line": 161,
1287
1287
  "column": 12,
1288
- "index": 4996
1288
+ "index": 4973
1289
1289
  },
1290
1290
  "end": {
1291
- "line": 171,
1291
+ "line": 167,
1292
1292
  "column": 13,
1293
- "index": 5208
1293
+ "index": 5185
1294
1294
  }
1295
1295
  },
1296
1296
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1301,14 +1301,14 @@
1301
1301
  "highlighting": "string",
1302
1302
  "loc": {
1303
1303
  "start": {
1304
- "line": 285,
1304
+ "line": 281,
1305
1305
  "column": 18,
1306
- "index": 10055
1306
+ "index": 10032
1307
1307
  },
1308
1308
  "end": {
1309
- "line": 288,
1309
+ "line": 284,
1310
1310
  "column": 20,
1311
- "index": 10179
1311
+ "index": 10156
1312
1312
  }
1313
1313
  },
1314
1314
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1319,14 +1319,14 @@
1319
1319
  "highlighting": "string",
1320
1320
  "loc": {
1321
1321
  "start": {
1322
- "line": 298,
1322
+ "line": 294,
1323
1323
  "column": 18,
1324
- "index": 10539
1324
+ "index": 10516
1325
1325
  },
1326
1326
  "end": {
1327
- "line": 301,
1327
+ "line": 297,
1328
1328
  "column": 20,
1329
- "index": 10661
1329
+ "index": 10638
1330
1330
  }
1331
1331
  },
1332
1332
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -1339,12 +1339,12 @@
1339
1339
  "start": {
1340
1340
  "line": 24,
1341
1341
  "column": 2,
1342
- "index": 1020
1342
+ "index": 1033
1343
1343
  },
1344
1344
  "end": {
1345
1345
  "line": 24,
1346
1346
  "column": 76,
1347
- "index": 1094
1347
+ "index": 1107
1348
1348
  }
1349
1349
  },
1350
1350
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1357,12 +1357,12 @@
1357
1357
  "start": {
1358
1358
  "line": 27,
1359
1359
  "column": 2,
1360
- "index": 1138
1360
+ "index": 1151
1361
1361
  },
1362
1362
  "end": {
1363
1363
  "line": 27,
1364
1364
  "column": 77,
1365
- "index": 1213
1365
+ "index": 1226
1366
1366
  }
1367
1367
  },
1368
1368
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1375,12 +1375,12 @@
1375
1375
  "start": {
1376
1376
  "line": 68,
1377
1377
  "column": 30,
1378
- "index": 2177
1378
+ "index": 2190
1379
1379
  },
1380
1380
  "end": {
1381
1381
  "line": 71,
1382
1382
  "column": 3,
1383
- "index": 2263
1383
+ "index": 2276
1384
1384
  }
1385
1385
  },
1386
1386
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1391,14 +1391,14 @@
1391
1391
  "highlighting": "string",
1392
1392
  "loc": {
1393
1393
  "start": {
1394
- "line": 89,
1394
+ "line": 109,
1395
1395
  "column": 14,
1396
- "index": 2684
1396
+ "index": 3319
1397
1397
  },
1398
1398
  "end": {
1399
- "line": 93,
1399
+ "line": 113,
1400
1400
  "column": 15,
1401
- "index": 2873
1401
+ "index": 3508
1402
1402
  }
1403
1403
  },
1404
1404
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1409,14 +1409,14 @@
1409
1409
  "highlighting": "string",
1410
1410
  "loc": {
1411
1411
  "start": {
1412
- "line": 105,
1412
+ "line": 125,
1413
1413
  "column": 14,
1414
- "index": 3265
1414
+ "index": 3900
1415
1415
  },
1416
1416
  "end": {
1417
- "line": 109,
1417
+ "line": 129,
1418
1418
  "column": 15,
1419
- "index": 3455
1419
+ "index": 4090
1420
1420
  }
1421
1421
  },
1422
1422
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1427,14 +1427,14 @@
1427
1427
  "highlighting": "string",
1428
1428
  "loc": {
1429
1429
  "start": {
1430
- "line": 161,
1430
+ "line": 174,
1431
1431
  "column": 14,
1432
- "index": 5360
1432
+ "index": 5666
1433
1433
  },
1434
1434
  "end": {
1435
- "line": 165,
1435
+ "line": 178,
1436
1436
  "column": 15,
1437
- "index": 5546
1437
+ "index": 5852
1438
1438
  }
1439
1439
  },
1440
1440
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
@@ -1445,68 +1445,68 @@
1445
1445
  "highlighting": "string",
1446
1446
  "loc": {
1447
1447
  "start": {
1448
- "line": 61,
1449
- "column": 28,
1450
- "index": 2300
1448
+ "line": 62,
1449
+ "column": 30,
1450
+ "index": 1986
1451
1451
  },
1452
1452
  "end": {
1453
- "line": 64,
1454
- "column": 3,
1455
- "index": 2364
1453
+ "line": 65,
1454
+ "column": 5,
1455
+ "index": 2056
1456
1456
  }
1457
1457
  },
1458
1458
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
1459
1459
  },
1460
1460
  {
1461
- "token": "euiColumnSorting.emptySorting",
1462
- "defString": "Currently no fields are sorted",
1461
+ "token": "euiColumnSorting.sortFieldAriaLabel",
1462
+ "defString": "Sort by: ",
1463
1463
  "highlighting": "string",
1464
1464
  "loc": {
1465
1465
  "start": {
1466
- "line": 168,
1467
- "column": 12,
1468
- "index": 5308
1466
+ "line": 66,
1467
+ "column": 31,
1468
+ "index": 2089
1469
1469
  },
1470
1470
  "end": {
1471
- "line": 171,
1472
- "column": 14,
1473
- "index": 5438
1471
+ "line": 69,
1472
+ "column": 5,
1473
+ "index": 2169
1474
1474
  }
1475
1475
  },
1476
1476
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
1477
1477
  },
1478
1478
  {
1479
- "token": "euiColumnSorting.pickFields",
1480
- "defString": "Pick fields to sort by",
1479
+ "token": "euiColumnSorting.emptySorting",
1480
+ "defString": "Currently no fields are sorted",
1481
1481
  "highlighting": "string",
1482
1482
  "loc": {
1483
1483
  "start": {
1484
- "line": 201,
1485
- "column": 22,
1486
- "index": 6601
1484
+ "line": 215,
1485
+ "column": 14,
1486
+ "index": 6750
1487
1487
  },
1488
1488
  "end": {
1489
- "line": 204,
1490
- "column": 24,
1491
- "index": 6751
1489
+ "line": 218,
1490
+ "column": 16,
1491
+ "index": 6886
1492
1492
  }
1493
1493
  },
1494
1494
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
1495
1495
  },
1496
1496
  {
1497
- "token": "euiColumnSorting.sortFieldAriaLabel",
1498
- "defString": "Sort by: ",
1497
+ "token": "euiColumnSorting.pickFields",
1498
+ "defString": "Pick fields to sort by",
1499
1499
  "highlighting": "string",
1500
1500
  "loc": {
1501
1501
  "start": {
1502
- "line": 208,
1503
- "column": 18,
1504
- "index": 6846
1502
+ "line": 248,
1503
+ "column": 24,
1504
+ "index": 8109
1505
1505
  },
1506
1506
  "end": {
1507
- "line": 211,
1508
- "column": 19,
1509
- "index": 6978
1507
+ "line": 251,
1508
+ "column": 26,
1509
+ "index": 8265
1510
1510
  }
1511
1511
  },
1512
1512
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
@@ -1517,14 +1517,14 @@
1517
1517
  "highlighting": "string",
1518
1518
  "loc": {
1519
1519
  "start": {
1520
- "line": 289,
1521
- "column": 18,
1522
- "index": 10731
1520
+ "line": 321,
1521
+ "column": 20,
1522
+ "index": 11473
1523
1523
  },
1524
1524
  "end": {
1525
- "line": 292,
1526
- "column": 20,
1527
- "index": 10858
1525
+ "line": 324,
1526
+ "column": 22,
1527
+ "index": 11606
1528
1528
  }
1529
1529
  },
1530
1530
  "filepath": "src/components/datagrid/controls/column_sorting.tsx"
@@ -1591,12 +1591,12 @@
1591
1591
  "start": {
1592
1592
  "line": 260,
1593
1593
  "column": 10,
1594
- "index": 8285
1594
+ "index": 8312
1595
1595
  },
1596
1596
  "end": {
1597
1597
  "line": 268,
1598
1598
  "column": 11,
1599
- "index": 8606
1599
+ "index": 8633
1600
1600
  }
1601
1601
  },
1602
1602
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1609,12 +1609,12 @@
1609
1609
  "start": {
1610
1610
  "line": 260,
1611
1611
  "column": 10,
1612
- "index": 8285
1612
+ "index": 8312
1613
1613
  },
1614
1614
  "end": {
1615
1615
  "line": 268,
1616
1616
  "column": 11,
1617
- "index": 8606
1617
+ "index": 8633
1618
1618
  }
1619
1619
  },
1620
1620
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1627,12 +1627,12 @@
1627
1627
  "start": {
1628
1628
  "line": 260,
1629
1629
  "column": 10,
1630
- "index": 8285
1630
+ "index": 8312
1631
1631
  },
1632
1632
  "end": {
1633
1633
  "line": 268,
1634
1634
  "column": 11,
1635
- "index": 8606
1635
+ "index": 8633
1636
1636
  }
1637
1637
  },
1638
1638
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1645,12 +1645,12 @@
1645
1645
  "start": {
1646
1646
  "line": 260,
1647
1647
  "column": 10,
1648
- "index": 8285
1648
+ "index": 8312
1649
1649
  },
1650
1650
  "end": {
1651
1651
  "line": 268,
1652
1652
  "column": 11,
1653
- "index": 8606
1653
+ "index": 8633
1654
1654
  }
1655
1655
  },
1656
1656
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1663,12 +1663,12 @@
1663
1663
  "start": {
1664
1664
  "line": 303,
1665
1665
  "column": 10,
1666
- "index": 9713
1666
+ "index": 9740
1667
1667
  },
1668
1668
  "end": {
1669
1669
  "line": 318,
1670
1670
  "column": 11,
1671
- "index": 10186
1671
+ "index": 10213
1672
1672
  }
1673
1673
  },
1674
1674
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1681,12 +1681,12 @@
1681
1681
  "start": {
1682
1682
  "line": 303,
1683
1683
  "column": 10,
1684
- "index": 9713
1684
+ "index": 9740
1685
1685
  },
1686
1686
  "end": {
1687
1687
  "line": 318,
1688
1688
  "column": 11,
1689
- "index": 10186
1689
+ "index": 10213
1690
1690
  }
1691
1691
  },
1692
1692
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1699,12 +1699,12 @@
1699
1699
  "start": {
1700
1700
  "line": 303,
1701
1701
  "column": 10,
1702
- "index": 9713
1702
+ "index": 9740
1703
1703
  },
1704
1704
  "end": {
1705
1705
  "line": 318,
1706
1706
  "column": 11,
1707
- "index": 10186
1707
+ "index": 10213
1708
1708
  }
1709
1709
  },
1710
1710
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1717,12 +1717,12 @@
1717
1717
  "start": {
1718
1718
  "line": 303,
1719
1719
  "column": 10,
1720
- "index": 9713
1720
+ "index": 9740
1721
1721
  },
1722
1722
  "end": {
1723
1723
  "line": 318,
1724
1724
  "column": 11,
1725
- "index": 10186
1725
+ "index": 10213
1726
1726
  }
1727
1727
  },
1728
1728
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -1735,12 +1735,12 @@
1735
1735
  "start": {
1736
1736
  "line": 303,
1737
1737
  "column": 10,
1738
- "index": 9713
1738
+ "index": 9740
1739
1739
  },
1740
1740
  "end": {
1741
1741
  "line": 318,
1742
1742
  "column": 11,
1743
- "index": 10186
1743
+ "index": 10213
1744
1744
  }
1745
1745
  },
1746
1746
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
@@ -2273,14 +2273,14 @@
2273
2273
  "highlighting": "string",
2274
2274
  "loc": {
2275
2275
  "start": {
2276
- "line": 343,
2276
+ "line": 375,
2277
2277
  "column": 22,
2278
- "index": 9585
2278
+ "index": 10168
2279
2279
  },
2280
2280
  "end": {
2281
- "line": 347,
2281
+ "line": 379,
2282
2282
  "column": 5,
2283
- "index": 9757
2283
+ "index": 10340
2284
2284
  }
2285
2285
  },
2286
2286
  "filepath": "src/components/datagrid/data_grid.tsx"
@@ -2291,14 +2291,14 @@
2291
2291
  "highlighting": "string",
2292
2292
  "loc": {
2293
2293
  "start": {
2294
- "line": 348,
2294
+ "line": 380,
2295
2295
  "column": 27,
2296
- "index": 9786
2296
+ "index": 10369
2297
2297
  },
2298
2298
  "end": {
2299
- "line": 352,
2299
+ "line": 384,
2300
2300
  "column": 5,
2301
- "index": 9927
2301
+ "index": 10510
2302
2302
  }
2303
2303
  },
2304
2304
  "filepath": "src/components/datagrid/data_grid.tsx"
@@ -2309,14 +2309,14 @@
2309
2309
  "highlighting": "string",
2310
2310
  "loc": {
2311
2311
  "start": {
2312
- "line": 478,
2312
+ "line": 527,
2313
2313
  "column": 18,
2314
- "index": 15428
2314
+ "index": 16306
2315
2315
  },
2316
2316
  "end": {
2317
- "line": 481,
2317
+ "line": 530,
2318
2318
  "column": 20,
2319
- "index": 15581
2319
+ "index": 16459
2320
2320
  }
2321
2321
  },
2322
2322
  "filepath": "src/components/datagrid/data_grid.tsx"
@@ -3762,55 +3762,55 @@
3762
3762
  "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/recently_used.tsx"
3763
3763
  },
3764
3764
  {
3765
- "token": "euiSuperUpdateButton.refreshButtonLabel",
3766
- "defString": "Refresh",
3765
+ "token": "euiSuperUpdateButton.updatingButtonLabel",
3766
+ "defString": "Updating",
3767
3767
  "highlighting": "string",
3768
3768
  "loc": {
3769
3769
  "start": {
3770
- "line": 126,
3771
- "column": 6,
3772
- "index": 3158
3770
+ "line": 204,
3771
+ "column": 8,
3772
+ "index": 5149
3773
3773
  },
3774
3774
  "end": {
3775
- "line": 129,
3776
- "column": 8,
3777
- "index": 3257
3775
+ "line": 207,
3776
+ "column": 10,
3777
+ "index": 5256
3778
3778
  }
3779
3779
  },
3780
3780
  "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3781
3781
  },
3782
3782
  {
3783
- "token": "euiSuperUpdateButton.updatingButtonLabel",
3784
- "defString": "Updating",
3783
+ "token": "euiSuperUpdateButton.updateButtonLabel",
3784
+ "defString": "Update",
3785
3785
  "highlighting": "string",
3786
3786
  "loc": {
3787
3787
  "start": {
3788
- "line": 133,
3788
+ "line": 213,
3789
3789
  "column": 8,
3790
- "index": 3342
3790
+ "index": 5319
3791
3791
  },
3792
3792
  "end": {
3793
- "line": 136,
3793
+ "line": 216,
3794
3794
  "column": 10,
3795
- "index": 3449
3795
+ "index": 5422
3796
3796
  }
3797
3797
  },
3798
3798
  "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3799
3799
  },
3800
3800
  {
3801
- "token": "euiSuperUpdateButton.updateButtonLabel",
3802
- "defString": "Update",
3801
+ "token": "euiSuperUpdateButton.refreshButtonLabel",
3802
+ "defString": "Refresh",
3803
3803
  "highlighting": "string",
3804
3804
  "loc": {
3805
3805
  "start": {
3806
- "line": 138,
3807
- "column": 8,
3808
- "index": 3470
3806
+ "line": 221,
3807
+ "column": 6,
3808
+ "index": 5458
3809
3809
  },
3810
3810
  "end": {
3811
- "line": 141,
3812
- "column": 10,
3813
- "index": 3573
3811
+ "line": 224,
3812
+ "column": 8,
3813
+ "index": 5557
3814
3814
  }
3815
3815
  },
3816
3816
  "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
@@ -3821,14 +3821,14 @@
3821
3821
  "highlighting": "string",
3822
3822
  "loc": {
3823
3823
  "start": {
3824
- "line": 148,
3824
+ "line": 231,
3825
3825
  "column": 8,
3826
- "index": 3669
3826
+ "index": 5672
3827
3827
  },
3828
3828
  "end": {
3829
- "line": 151,
3829
+ "line": 234,
3830
3830
  "column": 10,
3831
- "index": 3781
3831
+ "index": 5784
3832
3832
  }
3833
3833
  },
3834
3834
  "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
@@ -3839,14 +3839,14 @@
3839
3839
  "highlighting": "string",
3840
3840
  "loc": {
3841
3841
  "start": {
3842
- "line": 155,
3842
+ "line": 240,
3843
3843
  "column": 8,
3844
- "index": 3868
3844
+ "index": 5883
3845
3845
  },
3846
3846
  "end": {
3847
- "line": 158,
3847
+ "line": 243,
3848
3848
  "column": 10,
3849
- "index": 3981
3849
+ "index": 5996
3850
3850
  }
3851
3851
  },
3852
3852
  "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
@@ -4595,14 +4595,14 @@
4595
4595
  "highlighting": "string",
4596
4596
  "loc": {
4597
4597
  "start": {
4598
- "line": 311,
4598
+ "line": 308,
4599
4599
  "column": 8,
4600
- "index": 9897
4600
+ "index": 9762
4601
4601
  },
4602
4602
  "end": {
4603
- "line": 311,
4603
+ "line": 308,
4604
4604
  "column": 78,
4605
- "index": 9967
4605
+ "index": 9832
4606
4606
  }
4607
4607
  },
4608
4608
  "filepath": "src/components/flyout/flyout.tsx"
@@ -4613,14 +4613,14 @@
4613
4613
  "highlighting": "string",
4614
4614
  "loc": {
4615
4615
  "start": {
4616
- "line": 385,
4616
+ "line": 382,
4617
4617
  "column": 12,
4618
- "index": 12453
4618
+ "index": 12318
4619
4619
  },
4620
4620
  "end": {
4621
- "line": 388,
4621
+ "line": 385,
4622
4622
  "column": 14,
4623
- "index": 12662
4623
+ "index": 12527
4624
4624
  }
4625
4625
  },
4626
4626
  "filepath": "src/components/flyout/flyout.tsx"
@@ -4631,14 +4631,14 @@
4631
4631
  "highlighting": "string",
4632
4632
  "loc": {
4633
4633
  "start": {
4634
- "line": 390,
4634
+ "line": 387,
4635
4635
  "column": 12,
4636
- "index": 12691
4636
+ "index": 12556
4637
4637
  },
4638
4638
  "end": {
4639
- "line": 393,
4639
+ "line": 390,
4640
4640
  "column": 14,
4641
- "index": 12863
4641
+ "index": 12728
4642
4642
  }
4643
4643
  },
4644
4644
  "filepath": "src/components/flyout/flyout.tsx"
@@ -4649,14 +4649,14 @@
4649
4649
  "highlighting": "string",
4650
4650
  "loc": {
4651
4651
  "start": {
4652
- "line": 396,
4652
+ "line": 393,
4653
4653
  "column": 12,
4654
- "index": 12934
4654
+ "index": 12799
4655
4655
  },
4656
4656
  "end": {
4657
- "line": 399,
4657
+ "line": 396,
4658
4658
  "column": 14,
4659
- "index": 13121
4659
+ "index": 12986
4660
4660
  }
4661
4661
  },
4662
4662
  "filepath": "src/components/flyout/flyout.tsx"
@@ -5459,14 +5459,14 @@
5459
5459
  "highlighting": "string",
5460
5460
  "loc": {
5461
5461
  "start": {
5462
- "line": 93,
5462
+ "line": 101,
5463
5463
  "column": 10,
5464
- "index": 2736
5464
+ "index": 3007
5465
5465
  },
5466
5466
  "end": {
5467
- "line": 96,
5467
+ "line": 104,
5468
5468
  "column": 11,
5469
- "index": 2843
5469
+ "index": 3114
5470
5470
  }
5471
5471
  },
5472
5472
  "filepath": "src/components/modal/modal.tsx"
@@ -6701,14 +6701,14 @@
6701
6701
  "highlighting": "string",
6702
6702
  "loc": {
6703
6703
  "start": {
6704
- "line": 325,
6705
- "column": 6,
6706
- "index": 10877
6704
+ "line": 322,
6705
+ "column": 8,
6706
+ "index": 10937
6707
6707
  },
6708
6708
  "end": {
6709
- "line": 332,
6710
- "column": 7,
6711
- "index": 11146
6709
+ "line": 329,
6710
+ "column": 9,
6711
+ "index": 11220
6712
6712
  }
6713
6713
  },
6714
6714
  "filepath": "src/components/toast/global_toast_list.tsx"
@@ -6719,68 +6719,68 @@
6719
6719
  "highlighting": "string",
6720
6720
  "loc": {
6721
6721
  "start": {
6722
- "line": 325,
6723
- "column": 6,
6724
- "index": 10877
6722
+ "line": 322,
6723
+ "column": 8,
6724
+ "index": 10937
6725
6725
  },
6726
6726
  "end": {
6727
- "line": 332,
6728
- "column": 7,
6729
- "index": 11146
6727
+ "line": 329,
6728
+ "column": 9,
6729
+ "index": 11220
6730
6730
  }
6731
6731
  },
6732
6732
  "filepath": "src/components/toast/global_toast_list.tsx"
6733
6733
  },
6734
6734
  {
6735
- "token": "euiToast.dismissToast",
6736
- "defString": "Dismiss toast",
6735
+ "token": "euiToast.newNotification",
6736
+ "defString": "A new notification appears",
6737
6737
  "highlighting": "string",
6738
6738
  "loc": {
6739
6739
  "start": {
6740
- "line": 82,
6741
- "column": 6,
6742
- "index": 2046
6740
+ "line": 59,
6741
+ "column": 10,
6742
+ "index": 1823
6743
6743
  },
6744
6744
  "end": {
6745
- "line": 82,
6746
- "column": 69,
6747
- "index": 2109
6745
+ "line": 62,
6746
+ "column": 12,
6747
+ "index": 1938
6748
6748
  }
6749
6749
  },
6750
6750
  "filepath": "src/components/toast/toast.tsx"
6751
6751
  },
6752
6752
  {
6753
- "token": "euiToast.newNotification",
6754
- "defString": "A new notification appears",
6753
+ "token": "euiToast.notification",
6754
+ "defString": "Notification",
6755
6755
  "highlighting": "string",
6756
6756
  "loc": {
6757
6757
  "start": {
6758
- "line": 116,
6759
- "column": 10,
6760
- "index": 2805
6758
+ "line": 67,
6759
+ "column": 6,
6760
+ "index": 2009
6761
6761
  },
6762
6762
  "end": {
6763
- "line": 119,
6764
- "column": 12,
6765
- "index": 2920
6763
+ "line": 67,
6764
+ "column": 68,
6765
+ "index": 2071
6766
6766
  }
6767
6767
  },
6768
6768
  "filepath": "src/components/toast/toast.tsx"
6769
6769
  },
6770
6770
  {
6771
- "token": "euiToast.notification",
6772
- "defString": "Notification",
6771
+ "token": "euiToast.dismissToast",
6772
+ "defString": "Dismiss toast",
6773
6773
  "highlighting": "string",
6774
6774
  "loc": {
6775
6775
  "start": {
6776
- "line": 123,
6777
- "column": 6,
6778
- "index": 2970
6776
+ "line": 95,
6777
+ "column": 8,
6778
+ "index": 2760
6779
6779
  },
6780
6780
  "end": {
6781
- "line": 123,
6782
- "column": 68,
6783
- "index": 3032
6781
+ "line": 95,
6782
+ "column": 71,
6783
+ "index": 2823
6784
6784
  }
6785
6785
  },
6786
6786
  "filepath": "src/components/toast/toast.tsx"