@elastic/eui 109.0.0 → 109.1.0-snapshot.1763390960850

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 (356) hide show
  1. package/es/components/accessibility/skip_link/skip_link.js +10 -1
  2. package/es/components/bottom_bar/bottom_bar.js +12 -2
  3. package/es/components/button/button.js +20 -25
  4. package/es/components/button/button_display/_button_display.js +32 -30
  5. package/es/components/button/button_display/_button_display.styles.js +4 -4
  6. package/es/components/button/button_empty/button_empty.js +32 -14
  7. package/es/components/button/button_group/button_group.js +49 -31
  8. package/es/components/button/button_group/button_group_button.js +14 -2
  9. package/es/components/button/button_group/button_group_button.styles.js +12 -8
  10. package/es/components/button/button_icon/button_icon.js +30 -6
  11. package/es/components/card/card.js +20 -25
  12. package/es/components/card/card_select/card_select.js +20 -25
  13. package/es/components/code/code_block_virtualized.js +9 -7
  14. package/es/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +13 -1
  15. package/es/components/datagrid/body/cell/data_grid_cell.js +35 -12
  16. package/es/components/datagrid/body/data_grid_body.js +23 -6
  17. package/es/components/datagrid/body/data_grid_body_custom.js +23 -6
  18. package/es/components/datagrid/body/data_grid_body_virtualized.js +23 -6
  19. package/es/components/datagrid/body/header/data_grid_header_cell.js +23 -6
  20. package/es/components/datagrid/controls/column_selector.js +36 -19
  21. package/es/components/datagrid/controls/column_sorting.js +23 -6
  22. package/es/components/datagrid/controls/data_grid_toolbar_control.js +13 -7
  23. package/es/components/datagrid/data_grid.js +5 -1
  24. package/es/components/datagrid/utils/in_memory.js +25 -7
  25. package/es/components/date_picker/auto_refresh/auto_refresh.js +11 -2
  26. package/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +31 -5
  27. package/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +24 -3
  28. package/es/components/date_picker/super_date_picker/date_popover/date_popover_content.js +26 -4
  29. package/es/components/date_picker/super_date_picker/date_popover/relative_tab.js +29 -3
  30. package/es/components/date_picker/super_date_picker/date_popover/timezone_display.js +98 -0
  31. package/es/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +19 -0
  32. package/es/components/date_picker/super_date_picker/pretty_duration.js +1 -8
  33. package/es/components/date_picker/super_date_picker/relative_utils.js +8 -0
  34. package/es/components/date_picker/super_date_picker/super_date_picker.js +118 -26
  35. package/es/components/date_picker/super_date_picker/time_window_buttons.js +185 -0
  36. package/es/components/facet/facet_button.js +9 -19
  37. package/es/components/filter_group/filter_button.js +14 -1
  38. package/es/components/flyout/flyout.js +27 -10
  39. package/es/components/form/form_control_button/form_control_button.js +13 -7
  40. package/es/components/header/header_links/header_link.js +13 -7
  41. package/es/components/header/header_section/header_section_item_button.js +13 -7
  42. package/es/components/icon/assets/boxes_vertical.js +1 -1
  43. package/es/components/icon/assets/checkInCircleFilled.js +1 -2
  44. package/es/components/icon/assets/errorFilled.js +1 -2
  45. package/es/components/icon/assets/warningFilled.js +1 -2
  46. package/es/components/icon/icon_map.js +3 -6
  47. package/es/components/list_group/list_group.js +13 -1
  48. package/es/components/list_group/list_group_item.js +13 -1
  49. package/es/components/list_group/list_group_item_extra_action.js +13 -1
  50. package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +15 -2
  51. package/es/components/overlay_mask/overlay_mask.styles.js +1 -1
  52. package/es/components/pagination/pagination_button.js +13 -7
  53. package/es/components/popover/popover.js +22 -16
  54. package/es/components/provider/component_defaults/component_defaults.js +22 -2
  55. package/es/components/table/table_row.styles.js +1 -1
  56. package/es/components/tool_tip/tool_tip.js +24 -24
  57. package/es/global_styling/index.js +2 -1
  58. package/es/global_styling/mixins/_button.js +1 -1
  59. package/es/global_styling/utility/selectors.js +9 -0
  60. package/es/services/focus_trap/focus_trap_pub_sub.js +74 -0
  61. package/es/services/focus_trap/index.js +9 -0
  62. package/es/services/hooks/index.js +2 -1
  63. package/es/services/hooks/useEuiDisabledElement.js +195 -0
  64. package/es/services/index.js +1 -0
  65. package/es/services/popover/reposition_on_scroll.js +61 -0
  66. package/es/test/cypress/index.d.ts +12 -0
  67. package/es/test/cypress/index.js +9 -0
  68. package/es/test/cypress/matchers.d.ts +20 -0
  69. package/es/test/cypress/matchers.js +54 -0
  70. package/es/test/cypress/test_reposition_on_scroll.js +66 -0
  71. package/es/test/enzyme/enzyme_matchers.d.ts +36 -0
  72. package/es/test/enzyme/enzyme_matchers.js +43 -0
  73. package/es/test/enzyme/index.d.ts +14 -0
  74. package/es/test/enzyme/index.js +10 -0
  75. package/es/test/rtl/index.d.ts +9 -1
  76. package/es/test/rtl/index.js +2 -1
  77. package/es/test/rtl/matchers.d.ts +36 -0
  78. package/es/test/rtl/matchers.js +82 -0
  79. package/es/utils/element_can_be_disabled.js +16 -0
  80. package/es/utils/index.js +2 -1
  81. package/eui.d.ts +588 -180
  82. package/i18ntokens.json +1357 -1231
  83. package/lib/components/accessibility/skip_link/skip_link.js +10 -1
  84. package/lib/components/bottom_bar/bottom_bar.js +11 -1
  85. package/lib/components/button/button.js +21 -26
  86. package/lib/components/button/button_display/_button_display.js +31 -29
  87. package/lib/components/button/button_display/_button_display.styles.js +4 -4
  88. package/lib/components/button/button_empty/button_empty.js +31 -13
  89. package/lib/components/button/button_group/button_group.js +49 -31
  90. package/lib/components/button/button_group/button_group_button.js +14 -2
  91. package/lib/components/button/button_group/button_group_button.styles.js +10 -6
  92. package/lib/components/button/button_icon/button_icon.js +29 -5
  93. package/lib/components/card/card.js +21 -26
  94. package/lib/components/card/card_select/card_select.js +21 -26
  95. package/lib/components/code/code_block_virtualized.js +9 -7
  96. package/lib/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +13 -1
  97. package/lib/components/datagrid/body/cell/data_grid_cell.js +35 -12
  98. package/lib/components/datagrid/body/data_grid_body.js +23 -6
  99. package/lib/components/datagrid/body/data_grid_body_custom.js +23 -6
  100. package/lib/components/datagrid/body/data_grid_body_virtualized.js +23 -6
  101. package/lib/components/datagrid/body/header/data_grid_header_cell.js +23 -6
  102. package/lib/components/datagrid/controls/column_selector.js +36 -19
  103. package/lib/components/datagrid/controls/column_sorting.js +23 -6
  104. package/lib/components/datagrid/controls/data_grid_toolbar_control.js +13 -7
  105. package/lib/components/datagrid/data_grid.js +5 -1
  106. package/lib/components/datagrid/utils/in_memory.js +25 -7
  107. package/lib/components/date_picker/auto_refresh/auto_refresh.js +12 -3
  108. package/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +30 -4
  109. package/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +24 -3
  110. package/lib/components/date_picker/super_date_picker/date_popover/date_popover_content.js +26 -4
  111. package/lib/components/date_picker/super_date_picker/date_popover/relative_tab.js +29 -3
  112. package/lib/components/date_picker/super_date_picker/date_popover/timezone_display.js +104 -0
  113. package/lib/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +25 -0
  114. package/lib/components/date_picker/super_date_picker/pretty_duration.js +2 -9
  115. package/lib/components/date_picker/super_date_picker/relative_utils.js +9 -0
  116. package/lib/components/date_picker/super_date_picker/super_date_picker.js +118 -26
  117. package/lib/components/date_picker/super_date_picker/time_window_buttons.js +193 -0
  118. package/lib/components/facet/facet_button.js +9 -19
  119. package/lib/components/filter_group/filter_button.js +14 -1
  120. package/lib/components/flyout/flyout.js +26 -9
  121. package/lib/components/form/form_control_button/form_control_button.js +13 -7
  122. package/lib/components/header/header_links/header_link.js +13 -7
  123. package/lib/components/header/header_section/header_section_item_button.js +13 -7
  124. package/lib/components/icon/assets/boxes_vertical.js +1 -1
  125. package/lib/components/icon/assets/checkInCircleFilled.js +1 -2
  126. package/lib/components/icon/assets/errorFilled.js +1 -2
  127. package/lib/components/icon/assets/warningFilled.js +1 -2
  128. package/lib/components/icon/icon_map.js +3 -6
  129. package/lib/components/icon/svgs/boxes_vertical.svg +1 -1
  130. package/lib/components/icon/svgs/checkInCircleFilled.svg +1 -1
  131. package/lib/components/icon/svgs/errorFilled.svg +1 -1
  132. package/lib/components/icon/svgs/warningFilled.svg +1 -1
  133. package/lib/components/list_group/list_group.js +13 -1
  134. package/lib/components/list_group/list_group_item.js +13 -1
  135. package/lib/components/list_group/list_group_item_extra_action.js +13 -1
  136. package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +15 -2
  137. package/lib/components/overlay_mask/overlay_mask.styles.js +1 -1
  138. package/lib/components/pagination/pagination_button.js +13 -7
  139. package/lib/components/popover/popover.js +21 -15
  140. package/lib/components/provider/component_defaults/component_defaults.js +22 -2
  141. package/lib/components/table/table_row.styles.js +1 -1
  142. package/lib/components/tool_tip/tool_tip.js +24 -24
  143. package/lib/global_styling/index.js +16 -1
  144. package/lib/global_styling/mixins/_button.js +1 -1
  145. package/lib/global_styling/utility/selectors.js +15 -0
  146. package/lib/services/focus_trap/focus_trap_pub_sub.js +80 -0
  147. package/lib/services/focus_trap/index.js +12 -0
  148. package/lib/services/hooks/index.js +18 -1
  149. package/lib/services/hooks/useEuiDisabledElement.js +199 -0
  150. package/lib/services/index.js +8 -0
  151. package/lib/services/popover/reposition_on_scroll.js +67 -0
  152. package/lib/test/cypress/index.d.ts +12 -0
  153. package/lib/test/cypress/index.js +18 -0
  154. package/lib/test/cypress/matchers.d.ts +20 -0
  155. package/lib/test/cypress/matchers.js +61 -0
  156. package/lib/test/cypress/test_reposition_on_scroll.js +69 -0
  157. package/lib/test/enzyme/enzyme_matchers.d.ts +36 -0
  158. package/lib/test/enzyme/enzyme_matchers.js +49 -0
  159. package/lib/test/enzyme/index.d.ts +14 -0
  160. package/lib/test/enzyme/index.js +24 -0
  161. package/lib/test/rtl/index.d.ts +9 -1
  162. package/lib/test/rtl/index.js +24 -2
  163. package/lib/test/rtl/matchers.d.ts +36 -0
  164. package/lib/test/rtl/matchers.js +86 -0
  165. package/lib/utils/element_can_be_disabled.js +22 -0
  166. package/lib/utils/index.js +14 -1
  167. package/optimize/es/components/bottom_bar/bottom_bar.js +12 -2
  168. package/optimize/es/components/button/button_display/_button_display.js +24 -12
  169. package/optimize/es/components/button/button_display/_button_display.styles.js +4 -4
  170. package/optimize/es/components/button/button_empty/button_empty.js +18 -6
  171. package/optimize/es/components/button/button_group/button_group.js +10 -5
  172. package/optimize/es/components/button/button_group/button_group_button.js +1 -1
  173. package/optimize/es/components/button/button_group/button_group_button.styles.js +12 -8
  174. package/optimize/es/components/button/button_icon/button_icon.js +17 -5
  175. package/optimize/es/components/code/code_block_virtualized.js +9 -7
  176. package/optimize/es/components/datagrid/controls/column_selector.js +36 -19
  177. package/optimize/es/components/datagrid/data_grid.js +5 -1
  178. package/optimize/es/components/datagrid/utils/in_memory.js +2 -1
  179. package/optimize/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +12 -4
  180. package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +5 -2
  181. package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_content.js +7 -3
  182. package/optimize/es/components/date_picker/super_date_picker/date_popover/relative_tab.js +10 -2
  183. package/optimize/es/components/date_picker/super_date_picker/date_popover/timezone_display.js +97 -0
  184. package/optimize/es/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +19 -0
  185. package/optimize/es/components/date_picker/super_date_picker/pretty_duration.js +1 -8
  186. package/optimize/es/components/date_picker/super_date_picker/relative_utils.js +8 -0
  187. package/optimize/es/components/date_picker/super_date_picker/super_date_picker.js +49 -25
  188. package/optimize/es/components/date_picker/super_date_picker/time_window_buttons.js +185 -0
  189. package/optimize/es/components/flyout/flyout.js +27 -10
  190. package/optimize/es/components/icon/assets/boxes_vertical.js +1 -1
  191. package/optimize/es/components/icon/assets/checkInCircleFilled.js +1 -2
  192. package/optimize/es/components/icon/assets/errorFilled.js +1 -2
  193. package/optimize/es/components/icon/assets/warningFilled.js +1 -2
  194. package/optimize/es/components/icon/icon_map.js +3 -6
  195. package/optimize/es/components/overlay_mask/overlay_mask.styles.js +1 -1
  196. package/optimize/es/components/popover/popover.js +22 -16
  197. package/optimize/es/components/table/table_row.styles.js +1 -1
  198. package/optimize/es/components/tool_tip/tool_tip.js +24 -24
  199. package/optimize/es/global_styling/index.js +2 -1
  200. package/optimize/es/global_styling/mixins/_button.js +1 -1
  201. package/optimize/es/global_styling/utility/selectors.js +9 -0
  202. package/optimize/es/services/focus_trap/focus_trap_pub_sub.js +74 -0
  203. package/optimize/es/services/focus_trap/index.js +9 -0
  204. package/optimize/es/services/hooks/index.js +2 -1
  205. package/optimize/es/services/hooks/useEuiDisabledElement.js +192 -0
  206. package/optimize/es/services/index.js +1 -0
  207. package/optimize/es/services/popover/reposition_on_scroll.js +61 -0
  208. package/optimize/es/test/cypress/index.d.ts +12 -0
  209. package/optimize/es/test/cypress/index.js +9 -0
  210. package/optimize/es/test/cypress/matchers.d.ts +20 -0
  211. package/optimize/es/test/cypress/matchers.js +54 -0
  212. package/optimize/es/test/cypress/test_reposition_on_scroll.js +63 -0
  213. package/optimize/es/test/enzyme/enzyme_matchers.d.ts +36 -0
  214. package/optimize/es/test/enzyme/enzyme_matchers.js +43 -0
  215. package/optimize/es/test/enzyme/index.d.ts +14 -0
  216. package/optimize/es/test/enzyme/index.js +10 -0
  217. package/optimize/es/test/rtl/index.d.ts +9 -1
  218. package/optimize/es/test/rtl/index.js +2 -1
  219. package/optimize/es/test/rtl/matchers.d.ts +36 -0
  220. package/optimize/es/test/rtl/matchers.js +82 -0
  221. package/optimize/es/utils/element_can_be_disabled.js +16 -0
  222. package/optimize/es/utils/index.js +2 -1
  223. package/optimize/lib/components/bottom_bar/bottom_bar.js +11 -1
  224. package/optimize/lib/components/button/button_display/_button_display.js +23 -11
  225. package/optimize/lib/components/button/button_display/_button_display.styles.js +4 -4
  226. package/optimize/lib/components/button/button_empty/button_empty.js +17 -5
  227. package/optimize/lib/components/button/button_group/button_group.js +10 -5
  228. package/optimize/lib/components/button/button_group/button_group_button.js +1 -1
  229. package/optimize/lib/components/button/button_group/button_group_button.styles.js +10 -6
  230. package/optimize/lib/components/button/button_icon/button_icon.js +16 -4
  231. package/optimize/lib/components/code/code_block_virtualized.js +9 -7
  232. package/optimize/lib/components/datagrid/controls/column_selector.js +36 -19
  233. package/optimize/lib/components/datagrid/data_grid.js +5 -1
  234. package/optimize/lib/components/datagrid/utils/in_memory.js +2 -1
  235. package/optimize/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +11 -3
  236. package/optimize/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +5 -2
  237. package/optimize/lib/components/date_picker/super_date_picker/date_popover/date_popover_content.js +7 -3
  238. package/optimize/lib/components/date_picker/super_date_picker/date_popover/relative_tab.js +10 -2
  239. package/optimize/lib/components/date_picker/super_date_picker/date_popover/timezone_display.js +103 -0
  240. package/optimize/lib/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +25 -0
  241. package/optimize/lib/components/date_picker/super_date_picker/pretty_duration.js +2 -9
  242. package/optimize/lib/components/date_picker/super_date_picker/relative_utils.js +9 -0
  243. package/optimize/lib/components/date_picker/super_date_picker/super_date_picker.js +49 -25
  244. package/optimize/lib/components/date_picker/super_date_picker/time_window_buttons.js +193 -0
  245. package/optimize/lib/components/flyout/flyout.js +26 -9
  246. package/optimize/lib/components/icon/assets/boxes_vertical.js +1 -1
  247. package/optimize/lib/components/icon/assets/checkInCircleFilled.js +1 -2
  248. package/optimize/lib/components/icon/assets/errorFilled.js +1 -2
  249. package/optimize/lib/components/icon/assets/warningFilled.js +1 -2
  250. package/optimize/lib/components/icon/icon_map.js +3 -6
  251. package/optimize/lib/components/icon/svgs/boxes_vertical.svg +1 -1
  252. package/optimize/lib/components/icon/svgs/checkInCircleFilled.svg +1 -1
  253. package/optimize/lib/components/icon/svgs/errorFilled.svg +1 -1
  254. package/optimize/lib/components/icon/svgs/warningFilled.svg +1 -1
  255. package/optimize/lib/components/overlay_mask/overlay_mask.styles.js +1 -1
  256. package/optimize/lib/components/popover/popover.js +21 -15
  257. package/optimize/lib/components/table/table_row.styles.js +1 -1
  258. package/optimize/lib/components/tool_tip/tool_tip.js +24 -24
  259. package/optimize/lib/global_styling/index.js +16 -1
  260. package/optimize/lib/global_styling/mixins/_button.js +1 -1
  261. package/optimize/lib/global_styling/utility/selectors.js +15 -0
  262. package/optimize/lib/services/focus_trap/focus_trap_pub_sub.js +80 -0
  263. package/optimize/lib/services/focus_trap/index.js +12 -0
  264. package/optimize/lib/services/hooks/index.js +18 -1
  265. package/optimize/lib/services/hooks/useEuiDisabledElement.js +197 -0
  266. package/optimize/lib/services/index.js +8 -0
  267. package/optimize/lib/services/popover/reposition_on_scroll.js +67 -0
  268. package/optimize/lib/test/cypress/index.d.ts +12 -0
  269. package/optimize/lib/test/cypress/index.js +18 -0
  270. package/optimize/lib/test/cypress/matchers.d.ts +20 -0
  271. package/optimize/lib/test/cypress/matchers.js +61 -0
  272. package/optimize/lib/test/cypress/test_reposition_on_scroll.js +70 -0
  273. package/optimize/lib/test/enzyme/enzyme_matchers.d.ts +36 -0
  274. package/optimize/lib/test/enzyme/enzyme_matchers.js +50 -0
  275. package/optimize/lib/test/enzyme/index.d.ts +14 -0
  276. package/optimize/lib/test/enzyme/index.js +24 -0
  277. package/optimize/lib/test/rtl/index.d.ts +9 -1
  278. package/optimize/lib/test/rtl/index.js +24 -2
  279. package/optimize/lib/test/rtl/matchers.d.ts +36 -0
  280. package/optimize/lib/test/rtl/matchers.js +86 -0
  281. package/optimize/lib/utils/element_can_be_disabled.js +22 -0
  282. package/optimize/lib/utils/index.js +14 -1
  283. package/package.json +3 -2
  284. package/test-env/components/accessibility/skip_link/skip_link.js +10 -1
  285. package/test-env/components/bottom_bar/bottom_bar.js +11 -1
  286. package/test-env/components/button/button.js +21 -26
  287. package/test-env/components/button/button_display/_button_display.js +31 -29
  288. package/test-env/components/button/button_display/_button_display.styles.js +4 -4
  289. package/test-env/components/button/button_empty/button_empty.js +31 -13
  290. package/test-env/components/button/button_group/button_group.js +49 -31
  291. package/test-env/components/button/button_group/button_group_button.js +14 -2
  292. package/test-env/components/button/button_group/button_group_button.styles.js +10 -6
  293. package/test-env/components/button/button_icon/button_icon.js +29 -5
  294. package/test-env/components/card/card.js +21 -26
  295. package/test-env/components/card/card_select/card_select.js +21 -26
  296. package/test-env/components/code/code_block_virtualized.js +9 -7
  297. package/test-env/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +13 -1
  298. package/test-env/components/datagrid/body/cell/data_grid_cell.js +35 -12
  299. package/test-env/components/datagrid/body/data_grid_body.js +23 -6
  300. package/test-env/components/datagrid/body/data_grid_body_custom.js +23 -6
  301. package/test-env/components/datagrid/body/data_grid_body_virtualized.js +23 -6
  302. package/test-env/components/datagrid/body/header/data_grid_header_cell.js +23 -6
  303. package/test-env/components/datagrid/controls/column_selector.js +36 -19
  304. package/test-env/components/datagrid/controls/column_sorting.js +23 -6
  305. package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +13 -7
  306. package/test-env/components/datagrid/data_grid.js +5 -1
  307. package/test-env/components/datagrid/utils/in_memory.js +25 -7
  308. package/test-env/components/date_picker/auto_refresh/auto_refresh.js +12 -3
  309. package/test-env/components/date_picker/super_date_picker/date_popover/absolute_tab.js +30 -4
  310. package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_button.js +24 -3
  311. package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_content.js +26 -4
  312. package/test-env/components/date_picker/super_date_picker/date_popover/relative_tab.js +29 -3
  313. package/test-env/components/date_picker/super_date_picker/date_popover/timezone_display.js +103 -0
  314. package/test-env/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +25 -0
  315. package/test-env/components/date_picker/super_date_picker/pretty_duration.js +2 -9
  316. package/test-env/components/date_picker/super_date_picker/relative_utils.js +9 -0
  317. package/test-env/components/date_picker/super_date_picker/super_date_picker.js +118 -26
  318. package/test-env/components/date_picker/super_date_picker/time_window_buttons.js +193 -0
  319. package/test-env/components/facet/facet_button.js +9 -19
  320. package/test-env/components/filter_group/filter_button.js +14 -1
  321. package/test-env/components/form/form_control_button/form_control_button.js +13 -7
  322. package/test-env/components/header/header_links/header_link.js +13 -7
  323. package/test-env/components/header/header_section/header_section_item_button.js +13 -7
  324. package/test-env/components/icon/assets/boxes_vertical.js +1 -1
  325. package/test-env/components/icon/assets/checkInCircleFilled.js +1 -2
  326. package/test-env/components/icon/assets/errorFilled.js +1 -2
  327. package/test-env/components/icon/assets/warningFilled.js +1 -2
  328. package/test-env/components/icon/icon_map.js +3 -6
  329. package/test-env/components/list_group/list_group.js +13 -1
  330. package/test-env/components/list_group/list_group_item.js +13 -1
  331. package/test-env/components/list_group/list_group_item_extra_action.js +13 -1
  332. package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +15 -2
  333. package/test-env/components/overlay_mask/overlay_mask.styles.js +1 -1
  334. package/test-env/components/pagination/pagination_button.js +13 -7
  335. package/test-env/components/popover/popover.js +21 -15
  336. package/test-env/components/provider/component_defaults/component_defaults.js +22 -2
  337. package/test-env/components/table/table_row.styles.js +1 -1
  338. package/test-env/components/tool_tip/tool_tip.js +24 -24
  339. package/test-env/global_styling/index.js +16 -1
  340. package/test-env/global_styling/mixins/_button.js +1 -1
  341. package/test-env/global_styling/utility/selectors.js +15 -0
  342. package/test-env/services/focus_trap/focus_trap_pub_sub.js +80 -0
  343. package/test-env/services/focus_trap/index.js +12 -0
  344. package/test-env/services/hooks/index.js +18 -1
  345. package/test-env/services/hooks/useEuiDisabledElement.js +197 -0
  346. package/test-env/services/index.js +8 -0
  347. package/test-env/services/popover/reposition_on_scroll.js +67 -0
  348. package/test-env/test/cypress/index.js +18 -0
  349. package/test-env/test/cypress/matchers.js +61 -0
  350. package/test-env/test/cypress/test_reposition_on_scroll.js +70 -0
  351. package/test-env/test/enzyme/enzyme_matchers.js +50 -0
  352. package/test-env/test/enzyme/index.js +24 -0
  353. package/test-env/test/rtl/index.js +24 -2
  354. package/test-env/test/rtl/matchers.js +86 -0
  355. package/test-env/utils/element_can_be_disabled.js +22 -0
  356. package/test-env/utils/index.js +14 -1
package/i18ntokens.json CHANGED
@@ -143,24 +143,6 @@
143
143
  },
144
144
  "filepath": "src/components/tour/_tour_footer.tsx"
145
145
  },
146
- {
147
- "token": "euiIconTip.defaultAriaLabel",
148
- "defString": "Info",
149
- "highlighting": "string",
150
- "loc": {
151
- "start": {
152
- "line": 63,
153
- "column": 27,
154
- "index": 1811
155
- },
156
- "end": {
157
- "line": 63,
158
- "column": 76,
159
- "index": 1860
160
- }
161
- },
162
- "filepath": "src/components/tool_tip/icon_tip.tsx"
163
- },
164
146
  {
165
147
  "token": "euiToast.newNotification",
166
148
  "defString": "A new notification appears",
@@ -251,6 +233,42 @@
251
233
  },
252
234
  "filepath": "src/components/toast/global_toast_list.tsx"
253
235
  },
236
+ {
237
+ "token": "euiIconTip.defaultAriaLabel",
238
+ "defString": "Info",
239
+ "highlighting": "string",
240
+ "loc": {
241
+ "start": {
242
+ "line": 63,
243
+ "column": 27,
244
+ "index": 1811
245
+ },
246
+ "end": {
247
+ "line": 63,
248
+ "column": 76,
249
+ "index": 1860
250
+ }
251
+ },
252
+ "filepath": "src/components/tool_tip/icon_tip.tsx"
253
+ },
254
+ {
255
+ "token": "euiTableHeaderCell.titleTextWithDesc",
256
+ "defString": "{innerText}; {description}",
257
+ "highlighting": "string",
258
+ "loc": {
259
+ "start": {
260
+ "line": 113,
261
+ "column": 10,
262
+ "index": 3512
263
+ },
264
+ "end": {
265
+ "line": 117,
266
+ "column": 11,
267
+ "index": 3686
268
+ }
269
+ },
270
+ "filepath": "src/components/table/table_header_cell.tsx"
271
+ },
254
272
  {
255
273
  "token": "euiStepStrings.step",
256
274
  "defString": "Step {number}: {title}",
@@ -557,24 +575,6 @@
557
575
  },
558
576
  "filepath": "src/components/stat/stat.tsx"
559
577
  },
560
- {
561
- "token": "euiTableHeaderCell.titleTextWithDesc",
562
- "defString": "{innerText}; {description}",
563
- "highlighting": "string",
564
- "loc": {
565
- "start": {
566
- "line": 113,
567
- "column": 10,
568
- "index": 3512
569
- },
570
- "end": {
571
- "line": 117,
572
- "column": 11,
573
- "index": 3686
574
- }
575
- },
576
- "filepath": "src/components/table/table_header_cell.tsx"
577
- },
578
578
  {
579
579
  "token": "euiSkeletonLoading.loadedAriaText",
580
580
  "defString": "Loaded {contentAriaLabel}",
@@ -611,6 +611,60 @@
611
611
  },
612
612
  "filepath": "src/components/skeleton/skeleton_loading.tsx"
613
613
  },
614
+ {
615
+ "token": "euiSearchBox.placeholder",
616
+ "defString": "Search...",
617
+ "highlighting": "string",
618
+ "loc": {
619
+ "start": {
620
+ "line": 48,
621
+ "column": 29,
622
+ "index": 1388
623
+ },
624
+ "end": {
625
+ "line": 51,
626
+ "column": 3,
627
+ "index": 1451
628
+ }
629
+ },
630
+ "filepath": "src/components/search_bar/search_box.tsx"
631
+ },
632
+ {
633
+ "token": "euiSearchBox.incrementalAriaLabel",
634
+ "defString": "This is a search bar. As you type, the results lower in the page will automatically filter.",
635
+ "highlighting": "string",
636
+ "loc": {
637
+ "start": {
638
+ "line": 52,
639
+ "column": 31,
640
+ "index": 1484
641
+ },
642
+ "end": {
643
+ "line": 55,
644
+ "column": 3,
645
+ "index": 1638
646
+ }
647
+ },
648
+ "filepath": "src/components/search_bar/search_box.tsx"
649
+ },
650
+ {
651
+ "token": "euiSearchBox.ariaLabel",
652
+ "defString": "This is a search bar. After typing your query, hit enter to filter the results lower in the page.",
653
+ "highlighting": "string",
654
+ "loc": {
655
+ "start": {
656
+ "line": 56,
657
+ "column": 25,
658
+ "index": 1665
659
+ },
660
+ "end": {
661
+ "line": 59,
662
+ "column": 3,
663
+ "index": 1814
664
+ }
665
+ },
666
+ "filepath": "src/components/search_bar/search_box.tsx"
667
+ },
614
668
  {
615
669
  "token": "euiSideNav.mobileToggleAriaLabel",
616
670
  "defString": "Toggle navigation",
@@ -629,6 +683,60 @@
629
683
  },
630
684
  "filepath": "src/components/side_nav/side_nav.tsx"
631
685
  },
686
+ {
687
+ "token": "euiResizablePanel.toggleButtonAriaLabel",
688
+ "defString": "Press to toggle this panel",
689
+ "highlighting": "string",
690
+ "loc": {
691
+ "start": {
692
+ "line": 321,
693
+ "column": 32,
694
+ "index": 9654
695
+ },
696
+ "end": {
697
+ "line": 324,
698
+ "column": 3,
699
+ "index": 9749
700
+ }
701
+ },
702
+ "filepath": "src/components/resizable_container/resizable_panel.tsx"
703
+ },
704
+ {
705
+ "token": "euiResizableButton.horizontalResizerAriaLabel",
706
+ "defString": "Press the left or right arrow keys to adjust panels size",
707
+ "highlighting": "string",
708
+ "loc": {
709
+ "start": {
710
+ "line": 98,
711
+ "column": 6,
712
+ "index": 3160
713
+ },
714
+ "end": {
715
+ "line": 107,
716
+ "column": 7,
717
+ "index": 3489
718
+ }
719
+ },
720
+ "filepath": "src/components/resizable_container/resizable_button.tsx"
721
+ },
722
+ {
723
+ "token": "euiResizableButton.verticalResizerAriaLabel",
724
+ "defString": "Press the up or down arrow keys to adjust panels size",
725
+ "highlighting": "string",
726
+ "loc": {
727
+ "start": {
728
+ "line": 98,
729
+ "column": 6,
730
+ "index": 3160
731
+ },
732
+ "end": {
733
+ "line": 107,
734
+ "column": 7,
735
+ "index": 3489
736
+ }
737
+ },
738
+ "filepath": "src/components/resizable_container/resizable_button.tsx"
739
+ },
632
740
  {
633
741
  "token": "euiSelectable.loadingOptions",
634
742
  "defString": "Loading options",
@@ -756,188 +864,80 @@
756
864
  "filepath": "src/components/selectable/selectable.tsx"
757
865
  },
758
866
  {
759
- "token": "euiSearchBox.placeholder",
760
- "defString": "Search...",
867
+ "token": "euiProgress.valueText",
868
+ "defString": "{value}%",
761
869
  "highlighting": "string",
762
870
  "loc": {
763
871
  "start": {
764
- "line": 48,
765
- "column": 29,
766
- "index": 1388
872
+ "line": 154,
873
+ "column": 6,
874
+ "index": 4411
767
875
  },
768
876
  "end": {
769
- "line": 51,
770
- "column": 3,
771
- "index": 1451
877
+ "line": 160,
878
+ "column": 8,
879
+ "index": 4539
772
880
  }
773
881
  },
774
- "filepath": "src/components/search_bar/search_box.tsx"
882
+ "filepath": "src/components/progress/progress.tsx"
775
883
  },
776
884
  {
777
- "token": "euiSearchBox.incrementalAriaLabel",
778
- "defString": "This is a search bar. As you type, the results lower in the page will automatically filter.",
885
+ "token": "euiPopover.screenReaderAnnouncement",
886
+ "defString": "You are in a dialog. Press Escape, or tap/click outside the dialog to close.",
779
887
  "highlighting": "string",
780
888
  "loc": {
781
889
  "start": {
782
- "line": 52,
783
- "column": 31,
784
- "index": 1484
890
+ "line": 706,
891
+ "column": 16,
892
+ "index": 21021
785
893
  },
786
894
  "end": {
787
- "line": 55,
788
- "column": 3,
789
- "index": 1638
895
+ "line": 709,
896
+ "column": 18,
897
+ "index": 21215
790
898
  }
791
899
  },
792
- "filepath": "src/components/search_bar/search_box.tsx"
900
+ "filepath": "src/components/popover/popover.tsx"
793
901
  },
794
902
  {
795
- "token": "euiSearchBox.ariaLabel",
796
- "defString": "This is a search bar. After typing your query, hit enter to filter the results lower in the page.",
903
+ "token": "euiPaginationButtonArrow.firstPage",
904
+ "defString": "First page",
797
905
  "highlighting": "string",
798
906
  "loc": {
799
907
  "start": {
800
- "line": 56,
801
- "column": 25,
802
- "index": 1665
908
+ "line": 48,
909
+ "column": 11,
910
+ "index": 1383
803
911
  },
804
912
  "end": {
805
- "line": 59,
806
- "column": 3,
807
- "index": 1814
913
+ "line": 48,
914
+ "column": 73,
915
+ "index": 1445
808
916
  }
809
917
  },
810
- "filepath": "src/components/search_bar/search_box.tsx"
918
+ "filepath": "src/components/pagination/pagination_button_arrow.tsx"
811
919
  },
812
920
  {
813
- "token": "euiResizablePanel.toggleButtonAriaLabel",
814
- "defString": "Press to toggle this panel",
921
+ "token": "euiPaginationButtonArrow.previousPage",
922
+ "defString": "Previous page",
815
923
  "highlighting": "string",
816
924
  "loc": {
817
925
  "start": {
818
- "line": 321,
819
- "column": 32,
820
- "index": 9654
926
+ "line": 49,
927
+ "column": 14,
928
+ "index": 1461
821
929
  },
822
930
  "end": {
823
- "line": 324,
824
- "column": 3,
825
- "index": 9749
931
+ "line": 52,
932
+ "column": 5,
933
+ "index": 1547
826
934
  }
827
935
  },
828
- "filepath": "src/components/resizable_container/resizable_panel.tsx"
936
+ "filepath": "src/components/pagination/pagination_button_arrow.tsx"
829
937
  },
830
938
  {
831
- "token": "euiResizableButton.horizontalResizerAriaLabel",
832
- "defString": "Press the left or right arrow keys to adjust panels size",
833
- "highlighting": "string",
834
- "loc": {
835
- "start": {
836
- "line": 98,
837
- "column": 6,
838
- "index": 3160
839
- },
840
- "end": {
841
- "line": 107,
842
- "column": 7,
843
- "index": 3489
844
- }
845
- },
846
- "filepath": "src/components/resizable_container/resizable_button.tsx"
847
- },
848
- {
849
- "token": "euiResizableButton.verticalResizerAriaLabel",
850
- "defString": "Press the up or down arrow keys to adjust panels size",
851
- "highlighting": "string",
852
- "loc": {
853
- "start": {
854
- "line": 98,
855
- "column": 6,
856
- "index": 3160
857
- },
858
- "end": {
859
- "line": 107,
860
- "column": 7,
861
- "index": 3489
862
- }
863
- },
864
- "filepath": "src/components/resizable_container/resizable_button.tsx"
865
- },
866
- {
867
- "token": "euiProgress.valueText",
868
- "defString": "{value}%",
869
- "highlighting": "string",
870
- "loc": {
871
- "start": {
872
- "line": 154,
873
- "column": 6,
874
- "index": 4411
875
- },
876
- "end": {
877
- "line": 160,
878
- "column": 8,
879
- "index": 4539
880
- }
881
- },
882
- "filepath": "src/components/progress/progress.tsx"
883
- },
884
- {
885
- "token": "euiPopover.screenReaderAnnouncement",
886
- "defString": "You are in a dialog. Press Escape, or tap/click outside the dialog to close.",
887
- "highlighting": "string",
888
- "loc": {
889
- "start": {
890
- "line": 694,
891
- "column": 16,
892
- "index": 20642
893
- },
894
- "end": {
895
- "line": 697,
896
- "column": 18,
897
- "index": 20836
898
- }
899
- },
900
- "filepath": "src/components/popover/popover.tsx"
901
- },
902
- {
903
- "token": "euiPaginationButtonArrow.firstPage",
904
- "defString": "First page",
905
- "highlighting": "string",
906
- "loc": {
907
- "start": {
908
- "line": 48,
909
- "column": 11,
910
- "index": 1383
911
- },
912
- "end": {
913
- "line": 48,
914
- "column": 73,
915
- "index": 1445
916
- }
917
- },
918
- "filepath": "src/components/pagination/pagination_button_arrow.tsx"
919
- },
920
- {
921
- "token": "euiPaginationButtonArrow.previousPage",
922
- "defString": "Previous page",
923
- "highlighting": "string",
924
- "loc": {
925
- "start": {
926
- "line": 49,
927
- "column": 14,
928
- "index": 1461
929
- },
930
- "end": {
931
- "line": 52,
932
- "column": 5,
933
- "index": 1547
934
- }
935
- },
936
- "filepath": "src/components/pagination/pagination_button_arrow.tsx"
937
- },
938
- {
939
- "token": "euiPaginationButtonArrow.nextPage",
940
- "defString": "Next page",
939
+ "token": "euiPaginationButtonArrow.nextPage",
940
+ "defString": "Next page",
941
941
  "highlighting": "string",
942
942
  "loc": {
943
943
  "start": {
@@ -1152,148 +1152,76 @@
1152
1152
  "filepath": "src/components/pagination/pagination.tsx"
1153
1153
  },
1154
1154
  {
1155
- "token": "euiMarkdownEditorToolbar.editor",
1156
- "defString": "Editor",
1157
- "highlighting": "string",
1158
- "loc": {
1159
- "start": {
1160
- "line": 285,
1161
- "column": 8,
1162
- "index": 7699
1163
- },
1164
- "end": {
1165
- "line": 285,
1166
- "column": 76,
1167
- "index": 7767
1168
- }
1169
- },
1170
- "filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
1171
- },
1172
- {
1173
- "token": "euiMarkdownEditorToolbar.previewMarkdown",
1174
- "defString": "Preview",
1155
+ "token": "euiModal.screenReaderModalDialog",
1156
+ "defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
1175
1157
  "highlighting": "string",
1176
1158
  "loc": {
1177
1159
  "start": {
1178
- "line": 287,
1160
+ "line": 133,
1179
1161
  "column": 8,
1180
- "index": 7788
1162
+ "index": 4057
1181
1163
  },
1182
1164
  "end": {
1183
- "line": 290,
1165
+ "line": 136,
1184
1166
  "column": 10,
1185
- "index": 7894
1167
+ "index": 4253
1186
1168
  }
1187
1169
  },
1188
- "filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
1189
- },
1190
- {
1191
- "token": "euiMarkdownEditorFooter.uploadingFiles",
1192
- "defString": "Click to upload files",
1193
- "highlighting": "string",
1194
- "loc": {
1195
- "start": {
1196
- "line": 67,
1197
- "column": 20,
1198
- "index": 2134
1199
- },
1200
- "end": {
1201
- "line": 70,
1202
- "column": 5,
1203
- "index": 2229
1204
- }
1205
- },
1206
- "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1207
- },
1208
- {
1209
- "token": "euiMarkdownEditorFooter.openUploadModal",
1210
- "defString": "Open upload files modal",
1211
- "highlighting": "string",
1212
- "loc": {
1213
- "start": {
1214
- "line": 71,
1215
- "column": 21,
1216
- "index": 2252
1217
- },
1218
- "end": {
1219
- "line": 74,
1220
- "column": 5,
1221
- "index": 2350
1222
- }
1223
- },
1224
- "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1225
- },
1226
- {
1227
- "token": "euiMarkdownEditorFooter.unsupportedFileType",
1228
- "defString": "File type not supported",
1229
- "highlighting": "string",
1230
- "loc": {
1231
- "start": {
1232
- "line": 75,
1233
- "column": 25,
1234
- "index": 2377
1235
- },
1236
- "end": {
1237
- "line": 78,
1238
- "column": 5,
1239
- "index": 2479
1240
- }
1241
- },
1242
- "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1170
+ "filepath": "src/components/modal/modal.tsx"
1243
1171
  },
1244
1172
  {
1245
- "token": "euiMarkdownEditorFooter.supportedFileTypes",
1246
- "defString": "Supported files: {supportedFileTypes}",
1173
+ "token": "euiModal.closeModal",
1174
+ "defString": "Closes this modal window",
1247
1175
  "highlighting": "string",
1248
1176
  "loc": {
1249
1177
  "start": {
1250
- "line": 79,
1251
- "column": 24,
1252
- "index": 2505
1178
+ "line": 163,
1179
+ "column": 10,
1180
+ "index": 4871
1253
1181
  },
1254
1182
  "end": {
1255
- "line": 83,
1256
- "column": 5,
1257
- "index": 2650
1183
+ "line": 166,
1184
+ "column": 11,
1185
+ "index": 4978
1258
1186
  }
1259
1187
  },
1260
- "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1188
+ "filepath": "src/components/modal/modal.tsx"
1261
1189
  },
1262
1190
  {
1263
- "token": "euiMarkdownEditorFooter.showSyntaxErrors",
1264
- "defString": "Show errors",
1191
+ "token": "euiMarkdownEditorToolbar.editor",
1192
+ "defString": "Editor",
1265
1193
  "highlighting": "string",
1266
1194
  "loc": {
1267
1195
  "start": {
1268
- "line": 84,
1269
- "column": 22,
1270
- "index": 2674
1196
+ "line": 285,
1197
+ "column": 8,
1198
+ "index": 7699
1271
1199
  },
1272
1200
  "end": {
1273
- "line": 87,
1274
- "column": 5,
1275
- "index": 2761
1201
+ "line": 285,
1202
+ "column": 76,
1203
+ "index": 7767
1276
1204
  }
1277
1205
  },
1278
- "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1206
+ "filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
1279
1207
  },
1280
1208
  {
1281
- "token": "euiMarkdownEditorFooter.errorsTitle",
1282
- "defString": "Errors",
1209
+ "token": "euiMarkdownEditorToolbar.previewMarkdown",
1210
+ "defString": "Preview",
1283
1211
  "highlighting": "string",
1284
1212
  "loc": {
1285
1213
  "start": {
1286
- "line": 158,
1287
- "column": 12,
1288
- "index": 4712
1214
+ "line": 287,
1215
+ "column": 8,
1216
+ "index": 7788
1289
1217
  },
1290
1218
  "end": {
1291
- "line": 161,
1292
- "column": 14,
1293
- "index": 4824
1219
+ "line": 290,
1220
+ "column": 10,
1221
+ "index": 7894
1294
1222
  }
1295
1223
  },
1296
- "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1224
+ "filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
1297
1225
  },
1298
1226
  {
1299
1227
  "token": "euiMarkdownEditorHelpButton.mdSyntaxLink",
@@ -1422,76 +1350,148 @@
1422
1350
  "filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
1423
1351
  },
1424
1352
  {
1425
- "token": "euiMark.highlightStart",
1426
- "defString": "highlight start",
1353
+ "token": "euiMarkdownEditorFooter.uploadingFiles",
1354
+ "defString": "Click to upload files",
1427
1355
  "highlighting": "string",
1428
1356
  "loc": {
1429
1357
  "start": {
1430
- "line": 44,
1431
- "column": 25,
1432
- "index": 1289
1358
+ "line": 67,
1359
+ "column": 20,
1360
+ "index": 2134
1433
1361
  },
1434
1362
  "end": {
1435
- "line": 47,
1436
- "column": 3,
1437
- "index": 1356
1363
+ "line": 70,
1364
+ "column": 5,
1365
+ "index": 2229
1438
1366
  }
1439
1367
  },
1440
- "filepath": "src/components/mark/mark.tsx"
1368
+ "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1441
1369
  },
1442
1370
  {
1443
- "token": "euiMark.highlightEnd",
1444
- "defString": "highlight end",
1371
+ "token": "euiMarkdownEditorFooter.openUploadModal",
1372
+ "defString": "Open upload files modal",
1445
1373
  "highlighting": "string",
1446
1374
  "loc": {
1447
1375
  "start": {
1448
- "line": 48,
1449
- "column": 23,
1450
- "index": 1381
1376
+ "line": 71,
1377
+ "column": 21,
1378
+ "index": 2252
1451
1379
  },
1452
1380
  "end": {
1453
- "line": 48,
1454
- "column": 74,
1455
- "index": 1432
1381
+ "line": 74,
1382
+ "column": 5,
1383
+ "index": 2350
1456
1384
  }
1457
1385
  },
1458
- "filepath": "src/components/mark/mark.tsx"
1386
+ "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1459
1387
  },
1460
1388
  {
1461
- "token": "euiModal.screenReaderModalDialog",
1462
- "defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
1389
+ "token": "euiMarkdownEditorFooter.unsupportedFileType",
1390
+ "defString": "File type not supported",
1463
1391
  "highlighting": "string",
1464
1392
  "loc": {
1465
1393
  "start": {
1466
- "line": 107,
1467
- "column": 8,
1468
- "index": 3484
1394
+ "line": 75,
1395
+ "column": 25,
1396
+ "index": 2377
1469
1397
  },
1470
1398
  "end": {
1471
- "line": 110,
1472
- "column": 10,
1473
- "index": 3680
1399
+ "line": 78,
1400
+ "column": 5,
1401
+ "index": 2479
1474
1402
  }
1475
1403
  },
1476
- "filepath": "src/components/modal/modal.tsx"
1404
+ "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1477
1405
  },
1478
1406
  {
1479
- "token": "euiModal.closeModal",
1480
- "defString": "Closes this modal window",
1407
+ "token": "euiMarkdownEditorFooter.supportedFileTypes",
1408
+ "defString": "Supported files: {supportedFileTypes}",
1481
1409
  "highlighting": "string",
1482
1410
  "loc": {
1483
1411
  "start": {
1484
- "line": 136,
1485
- "column": 10,
1486
- "index": 4240
1412
+ "line": 79,
1413
+ "column": 24,
1414
+ "index": 2505
1487
1415
  },
1488
1416
  "end": {
1489
- "line": 139,
1490
- "column": 11,
1491
- "index": 4347
1417
+ "line": 83,
1418
+ "column": 5,
1419
+ "index": 2650
1492
1420
  }
1493
1421
  },
1494
- "filepath": "src/components/modal/modal.tsx"
1422
+ "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1423
+ },
1424
+ {
1425
+ "token": "euiMarkdownEditorFooter.showSyntaxErrors",
1426
+ "defString": "Show errors",
1427
+ "highlighting": "string",
1428
+ "loc": {
1429
+ "start": {
1430
+ "line": 84,
1431
+ "column": 22,
1432
+ "index": 2674
1433
+ },
1434
+ "end": {
1435
+ "line": 87,
1436
+ "column": 5,
1437
+ "index": 2761
1438
+ }
1439
+ },
1440
+ "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1441
+ },
1442
+ {
1443
+ "token": "euiMarkdownEditorFooter.errorsTitle",
1444
+ "defString": "Errors",
1445
+ "highlighting": "string",
1446
+ "loc": {
1447
+ "start": {
1448
+ "line": 158,
1449
+ "column": 12,
1450
+ "index": 4712
1451
+ },
1452
+ "end": {
1453
+ "line": 161,
1454
+ "column": 14,
1455
+ "index": 4824
1456
+ }
1457
+ },
1458
+ "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1459
+ },
1460
+ {
1461
+ "token": "euiMark.highlightStart",
1462
+ "defString": "highlight start",
1463
+ "highlighting": "string",
1464
+ "loc": {
1465
+ "start": {
1466
+ "line": 44,
1467
+ "column": 25,
1468
+ "index": 1289
1469
+ },
1470
+ "end": {
1471
+ "line": 47,
1472
+ "column": 3,
1473
+ "index": 1356
1474
+ }
1475
+ },
1476
+ "filepath": "src/components/mark/mark.tsx"
1477
+ },
1478
+ {
1479
+ "token": "euiMark.highlightEnd",
1480
+ "defString": "highlight end",
1481
+ "highlighting": "string",
1482
+ "loc": {
1483
+ "start": {
1484
+ "line": 48,
1485
+ "column": 23,
1486
+ "index": 1381
1487
+ },
1488
+ "end": {
1489
+ "line": 48,
1490
+ "column": 74,
1491
+ "index": 1432
1492
+ }
1493
+ },
1494
+ "filepath": "src/components/mark/mark.tsx"
1495
1495
  },
1496
1496
  {
1497
1497
  "token": "euiLoadingStrings.ariaLabel",
@@ -1679,14 +1679,14 @@
1679
1679
  "highlighting": "string",
1680
1680
  "loc": {
1681
1681
  "start": {
1682
- "line": 444,
1682
+ "line": 464,
1683
1683
  "column": 14,
1684
- "index": 14928
1684
+ "index": 15737
1685
1685
  },
1686
1686
  "end": {
1687
- "line": 447,
1687
+ "line": 467,
1688
1688
  "column": 16,
1689
- "index": 15143
1689
+ "index": 15952
1690
1690
  }
1691
1691
  },
1692
1692
  "filepath": "src/components/flyout/flyout.tsx"
@@ -1697,14 +1697,14 @@
1697
1697
  "highlighting": "string",
1698
1698
  "loc": {
1699
1699
  "start": {
1700
- "line": 449,
1700
+ "line": 469,
1701
1701
  "column": 14,
1702
- "index": 15176
1702
+ "index": 15985
1703
1703
  },
1704
1704
  "end": {
1705
- "line": 452,
1705
+ "line": 472,
1706
1706
  "column": 16,
1707
- "index": 15354
1707
+ "index": 16163
1708
1708
  }
1709
1709
  },
1710
1710
  "filepath": "src/components/flyout/flyout.tsx"
@@ -1715,14 +1715,14 @@
1715
1715
  "highlighting": "string",
1716
1716
  "loc": {
1717
1717
  "start": {
1718
- "line": 455,
1718
+ "line": 475,
1719
1719
  "column": 14,
1720
- "index": 15434
1720
+ "index": 16243
1721
1721
  },
1722
1722
  "end": {
1723
- "line": 458,
1723
+ "line": 478,
1724
1724
  "column": 16,
1725
- "index": 15615
1725
+ "index": 16424
1726
1726
  }
1727
1727
  },
1728
1728
  "filepath": "src/components/flyout/flyout.tsx"
@@ -1751,14 +1751,14 @@
1751
1751
  "highlighting": "string",
1752
1752
  "loc": {
1753
1753
  "start": {
1754
- "line": 181,
1754
+ "line": 175,
1755
1755
  "column": 27,
1756
- "index": 5778
1756
+ "index": 5388
1757
1757
  },
1758
1758
  "end": {
1759
- "line": 185,
1759
+ "line": 179,
1760
1760
  "column": 3,
1761
- "index": 5899
1761
+ "index": 5509
1762
1762
  }
1763
1763
  },
1764
1764
  "filepath": "src/components/filter_group/filter_button.tsx"
@@ -1769,14 +1769,14 @@
1769
1769
  "highlighting": "string",
1770
1770
  "loc": {
1771
1771
  "start": {
1772
- "line": 186,
1772
+ "line": 180,
1773
1773
  "column": 30,
1774
- "index": 5931
1774
+ "index": 5541
1775
1775
  },
1776
1776
  "end": {
1777
- "line": 190,
1777
+ "line": 184,
1778
1778
  "column": 3,
1779
- "index": 6058
1779
+ "index": 5668
1780
1780
  }
1781
1781
  },
1782
1782
  "filepath": "src/components/filter_group/filter_button.tsx"
@@ -1805,14 +1805,14 @@
1805
1805
  "highlighting": "string",
1806
1806
  "loc": {
1807
1807
  "start": {
1808
- "line": 385,
1808
+ "line": 392,
1809
1809
  "column": 22,
1810
- "index": 10486
1810
+ "index": 10634
1811
1811
  },
1812
1812
  "end": {
1813
- "line": 389,
1813
+ "line": 396,
1814
1814
  "column": 5,
1815
- "index": 10658
1815
+ "index": 10806
1816
1816
  }
1817
1817
  },
1818
1818
  "filepath": "src/components/datagrid/data_grid.tsx"
@@ -1823,14 +1823,14 @@
1823
1823
  "highlighting": "string",
1824
1824
  "loc": {
1825
1825
  "start": {
1826
- "line": 390,
1826
+ "line": 397,
1827
1827
  "column": 27,
1828
- "index": 10687
1828
+ "index": 10835
1829
1829
  },
1830
1830
  "end": {
1831
- "line": 394,
1831
+ "line": 401,
1832
1832
  "column": 5,
1833
- "index": 10828
1833
+ "index": 10976
1834
1834
  }
1835
1835
  },
1836
1836
  "filepath": "src/components/datagrid/data_grid.tsx"
@@ -1841,36 +1841,18 @@
1841
1841
  "highlighting": "string",
1842
1842
  "loc": {
1843
1843
  "start": {
1844
- "line": 553,
1844
+ "line": 560,
1845
1845
  "column": 18,
1846
- "index": 17308
1846
+ "index": 17456
1847
1847
  },
1848
1848
  "end": {
1849
- "line": 556,
1849
+ "line": 563,
1850
1850
  "column": 20,
1851
- "index": 17461
1851
+ "index": 17609
1852
1852
  }
1853
1853
  },
1854
1854
  "filepath": "src/components/datagrid/data_grid.tsx"
1855
1855
  },
1856
- {
1857
- "token": "euiCollapsibleNavBeta.ariaLabel",
1858
- "defString": "Site menu",
1859
- "highlighting": "string",
1860
- "loc": {
1861
- "start": {
1862
- "line": 181,
1863
- "column": 27,
1864
- "index": 6023
1865
- },
1866
- "end": {
1867
- "line": 184,
1868
- "column": 3,
1869
- "index": 6093
1870
- }
1871
- },
1872
- "filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
1873
- },
1874
1856
  {
1875
1857
  "token": "euiComboBox.listboxAriaLabel",
1876
1858
  "defString": "Choose from the following options",
@@ -2160,22 +2142,22 @@
2160
2142
  "filepath": "src/components/color_picker/color_picker.tsx"
2161
2143
  },
2162
2144
  {
2163
- "token": "euiCallOut.dismissAriaLabel",
2164
- "defString": "Dismiss this callout",
2145
+ "token": "euiCollapsibleNavBeta.ariaLabel",
2146
+ "defString": "Site menu",
2165
2147
  "highlighting": "string",
2166
2148
  "loc": {
2167
2149
  "start": {
2168
- "line": 105,
2169
- "column": 8,
2170
- "index": 2943
2150
+ "line": 181,
2151
+ "column": 27,
2152
+ "index": 6023
2171
2153
  },
2172
2154
  "end": {
2173
- "line": 108,
2174
- "column": 9,
2175
- "index": 3048
2155
+ "line": 184,
2156
+ "column": 3,
2157
+ "index": 6093
2176
2158
  }
2177
2159
  },
2178
- "filepath": "src/components/call_out/call_out.tsx"
2160
+ "filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
2179
2161
  },
2180
2162
  {
2181
2163
  "token": "euiCodeBlockFullScreen.fullscreenCollapse",
@@ -2286,58 +2268,22 @@
2286
2268
  "filepath": "src/components/code/code_block.tsx"
2287
2269
  },
2288
2270
  {
2289
- "token": "euiBottomBar.screenReaderHeading",
2290
- "defString": "Page level controls",
2271
+ "token": "euiCallOut.dismissAriaLabel",
2272
+ "defString": "Dismiss this callout",
2291
2273
  "highlighting": "string",
2292
2274
  "loc": {
2293
2275
  "start": {
2294
- "line": 176,
2276
+ "line": 105,
2295
2277
  "column": 8,
2296
- "index": 5004
2278
+ "index": 2943
2297
2279
  },
2298
2280
  "end": {
2299
- "line": 179,
2281
+ "line": 108,
2300
2282
  "column": 9,
2301
- "index": 5113
2302
- }
2303
- },
2304
- "filepath": "src/components/bottom_bar/bottom_bar.tsx"
2305
- },
2306
- {
2307
- "token": "euiBottomBar.customScreenReaderAnnouncement",
2308
- "defString": "There is a new region landmark called {landmarkHeading} with page level controls at the end of the document.",
2309
- "highlighting": "string",
2310
- "loc": {
2311
- "start": {
2312
- "line": 206,
2313
- "column": 14,
2314
- "index": 6054
2315
- },
2316
- "end": {
2317
- "line": 210,
2318
- "column": 16,
2319
- "index": 6327
2320
- }
2321
- },
2322
- "filepath": "src/components/bottom_bar/bottom_bar.tsx"
2323
- },
2324
- {
2325
- "token": "euiBottomBar.screenReaderAnnouncement",
2326
- "defString": "There is a new region landmark with page level controls at the end of the document.",
2327
- "highlighting": "string",
2328
- "loc": {
2329
- "start": {
2330
- "line": 212,
2331
- "column": 14,
2332
- "index": 6360
2333
- },
2334
- "end": {
2335
- "line": 215,
2336
- "column": 16,
2337
- "index": 6557
2283
+ "index": 3048
2338
2284
  }
2339
2285
  },
2340
- "filepath": "src/components/bottom_bar/bottom_bar.tsx"
2286
+ "filepath": "src/components/call_out/call_out.tsx"
2341
2287
  },
2342
2288
  {
2343
2289
  "token": "euiBreadcrumbs.nav.ariaLabel",
@@ -2394,58 +2340,112 @@
2394
2340
  "filepath": "src/components/breadcrumbs/_breadcrumb_content.tsx"
2395
2341
  },
2396
2342
  {
2397
- "token": "euiCollapsedItemActions.allActionsTooltip",
2398
- "defString": "All actions",
2343
+ "token": "euiBottomBar.screenReaderHeading",
2344
+ "defString": "Page level controls",
2399
2345
  "highlighting": "string",
2400
2346
  "loc": {
2401
2347
  "start": {
2402
- "line": 45,
2403
- "column": 28,
2404
- "index": 1373
2348
+ "line": 192,
2349
+ "column": 8,
2350
+ "index": 5428
2405
2351
  },
2406
2352
  "end": {
2407
- "line": 48,
2408
- "column": 3,
2409
- "index": 1455
2353
+ "line": 195,
2354
+ "column": 9,
2355
+ "index": 5537
2410
2356
  }
2411
2357
  },
2412
- "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2358
+ "filepath": "src/components/bottom_bar/bottom_bar.tsx"
2413
2359
  },
2414
2360
  {
2415
- "token": "euiCollapsedItemActions.allActions",
2416
- "defString": "All actions, row {index}",
2361
+ "token": "euiBottomBar.customScreenReaderAnnouncement",
2362
+ "defString": "There is a new region landmark called {landmarkHeading} with page level controls at the end of the document.",
2417
2363
  "highlighting": "string",
2418
2364
  "loc": {
2419
2365
  "start": {
2420
- "line": 50,
2421
- "column": 36,
2422
- "index": 1494
2366
+ "line": 222,
2367
+ "column": 14,
2368
+ "index": 6478
2423
2369
  },
2424
2370
  "end": {
2425
- "line": 56,
2426
- "column": 3,
2427
- "index": 1631
2371
+ "line": 226,
2372
+ "column": 16,
2373
+ "index": 6751
2428
2374
  }
2429
2375
  },
2430
- "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2376
+ "filepath": "src/components/bottom_bar/bottom_bar.tsx"
2431
2377
  },
2432
2378
  {
2433
- "token": "euiCollapsedItemActions.allActionsDisabled",
2434
- "defString": "Individual item actions are disabled when rows are being selected.",
2379
+ "token": "euiBottomBar.screenReaderAnnouncement",
2380
+ "defString": "There is a new region landmark with page level controls at the end of the document.",
2435
2381
  "highlighting": "string",
2436
2382
  "loc": {
2437
2383
  "start": {
2438
- "line": 58,
2439
- "column": 44,
2440
- "index": 1678
2384
+ "line": 228,
2385
+ "column": 14,
2386
+ "index": 6784
2441
2387
  },
2442
2388
  "end": {
2443
- "line": 61,
2444
- "column": 3,
2445
- "index": 1816
2389
+ "line": 231,
2390
+ "column": 16,
2391
+ "index": 6981
2446
2392
  }
2447
2393
  },
2448
- "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2394
+ "filepath": "src/components/bottom_bar/bottom_bar.tsx"
2395
+ },
2396
+ {
2397
+ "token": "euiCollapsedItemActions.allActionsTooltip",
2398
+ "defString": "All actions",
2399
+ "highlighting": "string",
2400
+ "loc": {
2401
+ "start": {
2402
+ "line": 45,
2403
+ "column": 28,
2404
+ "index": 1373
2405
+ },
2406
+ "end": {
2407
+ "line": 48,
2408
+ "column": 3,
2409
+ "index": 1455
2410
+ }
2411
+ },
2412
+ "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2413
+ },
2414
+ {
2415
+ "token": "euiCollapsedItemActions.allActions",
2416
+ "defString": "All actions, row {index}",
2417
+ "highlighting": "string",
2418
+ "loc": {
2419
+ "start": {
2420
+ "line": 50,
2421
+ "column": 36,
2422
+ "index": 1494
2423
+ },
2424
+ "end": {
2425
+ "line": 56,
2426
+ "column": 3,
2427
+ "index": 1631
2428
+ }
2429
+ },
2430
+ "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2431
+ },
2432
+ {
2433
+ "token": "euiCollapsedItemActions.allActionsDisabled",
2434
+ "defString": "Individual item actions are disabled when rows are being selected.",
2435
+ "highlighting": "string",
2436
+ "loc": {
2437
+ "start": {
2438
+ "line": 58,
2439
+ "column": 44,
2440
+ "index": 1678
2441
+ },
2442
+ "end": {
2443
+ "line": 61,
2444
+ "column": 3,
2445
+ "index": 1816
2446
+ }
2447
+ },
2448
+ "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2449
2449
  },
2450
2450
  {
2451
2451
  "token": "euiBasicTable.noItemsMessage",
@@ -2699,20 +2699,38 @@
2699
2699
  },
2700
2700
  "filepath": "src/components/table/mobile/table_sort_mobile.tsx"
2701
2701
  },
2702
+ {
2703
+ "token": "euiFieldValueSelectionFilter.buttonLabelHint",
2704
+ "defString": "Selection",
2705
+ "highlighting": "string",
2706
+ "loc": {
2707
+ "start": {
2708
+ "line": 302,
2709
+ "column": 6,
2710
+ "index": 8615
2711
+ },
2712
+ "end": {
2713
+ "line": 305,
2714
+ "column": 7,
2715
+ "index": 8720
2716
+ }
2717
+ },
2718
+ "filepath": "src/components/search_bar/filters/field_value_selection_filter.tsx"
2719
+ },
2702
2720
  {
2703
2721
  "token": "euiSelectableTemplateSitewide.searchPlaceholder",
2704
2722
  "defString": "Search for anything...",
2705
2723
  "highlighting": "string",
2706
2724
  "loc": {
2707
2725
  "start": {
2708
- "line": 167,
2726
+ "line": 165,
2709
2727
  "column": 30,
2710
- "index": 5286
2728
+ "index": 5188
2711
2729
  },
2712
2730
  "end": {
2713
- "line": 170,
2731
+ "line": 168,
2714
2732
  "column": 3,
2715
- "index": 5389
2733
+ "index": 5291
2716
2734
  }
2717
2735
  },
2718
2736
  "filepath": "src/components/selectable/selectable_templates/selectable_template_sitewide.tsx"
@@ -2723,14 +2741,14 @@
2723
2741
  "highlighting": "string",
2724
2742
  "loc": {
2725
2743
  "start": {
2726
- "line": 253,
2744
+ "line": 251,
2727
2745
  "column": 8,
2728
- "index": 7443
2746
+ "index": 7345
2729
2747
  },
2730
2748
  "end": {
2731
- "line": 256,
2749
+ "line": 254,
2732
2750
  "column": 10,
2733
- "index": 7561
2751
+ "index": 7463
2734
2752
  }
2735
2753
  },
2736
2754
  "filepath": "src/components/selectable/selectable_templates/selectable_template_sitewide.tsx"
@@ -2741,14 +2759,14 @@
2741
2759
  "highlighting": "string",
2742
2760
  "loc": {
2743
2761
  "start": {
2744
- "line": 264,
2762
+ "line": 262,
2745
2763
  "column": 8,
2746
- "index": 7704
2764
+ "index": 7606
2747
2765
  },
2748
2766
  "end": {
2749
- "line": 267,
2767
+ "line": 265,
2750
2768
  "column": 10,
2751
- "index": 7822
2769
+ "index": 7724
2752
2770
  }
2753
2771
  },
2754
2772
  "filepath": "src/components/selectable/selectable_templates/selectable_template_sitewide.tsx"
@@ -2759,14 +2777,14 @@
2759
2777
  "highlighting": "string",
2760
2778
  "loc": {
2761
2779
  "start": {
2762
- "line": 321,
2780
+ "line": 319,
2763
2781
  "column": 12,
2764
- "index": 9453
2782
+ "index": 9355
2765
2783
  },
2766
2784
  "end": {
2767
- "line": 324,
2785
+ "line": 322,
2768
2786
  "column": 14,
2769
- "index": 9575
2787
+ "index": 9477
2770
2788
  }
2771
2789
  },
2772
2790
  "filepath": "src/components/selectable/selectable_templates/selectable_template_sitewide.tsx"
@@ -2933,24 +2951,6 @@
2933
2951
  },
2934
2952
  "filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
2935
2953
  },
2936
- {
2937
- "token": "euiFieldValueSelectionFilter.buttonLabelHint",
2938
- "defString": "Selection",
2939
- "highlighting": "string",
2940
- "loc": {
2941
- "start": {
2942
- "line": 302,
2943
- "column": 6,
2944
- "index": 8615
2945
- },
2946
- "end": {
2947
- "line": 305,
2948
- "column": 7,
2949
- "index": 8720
2950
- }
2951
- },
2952
- "filepath": "src/components/search_bar/filters/field_value_selection_filter.tsx"
2953
- },
2954
2954
  {
2955
2955
  "token": "euiPinnableListGroup.pinExtraActionLabel",
2956
2956
  "defString": "Pin item",
@@ -3095,56 +3095,20 @@
3095
3095
  },
3096
3096
  "filepath": "src/components/form/range/dual_range.tsx"
3097
3097
  },
3098
- {
3099
- "token": "euiFormControlLayoutDelimited.delimiterLabel",
3100
- "defString": "to",
3101
- "highlighting": "string",
3102
- "loc": {
3103
- "start": {
3104
- "line": 135,
3105
- "column": 27,
3106
- "index": 3846
3107
- },
3108
- "end": {
3109
- "line": 138,
3110
- "column": 3,
3111
- "index": 3922
3112
- }
3113
- },
3114
- "filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
3115
- },
3116
- {
3117
- "token": "euiFormControlLayoutClearButton.label",
3118
- "defString": "Clear input",
3119
- "highlighting": "string",
3120
- "loc": {
3121
- "start": {
3122
- "line": 35,
3123
- "column": 20,
3124
- "index": 1412
3125
- },
3126
- "end": {
3127
- "line": 38,
3128
- "column": 3,
3129
- "index": 1490
3130
- }
3131
- },
3132
- "filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
3133
- },
3134
3098
  {
3135
3099
  "token": "euiFilePicker.promptText",
3136
3100
  "defString": "Select or drag and drop a file",
3137
3101
  "highlighting": "string",
3138
3102
  "loc": {
3139
3103
  "start": {
3140
- "line": 78,
3104
+ "line": 76,
3141
3105
  "column": 6,
3142
- "index": 2385
3106
+ "index": 2335
3143
3107
  },
3144
3108
  "end": {
3145
- "line": 81,
3109
+ "line": 79,
3146
3110
  "column": 8,
3147
- "index": 2492
3111
+ "index": 2442
3148
3112
  }
3149
3113
  },
3150
3114
  "filepath": "src/components/form/file_picker/file_picker.tsx"
@@ -3155,14 +3119,14 @@
3155
3119
  "highlighting": "string",
3156
3120
  "loc": {
3157
3121
  "start": {
3158
- "line": 102,
3122
+ "line": 100,
3159
3123
  "column": 10,
3160
- "index": 2890
3124
+ "index": 2840
3161
3125
  },
3162
3126
  "end": {
3163
- "line": 106,
3127
+ "line": 104,
3164
3128
  "column": 12,
3165
- "index": 3072
3129
+ "index": 3022
3166
3130
  }
3167
3131
  },
3168
3132
  "filepath": "src/components/form/file_picker/file_picker.tsx"
@@ -3173,14 +3137,14 @@
3173
3137
  "highlighting": "string",
3174
3138
  "loc": {
3175
3139
  "start": {
3176
- "line": 150,
3177
- "column": 10,
3178
- "index": 3998
3140
+ "line": 146,
3141
+ "column": 6,
3142
+ "index": 3885
3179
3143
  },
3180
3144
  "end": {
3181
- "line": 153,
3182
- "column": 11,
3183
- "index": 4120
3145
+ "line": 149,
3146
+ "column": 7,
3147
+ "index": 3995
3184
3148
  }
3185
3149
  },
3186
3150
  "filepath": "src/components/form/file_picker/file_picker.tsx"
@@ -3191,53 +3155,53 @@
3191
3155
  "highlighting": "string",
3192
3156
  "loc": {
3193
3157
  "start": {
3194
- "line": 274,
3195
- "column": 22,
3196
- "index": 8657
3158
+ "line": 263,
3159
+ "column": 18,
3160
+ "index": 7934
3197
3161
  },
3198
3162
  "end": {
3199
- "line": 277,
3200
- "column": 24,
3201
- "index": 8792
3163
+ "line": 266,
3164
+ "column": 20,
3165
+ "index": 8057
3202
3166
  }
3203
3167
  },
3204
3168
  "filepath": "src/components/form/file_picker/file_picker.tsx"
3205
3169
  },
3206
3170
  {
3207
- "token": "euiFieldPassword.showPassword",
3208
- "defString": "Show password as plain text. Note: this will visually expose your password on the screen.",
3171
+ "token": "euiFormControlLayoutDelimited.delimiterLabel",
3172
+ "defString": "to",
3209
3173
  "highlighting": "string",
3210
3174
  "loc": {
3211
3175
  "start": {
3212
- "line": 105,
3213
- "column": 49,
3214
- "index": 2960
3176
+ "line": 127,
3177
+ "column": 27,
3178
+ "index": 3542
3215
3179
  },
3216
3180
  "end": {
3217
- "line": 111,
3181
+ "line": 130,
3218
3182
  "column": 3,
3219
- "index": 3181
3183
+ "index": 3618
3220
3184
  }
3221
3185
  },
3222
- "filepath": "src/components/form/field_password/field_password.tsx"
3186
+ "filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
3223
3187
  },
3224
3188
  {
3225
- "token": "euiFieldPassword.maskPassword",
3226
- "defString": "Mask password",
3189
+ "token": "euiFormControlLayoutClearButton.label",
3190
+ "defString": "Clear input",
3227
3191
  "highlighting": "string",
3228
3192
  "loc": {
3229
3193
  "start": {
3230
- "line": 105,
3231
- "column": 49,
3232
- "index": 2960
3194
+ "line": 35,
3195
+ "column": 20,
3196
+ "index": 1412
3233
3197
  },
3234
3198
  "end": {
3235
- "line": 111,
3199
+ "line": 38,
3236
3200
  "column": 3,
3237
- "index": 3181
3201
+ "index": 1490
3238
3202
  }
3239
3203
  },
3240
- "filepath": "src/components/form/field_password/field_password.tsx"
3204
+ "filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
3241
3205
  },
3242
3206
  {
3243
3207
  "token": "euiFieldSearch.clearSearchButtonLabel",
@@ -3258,75 +3222,201 @@
3258
3222
  "filepath": "src/components/form/field_search/field_search.tsx"
3259
3223
  },
3260
3224
  {
3261
- "token": "euiTimeOptions.last",
3262
- "defString": "Last",
3225
+ "token": "euiFieldPassword.showPassword",
3226
+ "defString": "Show password as plain text. Note: this will visually expose your password on the screen.",
3263
3227
  "highlighting": "string",
3264
3228
  "loc": {
3265
3229
  "start": {
3266
- "line": 35,
3267
- "column": 25,
3268
- "index": 1138
3230
+ "line": 105,
3231
+ "column": 49,
3232
+ "index": 2960
3269
3233
  },
3270
3234
  "end": {
3271
- "line": 35,
3272
- "column": 66,
3273
- "index": 1179
3235
+ "line": 111,
3236
+ "column": 3,
3237
+ "index": 3181
3274
3238
  }
3275
3239
  },
3276
- "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3240
+ "filepath": "src/components/form/field_password/field_password.tsx"
3277
3241
  },
3278
3242
  {
3279
- "token": "euiTimeOptions.next",
3280
- "defString": "Next",
3243
+ "token": "euiFieldPassword.maskPassword",
3244
+ "defString": "Mask password",
3281
3245
  "highlighting": "string",
3282
3246
  "loc": {
3283
3247
  "start": {
3284
- "line": 36,
3285
- "column": 25,
3286
- "index": 1208
3248
+ "line": 105,
3249
+ "column": 49,
3250
+ "index": 2960
3287
3251
  },
3288
3252
  "end": {
3289
- "line": 36,
3290
- "column": 66,
3291
- "index": 1249
3253
+ "line": 111,
3254
+ "column": 3,
3255
+ "index": 3181
3292
3256
  }
3293
3257
  },
3294
- "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3258
+ "filepath": "src/components/form/field_password/field_password.tsx"
3295
3259
  },
3296
3260
  {
3297
- "token": "euiTimeOptions.seconds",
3298
- "defString": "Seconds",
3261
+ "token": "euiSuperUpdateButton.updatingButtonLabel",
3262
+ "defString": "Updating",
3299
3263
  "highlighting": "string",
3300
3264
  "loc": {
3301
3265
  "start": {
3302
- "line": 40,
3303
- "column": 24,
3304
- "index": 1312
3266
+ "line": 204,
3267
+ "column": 8,
3268
+ "index": 5158
3305
3269
  },
3306
3270
  "end": {
3307
- "line": 40,
3308
- "column": 71,
3309
- "index": 1359
3271
+ "line": 207,
3272
+ "column": 10,
3273
+ "index": 5265
3310
3274
  }
3311
3275
  },
3312
- "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3276
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3313
3277
  },
3314
3278
  {
3315
- "token": "euiTimeOptions.minutes",
3316
- "defString": "Minutes",
3279
+ "token": "euiSuperUpdateButton.updateButtonLabel",
3280
+ "defString": "Update",
3317
3281
  "highlighting": "string",
3318
3282
  "loc": {
3319
3283
  "start": {
3320
- "line": 41,
3321
- "column": 24,
3322
- "index": 1387
3284
+ "line": 213,
3285
+ "column": 8,
3286
+ "index": 5328
3323
3287
  },
3324
3288
  "end": {
3325
- "line": 41,
3326
- "column": 71,
3327
- "index": 1434
3328
- }
3329
- },
3289
+ "line": 216,
3290
+ "column": 10,
3291
+ "index": 5431
3292
+ }
3293
+ },
3294
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3295
+ },
3296
+ {
3297
+ "token": "euiSuperUpdateButton.refreshButtonLabel",
3298
+ "defString": "Refresh",
3299
+ "highlighting": "string",
3300
+ "loc": {
3301
+ "start": {
3302
+ "line": 221,
3303
+ "column": 6,
3304
+ "index": 5467
3305
+ },
3306
+ "end": {
3307
+ "line": 224,
3308
+ "column": 8,
3309
+ "index": 5566
3310
+ }
3311
+ },
3312
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3313
+ },
3314
+ {
3315
+ "token": "euiSuperUpdateButton.cannotUpdateTooltip",
3316
+ "defString": "Cannot update",
3317
+ "highlighting": "string",
3318
+ "loc": {
3319
+ "start": {
3320
+ "line": 231,
3321
+ "column": 8,
3322
+ "index": 5681
3323
+ },
3324
+ "end": {
3325
+ "line": 234,
3326
+ "column": 10,
3327
+ "index": 5793
3328
+ }
3329
+ },
3330
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3331
+ },
3332
+ {
3333
+ "token": "euiSuperUpdateButton.clickToApplyTooltip",
3334
+ "defString": "Click to apply",
3335
+ "highlighting": "string",
3336
+ "loc": {
3337
+ "start": {
3338
+ "line": 240,
3339
+ "column": 8,
3340
+ "index": 5892
3341
+ },
3342
+ "end": {
3343
+ "line": 243,
3344
+ "column": 10,
3345
+ "index": 6005
3346
+ }
3347
+ },
3348
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3349
+ },
3350
+ {
3351
+ "token": "euiTimeOptions.last",
3352
+ "defString": "Last",
3353
+ "highlighting": "string",
3354
+ "loc": {
3355
+ "start": {
3356
+ "line": 35,
3357
+ "column": 25,
3358
+ "index": 1138
3359
+ },
3360
+ "end": {
3361
+ "line": 35,
3362
+ "column": 66,
3363
+ "index": 1179
3364
+ }
3365
+ },
3366
+ "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3367
+ },
3368
+ {
3369
+ "token": "euiTimeOptions.next",
3370
+ "defString": "Next",
3371
+ "highlighting": "string",
3372
+ "loc": {
3373
+ "start": {
3374
+ "line": 36,
3375
+ "column": 25,
3376
+ "index": 1208
3377
+ },
3378
+ "end": {
3379
+ "line": 36,
3380
+ "column": 66,
3381
+ "index": 1249
3382
+ }
3383
+ },
3384
+ "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3385
+ },
3386
+ {
3387
+ "token": "euiTimeOptions.seconds",
3388
+ "defString": "Seconds",
3389
+ "highlighting": "string",
3390
+ "loc": {
3391
+ "start": {
3392
+ "line": 40,
3393
+ "column": 24,
3394
+ "index": 1312
3395
+ },
3396
+ "end": {
3397
+ "line": 40,
3398
+ "column": 71,
3399
+ "index": 1359
3400
+ }
3401
+ },
3402
+ "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3403
+ },
3404
+ {
3405
+ "token": "euiTimeOptions.minutes",
3406
+ "defString": "Minutes",
3407
+ "highlighting": "string",
3408
+ "loc": {
3409
+ "start": {
3410
+ "line": 41,
3411
+ "column": 24,
3412
+ "index": 1387
3413
+ },
3414
+ "end": {
3415
+ "line": 41,
3416
+ "column": 71,
3417
+ "index": 1434
3418
+ }
3419
+ },
3330
3420
  "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3331
3421
  },
3332
3422
  {
@@ -3942,94 +4032,130 @@
3942
4032
  "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3943
4033
  },
3944
4034
  {
3945
- "token": "euiSuperUpdateButton.updatingButtonLabel",
3946
- "defString": "Updating",
4035
+ "token": "euiTimeWindowButtons.invalidShiftLabel",
4036
+ "defString": "Cannot shift invalid time window",
3947
4037
  "highlighting": "string",
3948
4038
  "loc": {
3949
4039
  "start": {
3950
- "line": 204,
3951
- "column": 8,
3952
- "index": 5158
4040
+ "line": 78,
4041
+ "column": 34,
4042
+ "index": 2343
3953
4043
  },
3954
4044
  "end": {
3955
- "line": 207,
3956
- "column": 10,
3957
- "index": 5265
4045
+ "line": 81,
4046
+ "column": 3,
4047
+ "index": 2443
3958
4048
  }
3959
4049
  },
3960
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4050
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3961
4051
  },
3962
4052
  {
3963
- "token": "euiSuperUpdateButton.updateButtonLabel",
3964
- "defString": "Update",
4053
+ "token": "euiTimeWindowButtons.invalidZoomOutLabel",
4054
+ "defString": "Cannot zoom out invalid time window",
3965
4055
  "highlighting": "string",
3966
4056
  "loc": {
3967
4057
  "start": {
3968
- "line": 213,
3969
- "column": 8,
3970
- "index": 5328
4058
+ "line": 82,
4059
+ "column": 36,
4060
+ "index": 2481
3971
4061
  },
3972
4062
  "end": {
3973
- "line": 216,
3974
- "column": 10,
3975
- "index": 5431
4063
+ "line": 85,
4064
+ "column": 3,
4065
+ "index": 2586
3976
4066
  }
3977
4067
  },
3978
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4068
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3979
4069
  },
3980
4070
  {
3981
- "token": "euiSuperUpdateButton.refreshButtonLabel",
3982
- "defString": "Refresh",
4071
+ "token": "euiTimeWindowButtons.previousLabel",
4072
+ "defString": "Previous",
3983
4073
  "highlighting": "string",
3984
4074
  "loc": {
3985
4075
  "start": {
3986
- "line": 221,
3987
- "column": 6,
3988
- "index": 5467
4076
+ "line": 88,
4077
+ "column": 24,
4078
+ "index": 2678
3989
4079
  },
3990
4080
  "end": {
3991
- "line": 224,
3992
- "column": 8,
3993
- "index": 5566
4081
+ "line": 91,
4082
+ "column": 3,
4083
+ "index": 2750
3994
4084
  }
3995
4085
  },
3996
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4086
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3997
4087
  },
3998
4088
  {
3999
- "token": "euiSuperUpdateButton.cannotUpdateTooltip",
4000
- "defString": "Cannot update",
4089
+ "token": "euiTimeWindowButtons.previousDescription",
4090
+ "defString": "Previous {displayInterval}",
4001
4091
  "highlighting": "string",
4002
4092
  "loc": {
4003
4093
  "start": {
4004
- "line": 231,
4005
- "column": 8,
4006
- "index": 5681
4094
+ "line": 92,
4095
+ "column": 33,
4096
+ "index": 2785
4007
4097
  },
4008
4098
  "end": {
4009
- "line": 234,
4010
- "column": 10,
4011
- "index": 5793
4099
+ "line": 96,
4100
+ "column": 3,
4101
+ "index": 2906
4012
4102
  }
4013
4103
  },
4014
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4104
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4015
4105
  },
4016
4106
  {
4017
- "token": "euiSuperUpdateButton.clickToApplyTooltip",
4018
- "defString": "Click to apply",
4107
+ "token": "euiTimeWindowButtons.zoomOutLabel",
4108
+ "defString": "Zoom out",
4019
4109
  "highlighting": "string",
4020
4110
  "loc": {
4021
4111
  "start": {
4022
- "line": 240,
4023
- "column": 8,
4024
- "index": 5892
4112
+ "line": 99,
4113
+ "column": 23,
4114
+ "index": 2996
4025
4115
  },
4026
4116
  "end": {
4027
- "line": 243,
4028
- "column": 10,
4029
- "index": 6005
4117
+ "line": 102,
4118
+ "column": 3,
4119
+ "index": 3067
4030
4120
  }
4031
4121
  },
4032
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4122
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4123
+ },
4124
+ {
4125
+ "token": "euiTimeWindowButtons.nextLabel",
4126
+ "defString": "Next",
4127
+ "highlighting": "string",
4128
+ "loc": {
4129
+ "start": {
4130
+ "line": 108,
4131
+ "column": 20,
4132
+ "index": 3241
4133
+ },
4134
+ "end": {
4135
+ "line": 108,
4136
+ "column": 72,
4137
+ "index": 3293
4138
+ }
4139
+ },
4140
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4141
+ },
4142
+ {
4143
+ "token": "euiTimeWindowButtons.nextDescription",
4144
+ "defString": "Next {displayInterval}",
4145
+ "highlighting": "string",
4146
+ "loc": {
4147
+ "start": {
4148
+ "line": 109,
4149
+ "column": 29,
4150
+ "index": 3324
4151
+ },
4152
+ "end": {
4153
+ "line": 113,
4154
+ "column": 3,
4155
+ "index": 3437
4156
+ }
4157
+ },
4158
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4033
4159
  },
4034
4160
  {
4035
4161
  "token": "euiPrettyInterval.seconds",
@@ -4201,12 +4327,12 @@
4201
4327
  "start": {
4202
4328
  "line": 30,
4203
4329
  "column": 5,
4204
- "index": 1062
4330
+ "index": 1079
4205
4331
  },
4206
4332
  "end": {
4207
4333
  "line": 34,
4208
4334
  "column": 3,
4209
- "index": 1216
4335
+ "index": 1233
4210
4336
  }
4211
4337
  },
4212
4338
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4219,12 +4345,12 @@
4219
4345
  "start": {
4220
4346
  "line": 35,
4221
4347
  "column": 8,
4222
- "index": 1226
4348
+ "index": 1243
4223
4349
  },
4224
4350
  "end": {
4225
4351
  "line": 39,
4226
4352
  "column": 3,
4227
- "index": 1380
4353
+ "index": 1397
4228
4354
  }
4229
4355
  },
4230
4356
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4237,12 +4363,12 @@
4237
4363
  "start": {
4238
4364
  "line": 40,
4239
4365
  "column": 5,
4240
- "index": 1387
4366
+ "index": 1404
4241
4367
  },
4242
4368
  "end": {
4243
4369
  "line": 44,
4244
4370
  "column": 3,
4245
- "index": 1541
4371
+ "index": 1558
4246
4372
  }
4247
4373
  },
4248
4374
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4255,12 +4381,12 @@
4255
4381
  "start": {
4256
4382
  "line": 45,
4257
4383
  "column": 8,
4258
- "index": 1551
4384
+ "index": 1568
4259
4385
  },
4260
4386
  "end": {
4261
4387
  "line": 49,
4262
4388
  "column": 3,
4263
- "index": 1705
4389
+ "index": 1722
4264
4390
  }
4265
4391
  },
4266
4392
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4273,12 +4399,12 @@
4273
4399
  "start": {
4274
4400
  "line": 50,
4275
4401
  "column": 5,
4276
- "index": 1712
4402
+ "index": 1729
4277
4403
  },
4278
4404
  "end": {
4279
4405
  "line": 54,
4280
4406
  "column": 3,
4281
- "index": 1862
4407
+ "index": 1879
4282
4408
  }
4283
4409
  },
4284
4410
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4291,12 +4417,12 @@
4291
4417
  "start": {
4292
4418
  "line": 55,
4293
4419
  "column": 8,
4294
- "index": 1872
4420
+ "index": 1889
4295
4421
  },
4296
4422
  "end": {
4297
4423
  "line": 59,
4298
4424
  "column": 3,
4299
- "index": 2022
4425
+ "index": 2039
4300
4426
  }
4301
4427
  },
4302
4428
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4309,12 +4435,12 @@
4309
4435
  "start": {
4310
4436
  "line": 60,
4311
4437
  "column": 5,
4312
- "index": 2029
4438
+ "index": 2046
4313
4439
  },
4314
4440
  "end": {
4315
4441
  "line": 64,
4316
4442
  "column": 3,
4317
- "index": 2177
4443
+ "index": 2194
4318
4444
  }
4319
4445
  },
4320
4446
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4327,12 +4453,12 @@
4327
4453
  "start": {
4328
4454
  "line": 65,
4329
4455
  "column": 8,
4330
- "index": 2187
4456
+ "index": 2204
4331
4457
  },
4332
4458
  "end": {
4333
4459
  "line": 69,
4334
4460
  "column": 3,
4335
- "index": 2336
4461
+ "index": 2353
4336
4462
  }
4337
4463
  },
4338
4464
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4345,12 +4471,12 @@
4345
4471
  "start": {
4346
4472
  "line": 70,
4347
4473
  "column": 5,
4348
- "index": 2343
4474
+ "index": 2360
4349
4475
  },
4350
4476
  "end": {
4351
4477
  "line": 74,
4352
4478
  "column": 3,
4353
- "index": 2493
4479
+ "index": 2510
4354
4480
  }
4355
4481
  },
4356
4482
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4363,12 +4489,12 @@
4363
4489
  "start": {
4364
4490
  "line": 75,
4365
4491
  "column": 8,
4366
- "index": 2503
4492
+ "index": 2520
4367
4493
  },
4368
4494
  "end": {
4369
4495
  "line": 79,
4370
4496
  "column": 3,
4371
- "index": 2653
4497
+ "index": 2670
4372
4498
  }
4373
4499
  },
4374
4500
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4381,12 +4507,12 @@
4381
4507
  "start": {
4382
4508
  "line": 80,
4383
4509
  "column": 5,
4384
- "index": 2660
4510
+ "index": 2677
4385
4511
  },
4386
4512
  "end": {
4387
4513
  "line": 84,
4388
4514
  "column": 3,
4389
- "index": 2812
4515
+ "index": 2829
4390
4516
  }
4391
4517
  },
4392
4518
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4399,12 +4525,12 @@
4399
4525
  "start": {
4400
4526
  "line": 85,
4401
4527
  "column": 8,
4402
- "index": 2822
4528
+ "index": 2839
4403
4529
  },
4404
4530
  "end": {
4405
4531
  "line": 89,
4406
4532
  "column": 3,
4407
- "index": 2974
4533
+ "index": 2991
4408
4534
  }
4409
4535
  },
4410
4536
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4417,12 +4543,12 @@
4417
4543
  "start": {
4418
4544
  "line": 90,
4419
4545
  "column": 5,
4420
- "index": 2981
4546
+ "index": 2998
4421
4547
  },
4422
4548
  "end": {
4423
4549
  "line": 94,
4424
4550
  "column": 3,
4425
- "index": 3131
4551
+ "index": 3148
4426
4552
  }
4427
4553
  },
4428
4554
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4435,12 +4561,12 @@
4435
4561
  "start": {
4436
4562
  "line": 95,
4437
4563
  "column": 8,
4438
- "index": 3141
4564
+ "index": 3158
4439
4565
  },
4440
4566
  "end": {
4441
4567
  "line": 99,
4442
4568
  "column": 3,
4443
- "index": 3291
4569
+ "index": 3308
4444
4570
  }
4445
4571
  },
4446
4572
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4453,12 +4579,12 @@
4453
4579
  "start": {
4454
4580
  "line": 103,
4455
4581
  "column": 5,
4456
- "index": 3373
4582
+ "index": 3390
4457
4583
  },
4458
4584
  "end": {
4459
4585
  "line": 107,
4460
4586
  "column": 3,
4461
- "index": 3506
4587
+ "index": 3523
4462
4588
  }
4463
4589
  },
4464
4590
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4471,12 +4597,12 @@
4471
4597
  "start": {
4472
4598
  "line": 108,
4473
4599
  "column": 5,
4474
- "index": 3513
4600
+ "index": 3530
4475
4601
  },
4476
4602
  "end": {
4477
4603
  "line": 112,
4478
4604
  "column": 3,
4479
- "index": 3646
4605
+ "index": 3663
4480
4606
  }
4481
4607
  },
4482
4608
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4489,12 +4615,12 @@
4489
4615
  "start": {
4490
4616
  "line": 113,
4491
4617
  "column": 5,
4492
- "index": 3653
4618
+ "index": 3670
4493
4619
  },
4494
4620
  "end": {
4495
4621
  "line": 117,
4496
4622
  "column": 3,
4497
- "index": 3782
4623
+ "index": 3799
4498
4624
  }
4499
4625
  },
4500
4626
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4507,12 +4633,12 @@
4507
4633
  "start": {
4508
4634
  "line": 118,
4509
4635
  "column": 5,
4510
- "index": 3789
4636
+ "index": 3806
4511
4637
  },
4512
4638
  "end": {
4513
4639
  "line": 122,
4514
4640
  "column": 3,
4515
- "index": 3916
4641
+ "index": 3933
4516
4642
  }
4517
4643
  },
4518
4644
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4525,12 +4651,12 @@
4525
4651
  "start": {
4526
4652
  "line": 123,
4527
4653
  "column": 5,
4528
- "index": 3923
4654
+ "index": 3940
4529
4655
  },
4530
4656
  "end": {
4531
4657
  "line": 127,
4532
4658
  "column": 3,
4533
- "index": 4052
4659
+ "index": 4069
4534
4660
  }
4535
4661
  },
4536
4662
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4543,12 +4669,12 @@
4543
4669
  "start": {
4544
4670
  "line": 128,
4545
4671
  "column": 5,
4546
- "index": 4059
4672
+ "index": 4076
4547
4673
  },
4548
4674
  "end": {
4549
4675
  "line": 132,
4550
4676
  "column": 3,
4551
- "index": 4190
4677
+ "index": 4207
4552
4678
  }
4553
4679
  },
4554
4680
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4561,12 +4687,12 @@
4561
4687
  "start": {
4562
4688
  "line": 133,
4563
4689
  "column": 5,
4564
- "index": 4197
4690
+ "index": 4214
4565
4691
  },
4566
4692
  "end": {
4567
4693
  "line": 137,
4568
4694
  "column": 3,
4569
- "index": 4326
4695
+ "index": 4343
4570
4696
  }
4571
4697
  },
4572
4698
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4579,12 +4705,12 @@
4579
4705
  "start": {
4580
4706
  "line": 162,
4581
4707
  "column": 21,
4582
- "index": 4777
4708
+ "index": 4794
4583
4709
  },
4584
4710
  "end": {
4585
4711
  "line": 162,
4586
4712
  "column": 63,
4587
- "index": 4819
4713
+ "index": 4836
4588
4714
  }
4589
4715
  },
4590
4716
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4597,12 +4723,12 @@
4597
4723
  "start": {
4598
4724
  "line": 163,
4599
4725
  "column": 29,
4600
- "index": 4850
4726
+ "index": 4867
4601
4727
  },
4602
4728
  "end": {
4603
4729
  "line": 166,
4604
4730
  "column": 3,
4605
- "index": 4917
4731
+ "index": 4934
4606
4732
  }
4607
4733
  },
4608
4734
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -4615,12 +4741,12 @@
4615
4741
  "start": {
4616
4742
  "line": 279,
4617
4743
  "column": 27,
4618
- "index": 8250
4744
+ "index": 8267
4619
4745
  },
4620
4746
  "end": {
4621
4747
  "line": 283,
4622
4748
  "column": 3,
4623
- "index": 8374
4749
+ "index": 8391
4624
4750
  }
4625
4751
  },
4626
4752
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
@@ -5525,6 +5651,24 @@
5525
5651
  },
5526
5652
  "filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
5527
5653
  },
5654
+ {
5655
+ "token": "euiDataGridToolbarControl.badgeAriaLabel",
5656
+ "defString": "Active: {count}",
5657
+ "highlighting": "string",
5658
+ "loc": {
5659
+ "start": {
5660
+ "line": 31,
5661
+ "column": 25,
5662
+ "index": 1211
5663
+ },
5664
+ "end": {
5665
+ "line": 40,
5666
+ "column": 3,
5667
+ "index": 1441
5668
+ }
5669
+ },
5670
+ "filepath": "src/components/datagrid/controls/data_grid_toolbar_control.tsx"
5671
+ },
5528
5672
  {
5529
5673
  "token": "euiDisplaySelector.densityLabel",
5530
5674
  "defString": "Density",
@@ -5706,22 +5850,94 @@
5706
5850
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
5707
5851
  },
5708
5852
  {
5709
- "token": "euiDataGridToolbarControl.badgeAriaLabel",
5710
- "defString": "Active: {count}",
5853
+ "token": "euiColumnSorting.button",
5854
+ "defString": "Sort fields",
5711
5855
  "highlighting": "string",
5712
5856
  "loc": {
5713
5857
  "start": {
5714
- "line": 35,
5715
- "column": 25,
5716
- "index": 1444
5858
+ "line": 66,
5859
+ "column": 30,
5860
+ "index": 2120
5717
5861
  },
5718
5862
  "end": {
5719
- "line": 44,
5720
- "column": 3,
5721
- "index": 1674
5863
+ "line": 69,
5864
+ "column": 5,
5865
+ "index": 2190
5722
5866
  }
5723
5867
  },
5724
- "filepath": "src/components/datagrid/controls/data_grid_toolbar_control.tsx"
5868
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5869
+ },
5870
+ {
5871
+ "token": "euiColumnSorting.sortFieldAriaLabel",
5872
+ "defString": "Sort by: ",
5873
+ "highlighting": "string",
5874
+ "loc": {
5875
+ "start": {
5876
+ "line": 70,
5877
+ "column": 31,
5878
+ "index": 2223
5879
+ },
5880
+ "end": {
5881
+ "line": 73,
5882
+ "column": 5,
5883
+ "index": 2303
5884
+ }
5885
+ },
5886
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5887
+ },
5888
+ {
5889
+ "token": "euiColumnSorting.emptySorting",
5890
+ "defString": "Currently no fields are sorted",
5891
+ "highlighting": "string",
5892
+ "loc": {
5893
+ "start": {
5894
+ "line": 220,
5895
+ "column": 14,
5896
+ "index": 6937
5897
+ },
5898
+ "end": {
5899
+ "line": 223,
5900
+ "column": 16,
5901
+ "index": 7073
5902
+ }
5903
+ },
5904
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5905
+ },
5906
+ {
5907
+ "token": "euiColumnSorting.pickFields",
5908
+ "defString": "Pick fields to sort by",
5909
+ "highlighting": "string",
5910
+ "loc": {
5911
+ "start": {
5912
+ "line": 253,
5913
+ "column": 24,
5914
+ "index": 8296
5915
+ },
5916
+ "end": {
5917
+ "line": 256,
5918
+ "column": 26,
5919
+ "index": 8452
5920
+ }
5921
+ },
5922
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5923
+ },
5924
+ {
5925
+ "token": "euiColumnSorting.clearAll",
5926
+ "defString": "Clear sorting",
5927
+ "highlighting": "string",
5928
+ "loc": {
5929
+ "start": {
5930
+ "line": 328,
5931
+ "column": 20,
5932
+ "index": 11806
5933
+ },
5934
+ "end": {
5935
+ "line": 331,
5936
+ "column": 22,
5937
+ "index": 11939
5938
+ }
5939
+ },
5940
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5725
5941
  },
5726
5942
  {
5727
5943
  "token": "euiColumnSortingDraggable.defaultSortAsc",
@@ -5831,110 +6047,20 @@
5831
6047
  },
5832
6048
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
5833
6049
  },
5834
- {
5835
- "token": "euiColumnSorting.button",
5836
- "defString": "Sort fields",
5837
- "highlighting": "string",
5838
- "loc": {
5839
- "start": {
5840
- "line": 66,
5841
- "column": 30,
5842
- "index": 2120
5843
- },
5844
- "end": {
5845
- "line": 69,
5846
- "column": 5,
5847
- "index": 2190
5848
- }
5849
- },
5850
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5851
- },
5852
- {
5853
- "token": "euiColumnSorting.sortFieldAriaLabel",
5854
- "defString": "Sort by: ",
5855
- "highlighting": "string",
5856
- "loc": {
5857
- "start": {
5858
- "line": 70,
5859
- "column": 31,
5860
- "index": 2223
5861
- },
5862
- "end": {
5863
- "line": 73,
5864
- "column": 5,
5865
- "index": 2303
5866
- }
5867
- },
5868
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5869
- },
5870
- {
5871
- "token": "euiColumnSorting.emptySorting",
5872
- "defString": "Currently no fields are sorted",
5873
- "highlighting": "string",
5874
- "loc": {
5875
- "start": {
5876
- "line": 220,
5877
- "column": 14,
5878
- "index": 6937
5879
- },
5880
- "end": {
5881
- "line": 223,
5882
- "column": 16,
5883
- "index": 7073
5884
- }
5885
- },
5886
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5887
- },
5888
- {
5889
- "token": "euiColumnSorting.pickFields",
5890
- "defString": "Pick fields to sort by",
5891
- "highlighting": "string",
5892
- "loc": {
5893
- "start": {
5894
- "line": 253,
5895
- "column": 24,
5896
- "index": 8296
5897
- },
5898
- "end": {
5899
- "line": 256,
5900
- "column": 26,
5901
- "index": 8452
5902
- }
5903
- },
5904
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5905
- },
5906
- {
5907
- "token": "euiColumnSorting.clearAll",
5908
- "defString": "Clear sorting",
5909
- "highlighting": "string",
5910
- "loc": {
5911
- "start": {
5912
- "line": 328,
5913
- "column": 20,
5914
- "index": 11806
5915
- },
5916
- "end": {
5917
- "line": 331,
5918
- "column": 22,
5919
- "index": 11939
5920
- }
5921
- },
5922
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5923
- },
5924
6050
  {
5925
6051
  "token": "euiColumnSelector.dragHandleAriaLabel",
5926
6052
  "defString": "Drag handle",
5927
6053
  "highlighting": "string",
5928
6054
  "loc": {
5929
6055
  "start": {
5930
- "line": 119,
6056
+ "line": 164,
5931
6057
  "column": 30,
5932
- "index": 3691
6058
+ "index": 5119
5933
6059
  },
5934
6060
  "end": {
5935
- "line": 122,
6061
+ "line": 167,
5936
6062
  "column": 3,
5937
- "index": 3769
6063
+ "index": 5197
5938
6064
  }
5939
6065
  },
5940
6066
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -5945,14 +6071,14 @@
5945
6071
  "highlighting": "string",
5946
6072
  "loc": {
5947
6073
  "start": {
5948
- "line": 158,
6074
+ "line": 203,
5949
6075
  "column": 12,
5950
- "index": 4973
6076
+ "index": 6395
5951
6077
  },
5952
6078
  "end": {
5953
- "line": 158,
6079
+ "line": 203,
5954
6080
  "column": 74,
5955
- "index": 5035
6081
+ "index": 6457
5956
6082
  }
5957
6083
  },
5958
6084
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -5963,14 +6089,14 @@
5963
6089
  "highlighting": "string",
5964
6090
  "loc": {
5965
6091
  "start": {
5966
- "line": 164,
6092
+ "line": 209,
5967
6093
  "column": 12,
5968
- "index": 5181
6094
+ "index": 6603
5969
6095
  },
5970
6096
  "end": {
5971
- "line": 170,
6097
+ "line": 215,
5972
6098
  "column": 13,
5973
- "index": 5393
6099
+ "index": 6815
5974
6100
  }
5975
6101
  },
5976
6102
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -5981,14 +6107,14 @@
5981
6107
  "highlighting": "string",
5982
6108
  "loc": {
5983
6109
  "start": {
5984
- "line": 164,
6110
+ "line": 209,
5985
6111
  "column": 12,
5986
- "index": 5181
6112
+ "index": 6603
5987
6113
  },
5988
6114
  "end": {
5989
- "line": 170,
6115
+ "line": 215,
5990
6116
  "column": 13,
5991
- "index": 5393
6117
+ "index": 6815
5992
6118
  }
5993
6119
  },
5994
6120
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -5999,14 +6125,14 @@
5999
6125
  "highlighting": "string",
6000
6126
  "loc": {
6001
6127
  "start": {
6002
- "line": 288,
6128
+ "line": 333,
6003
6129
  "column": 18,
6004
- "index": 10386
6130
+ "index": 11808
6005
6131
  },
6006
6132
  "end": {
6007
- "line": 291,
6133
+ "line": 336,
6008
6134
  "column": 20,
6009
- "index": 10510
6135
+ "index": 11932
6010
6136
  }
6011
6137
  },
6012
6138
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
@@ -6017,287 +6143,287 @@
6017
6143
  "highlighting": "string",
6018
6144
  "loc": {
6019
6145
  "start": {
6020
- "line": 301,
6146
+ "line": 346,
6021
6147
  "column": 18,
6022
- "index": 10870
6148
+ "index": 12292
6023
6149
  },
6024
6150
  "end": {
6025
- "line": 304,
6151
+ "line": 349,
6026
6152
  "column": 20,
6027
- "index": 10992
6153
+ "index": 12414
6028
6154
  }
6029
6155
  },
6030
6156
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
6031
6157
  },
6032
6158
  {
6033
- "token": "euiCollapsibleNavButton.ariaLabelExpand",
6034
- "defString": "Expand navigation",
6159
+ "token": "euiComboBoxOptionsList.loadingOptions",
6160
+ "defString": "Loading options",
6035
6161
  "highlighting": "string",
6036
6162
  "loc": {
6037
6163
  "start": {
6038
- "line": 37,
6039
- "column": 28,
6040
- "index": 1465
6164
+ "line": 385,
6165
+ "column": 12,
6166
+ "index": 11008
6041
6167
  },
6042
6168
  "end": {
6043
- "line": 40,
6044
- "column": 3,
6045
- "index": 1551
6169
+ "line": 388,
6170
+ "column": 14,
6171
+ "index": 11131
6046
6172
  }
6047
6173
  },
6048
- "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6174
+ "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6049
6175
  },
6050
6176
  {
6051
- "token": "euiCollapsibleNavButton.ariaLabelCollapse",
6052
- "defString": "Collapse navigation",
6177
+ "token": "euiComboBoxOptionsList.delimiterMessage",
6178
+ "defString": "Add each item separated by {delimiter}",
6053
6179
  "highlighting": "string",
6054
6180
  "loc": {
6055
6181
  "start": {
6056
- "line": 41,
6057
- "column": 30,
6058
- "index": 1583
6182
+ "line": 398,
6183
+ "column": 16,
6184
+ "index": 11570
6059
6185
  },
6060
6186
  "end": {
6061
- "line": 44,
6062
- "column": 3,
6063
- "index": 1673
6187
+ "line": 402,
6188
+ "column": 18,
6189
+ "index": 11801
6064
6190
  }
6065
6191
  },
6066
- "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6192
+ "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6067
6193
  },
6068
6194
  {
6069
- "token": "euiCollapsibleNavButton.ariaLabelOpen",
6070
- "defString": "Open navigation",
6195
+ "token": "euiComboBoxOptionsList.alreadyAdded",
6196
+ "defString": "{label} has already been added",
6071
6197
  "highlighting": "string",
6072
6198
  "loc": {
6073
6199
  "start": {
6074
- "line": 45,
6075
- "column": 26,
6076
- "index": 1701
6200
+ "line": 417,
6201
+ "column": 16,
6202
+ "index": 12230
6077
6203
  },
6078
6204
  "end": {
6079
- "line": 48,
6080
- "column": 3,
6081
- "index": 1783
6205
+ "line": 423,
6206
+ "column": 18,
6207
+ "index": 12503
6082
6208
  }
6083
6209
  },
6084
- "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6210
+ "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6085
6211
  },
6086
6212
  {
6087
- "token": "euiCollapsibleNavButton.ariaLabelClose",
6088
- "defString": "Close navigation",
6213
+ "token": "euiComboBoxOptionsList.createCustomOption",
6214
+ "defString": "Add {searchValue} as a custom option",
6089
6215
  "highlighting": "string",
6090
6216
  "loc": {
6091
6217
  "start": {
6092
- "line": 49,
6093
- "column": 27,
6094
- "index": 1812
6218
+ "line": 452,
6219
+ "column": 20,
6220
+ "index": 13494
6095
6221
  },
6096
6222
  "end": {
6097
- "line": 52,
6098
- "column": 3,
6099
- "index": 1896
6100
- }
6223
+ "line": 458,
6224
+ "column": 22,
6225
+ "index": 13792
6226
+ }
6101
6227
  },
6102
- "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6228
+ "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6103
6229
  },
6104
6230
  {
6105
- "token": "euiCollapsibleNavKibanaSolution.switcherTitle",
6106
- "defString": "Solution view",
6231
+ "token": "euiComboBoxOptionsList.noMatchingOptions",
6232
+ "defString": "{searchValue} doesn't match any options",
6107
6233
  "highlighting": "string",
6108
6234
  "loc": {
6109
6235
  "start": {
6110
- "line": 73,
6111
- "column": 40,
6112
- "index": 2535
6236
+ "line": 469,
6237
+ "column": 12,
6238
+ "index": 13996
6113
6239
  },
6114
6240
  "end": {
6115
- "line": 76,
6116
- "column": 3,
6117
- "index": 2623
6241
+ "line": 473,
6242
+ "column": 14,
6243
+ "index": 14217
6118
6244
  }
6119
6245
  },
6120
- "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6246
+ "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6121
6247
  },
6122
6248
  {
6123
- "token": "euiCollapsibleNavKibanaSolution.switcherAriaLabel",
6124
- "defString": " - click to switch to another solution",
6249
+ "token": "euiComboBoxOptionsList.noAvailableOptions",
6250
+ "defString": "There aren't any options available",
6125
6251
  "highlighting": "string",
6126
6252
  "loc": {
6127
6253
  "start": {
6128
- "line": 77,
6129
- "column": 44,
6130
- "index": 2669
6254
+ "line": 480,
6255
+ "column": 10,
6256
+ "index": 14336
6131
6257
  },
6132
6258
  "end": {
6133
- "line": 80,
6134
- "column": 3,
6135
- "index": 2786
6259
+ "line": 483,
6260
+ "column": 12,
6261
+ "index": 14476
6136
6262
  }
6137
6263
  },
6138
- "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6264
+ "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6139
6265
  },
6140
6266
  {
6141
- "token": "euiCollapsibleNavKibanaSolution.groupLabel",
6142
- "defString": "Navigate to solution",
6267
+ "token": "euiComboBoxOptionsList.allOptionsSelected",
6268
+ "defString": "You've selected all available options",
6143
6269
  "highlighting": "string",
6144
6270
  "loc": {
6145
6271
  "start": {
6146
- "line": 81,
6147
- "column": 37,
6148
- "index": 2825
6272
+ "line": 489,
6273
+ "column": 10,
6274
+ "index": 14589
6149
6275
  },
6150
6276
  "end": {
6151
- "line": 84,
6152
- "column": 3,
6153
- "index": 2917
6277
+ "line": 492,
6278
+ "column": 12,
6279
+ "index": 14732
6154
6280
  }
6155
6281
  },
6156
- "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6282
+ "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6157
6283
  },
6158
6284
  {
6159
- "token": "euiComboBoxOptionsList.loadingOptions",
6160
- "defString": "Loading options",
6285
+ "token": "euiComboBoxPill.removeSelection",
6286
+ "defString": "Remove {children} from selection in this group",
6161
6287
  "highlighting": "string",
6162
6288
  "loc": {
6163
6289
  "start": {
6164
- "line": 385,
6165
- "column": 12,
6166
- "index": 11008
6290
+ "line": 67,
6291
+ "column": 6,
6292
+ "index": 2037
6167
6293
  },
6168
6294
  "end": {
6169
- "line": 388,
6170
- "column": 14,
6171
- "index": 11131
6295
+ "line": 71,
6296
+ "column": 7,
6297
+ "index": 2196
6172
6298
  }
6173
6299
  },
6174
- "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6300
+ "filepath": "src/components/combo_box/combo_box_input/combo_box_pill.tsx"
6175
6301
  },
6176
6302
  {
6177
- "token": "euiComboBoxOptionsList.delimiterMessage",
6178
- "defString": "Add each item separated by {delimiter}",
6303
+ "token": "euiCollapsibleNavButton.ariaLabelExpand",
6304
+ "defString": "Expand navigation",
6179
6305
  "highlighting": "string",
6180
6306
  "loc": {
6181
6307
  "start": {
6182
- "line": 398,
6183
- "column": 16,
6184
- "index": 11570
6308
+ "line": 37,
6309
+ "column": 28,
6310
+ "index": 1465
6185
6311
  },
6186
6312
  "end": {
6187
- "line": 402,
6188
- "column": 18,
6189
- "index": 11801
6313
+ "line": 40,
6314
+ "column": 3,
6315
+ "index": 1551
6190
6316
  }
6191
6317
  },
6192
- "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6318
+ "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6193
6319
  },
6194
6320
  {
6195
- "token": "euiComboBoxOptionsList.alreadyAdded",
6196
- "defString": "{label} has already been added",
6321
+ "token": "euiCollapsibleNavButton.ariaLabelCollapse",
6322
+ "defString": "Collapse navigation",
6197
6323
  "highlighting": "string",
6198
6324
  "loc": {
6199
6325
  "start": {
6200
- "line": 417,
6201
- "column": 16,
6202
- "index": 12230
6326
+ "line": 41,
6327
+ "column": 30,
6328
+ "index": 1583
6203
6329
  },
6204
6330
  "end": {
6205
- "line": 423,
6206
- "column": 18,
6207
- "index": 12503
6331
+ "line": 44,
6332
+ "column": 3,
6333
+ "index": 1673
6208
6334
  }
6209
6335
  },
6210
- "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6336
+ "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6211
6337
  },
6212
6338
  {
6213
- "token": "euiComboBoxOptionsList.createCustomOption",
6214
- "defString": "Add {searchValue} as a custom option",
6339
+ "token": "euiCollapsibleNavButton.ariaLabelOpen",
6340
+ "defString": "Open navigation",
6215
6341
  "highlighting": "string",
6216
6342
  "loc": {
6217
6343
  "start": {
6218
- "line": 452,
6219
- "column": 20,
6220
- "index": 13494
6344
+ "line": 45,
6345
+ "column": 26,
6346
+ "index": 1701
6221
6347
  },
6222
6348
  "end": {
6223
- "line": 458,
6224
- "column": 22,
6225
- "index": 13792
6349
+ "line": 48,
6350
+ "column": 3,
6351
+ "index": 1783
6226
6352
  }
6227
6353
  },
6228
- "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6354
+ "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6229
6355
  },
6230
6356
  {
6231
- "token": "euiComboBoxOptionsList.noMatchingOptions",
6232
- "defString": "{searchValue} doesn't match any options",
6357
+ "token": "euiCollapsibleNavButton.ariaLabelClose",
6358
+ "defString": "Close navigation",
6233
6359
  "highlighting": "string",
6234
6360
  "loc": {
6235
6361
  "start": {
6236
- "line": 469,
6237
- "column": 12,
6238
- "index": 13996
6362
+ "line": 49,
6363
+ "column": 27,
6364
+ "index": 1812
6239
6365
  },
6240
6366
  "end": {
6241
- "line": 473,
6242
- "column": 14,
6243
- "index": 14217
6367
+ "line": 52,
6368
+ "column": 3,
6369
+ "index": 1896
6244
6370
  }
6245
6371
  },
6246
- "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6372
+ "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6247
6373
  },
6248
6374
  {
6249
- "token": "euiComboBoxOptionsList.noAvailableOptions",
6250
- "defString": "There aren't any options available",
6375
+ "token": "euiCollapsibleNavKibanaSolution.switcherTitle",
6376
+ "defString": "Solution view",
6251
6377
  "highlighting": "string",
6252
6378
  "loc": {
6253
6379
  "start": {
6254
- "line": 480,
6255
- "column": 10,
6256
- "index": 14336
6380
+ "line": 73,
6381
+ "column": 40,
6382
+ "index": 2535
6257
6383
  },
6258
6384
  "end": {
6259
- "line": 483,
6260
- "column": 12,
6261
- "index": 14476
6385
+ "line": 76,
6386
+ "column": 3,
6387
+ "index": 2623
6262
6388
  }
6263
6389
  },
6264
- "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6390
+ "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6265
6391
  },
6266
6392
  {
6267
- "token": "euiComboBoxOptionsList.allOptionsSelected",
6268
- "defString": "You've selected all available options",
6393
+ "token": "euiCollapsibleNavKibanaSolution.switcherAriaLabel",
6394
+ "defString": " - click to switch to another solution",
6269
6395
  "highlighting": "string",
6270
6396
  "loc": {
6271
6397
  "start": {
6272
- "line": 489,
6273
- "column": 10,
6274
- "index": 14589
6398
+ "line": 77,
6399
+ "column": 44,
6400
+ "index": 2669
6275
6401
  },
6276
6402
  "end": {
6277
- "line": 492,
6278
- "column": 12,
6279
- "index": 14732
6403
+ "line": 80,
6404
+ "column": 3,
6405
+ "index": 2786
6280
6406
  }
6281
6407
  },
6282
- "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6408
+ "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6283
6409
  },
6284
6410
  {
6285
- "token": "euiComboBoxPill.removeSelection",
6286
- "defString": "Remove {children} from selection in this group",
6411
+ "token": "euiCollapsibleNavKibanaSolution.groupLabel",
6412
+ "defString": "Navigate to solution",
6287
6413
  "highlighting": "string",
6288
6414
  "loc": {
6289
6415
  "start": {
6290
- "line": 67,
6291
- "column": 6,
6292
- "index": 2037
6416
+ "line": 81,
6417
+ "column": 37,
6418
+ "index": 2825
6293
6419
  },
6294
6420
  "end": {
6295
- "line": 71,
6296
- "column": 7,
6297
- "index": 2196
6421
+ "line": 84,
6422
+ "column": 3,
6423
+ "index": 2917
6298
6424
  }
6299
6425
  },
6300
- "filepath": "src/components/combo_box/combo_box_input/combo_box_pill.tsx"
6426
+ "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6301
6427
  },
6302
6428
  {
6303
6429
  "token": "euiCardSelect.selected",
@@ -6372,508 +6498,508 @@
6372
6498
  "filepath": "src/components/accordion/accordion_children/accordion_children_loading.tsx"
6373
6499
  },
6374
6500
  {
6375
- "token": "euiRelativeTab.numberInputLabel",
6376
- "defString": "Time span amount",
6501
+ "token": "euiRecentlyUsed.legend",
6502
+ "defString": "Recently used date ranges",
6377
6503
  "highlighting": "string",
6378
6504
  "loc": {
6379
6505
  "start": {
6380
- "line": 118,
6381
- "column": 26,
6382
- "index": 3640
6506
+ "line": 33,
6507
+ "column": 16,
6508
+ "index": 1123
6383
6509
  },
6384
6510
  "end": {
6385
- "line": 121,
6511
+ "line": 36,
6386
6512
  "column": 3,
6387
- "index": 3717
6513
+ "index": 1200
6388
6514
  }
6389
6515
  },
6390
- "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6516
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/recently_used.tsx"
6391
6517
  },
6392
6518
  {
6393
- "token": "euiRelativeTab.numberInputError",
6394
- "defString": "Must be >= 0",
6519
+ "token": "euiQuickSelectPopover.buttonLabel",
6520
+ "defString": "Date quick select",
6395
6521
  "highlighting": "string",
6396
6522
  "loc": {
6397
6523
  "start": {
6398
- "line": 122,
6399
- "column": 27,
6400
- "index": 3746
6524
+ "line": 103,
6525
+ "column": 22,
6526
+ "index": 3370
6401
6527
  },
6402
6528
  "end": {
6403
- "line": 125,
6529
+ "line": 106,
6404
6530
  "column": 3,
6405
- "index": 3819
6531
+ "index": 3450
6406
6532
  }
6407
6533
  },
6408
- "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6534
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
6409
6535
  },
6410
6536
  {
6411
- "token": "euiRelativeTab.dateInputError",
6412
- "defString": "Must be a valid range",
6537
+ "token": "euiQuickSelect.quickSelectTitle",
6538
+ "defString": "Quick select",
6413
6539
  "highlighting": "string",
6414
6540
  "loc": {
6415
6541
  "start": {
6416
- "line": 126,
6417
- "column": 25,
6418
- "index": 3846
6542
+ "line": 162,
6543
+ "column": 10,
6544
+ "index": 4691
6419
6545
  },
6420
6546
  "end": {
6421
- "line": 129,
6422
- "column": 3,
6423
- "index": 3926
6547
+ "line": 165,
6548
+ "column": 12,
6549
+ "index": 4799
6424
6550
  }
6425
6551
  },
6426
- "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6552
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6427
6553
  },
6428
6554
  {
6429
- "token": "euiRelativeTab.unitInputLabel",
6430
- "defString": "Relative time span",
6555
+ "token": "euiQuickSelect.previousLabel",
6556
+ "defString": "Previous time window",
6431
6557
  "highlighting": "string",
6432
6558
  "loc": {
6433
6559
  "start": {
6434
- "line": 130,
6435
- "column": 30,
6436
- "index": 3958
6560
+ "line": 184,
6561
+ "column": 12,
6562
+ "index": 5381
6437
6563
  },
6438
6564
  "end": {
6439
- "line": 133,
6440
- "column": 3,
6441
- "index": 4035
6565
+ "line": 187,
6566
+ "column": 13,
6567
+ "index": 5499
6442
6568
  }
6443
6569
  },
6444
- "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6570
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6445
6571
  },
6446
6572
  {
6447
- "token": "euiRelativeTab.fullDescription",
6448
- "defString": "The unit is changeable. Currently set to {unit}.",
6573
+ "token": "euiQuickSelect.nextLabel",
6574
+ "defString": "Next time window",
6449
6575
  "highlighting": "string",
6450
6576
  "loc": {
6451
6577
  "start": {
6452
- "line": 181,
6578
+ "line": 200,
6453
6579
  "column": 12,
6454
- "index": 5535
6580
+ "index": 5957
6455
6581
  },
6456
6582
  "end": {
6457
- "line": 185,
6458
- "column": 14,
6459
- "index": 5716
6583
+ "line": 203,
6584
+ "column": 13,
6585
+ "index": 6067
6460
6586
  }
6461
6587
  },
6462
- "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6588
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6463
6589
  },
6464
6590
  {
6465
- "token": "euiDatePopoverContent.startDateLabel",
6466
- "defString": "Start date",
6591
+ "token": "euiQuickSelect.tenseLabel",
6592
+ "defString": "Time tense",
6467
6593
  "highlighting": "string",
6468
6594
  "loc": {
6469
6595
  "start": {
6470
- "line": 74,
6471
- "column": 25,
6472
- "index": 2140
6596
+ "line": 218,
6597
+ "column": 12,
6598
+ "index": 6581
6473
6599
  },
6474
6600
  "end": {
6475
- "line": 77,
6476
- "column": 3,
6477
- "index": 2216
6601
+ "line": 218,
6602
+ "column": 76,
6603
+ "index": 6645
6478
6604
  }
6479
6605
  },
6480
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6606
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6481
6607
  },
6482
6608
  {
6483
- "token": "euiDatePopoverContent.endDateLabel",
6484
- "defString": "End date",
6609
+ "token": "euiQuickSelect.valueLabel",
6610
+ "defString": "Time value",
6485
6611
  "highlighting": "string",
6486
6612
  "loc": {
6487
6613
  "start": {
6488
- "line": 78,
6489
- "column": 23,
6490
- "index": 2241
6614
+ "line": 233,
6615
+ "column": 12,
6616
+ "index": 7167
6491
6617
  },
6492
6618
  "end": {
6493
- "line": 81,
6494
- "column": 3,
6495
- "index": 2313
6619
+ "line": 233,
6620
+ "column": 76,
6621
+ "index": 7231
6496
6622
  }
6497
6623
  },
6498
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6624
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6499
6625
  },
6500
6626
  {
6501
- "token": "euiDatePopoverContent.absoluteTabLabel",
6502
- "defString": "Absolute",
6627
+ "token": "euiQuickSelect.unitLabel",
6628
+ "defString": "Time unit",
6503
6629
  "highlighting": "string",
6504
6630
  "loc": {
6505
6631
  "start": {
6506
- "line": 84,
6507
- "column": 24,
6508
- "index": 2416
6632
+ "line": 247,
6633
+ "column": 12,
6634
+ "index": 7713
6509
6635
  },
6510
6636
  "end": {
6511
- "line": 87,
6512
- "column": 3,
6513
- "index": 2492
6637
+ "line": 247,
6638
+ "column": 74,
6639
+ "index": 7775
6514
6640
  }
6515
6641
  },
6516
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6642
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6517
6643
  },
6518
6644
  {
6519
- "token": "euiDatePopoverContent.relativeTabLabel",
6520
- "defString": "Relative",
6645
+ "token": "euiQuickSelect.applyButton",
6646
+ "defString": "Apply",
6521
6647
  "highlighting": "string",
6522
6648
  "loc": {
6523
6649
  "start": {
6524
- "line": 88,
6525
- "column": 24,
6526
- "index": 2518
6650
+ "line": 270,
6651
+ "column": 14,
6652
+ "index": 8658
6527
6653
  },
6528
6654
  "end": {
6529
- "line": 91,
6530
- "column": 3,
6531
- "index": 2594
6655
+ "line": 270,
6656
+ "column": 76,
6657
+ "index": 8720
6532
6658
  }
6533
6659
  },
6534
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6660
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6535
6661
  },
6536
6662
  {
6537
- "token": "euiDatePopoverContent.nowTabLabel",
6538
- "defString": "Now",
6663
+ "token": "euiQuickSelect.fullDescription",
6664
+ "defString": "Currently set to {timeTense} {timeValue} {timeUnit}.",
6539
6665
  "highlighting": "string",
6540
6666
  "loc": {
6541
6667
  "start": {
6542
- "line": 92,
6543
- "column": 19,
6544
- "index": 2615
6668
+ "line": 276,
6669
+ "column": 12,
6670
+ "index": 8877
6545
6671
  },
6546
6672
  "end": {
6547
- "line": 92,
6548
- "column": 73,
6549
- "index": 2669
6673
+ "line": 284,
6674
+ "column": 14,
6675
+ "index": 9151
6550
6676
  }
6551
6677
  },
6552
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6678
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6553
6679
  },
6554
6680
  {
6555
- "token": "euiDatePopoverContent.nowTabContent",
6556
- "defString": "Setting the time to \"now\" means that on every refresh this time will be set to the time of the refresh.",
6681
+ "token": "euiCommonlyUsedTimeRanges.legend",
6682
+ "defString": "Commonly used",
6557
6683
  "highlighting": "string",
6558
6684
  "loc": {
6559
6685
  "start": {
6560
- "line": 140,
6561
- "column": 12,
6562
- "index": 3943
6686
+ "line": 27,
6687
+ "column": 16,
6688
+ "index": 995
6563
6689
  },
6564
6690
  "end": {
6565
- "line": 143,
6566
- "column": 14,
6567
- "index": 4152
6691
+ "line": 27,
6692
+ "column": 79,
6693
+ "index": 1058
6568
6694
  }
6569
6695
  },
6570
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6696
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
6571
6697
  },
6572
6698
  {
6573
- "token": "euiDatePopoverContent.nowTabButtonStart",
6574
- "defString": "Set start date and time to now",
6699
+ "token": "euiRelativeTab.numberInputLabel",
6700
+ "defString": "Time span amount",
6575
6701
  "highlighting": "string",
6576
6702
  "loc": {
6577
6703
  "start": {
6578
- "line": 155,
6579
- "column": 14,
6580
- "index": 4442
6704
+ "line": 125,
6705
+ "column": 26,
6706
+ "index": 3865
6581
6707
  },
6582
6708
  "end": {
6583
- "line": 158,
6584
- "column": 16,
6585
- "index": 4588
6709
+ "line": 128,
6710
+ "column": 3,
6711
+ "index": 3942
6586
6712
  }
6587
6713
  },
6588
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6714
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6589
6715
  },
6590
6716
  {
6591
- "token": "euiDatePopoverContent.nowTabButtonEnd",
6592
- "defString": "Set end date and time to now",
6717
+ "token": "euiRelativeTab.numberInputError",
6718
+ "defString": "Must be >= 0",
6593
6719
  "highlighting": "string",
6594
6720
  "loc": {
6595
6721
  "start": {
6596
- "line": 160,
6597
- "column": 14,
6598
- "index": 4621
6722
+ "line": 129,
6723
+ "column": 27,
6724
+ "index": 3971
6599
6725
  },
6600
6726
  "end": {
6601
- "line": 163,
6602
- "column": 16,
6603
- "index": 4763
6727
+ "line": 132,
6728
+ "column": 3,
6729
+ "index": 4044
6604
6730
  }
6605
6731
  },
6606
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6732
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6607
6733
  },
6608
6734
  {
6609
- "token": "euiDatePopoverButton.invalidTitle",
6610
- "defString": "Invalid date: {title}",
6735
+ "token": "euiRelativeTab.dateInputError",
6736
+ "defString": "Must be a valid range",
6611
6737
  "highlighting": "string",
6612
6738
  "loc": {
6613
6739
  "start": {
6614
- "line": 104,
6615
- "column": 23,
6616
- "index": 2906
6740
+ "line": 133,
6741
+ "column": 25,
6742
+ "index": 4071
6617
6743
  },
6618
6744
  "end": {
6619
- "line": 108,
6745
+ "line": 136,
6620
6746
  "column": 3,
6621
- "index": 3005
6747
+ "index": 4151
6622
6748
  }
6623
6749
  },
6624
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
6750
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6625
6751
  },
6626
6752
  {
6627
- "token": "euiDatePopoverButton.outdatedTitle",
6628
- "defString": "Update needed: {title}",
6753
+ "token": "euiRelativeTab.unitInputLabel",
6754
+ "defString": "Relative time span",
6629
6755
  "highlighting": "string",
6630
6756
  "loc": {
6631
6757
  "start": {
6632
- "line": 109,
6633
- "column": 24,
6634
- "index": 3031
6758
+ "line": 137,
6759
+ "column": 30,
6760
+ "index": 4183
6635
6761
  },
6636
6762
  "end": {
6637
- "line": 113,
6763
+ "line": 140,
6638
6764
  "column": 3,
6639
- "index": 3132
6765
+ "index": 4260
6640
6766
  }
6641
6767
  },
6642
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
6768
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6643
6769
  },
6644
6770
  {
6645
- "token": "euiAbsoluteTab.dateFormatButtonLabel",
6646
- "defString": "Parse date",
6771
+ "token": "euiRelativeTab.fullDescription",
6772
+ "defString": "The unit is changeable. Currently set to {unit}.",
6647
6773
  "highlighting": "string",
6648
6774
  "loc": {
6649
6775
  "start": {
6650
- "line": 83,
6651
- "column": 28,
6652
- "index": 2551
6776
+ "line": 189,
6777
+ "column": 12,
6778
+ "index": 5811
6653
6779
  },
6654
6780
  "end": {
6655
- "line": 86,
6656
- "column": 3,
6657
- "index": 2627
6781
+ "line": 193,
6782
+ "column": 14,
6783
+ "index": 5992
6658
6784
  }
6659
6785
  },
6660
- "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
6786
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6661
6787
  },
6662
6788
  {
6663
- "token": "euiAbsoluteTab.dateFormatError",
6664
- "defString": "Allowed formats: {dateFormat}, ISO 8601, RFC 2822, or Unix timestamp.",
6789
+ "token": "euiDatePopoverContent.startDateLabel",
6790
+ "defString": "Start date",
6665
6791
  "highlighting": "string",
6666
6792
  "loc": {
6667
6793
  "start": {
6668
- "line": 87,
6669
- "column": 26,
6670
- "index": 2655
6794
+ "line": 77,
6795
+ "column": 25,
6796
+ "index": 2286
6671
6797
  },
6672
6798
  "end": {
6673
- "line": 91,
6799
+ "line": 80,
6674
6800
  "column": 3,
6675
- "index": 2837
6801
+ "index": 2362
6676
6802
  }
6677
6803
  },
6678
- "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
6804
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6679
6805
  },
6680
6806
  {
6681
- "token": "euiRecentlyUsed.legend",
6682
- "defString": "Recently used date ranges",
6807
+ "token": "euiDatePopoverContent.endDateLabel",
6808
+ "defString": "End date",
6683
6809
  "highlighting": "string",
6684
6810
  "loc": {
6685
6811
  "start": {
6686
- "line": 33,
6687
- "column": 16,
6688
- "index": 1123
6812
+ "line": 81,
6813
+ "column": 23,
6814
+ "index": 2387
6689
6815
  },
6690
6816
  "end": {
6691
- "line": 36,
6817
+ "line": 84,
6692
6818
  "column": 3,
6693
- "index": 1200
6819
+ "index": 2459
6694
6820
  }
6695
6821
  },
6696
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/recently_used.tsx"
6822
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6697
6823
  },
6698
6824
  {
6699
- "token": "euiQuickSelectPopover.buttonLabel",
6700
- "defString": "Date quick select",
6825
+ "token": "euiDatePopoverContent.absoluteTabLabel",
6826
+ "defString": "Absolute",
6701
6827
  "highlighting": "string",
6702
6828
  "loc": {
6703
6829
  "start": {
6704
- "line": 103,
6705
- "column": 22,
6706
- "index": 3370
6830
+ "line": 87,
6831
+ "column": 24,
6832
+ "index": 2562
6707
6833
  },
6708
6834
  "end": {
6709
- "line": 106,
6835
+ "line": 90,
6710
6836
  "column": 3,
6711
- "index": 3450
6837
+ "index": 2638
6712
6838
  }
6713
6839
  },
6714
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
6840
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6715
6841
  },
6716
6842
  {
6717
- "token": "euiQuickSelect.quickSelectTitle",
6718
- "defString": "Quick select",
6843
+ "token": "euiDatePopoverContent.relativeTabLabel",
6844
+ "defString": "Relative",
6719
6845
  "highlighting": "string",
6720
6846
  "loc": {
6721
6847
  "start": {
6722
- "line": 162,
6723
- "column": 10,
6724
- "index": 4691
6848
+ "line": 91,
6849
+ "column": 24,
6850
+ "index": 2664
6725
6851
  },
6726
6852
  "end": {
6727
- "line": 165,
6728
- "column": 12,
6729
- "index": 4799
6853
+ "line": 94,
6854
+ "column": 3,
6855
+ "index": 2740
6730
6856
  }
6731
6857
  },
6732
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6858
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6733
6859
  },
6734
6860
  {
6735
- "token": "euiQuickSelect.previousLabel",
6736
- "defString": "Previous time window",
6861
+ "token": "euiDatePopoverContent.nowTabLabel",
6862
+ "defString": "Now",
6737
6863
  "highlighting": "string",
6738
6864
  "loc": {
6739
6865
  "start": {
6740
- "line": 184,
6741
- "column": 12,
6742
- "index": 5381
6866
+ "line": 95,
6867
+ "column": 19,
6868
+ "index": 2761
6743
6869
  },
6744
6870
  "end": {
6745
- "line": 187,
6746
- "column": 13,
6747
- "index": 5499
6871
+ "line": 95,
6872
+ "column": 73,
6873
+ "index": 2815
6748
6874
  }
6749
6875
  },
6750
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6876
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6751
6877
  },
6752
6878
  {
6753
- "token": "euiQuickSelect.nextLabel",
6754
- "defString": "Next time window",
6879
+ "token": "euiDatePopoverContent.nowTabContent",
6880
+ "defString": "Setting the time to \"now\" means that on every refresh this time will be set to the time of the refresh.",
6755
6881
  "highlighting": "string",
6756
6882
  "loc": {
6757
6883
  "start": {
6758
- "line": 200,
6884
+ "line": 145,
6759
6885
  "column": 12,
6760
- "index": 5957
6886
+ "index": 4197
6761
6887
  },
6762
6888
  "end": {
6763
- "line": 203,
6764
- "column": 13,
6765
- "index": 6067
6889
+ "line": 148,
6890
+ "column": 14,
6891
+ "index": 4406
6766
6892
  }
6767
6893
  },
6768
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6894
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6769
6895
  },
6770
6896
  {
6771
- "token": "euiQuickSelect.tenseLabel",
6772
- "defString": "Time tense",
6897
+ "token": "euiDatePopoverContent.nowTabButtonStart",
6898
+ "defString": "Set start date and time to now",
6773
6899
  "highlighting": "string",
6774
6900
  "loc": {
6775
6901
  "start": {
6776
- "line": 218,
6777
- "column": 12,
6778
- "index": 6581
6902
+ "line": 160,
6903
+ "column": 14,
6904
+ "index": 4696
6779
6905
  },
6780
6906
  "end": {
6781
- "line": 218,
6782
- "column": 76,
6783
- "index": 6645
6907
+ "line": 163,
6908
+ "column": 16,
6909
+ "index": 4842
6784
6910
  }
6785
6911
  },
6786
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6912
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6787
6913
  },
6788
6914
  {
6789
- "token": "euiQuickSelect.valueLabel",
6790
- "defString": "Time value",
6915
+ "token": "euiDatePopoverContent.nowTabButtonEnd",
6916
+ "defString": "Set end date and time to now",
6791
6917
  "highlighting": "string",
6792
6918
  "loc": {
6793
6919
  "start": {
6794
- "line": 233,
6795
- "column": 12,
6796
- "index": 7167
6920
+ "line": 165,
6921
+ "column": 14,
6922
+ "index": 4875
6797
6923
  },
6798
6924
  "end": {
6799
- "line": 233,
6800
- "column": 76,
6801
- "index": 7231
6925
+ "line": 168,
6926
+ "column": 16,
6927
+ "index": 5017
6802
6928
  }
6803
6929
  },
6804
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6930
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6805
6931
  },
6806
6932
  {
6807
- "token": "euiQuickSelect.unitLabel",
6808
- "defString": "Time unit",
6933
+ "token": "euiDatePopoverButton.invalidTitle",
6934
+ "defString": "Invalid date: {title}",
6809
6935
  "highlighting": "string",
6810
6936
  "loc": {
6811
6937
  "start": {
6812
- "line": 247,
6813
- "column": 12,
6814
- "index": 7713
6938
+ "line": 107,
6939
+ "column": 23,
6940
+ "index": 3054
6815
6941
  },
6816
6942
  "end": {
6817
- "line": 247,
6818
- "column": 74,
6819
- "index": 7775
6943
+ "line": 111,
6944
+ "column": 3,
6945
+ "index": 3153
6820
6946
  }
6821
6947
  },
6822
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6948
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
6823
6949
  },
6824
6950
  {
6825
- "token": "euiQuickSelect.applyButton",
6826
- "defString": "Apply",
6951
+ "token": "euiDatePopoverButton.outdatedTitle",
6952
+ "defString": "Update needed: {title}",
6827
6953
  "highlighting": "string",
6828
6954
  "loc": {
6829
6955
  "start": {
6830
- "line": 270,
6831
- "column": 14,
6832
- "index": 8658
6956
+ "line": 112,
6957
+ "column": 24,
6958
+ "index": 3179
6833
6959
  },
6834
6960
  "end": {
6835
- "line": 270,
6836
- "column": 76,
6837
- "index": 8720
6961
+ "line": 116,
6962
+ "column": 3,
6963
+ "index": 3280
6838
6964
  }
6839
6965
  },
6840
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6966
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
6841
6967
  },
6842
6968
  {
6843
- "token": "euiQuickSelect.fullDescription",
6844
- "defString": "Currently set to {timeTense} {timeValue} {timeUnit}.",
6969
+ "token": "euiAbsoluteTab.dateFormatButtonLabel",
6970
+ "defString": "Parse date",
6845
6971
  "highlighting": "string",
6846
6972
  "loc": {
6847
6973
  "start": {
6848
- "line": 276,
6849
- "column": 12,
6850
- "index": 8877
6974
+ "line": 94,
6975
+ "column": 28,
6976
+ "index": 2803
6851
6977
  },
6852
6978
  "end": {
6853
- "line": 284,
6854
- "column": 14,
6855
- "index": 9151
6979
+ "line": 97,
6980
+ "column": 3,
6981
+ "index": 2879
6856
6982
  }
6857
6983
  },
6858
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6984
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
6859
6985
  },
6860
6986
  {
6861
- "token": "euiCommonlyUsedTimeRanges.legend",
6862
- "defString": "Commonly used",
6987
+ "token": "euiAbsoluteTab.dateFormatError",
6988
+ "defString": "Allowed formats: {dateFormat}, ISO 8601, RFC 2822, or Unix timestamp.",
6863
6989
  "highlighting": "string",
6864
6990
  "loc": {
6865
6991
  "start": {
6866
- "line": 27,
6867
- "column": 16,
6868
- "index": 995
6992
+ "line": 98,
6993
+ "column": 26,
6994
+ "index": 2907
6869
6995
  },
6870
6996
  "end": {
6871
- "line": 27,
6872
- "column": 79,
6873
- "index": 1058
6997
+ "line": 102,
6998
+ "column": 3,
6999
+ "index": 3089
6874
7000
  }
6875
7001
  },
6876
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
7002
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
6877
7003
  },
6878
7004
  {
6879
7005
  "token": "euiDataGridHeaderCell.sortedByAscendingSingle",
@@ -6989,14 +7115,14 @@
6989
7115
  "highlighting": "string",
6990
7116
  "loc": {
6991
7117
  "start": {
6992
- "line": 120,
7118
+ "line": 116,
6993
7119
  "column": 35,
6994
- "index": 3558
7120
+ "index": 3324
6995
7121
  },
6996
7122
  "end": {
6997
- "line": 124,
7123
+ "line": 120,
6998
7124
  "column": 5,
6999
- "index": 3700
7125
+ "index": 3466
7000
7126
  }
7001
7127
  },
7002
7128
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7007,14 +7133,14 @@
7007
7133
  "highlighting": "string",
7008
7134
  "loc": {
7009
7135
  "start": {
7010
- "line": 125,
7136
+ "line": 121,
7011
7137
  "column": 40,
7012
- "index": 3742
7138
+ "index": 3508
7013
7139
  },
7014
7140
  "end": {
7015
- "line": 128,
7141
+ "line": 124,
7016
7142
  "column": 5,
7017
- "index": 3876
7143
+ "index": 3642
7018
7144
  }
7019
7145
  },
7020
7146
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7025,14 +7151,14 @@
7025
7151
  "highlighting": "string",
7026
7152
  "loc": {
7027
7153
  "start": {
7028
- "line": 294,
7154
+ "line": 285,
7029
7155
  "column": 6,
7030
- "index": 8661
7156
+ "index": 8162
7031
7157
  },
7032
7158
  "end": {
7033
- "line": 297,
7159
+ "line": 288,
7034
7160
  "column": 8,
7035
- "index": 8854
7161
+ "index": 8355
7036
7162
  }
7037
7163
  },
7038
7164
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7043,14 +7169,14 @@
7043
7169
  "highlighting": "string",
7044
7170
  "loc": {
7045
7171
  "start": {
7046
- "line": 405,
7172
+ "line": 396,
7047
7173
  "column": 6,
7048
- "index": 11442
7174
+ "index": 10943
7049
7175
  },
7050
7176
  "end": {
7051
- "line": 405,
7177
+ "line": 396,
7052
7178
  "column": 75,
7053
- "index": 11511
7179
+ "index": 11012
7054
7180
  }
7055
7181
  },
7056
7182
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7061,14 +7187,14 @@
7061
7187
  "highlighting": "string",
7062
7188
  "loc": {
7063
7189
  "start": {
7064
- "line": 470,
7190
+ "line": 461,
7065
7191
  "column": 13,
7066
- "index": 13216
7192
+ "index": 12717
7067
7193
  },
7068
7194
  "end": {
7069
- "line": 470,
7195
+ "line": 461,
7070
7196
  "column": 78,
7071
- "index": 13281
7197
+ "index": 12782
7072
7198
  }
7073
7199
  },
7074
7200
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7079,14 +7205,14 @@
7079
7205
  "highlighting": "string",
7080
7206
  "loc": {
7081
7207
  "start": {
7082
- "line": 492,
7208
+ "line": 483,
7083
7209
  "column": 8,
7084
- "index": 13869
7210
+ "index": 13370
7085
7211
  },
7086
7212
  "end": {
7087
- "line": 492,
7213
+ "line": 483,
7088
7214
  "column": 75,
7089
- "index": 13936
7215
+ "index": 13437
7090
7216
  }
7091
7217
  },
7092
7218
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7097,14 +7223,14 @@
7097
7223
  "highlighting": "string",
7098
7224
  "loc": {
7099
7225
  "start": {
7100
- "line": 576,
7226
+ "line": 567,
7101
7227
  "column": 8,
7102
- "index": 16095
7228
+ "index": 15596
7103
7229
  },
7104
7230
  "end": {
7105
- "line": 580,
7231
+ "line": 571,
7106
7232
  "column": 10,
7107
- "index": 16239
7233
+ "index": 15740
7108
7234
  }
7109
7235
  },
7110
7236
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7115,14 +7241,14 @@
7115
7241
  "highlighting": "string",
7116
7242
  "loc": {
7117
7243
  "start": {
7118
- "line": 582,
7244
+ "line": 573,
7119
7245
  "column": 8,
7120
- "index": 16260
7246
+ "index": 15761
7121
7247
  },
7122
7248
  "end": {
7123
- "line": 586,
7249
+ "line": 577,
7124
7250
  "column": 10,
7125
- "index": 16400
7251
+ "index": 15901
7126
7252
  }
7127
7253
  },
7128
7254
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7133,14 +7259,14 @@
7133
7259
  "highlighting": "string",
7134
7260
  "loc": {
7135
7261
  "start": {
7136
- "line": 612,
7262
+ "line": 603,
7137
7263
  "column": 8,
7138
- "index": 17048
7264
+ "index": 16549
7139
7265
  },
7140
7266
  "end": {
7141
- "line": 616,
7267
+ "line": 607,
7142
7268
  "column": 10,
7143
- "index": 17192
7269
+ "index": 16693
7144
7270
  }
7145
7271
  },
7146
7272
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
@@ -7151,14 +7277,14 @@
7151
7277
  "highlighting": "string",
7152
7278
  "loc": {
7153
7279
  "start": {
7154
- "line": 618,
7280
+ "line": 609,
7155
7281
  "column": 8,
7156
- "index": 17213
7282
+ "index": 16714
7157
7283
  },
7158
7284
  "end": {
7159
- "line": 622,
7285
+ "line": 613,
7160
7286
  "column": 10,
7161
- "index": 17353
7287
+ "index": 16854
7162
7288
  }
7163
7289
  },
7164
7290
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"