@elastic/eui 110.0.0 → 111.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (572) hide show
  1. package/es/components/avatar/avatar.js +1 -1
  2. package/es/components/badge/badge.js +1 -1
  3. package/es/components/badge/beta_badge/beta_badge.js +1 -1
  4. package/es/components/basic_table/basic_table.js +36 -55
  5. package/es/components/basic_table/in_memory_table.js +6 -6
  6. package/es/components/beacon/beacon.styles.js +1 -1
  7. package/es/components/button/button_display/_button_display_content.js +1 -1
  8. package/es/components/button/button_empty/button_empty.js +1 -1
  9. package/es/components/button/button_group/button_group.js +1 -1
  10. package/es/components/button/button_group/button_group_button.js +1 -1
  11. package/es/components/button/button_icon/button_icon.js +1 -1
  12. package/es/components/button/index.js +2 -1
  13. package/es/components/button/split_button/index.js +10 -0
  14. package/es/components/button/split_button/split_button.js +120 -0
  15. package/es/components/button/split_button/split_button.styles.js +51 -0
  16. package/es/components/button/split_button/split_button_actions.js +115 -0
  17. package/{optimize/es/components/flyout/flyout_context.js → es/components/button/split_button/split_button_context.js} +5 -7
  18. package/es/components/call_out/call_out.js +1 -1
  19. package/es/components/card/card.js +1 -1
  20. package/es/components/collapsible_nav/collapsible_nav.js +20 -101
  21. package/es/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
  22. package/es/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +1 -1
  23. package/es/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  24. package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +1 -1
  25. package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_item.js +2 -2
  26. package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +2 -2
  27. package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsible_nav_item.js +4 -4
  28. package/es/components/comment_list/comment.js +2 -2
  29. package/es/components/comment_list/comment_event.js +1 -1
  30. package/es/components/comment_list/comment_list.js +2 -2
  31. package/es/components/comment_list/comment_timeline.js +1 -1
  32. package/es/components/context_menu/context_menu_item.js +1 -1
  33. package/es/components/datagrid/body/cell/data_grid_cell.js +12 -12
  34. package/es/components/datagrid/body/data_grid_body.js +7 -7
  35. package/es/components/datagrid/body/data_grid_body_custom.js +7 -7
  36. package/es/components/datagrid/body/data_grid_body_virtualized.js +7 -7
  37. package/es/components/datagrid/body/header/data_grid_header_cell.js +6 -6
  38. package/es/components/datagrid/controls/column_sorting.js +7 -7
  39. package/es/components/datagrid/controls/column_sorting_draggable.js +1 -1
  40. package/es/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
  41. package/es/components/datagrid/controls/fullscreen_selector.styles.js +1 -1
  42. package/es/components/datagrid/utils/in_memory.js +6 -6
  43. package/es/components/date_picker/date_picker.js +2 -2
  44. package/es/components/date_picker/date_picker_range.js +1 -1
  45. package/es/components/empty_prompt/empty_prompt.js +2 -2
  46. package/es/components/flex/flex_group.js +1 -1
  47. package/es/components/flyout/_flyout_overlay.js +52 -0
  48. package/es/components/flyout/_flyout_resize_button.js +32 -0
  49. package/es/components/flyout/{flyout_resizable.styles.js → _flyout_resize_button.styles.js} +11 -11
  50. package/es/components/flyout/const.js +42 -0
  51. package/es/components/flyout/flyout.component.js +481 -0
  52. package/es/components/flyout/flyout.js +77 -379
  53. package/es/components/flyout/flyout.styles.js +106 -7
  54. package/es/components/flyout/flyout_menu.js +241 -0
  55. package/es/components/flyout/flyout_menu.styles.js +19 -0
  56. package/es/components/flyout/{flyout_context.js → flyout_menu_context.js} +1 -7
  57. package/es/components/flyout/flyout_parent_context.js +36 -0
  58. package/es/components/flyout/flyout_resizable.js +33 -144
  59. package/es/components/flyout/hooks.js +25 -0
  60. package/es/components/flyout/index.js +5 -2
  61. package/es/components/flyout/manager/actions.js +153 -0
  62. package/es/components/flyout/manager/activity_stage.js +95 -0
  63. package/es/components/flyout/manager/const.js +56 -0
  64. package/es/components/flyout/manager/context.js +33 -0
  65. package/es/components/flyout/manager/flyout_child.js +75 -0
  66. package/es/components/flyout/manager/flyout_main.js +65 -0
  67. package/es/components/flyout/manager/flyout_main.styles.js +25 -0
  68. package/es/components/flyout/manager/flyout_managed.js +227 -0
  69. package/es/components/flyout/manager/flyout_managed.styles.js +69 -0
  70. package/es/components/flyout/manager/hooks.js +55 -0
  71. package/es/components/flyout/manager/index.js +31 -0
  72. package/es/components/flyout/manager/layout_mode.js +167 -0
  73. package/es/components/flyout/manager/provider.js +57 -0
  74. package/es/components/flyout/manager/reducer.js +320 -0
  75. package/es/components/flyout/manager/selectors.js +116 -0
  76. package/es/components/flyout/manager/store.js +113 -0
  77. package/es/components/flyout/manager/validation.js +85 -0
  78. package/es/components/flyout/use_flyout_resizable.js +149 -0
  79. package/es/components/flyout/use_flyout_z_index.js +46 -0
  80. package/es/components/form/field_number/field_number.js +2 -2
  81. package/es/components/form/field_text/field_text.js +2 -2
  82. package/es/components/form/form_control_button/form_control_button.js +1 -1
  83. package/es/components/form/form_control_layout/form_control_layout.js +2 -2
  84. package/es/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
  85. package/es/components/form/form_control_layout/form_control_layout_icons.js +2 -2
  86. package/es/components/form/text_area/text_area.js +2 -2
  87. package/es/components/header/header_links/header_link.js +1 -1
  88. package/es/components/header/header_links/header_links.js +1 -1
  89. package/es/components/header/header_logo/header_logo.js +1 -1
  90. package/es/components/header/header_section/header_section_item_button.js +1 -1
  91. package/es/components/horizontal_rule/horizontal_rule.js +1 -1
  92. package/es/components/icon/assets/agentBuilderRobot.js +37 -0
  93. package/es/components/icon/assets/cross_project_search.js +35 -0
  94. package/es/components/icon/assets/dashed_circle.js +35 -0
  95. package/es/components/icon/assets/product_robot.js +37 -0
  96. package/es/components/icon/icon.js +1 -1
  97. package/es/components/icon/icon_map.js +3 -0
  98. package/es/components/key_pad_menu/key_pad_menu_item.js +1 -1
  99. package/es/components/link/external_link_icon.js +6 -3
  100. package/es/components/list_group/list_group.js +2 -2
  101. package/es/components/list_group/list_group_item.js +2 -2
  102. package/es/components/list_group/list_group_item_extra_action.js +1 -1
  103. package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +4 -4
  104. package/es/components/loading/loading_logo.js +1 -1
  105. package/es/components/markdown_editor/markdown_editor.js +1 -1
  106. package/es/components/markdown_editor/markdown_editor_drop_zone.js +1 -1
  107. package/es/components/markdown_editor/markdown_editor_footer.js +1 -1
  108. package/es/components/markdown_editor/markdown_editor_toolbar.js +1 -1
  109. package/es/components/overlay_mask/overlay_mask.js +13 -3
  110. package/es/components/overlay_mask/overlay_mask.styles.js +11 -2
  111. package/es/components/page/page_header/page_header_content.js +2 -2
  112. package/es/components/pagination/pagination_button.js +1 -1
  113. package/es/components/provider/provider.js +2 -1
  114. package/es/components/search_bar/search_bar.js +1 -1
  115. package/es/components/selectable/selectable_list/selectable_list.js +1 -1
  116. package/es/components/selectable/selectable_list/selectable_list_item.js +1 -1
  117. package/es/components/selectable/selectable_templates/selectable_template_sitewide.js +1 -1
  118. package/es/components/spacer/spacer.js +1 -1
  119. package/es/components/table/table_header_cell.js +1 -1
  120. package/es/components/timeline/timeline_item_icon.js +1 -1
  121. package/es/components/toast/global_toast_list.js +1 -1
  122. package/es/components/toast/toast.js +1 -1
  123. package/es/components/tool_tip/icon_tip.js +1 -1
  124. package/es/components/tour/tour_step_indicator.js +8 -3
  125. package/es/global_styling/mixins/_button.js +28 -9
  126. package/es/global_styling/mixins/_container_query.js +106 -0
  127. package/es/global_styling/mixins/index.js +1 -0
  128. package/es/services/container_query/container_query_hook.js +64 -0
  129. package/es/{components/flyout/sessions → services/container_query}/index.js +1 -2
  130. package/es/services/container_query/match_container.js +242 -0
  131. package/eui.d.ts +7558 -6642
  132. package/i18ntokens.json +1438 -1384
  133. package/lib/components/avatar/avatar.js +1 -1
  134. package/lib/components/badge/badge.js +1 -1
  135. package/lib/components/badge/beta_badge/beta_badge.js +1 -1
  136. package/lib/components/basic_table/basic_table.js +36 -55
  137. package/lib/components/basic_table/in_memory_table.js +6 -6
  138. package/lib/components/beacon/beacon.styles.js +1 -1
  139. package/lib/components/button/button_display/_button_display_content.js +1 -1
  140. package/lib/components/button/button_empty/button_empty.js +1 -1
  141. package/lib/components/button/button_group/button_group.js +1 -1
  142. package/lib/components/button/button_group/button_group_button.js +1 -1
  143. package/lib/components/button/button_icon/button_icon.js +1 -1
  144. package/lib/components/button/index.js +8 -1
  145. package/lib/components/button/split_button/index.js +25 -0
  146. package/lib/components/button/split_button/split_button.js +129 -0
  147. package/lib/components/button/split_button/split_button.styles.js +55 -0
  148. package/lib/components/button/split_button/split_button_actions.js +123 -0
  149. package/{optimize/lib/components/flyout/flyout_context.js → lib/components/button/split_button/split_button_context.js} +6 -7
  150. package/lib/components/call_out/call_out.js +1 -1
  151. package/lib/components/card/card.js +1 -1
  152. package/lib/components/collapsible_nav/collapsible_nav.js +20 -101
  153. package/lib/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
  154. package/lib/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +1 -1
  155. package/lib/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  156. package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +1 -1
  157. package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_item.js +2 -2
  158. package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +2 -2
  159. package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsible_nav_item.js +4 -4
  160. package/lib/components/comment_list/comment.js +2 -2
  161. package/lib/components/comment_list/comment_event.js +1 -1
  162. package/lib/components/comment_list/comment_list.js +2 -2
  163. package/lib/components/comment_list/comment_timeline.js +1 -1
  164. package/lib/components/context_menu/context_menu_item.js +1 -1
  165. package/lib/components/datagrid/body/cell/data_grid_cell.js +12 -12
  166. package/lib/components/datagrid/body/data_grid_body.js +7 -7
  167. package/lib/components/datagrid/body/data_grid_body_custom.js +7 -7
  168. package/lib/components/datagrid/body/data_grid_body_virtualized.js +7 -7
  169. package/lib/components/datagrid/body/header/data_grid_header_cell.js +6 -6
  170. package/lib/components/datagrid/controls/column_sorting.js +7 -7
  171. package/lib/components/datagrid/controls/column_sorting_draggable.js +1 -1
  172. package/lib/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
  173. package/lib/components/datagrid/controls/fullscreen_selector.styles.js +1 -1
  174. package/lib/components/datagrid/utils/in_memory.js +6 -6
  175. package/lib/components/date_picker/date_picker.js +2 -2
  176. package/lib/components/date_picker/date_picker_range.js +1 -1
  177. package/lib/components/empty_prompt/empty_prompt.js +2 -2
  178. package/lib/components/flex/flex_group.js +1 -1
  179. package/lib/components/flyout/_flyout_overlay.js +59 -0
  180. package/lib/components/flyout/_flyout_resize_button.js +38 -0
  181. package/{test-env/components/flyout/flyout_resizable.styles.js → lib/components/flyout/_flyout_resize_button.styles.js} +12 -12
  182. package/lib/components/flyout/const.js +49 -0
  183. package/lib/components/flyout/flyout.component.js +488 -0
  184. package/lib/components/flyout/flyout.js +102 -379
  185. package/lib/components/flyout/flyout.styles.js +106 -7
  186. package/lib/components/flyout/flyout_menu.js +243 -0
  187. package/lib/components/flyout/flyout_menu.styles.js +25 -0
  188. package/lib/components/flyout/{flyout_context.js → flyout_menu_context.js} +2 -7
  189. package/lib/components/flyout/flyout_parent_context.js +43 -0
  190. package/lib/components/flyout/flyout_resizable.js +36 -147
  191. package/lib/components/flyout/hooks.js +30 -0
  192. package/lib/components/flyout/index.js +21 -14
  193. package/lib/components/flyout/manager/actions.js +159 -0
  194. package/lib/components/flyout/manager/activity_stage.js +101 -0
  195. package/lib/components/flyout/manager/const.js +62 -0
  196. package/lib/components/flyout/manager/context.js +41 -0
  197. package/lib/components/flyout/manager/flyout_child.js +80 -0
  198. package/lib/components/flyout/manager/flyout_main.js +70 -0
  199. package/lib/components/flyout/manager/flyout_main.styles.js +31 -0
  200. package/lib/components/flyout/manager/flyout_managed.js +233 -0
  201. package/lib/components/flyout/manager/flyout_managed.styles.js +73 -0
  202. package/lib/components/flyout/manager/hooks.js +131 -0
  203. package/lib/components/flyout/manager/index.js +168 -0
  204. package/lib/components/flyout/manager/layout_mode.js +171 -0
  205. package/lib/components/flyout/manager/provider.js +63 -0
  206. package/lib/components/flyout/manager/reducer.js +325 -0
  207. package/lib/components/flyout/manager/selectors.js +122 -0
  208. package/lib/components/flyout/manager/store.js +120 -0
  209. package/lib/components/flyout/manager/validation.js +94 -0
  210. package/lib/components/flyout/use_flyout_resizable.js +153 -0
  211. package/lib/components/flyout/use_flyout_z_index.js +51 -0
  212. package/lib/components/form/field_number/field_number.js +2 -2
  213. package/lib/components/form/field_text/field_text.js +2 -2
  214. package/lib/components/form/form_control_button/form_control_button.js +1 -1
  215. package/lib/components/form/form_control_layout/form_control_layout.js +2 -2
  216. package/lib/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
  217. package/lib/components/form/form_control_layout/form_control_layout_icons.js +2 -2
  218. package/lib/components/form/text_area/text_area.js +2 -2
  219. package/lib/components/header/header_links/header_link.js +1 -1
  220. package/lib/components/header/header_links/header_links.js +1 -1
  221. package/lib/components/header/header_logo/header_logo.js +1 -1
  222. package/lib/components/header/header_section/header_section_item_button.js +1 -1
  223. package/lib/components/horizontal_rule/horizontal_rule.js +1 -1
  224. package/lib/components/icon/assets/agentBuilderRobot.js +44 -0
  225. package/lib/components/icon/assets/cross_project_search.js +42 -0
  226. package/lib/components/icon/assets/dashed_circle.js +42 -0
  227. package/lib/components/icon/assets/product_robot.js +44 -0
  228. package/lib/components/icon/icon.js +1 -1
  229. package/lib/components/icon/icon_map.js +3 -0
  230. package/lib/components/icon/svgs/cross_project_search.svg +3 -0
  231. package/lib/components/icon/svgs/dashed_circle.svg +5 -0
  232. package/lib/components/icon/svgs/product_robot.svg +4 -0
  233. package/lib/components/key_pad_menu/key_pad_menu_item.js +1 -1
  234. package/lib/components/link/external_link_icon.js +6 -3
  235. package/lib/components/list_group/list_group.js +2 -2
  236. package/lib/components/list_group/list_group_item.js +2 -2
  237. package/lib/components/list_group/list_group_item_extra_action.js +1 -1
  238. package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +4 -4
  239. package/lib/components/loading/loading_logo.js +1 -1
  240. package/lib/components/markdown_editor/markdown_editor.js +1 -1
  241. package/lib/components/markdown_editor/markdown_editor_drop_zone.js +1 -1
  242. package/lib/components/markdown_editor/markdown_editor_footer.js +1 -1
  243. package/lib/components/markdown_editor/markdown_editor_toolbar.js +1 -1
  244. package/lib/components/overlay_mask/overlay_mask.js +12 -2
  245. package/lib/components/overlay_mask/overlay_mask.styles.js +11 -4
  246. package/lib/components/page/page_header/page_header_content.js +2 -2
  247. package/lib/components/pagination/pagination_button.js +1 -1
  248. package/lib/components/provider/provider.js +2 -1
  249. package/lib/components/search_bar/search_bar.js +1 -1
  250. package/lib/components/selectable/selectable_list/selectable_list.js +1 -1
  251. package/lib/components/selectable/selectable_list/selectable_list_item.js +1 -1
  252. package/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +1 -1
  253. package/lib/components/spacer/spacer.js +1 -1
  254. package/lib/components/table/table_header_cell.js +1 -1
  255. package/lib/components/timeline/timeline_item_icon.js +1 -1
  256. package/lib/components/toast/global_toast_list.js +1 -1
  257. package/lib/components/toast/toast.js +1 -1
  258. package/lib/components/tool_tip/icon_tip.js +1 -1
  259. package/lib/components/tour/tour_step_indicator.js +8 -3
  260. package/lib/global_styling/mixins/_button.js +29 -10
  261. package/lib/global_styling/mixins/_container_query.js +112 -0
  262. package/lib/global_styling/mixins/index.js +11 -0
  263. package/lib/services/container_query/container_query_hook.js +67 -0
  264. package/lib/services/container_query/index.js +16 -0
  265. package/lib/services/container_query/match_container.js +243 -0
  266. package/optimize/es/components/basic_table/basic_table.js +30 -49
  267. package/optimize/es/components/beacon/beacon.styles.js +1 -1
  268. package/optimize/es/components/button/index.js +2 -1
  269. package/optimize/es/components/button/split_button/index.js +10 -0
  270. package/optimize/es/components/button/split_button/split_button.js +98 -0
  271. package/optimize/es/components/button/split_button/split_button.styles.js +51 -0
  272. package/optimize/es/components/button/split_button/split_button_actions.js +89 -0
  273. package/optimize/es/components/button/split_button/split_button_context.js +14 -0
  274. package/optimize/es/components/collapsible_nav/collapsible_nav.js +1 -0
  275. package/optimize/es/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  276. package/optimize/es/components/datagrid/controls/fullscreen_selector.styles.js +1 -1
  277. package/optimize/es/components/empty_prompt/empty_prompt.js +1 -1
  278. package/optimize/es/components/flex/flex_group.js +1 -1
  279. package/optimize/es/components/flyout/_flyout_overlay.js +52 -0
  280. package/optimize/es/components/flyout/_flyout_resize_button.js +31 -0
  281. package/optimize/es/components/flyout/{flyout_resizable.styles.js → _flyout_resize_button.styles.js} +11 -11
  282. package/optimize/es/components/flyout/const.js +42 -0
  283. package/optimize/es/components/flyout/flyout.component.js +469 -0
  284. package/optimize/es/components/flyout/flyout.js +53 -349
  285. package/optimize/es/components/flyout/flyout.styles.js +103 -7
  286. package/optimize/es/components/flyout/flyout_menu.js +162 -0
  287. package/optimize/es/components/flyout/flyout_menu.styles.js +19 -0
  288. package/optimize/es/components/flyout/flyout_menu_context.js +10 -0
  289. package/optimize/es/components/flyout/flyout_parent_context.js +36 -0
  290. package/optimize/es/components/flyout/flyout_resizable.js +7 -138
  291. package/optimize/es/components/flyout/hooks.js +25 -0
  292. package/optimize/es/components/flyout/index.js +5 -2
  293. package/optimize/es/components/flyout/manager/actions.js +153 -0
  294. package/optimize/es/components/flyout/manager/activity_stage.js +95 -0
  295. package/optimize/es/components/flyout/manager/const.js +56 -0
  296. package/optimize/es/components/flyout/manager/context.js +33 -0
  297. package/optimize/es/components/flyout/manager/flyout_child.js +71 -0
  298. package/optimize/es/components/flyout/manager/flyout_main.js +61 -0
  299. package/optimize/es/components/flyout/manager/flyout_main.styles.js +25 -0
  300. package/optimize/es/components/flyout/manager/flyout_managed.js +223 -0
  301. package/optimize/es/components/flyout/manager/flyout_managed.styles.js +69 -0
  302. package/optimize/es/components/flyout/manager/hooks.js +55 -0
  303. package/optimize/es/components/flyout/manager/index.js +31 -0
  304. package/optimize/es/components/flyout/manager/layout_mode.js +162 -0
  305. package/optimize/es/components/flyout/manager/provider.js +53 -0
  306. package/optimize/es/components/flyout/manager/reducer.js +312 -0
  307. package/optimize/es/components/flyout/manager/selectors.js +116 -0
  308. package/optimize/es/components/flyout/manager/store.js +113 -0
  309. package/optimize/es/components/flyout/manager/types.js +1 -0
  310. package/optimize/es/components/flyout/manager/validation.js +85 -0
  311. package/optimize/es/components/flyout/types.js +1 -0
  312. package/optimize/es/components/flyout/use_flyout_resizable.js +144 -0
  313. package/optimize/es/components/flyout/use_flyout_z_index.js +46 -0
  314. package/optimize/es/components/horizontal_rule/horizontal_rule.js +1 -1
  315. package/optimize/es/components/icon/assets/agentBuilderRobot.js +36 -0
  316. package/optimize/es/components/icon/assets/cross_project_search.js +34 -0
  317. package/optimize/es/components/icon/assets/dashed_circle.js +34 -0
  318. package/optimize/es/components/icon/assets/product_robot.js +36 -0
  319. package/optimize/es/components/icon/icon_map.js +3 -0
  320. package/optimize/es/components/link/external_link_icon.js +6 -3
  321. package/optimize/es/components/overlay_mask/overlay_mask.js +13 -3
  322. package/optimize/es/components/overlay_mask/overlay_mask.styles.js +11 -2
  323. package/optimize/es/components/page/page_header/page_header_content.js +1 -1
  324. package/optimize/es/components/provider/provider.js +2 -1
  325. package/optimize/es/components/search_bar/search_bar.js +1 -1
  326. package/optimize/es/components/spacer/spacer.js +1 -1
  327. package/optimize/es/components/tour/tour_step_indicator.js +8 -3
  328. package/optimize/es/global_styling/mixins/_button.js +28 -9
  329. package/optimize/es/global_styling/mixins/_container_query.js +106 -0
  330. package/optimize/es/global_styling/mixins/index.js +1 -0
  331. package/optimize/es/services/container_query/container_query_hook.js +59 -0
  332. package/optimize/es/{components/flyout/sessions → services/container_query}/index.js +1 -2
  333. package/optimize/es/services/container_query/match_container.js +229 -0
  334. package/optimize/lib/components/basic_table/basic_table.js +30 -49
  335. package/optimize/lib/components/beacon/beacon.styles.js +1 -1
  336. package/optimize/lib/components/button/index.js +8 -1
  337. package/optimize/lib/components/button/split_button/index.js +25 -0
  338. package/optimize/lib/components/button/split_button/split_button.js +107 -0
  339. package/optimize/lib/components/button/split_button/split_button.styles.js +55 -0
  340. package/optimize/lib/components/button/split_button/split_button_actions.js +98 -0
  341. package/{test-env/components/flyout/flyout_context.js → optimize/lib/components/button/split_button/split_button_context.js} +6 -7
  342. package/optimize/lib/components/collapsible_nav/collapsible_nav.js +1 -0
  343. package/optimize/lib/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  344. package/optimize/lib/components/datagrid/controls/fullscreen_selector.styles.js +1 -1
  345. package/optimize/lib/components/empty_prompt/empty_prompt.js +1 -1
  346. package/optimize/lib/components/flex/flex_group.js +1 -1
  347. package/optimize/lib/components/flyout/_flyout_overlay.js +62 -0
  348. package/optimize/lib/components/flyout/_flyout_resize_button.js +37 -0
  349. package/{lib/components/flyout/flyout_resizable.styles.js → optimize/lib/components/flyout/_flyout_resize_button.styles.js} +12 -12
  350. package/optimize/lib/components/flyout/const.js +49 -0
  351. package/optimize/lib/components/flyout/flyout.component.js +477 -0
  352. package/optimize/lib/components/flyout/flyout.js +77 -349
  353. package/optimize/lib/components/flyout/flyout.styles.js +103 -7
  354. package/optimize/lib/components/flyout/flyout_menu.js +168 -0
  355. package/optimize/lib/components/flyout/flyout_menu.styles.js +25 -0
  356. package/optimize/lib/components/flyout/flyout_menu_context.js +16 -0
  357. package/optimize/lib/components/flyout/flyout_parent_context.js +43 -0
  358. package/optimize/lib/components/flyout/flyout_resizable.js +9 -139
  359. package/optimize/lib/components/flyout/hooks.js +30 -0
  360. package/optimize/lib/components/flyout/index.js +21 -14
  361. package/optimize/lib/components/flyout/manager/actions.js +159 -0
  362. package/optimize/lib/components/flyout/manager/activity_stage.js +101 -0
  363. package/optimize/lib/components/flyout/manager/const.js +62 -0
  364. package/optimize/lib/components/flyout/manager/context.js +41 -0
  365. package/optimize/lib/components/flyout/manager/flyout_child.js +76 -0
  366. package/optimize/lib/components/flyout/manager/flyout_main.js +66 -0
  367. package/optimize/lib/components/flyout/manager/flyout_main.styles.js +31 -0
  368. package/optimize/lib/components/flyout/manager/flyout_managed.js +231 -0
  369. package/optimize/lib/components/flyout/manager/flyout_managed.styles.js +74 -0
  370. package/optimize/lib/components/flyout/manager/hooks.js +131 -0
  371. package/optimize/lib/components/flyout/manager/index.js +168 -0
  372. package/optimize/lib/components/flyout/manager/layout_mode.js +169 -0
  373. package/optimize/lib/components/flyout/manager/provider.js +61 -0
  374. package/optimize/lib/components/flyout/manager/reducer.js +318 -0
  375. package/optimize/lib/components/flyout/manager/selectors.js +122 -0
  376. package/optimize/lib/components/flyout/manager/store.js +120 -0
  377. package/optimize/lib/components/flyout/manager/validation.js +94 -0
  378. package/optimize/lib/components/flyout/types.js +5 -0
  379. package/optimize/lib/components/flyout/use_flyout_resizable.js +151 -0
  380. package/optimize/lib/components/flyout/use_flyout_z_index.js +51 -0
  381. package/optimize/lib/components/horizontal_rule/horizontal_rule.js +1 -1
  382. package/optimize/lib/components/icon/assets/agentBuilderRobot.js +44 -0
  383. package/optimize/lib/components/icon/assets/cross_project_search.js +42 -0
  384. package/optimize/lib/components/icon/assets/dashed_circle.js +42 -0
  385. package/optimize/lib/components/icon/assets/product_robot.js +44 -0
  386. package/optimize/lib/components/icon/icon_map.js +3 -0
  387. package/optimize/lib/components/icon/svgs/cross_project_search.svg +3 -0
  388. package/optimize/lib/components/icon/svgs/dashed_circle.svg +5 -0
  389. package/optimize/lib/components/icon/svgs/product_robot.svg +4 -0
  390. package/optimize/lib/components/link/external_link_icon.js +6 -3
  391. package/optimize/lib/components/overlay_mask/overlay_mask.js +12 -2
  392. package/optimize/lib/components/overlay_mask/overlay_mask.styles.js +11 -4
  393. package/optimize/lib/components/page/page_header/page_header_content.js +1 -1
  394. package/optimize/lib/components/provider/provider.js +2 -1
  395. package/optimize/lib/components/search_bar/search_bar.js +1 -1
  396. package/optimize/lib/components/spacer/spacer.js +1 -1
  397. package/optimize/lib/components/tour/tour_step_indicator.js +8 -3
  398. package/optimize/lib/global_styling/mixins/_button.js +29 -10
  399. package/optimize/lib/global_styling/mixins/_container_query.js +112 -0
  400. package/optimize/lib/global_styling/mixins/index.js +11 -0
  401. package/optimize/lib/services/container_query/container_query_hook.js +65 -0
  402. package/optimize/lib/services/container_query/index.js +16 -0
  403. package/optimize/lib/services/container_query/match_container.js +231 -0
  404. package/package.json +5 -4
  405. package/test-env/components/avatar/avatar.js +1 -1
  406. package/test-env/components/badge/badge.js +1 -1
  407. package/test-env/components/badge/beta_badge/beta_badge.js +1 -1
  408. package/test-env/components/basic_table/basic_table.js +36 -55
  409. package/test-env/components/basic_table/in_memory_table.js +6 -6
  410. package/test-env/components/beacon/beacon.styles.js +1 -1
  411. package/test-env/components/button/button_display/_button_display_content.js +1 -1
  412. package/test-env/components/button/button_empty/button_empty.js +1 -1
  413. package/test-env/components/button/button_group/button_group.js +1 -1
  414. package/test-env/components/button/button_group/button_group_button.js +1 -1
  415. package/test-env/components/button/button_icon/button_icon.js +1 -1
  416. package/test-env/components/button/index.js +8 -1
  417. package/test-env/components/button/split_button/index.js +25 -0
  418. package/test-env/components/button/split_button/split_button.js +123 -0
  419. package/test-env/components/button/split_button/split_button.styles.js +55 -0
  420. package/test-env/components/button/split_button/split_button_actions.js +120 -0
  421. package/test-env/components/button/split_button/split_button_context.js +20 -0
  422. package/test-env/components/call_out/call_out.js +1 -1
  423. package/test-env/components/card/card.js +1 -1
  424. package/test-env/components/collapsible_nav/collapsible_nav.js +20 -101
  425. package/test-env/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
  426. package/test-env/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +1 -1
  427. package/test-env/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  428. package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +1 -1
  429. package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_item.js +2 -2
  430. package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +2 -2
  431. package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsible_nav_item.js +4 -4
  432. package/test-env/components/comment_list/comment.js +2 -2
  433. package/test-env/components/comment_list/comment_event.js +1 -1
  434. package/test-env/components/comment_list/comment_list.js +2 -2
  435. package/test-env/components/comment_list/comment_timeline.js +1 -1
  436. package/test-env/components/context_menu/context_menu_item.js +1 -1
  437. package/test-env/components/datagrid/body/cell/data_grid_cell.js +12 -12
  438. package/test-env/components/datagrid/body/data_grid_body.js +7 -7
  439. package/test-env/components/datagrid/body/data_grid_body_custom.js +7 -7
  440. package/test-env/components/datagrid/body/data_grid_body_virtualized.js +7 -7
  441. package/test-env/components/datagrid/body/header/data_grid_header_cell.js +6 -6
  442. package/test-env/components/datagrid/controls/column_sorting.js +7 -7
  443. package/test-env/components/datagrid/controls/column_sorting_draggable.js +1 -1
  444. package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
  445. package/test-env/components/datagrid/controls/fullscreen_selector.styles.js +1 -1
  446. package/test-env/components/datagrid/utils/in_memory.js +6 -6
  447. package/test-env/components/date_picker/date_picker.js +2 -2
  448. package/test-env/components/date_picker/date_picker_range.js +1 -1
  449. package/test-env/components/empty_prompt/empty_prompt.js +2 -2
  450. package/test-env/components/flex/flex_group.js +1 -1
  451. package/test-env/components/flyout/_flyout_overlay.js +62 -0
  452. package/test-env/components/flyout/_flyout_resize_button.js +37 -0
  453. package/{optimize/lib/components/flyout/flyout_resizable.styles.js → test-env/components/flyout/_flyout_resize_button.styles.js} +12 -12
  454. package/test-env/components/flyout/const.js +49 -0
  455. package/test-env/components/flyout/flyout.component.js +477 -0
  456. package/test-env/components/flyout/flyout.styles.js +103 -7
  457. package/test-env/components/flyout/flyout_menu.js +241 -0
  458. package/test-env/components/flyout/flyout_menu.styles.js +25 -0
  459. package/test-env/components/flyout/flyout_menu_context.js +16 -0
  460. package/test-env/components/flyout/flyout_parent_context.js +43 -0
  461. package/test-env/components/flyout/flyout_resizable.js +35 -139
  462. package/test-env/components/flyout/hooks.js +30 -0
  463. package/test-env/components/flyout/index.js +21 -14
  464. package/test-env/components/flyout/manager/actions.js +159 -0
  465. package/test-env/components/flyout/manager/activity_stage.js +101 -0
  466. package/test-env/components/flyout/manager/const.js +62 -0
  467. package/test-env/components/flyout/manager/context.js +41 -0
  468. package/test-env/components/flyout/manager/flyout_child.js +76 -0
  469. package/test-env/components/flyout/manager/flyout_main.js +66 -0
  470. package/test-env/components/flyout/manager/flyout_main.styles.js +31 -0
  471. package/test-env/components/flyout/manager/flyout_managed.js +231 -0
  472. package/test-env/components/flyout/manager/flyout_managed.styles.js +74 -0
  473. package/test-env/components/flyout/manager/hooks.js +131 -0
  474. package/test-env/components/flyout/manager/index.js +168 -0
  475. package/test-env/components/flyout/manager/layout_mode.js +169 -0
  476. package/test-env/components/flyout/manager/provider.js +61 -0
  477. package/test-env/components/flyout/manager/reducer.js +318 -0
  478. package/test-env/components/flyout/manager/selectors.js +122 -0
  479. package/test-env/components/flyout/manager/store.js +120 -0
  480. package/test-env/components/flyout/manager/types.js +5 -0
  481. package/test-env/components/flyout/manager/validation.js +94 -0
  482. package/test-env/components/flyout/types.js +5 -0
  483. package/test-env/components/flyout/use_flyout_resizable.js +151 -0
  484. package/test-env/components/flyout/use_flyout_z_index.js +51 -0
  485. package/test-env/components/form/field_number/field_number.js +2 -2
  486. package/test-env/components/form/field_text/field_text.js +2 -2
  487. package/test-env/components/form/form_control_button/form_control_button.js +1 -1
  488. package/test-env/components/form/form_control_layout/form_control_layout.js +2 -2
  489. package/test-env/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
  490. package/test-env/components/form/form_control_layout/form_control_layout_icons.js +2 -2
  491. package/test-env/components/form/text_area/text_area.js +2 -2
  492. package/test-env/components/header/header_links/header_link.js +1 -1
  493. package/test-env/components/header/header_links/header_links.js +1 -1
  494. package/test-env/components/header/header_logo/header_logo.js +1 -1
  495. package/test-env/components/header/header_section/header_section_item_button.js +1 -1
  496. package/test-env/components/horizontal_rule/horizontal_rule.js +1 -1
  497. package/test-env/components/icon/assets/agentBuilderRobot.js +44 -0
  498. package/test-env/components/icon/assets/cross_project_search.js +42 -0
  499. package/test-env/components/icon/assets/dashed_circle.js +42 -0
  500. package/test-env/components/icon/assets/product_robot.js +44 -0
  501. package/test-env/components/icon/icon_map.js +3 -0
  502. package/test-env/components/key_pad_menu/key_pad_menu_item.js +1 -1
  503. package/test-env/components/link/external_link_icon.js +6 -3
  504. package/test-env/components/list_group/list_group.js +2 -2
  505. package/test-env/components/list_group/list_group_item.js +2 -2
  506. package/test-env/components/list_group/list_group_item_extra_action.js +1 -1
  507. package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +4 -4
  508. package/test-env/components/loading/loading_logo.js +1 -1
  509. package/test-env/components/markdown_editor/markdown_editor.js +1 -1
  510. package/test-env/components/markdown_editor/markdown_editor_drop_zone.js +1 -1
  511. package/test-env/components/markdown_editor/markdown_editor_footer.js +1 -1
  512. package/test-env/components/markdown_editor/markdown_editor_toolbar.js +1 -1
  513. package/test-env/components/overlay_mask/overlay_mask.js +12 -2
  514. package/test-env/components/overlay_mask/overlay_mask.styles.js +11 -4
  515. package/test-env/components/page/page_header/page_header_content.js +2 -2
  516. package/test-env/components/pagination/pagination_button.js +1 -1
  517. package/test-env/components/provider/provider.js +2 -1
  518. package/test-env/components/search_bar/search_bar.js +1 -1
  519. package/test-env/components/selectable/selectable_list/selectable_list.js +1 -1
  520. package/test-env/components/selectable/selectable_list/selectable_list_item.js +1 -1
  521. package/test-env/components/selectable/selectable_templates/selectable_template_sitewide.js +1 -1
  522. package/test-env/components/spacer/spacer.js +1 -1
  523. package/test-env/components/table/table_header_cell.js +1 -1
  524. package/test-env/components/timeline/timeline_item_icon.js +1 -1
  525. package/test-env/components/toast/global_toast_list.js +1 -1
  526. package/test-env/components/toast/toast.js +1 -1
  527. package/test-env/components/tool_tip/icon_tip.js +1 -1
  528. package/test-env/components/tour/tour_step_indicator.js +8 -3
  529. package/test-env/global_styling/mixins/_button.js +29 -10
  530. package/test-env/global_styling/mixins/_container_query.js +112 -0
  531. package/test-env/global_styling/mixins/index.js +11 -0
  532. package/test-env/services/container_query/container_query_hook.js +65 -0
  533. package/test-env/services/container_query/index.js +16 -0
  534. package/test-env/services/container_query/match_container.js +231 -0
  535. package/es/components/flyout/flyout_child.js +0 -223
  536. package/es/components/flyout/flyout_child.styles.js +0 -32
  537. package/es/components/flyout/flyout_child_manager.js +0 -114
  538. package/es/components/flyout/sessions/flyout_provider.js +0 -95
  539. package/es/components/flyout/sessions/flyout_reducer.js +0 -195
  540. package/es/components/flyout/sessions/use_eui_flyout.js +0 -82
  541. package/lib/components/flyout/flyout_child.js +0 -231
  542. package/lib/components/flyout/flyout_child.styles.js +0 -38
  543. package/lib/components/flyout/flyout_child_manager.js +0 -122
  544. package/lib/components/flyout/sessions/flyout_provider.js +0 -102
  545. package/lib/components/flyout/sessions/flyout_reducer.js +0 -202
  546. package/lib/components/flyout/sessions/index.js +0 -25
  547. package/lib/components/flyout/sessions/use_eui_flyout.js +0 -88
  548. package/optimize/es/components/flyout/flyout_child.js +0 -178
  549. package/optimize/es/components/flyout/flyout_child.styles.js +0 -32
  550. package/optimize/es/components/flyout/flyout_child_manager.js +0 -100
  551. package/optimize/es/components/flyout/sessions/flyout_provider.js +0 -90
  552. package/optimize/es/components/flyout/sessions/flyout_reducer.js +0 -187
  553. package/optimize/es/components/flyout/sessions/use_eui_flyout.js +0 -82
  554. package/optimize/lib/components/flyout/flyout_child.js +0 -186
  555. package/optimize/lib/components/flyout/flyout_child.styles.js +0 -38
  556. package/optimize/lib/components/flyout/flyout_child_manager.js +0 -110
  557. package/optimize/lib/components/flyout/sessions/flyout_provider.js +0 -100
  558. package/optimize/lib/components/flyout/sessions/flyout_reducer.js +0 -195
  559. package/optimize/lib/components/flyout/sessions/index.js +0 -25
  560. package/optimize/lib/components/flyout/sessions/use_eui_flyout.js +0 -88
  561. package/test-env/components/flyout/flyout_child.js +0 -230
  562. package/test-env/components/flyout/flyout_child.styles.js +0 -38
  563. package/test-env/components/flyout/flyout_child_manager.js +0 -119
  564. package/test-env/components/flyout/sessions/flyout_provider.js +0 -100
  565. package/test-env/components/flyout/sessions/flyout_reducer.js +0 -195
  566. package/test-env/components/flyout/sessions/index.js +0 -25
  567. package/test-env/components/flyout/sessions/use_eui_flyout.js +0 -88
  568. /package/es/components/flyout/{sessions → manager}/types.js +0 -0
  569. /package/{optimize/es/components/flyout/sessions → es/components/flyout}/types.js +0 -0
  570. /package/lib/components/flyout/{sessions → manager}/types.js +0 -0
  571. /package/{optimize/lib/components/flyout/sessions → lib/components/flyout}/types.js +0 -0
  572. /package/{test-env/components/flyout/sessions → optimize/lib/components/flyout/manager}/types.js +0 -0
package/i18ntokens.json CHANGED
@@ -23,14 +23,14 @@
23
23
  "highlighting": "string",
24
24
  "loc": {
25
25
  "start": {
26
- "line": 35,
26
+ "line": 39,
27
27
  "column": 6,
28
- "index": 1131
28
+ "index": 1363
29
29
  },
30
30
  "end": {
31
- "line": 35,
31
+ "line": 39,
32
32
  "column": 70,
33
- "index": 1195
33
+ "index": 1427
34
34
  }
35
35
  },
36
36
  "filepath": "src/components/tour/tour_step_indicator.tsx"
@@ -41,14 +41,14 @@
41
41
  "highlighting": "string",
42
42
  "loc": {
43
43
  "start": {
44
- "line": 48,
44
+ "line": 52,
45
45
  "column": 6,
46
- "index": 1479
46
+ "index": 1715
47
47
  },
48
48
  "end": {
49
- "line": 48,
49
+ "line": 52,
50
50
  "column": 74,
51
- "index": 1547
51
+ "index": 1783
52
52
  }
53
53
  },
54
54
  "filepath": "src/components/tour/tour_step_indicator.tsx"
@@ -59,14 +59,14 @@
59
59
  "highlighting": "string",
60
60
  "loc": {
61
61
  "start": {
62
- "line": 56,
62
+ "line": 60,
63
63
  "column": 6,
64
- "index": 1759
64
+ "index": 2001
65
65
  },
66
66
  "end": {
67
- "line": 56,
67
+ "line": 60,
68
68
  "column": 78,
69
- "index": 1831
69
+ "index": 2073
70
70
  }
71
71
  },
72
72
  "filepath": "src/components/tour/tour_step_indicator.tsx"
@@ -77,14 +77,14 @@
77
77
  "highlighting": "string",
78
78
  "loc": {
79
79
  "start": {
80
- "line": 65,
80
+ "line": 69,
81
81
  "column": 4,
82
- "index": 1999
82
+ "index": 2247
83
83
  },
84
84
  "end": {
85
- "line": 69,
85
+ "line": 73,
86
86
  "column": 5,
87
- "index": 2131
87
+ "index": 2379
88
88
  }
89
89
  },
90
90
  "filepath": "src/components/tour/tour_step_indicator.tsx"
@@ -143,6 +143,24 @@
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
+ },
146
164
  {
147
165
  "token": "euiToast.newNotification",
148
166
  "defString": "A new notification appears",
@@ -234,40 +252,22 @@
234
252
  "filepath": "src/components/toast/global_toast_list.tsx"
235
253
  },
236
254
  {
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}",
255
+ "token": "euiStat.loadingText",
256
+ "defString": "Statistic is loading",
257
257
  "highlighting": "string",
258
258
  "loc": {
259
259
  "start": {
260
- "line": 113,
261
- "column": 10,
262
- "index": 3512
260
+ "line": 95,
261
+ "column": 32,
262
+ "index": 2317
263
263
  },
264
264
  "end": {
265
- "line": 117,
266
- "column": 11,
267
- "index": 3686
265
+ "line": 98,
266
+ "column": 3,
267
+ "index": 2386
268
268
  }
269
269
  },
270
- "filepath": "src/components/table/table_header_cell.tsx"
270
+ "filepath": "src/components/stat/stat.tsx"
271
271
  },
272
272
  {
273
273
  "token": "euiStepStrings.step",
@@ -558,22 +558,40 @@
558
558
  "filepath": "src/components/steps/step_strings.tsx"
559
559
  },
560
560
  {
561
- "token": "euiStat.loadingText",
562
- "defString": "Statistic is loading",
561
+ "token": "euiTableHeaderCell.titleTextWithDesc",
562
+ "defString": "{innerText}; {description}",
563
563
  "highlighting": "string",
564
564
  "loc": {
565
565
  "start": {
566
- "line": 95,
567
- "column": 32,
568
- "index": 2317
566
+ "line": 113,
567
+ "column": 10,
568
+ "index": 3512
569
569
  },
570
570
  "end": {
571
- "line": 98,
572
- "column": 3,
573
- "index": 2386
571
+ "line": 117,
572
+ "column": 11,
573
+ "index": 3686
574
574
  }
575
575
  },
576
- "filepath": "src/components/stat/stat.tsx"
576
+ "filepath": "src/components/table/table_header_cell.tsx"
577
+ },
578
+ {
579
+ "token": "euiSideNav.mobileToggleAriaLabel",
580
+ "defString": "Toggle navigation",
581
+ "highlighting": "string",
582
+ "loc": {
583
+ "start": {
584
+ "line": 208,
585
+ "column": 16,
586
+ "index": 6318
587
+ },
588
+ "end": {
589
+ "line": 211,
590
+ "column": 17,
591
+ "index": 6449
592
+ }
593
+ },
594
+ "filepath": "src/components/side_nav/side_nav.tsx"
577
595
  },
578
596
  {
579
597
  "token": "euiSkeletonLoading.loadedAriaText",
@@ -665,92 +683,20 @@
665
683
  },
666
684
  "filepath": "src/components/search_bar/search_box.tsx"
667
685
  },
668
- {
669
- "token": "euiSideNav.mobileToggleAriaLabel",
670
- "defString": "Toggle navigation",
671
- "highlighting": "string",
672
- "loc": {
673
- "start": {
674
- "line": 208,
675
- "column": 16,
676
- "index": 6318
677
- },
678
- "end": {
679
- "line": 211,
680
- "column": 17,
681
- "index": 6449
682
- }
683
- },
684
- "filepath": "src/components/side_nav/side_nav.tsx"
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
- },
740
686
  {
741
687
  "token": "euiSelectable.loadingOptions",
742
688
  "defString": "Loading options",
743
689
  "highlighting": "string",
744
690
  "loc": {
745
691
  "start": {
746
- "line": 628,
692
+ "line": 633,
747
693
  "column": 16,
748
- "index": 20323
694
+ "index": 20462
749
695
  },
750
696
  "end": {
751
- "line": 631,
697
+ "line": 636,
752
698
  "column": 18,
753
- "index": 20449
699
+ "index": 20588
754
700
  }
755
701
  },
756
702
  "filepath": "src/components/selectable/selectable.tsx"
@@ -761,14 +707,14 @@
761
707
  "highlighting": "string",
762
708
  "loc": {
763
709
  "start": {
764
- "line": 650,
710
+ "line": 655,
765
711
  "column": 14,
766
- "index": 20937
712
+ "index": 21076
767
713
  },
768
714
  "end": {
769
- "line": 654,
715
+ "line": 659,
770
716
  "column": 16,
771
- "index": 21157
717
+ "index": 21296
772
718
  }
773
719
  },
774
720
  "filepath": "src/components/selectable/selectable.tsx"
@@ -779,14 +725,14 @@
779
725
  "highlighting": "string",
780
726
  "loc": {
781
727
  "start": {
782
- "line": 669,
728
+ "line": 674,
783
729
  "column": 14,
784
- "index": 21568
730
+ "index": 21707
785
731
  },
786
732
  "end": {
787
- "line": 672,
733
+ "line": 677,
788
734
  "column": 16,
789
- "index": 21697
735
+ "index": 21836
790
736
  }
791
737
  },
792
738
  "filepath": "src/components/selectable/selectable.tsx"
@@ -797,14 +743,14 @@
797
743
  "highlighting": "string",
798
744
  "loc": {
799
745
  "start": {
800
- "line": 734,
746
+ "line": 739,
801
747
  "column": 6,
802
- "index": 23362
748
+ "index": 23501
803
749
  },
804
750
  "end": {
805
- "line": 743,
751
+ "line": 748,
806
752
  "column": 7,
807
- "index": 23690
753
+ "index": 23829
808
754
  }
809
755
  },
810
756
  "filepath": "src/components/selectable/selectable.tsx"
@@ -815,14 +761,14 @@
815
761
  "highlighting": "string",
816
762
  "loc": {
817
763
  "start": {
818
- "line": 734,
764
+ "line": 739,
819
765
  "column": 6,
820
- "index": 23362
766
+ "index": 23501
821
767
  },
822
768
  "end": {
823
- "line": 743,
769
+ "line": 748,
824
770
  "column": 7,
825
- "index": 23690
771
+ "index": 23829
826
772
  }
827
773
  },
828
774
  "filepath": "src/components/selectable/selectable.tsx"
@@ -833,14 +779,14 @@
833
779
  "highlighting": "code",
834
780
  "loc": {
835
781
  "start": {
836
- "line": 781,
782
+ "line": 790,
837
783
  "column": 6,
838
- "index": 25128
784
+ "index": 25340
839
785
  },
840
786
  "end": {
841
- "line": 787,
787
+ "line": 796,
842
788
  "column": 8,
843
- "index": 25353
789
+ "index": 25565
844
790
  }
845
791
  },
846
792
  "filepath": "src/components/selectable/selectable.tsx"
@@ -851,18 +797,72 @@
851
797
  "highlighting": "string",
852
798
  "loc": {
853
799
  "start": {
854
- "line": 799,
800
+ "line": 808,
855
801
  "column": 6,
856
- "index": 25647
802
+ "index": 25859
857
803
  },
858
804
  "end": {
859
- "line": 799,
805
+ "line": 808,
860
806
  "column": 78,
861
- "index": 25719
807
+ "index": 25931
862
808
  }
863
809
  },
864
810
  "filepath": "src/components/selectable/selectable.tsx"
865
811
  },
812
+ {
813
+ "token": "euiResizablePanel.toggleButtonAriaLabel",
814
+ "defString": "Press to toggle this panel",
815
+ "highlighting": "string",
816
+ "loc": {
817
+ "start": {
818
+ "line": 321,
819
+ "column": 32,
820
+ "index": 9654
821
+ },
822
+ "end": {
823
+ "line": 324,
824
+ "column": 3,
825
+ "index": 9749
826
+ }
827
+ },
828
+ "filepath": "src/components/resizable_container/resizable_panel.tsx"
829
+ },
830
+ {
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
866
  {
867
867
  "token": "euiProgress.valueText",
868
868
  "defString": "{value}%",
@@ -887,14 +887,14 @@
887
887
  "highlighting": "string",
888
888
  "loc": {
889
889
  "start": {
890
- "line": 706,
890
+ "line": 710,
891
891
  "column": 16,
892
- "index": 21021
892
+ "index": 21185
893
893
  },
894
894
  "end": {
895
- "line": 709,
895
+ "line": 713,
896
896
  "column": 18,
897
- "index": 21215
897
+ "index": 21379
898
898
  }
899
899
  },
900
900
  "filepath": "src/components/popover/popover.tsx"
@@ -1188,19 +1188,55 @@
1188
1188
  "filepath": "src/components/modal/modal.tsx"
1189
1189
  },
1190
1190
  {
1191
- "token": "euiMarkdownEditorToolbar.editor",
1192
- "defString": "Editor",
1191
+ "token": "euiMark.highlightStart",
1192
+ "defString": "highlight start",
1193
1193
  "highlighting": "string",
1194
1194
  "loc": {
1195
1195
  "start": {
1196
- "line": 285,
1197
- "column": 8,
1198
- "index": 7699
1196
+ "line": 44,
1197
+ "column": 25,
1198
+ "index": 1289
1199
1199
  },
1200
1200
  "end": {
1201
- "line": 285,
1202
- "column": 76,
1203
- "index": 7767
1201
+ "line": 47,
1202
+ "column": 3,
1203
+ "index": 1356
1204
+ }
1205
+ },
1206
+ "filepath": "src/components/mark/mark.tsx"
1207
+ },
1208
+ {
1209
+ "token": "euiMark.highlightEnd",
1210
+ "defString": "highlight end",
1211
+ "highlighting": "string",
1212
+ "loc": {
1213
+ "start": {
1214
+ "line": 48,
1215
+ "column": 23,
1216
+ "index": 1381
1217
+ },
1218
+ "end": {
1219
+ "line": 48,
1220
+ "column": 74,
1221
+ "index": 1432
1222
+ }
1223
+ },
1224
+ "filepath": "src/components/mark/mark.tsx"
1225
+ },
1226
+ {
1227
+ "token": "euiMarkdownEditorToolbar.editor",
1228
+ "defString": "Editor",
1229
+ "highlighting": "string",
1230
+ "loc": {
1231
+ "start": {
1232
+ "line": 285,
1233
+ "column": 8,
1234
+ "index": 7699
1235
+ },
1236
+ "end": {
1237
+ "line": 285,
1238
+ "column": 76,
1239
+ "index": 7767
1204
1240
  }
1205
1241
  },
1206
1242
  "filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
@@ -1457,42 +1493,6 @@
1457
1493
  },
1458
1494
  "filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
1459
1495
  },
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
- },
1496
1496
  {
1497
1497
  "token": "euiLoadingStrings.ariaLabel",
1498
1498
  "defString": "Loading",
@@ -1517,14 +1517,14 @@
1517
1517
  "highlighting": "string",
1518
1518
  "loc": {
1519
1519
  "start": {
1520
- "line": 56,
1521
- "column": 16,
1522
- "index": 1824
1520
+ "line": 58,
1521
+ "column": 12,
1522
+ "index": 1789
1523
1523
  },
1524
1524
  "end": {
1525
- "line": 59,
1526
- "column": 18,
1527
- "index": 1997
1525
+ "line": 61,
1526
+ "column": 14,
1527
+ "index": 1950
1528
1528
  }
1529
1529
  },
1530
1530
  "filepath": "src/components/link/external_link_icon.tsx"
@@ -1535,14 +1535,14 @@
1535
1535
  "highlighting": "string",
1536
1536
  "loc": {
1537
1537
  "start": {
1538
- "line": 66,
1539
- "column": 18,
1540
- "index": 2163
1538
+ "line": 67,
1539
+ "column": 12,
1540
+ "index": 2071
1541
1541
  },
1542
1542
  "end": {
1543
- "line": 69,
1544
- "column": 20,
1545
- "index": 2317
1543
+ "line": 70,
1544
+ "column": 14,
1545
+ "index": 2207
1546
1546
  }
1547
1547
  },
1548
1548
  "filepath": "src/components/link/external_link_icon.tsx"
@@ -1673,23 +1673,59 @@
1673
1673
  },
1674
1674
  "filepath": "src/components/form/form.tsx"
1675
1675
  },
1676
+ {
1677
+ "token": "euiFlyoutMenu.back",
1678
+ "defString": "Back",
1679
+ "highlighting": "string",
1680
+ "loc": {
1681
+ "start": {
1682
+ "line": 121,
1683
+ "column": 6,
1684
+ "index": 3526
1685
+ },
1686
+ "end": {
1687
+ "line": 121,
1688
+ "column": 59,
1689
+ "index": 3579
1690
+ }
1691
+ },
1692
+ "filepath": "src/components/flyout/flyout_menu.tsx"
1693
+ },
1694
+ {
1695
+ "token": "euiFlyoutMenu.history",
1696
+ "defString": "History",
1697
+ "highlighting": "string",
1698
+ "loc": {
1699
+ "start": {
1700
+ "line": 140,
1701
+ "column": 22,
1702
+ "index": 3988
1703
+ },
1704
+ "end": {
1705
+ "line": 140,
1706
+ "column": 68,
1707
+ "index": 4034
1708
+ }
1709
+ },
1710
+ "filepath": "src/components/flyout/flyout_menu.tsx"
1711
+ },
1676
1712
  {
1677
1713
  "token": "euiFlyout.screenReaderModalDialog",
1678
1714
  "defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
1679
1715
  "highlighting": "string",
1680
1716
  "loc": {
1681
1717
  "start": {
1682
- "line": 464,
1718
+ "line": 599,
1683
1719
  "column": 14,
1684
- "index": 15737
1720
+ "index": 19053
1685
1721
  },
1686
1722
  "end": {
1687
- "line": 467,
1723
+ "line": 602,
1688
1724
  "column": 16,
1689
- "index": 15952
1725
+ "index": 19268
1690
1726
  }
1691
1727
  },
1692
- "filepath": "src/components/flyout/flyout.tsx"
1728
+ "filepath": "src/components/flyout/flyout.component.tsx"
1693
1729
  },
1694
1730
  {
1695
1731
  "token": "euiFlyout.screenReaderNonModalDialog",
@@ -1697,17 +1733,17 @@
1697
1733
  "highlighting": "string",
1698
1734
  "loc": {
1699
1735
  "start": {
1700
- "line": 469,
1736
+ "line": 604,
1701
1737
  "column": 14,
1702
- "index": 15985
1738
+ "index": 19301
1703
1739
  },
1704
1740
  "end": {
1705
- "line": 472,
1741
+ "line": 607,
1706
1742
  "column": 16,
1707
- "index": 16163
1743
+ "index": 19479
1708
1744
  }
1709
1745
  },
1710
- "filepath": "src/components/flyout/flyout.tsx"
1746
+ "filepath": "src/components/flyout/flyout.component.tsx"
1711
1747
  },
1712
1748
  {
1713
1749
  "token": "euiFlyout.screenReaderFocusTrapShards",
@@ -1715,17 +1751,17 @@
1715
1751
  "highlighting": "string",
1716
1752
  "loc": {
1717
1753
  "start": {
1718
- "line": 475,
1754
+ "line": 610,
1719
1755
  "column": 14,
1720
- "index": 16243
1756
+ "index": 19559
1721
1757
  },
1722
1758
  "end": {
1723
- "line": 478,
1759
+ "line": 613,
1724
1760
  "column": 16,
1725
- "index": 16424
1761
+ "index": 19740
1726
1762
  }
1727
1763
  },
1728
- "filepath": "src/components/flyout/flyout.tsx"
1764
+ "filepath": "src/components/flyout/flyout.component.tsx"
1729
1765
  },
1730
1766
  {
1731
1767
  "token": "euiFlyoutCloseButton.ariaLabel",
@@ -2149,16 +2185,34 @@
2149
2185
  "start": {
2150
2186
  "line": 181,
2151
2187
  "column": 27,
2152
- "index": 6023
2188
+ "index": 6041
2153
2189
  },
2154
2190
  "end": {
2155
2191
  "line": 184,
2156
2192
  "column": 3,
2157
- "index": 6093
2193
+ "index": 6111
2158
2194
  }
2159
2195
  },
2160
2196
  "filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
2161
2197
  },
2198
+ {
2199
+ "token": "euiCodeBlockCopy.copy",
2200
+ "defString": "Copy",
2201
+ "highlighting": "string",
2202
+ "loc": {
2203
+ "start": {
2204
+ "line": 54,
2205
+ "column": 31,
2206
+ "index": 1895
2207
+ },
2208
+ "end": {
2209
+ "line": 54,
2210
+ "column": 74,
2211
+ "index": 1938
2212
+ }
2213
+ },
2214
+ "filepath": "src/components/code/code_block_copy.tsx"
2215
+ },
2162
2216
  {
2163
2217
  "token": "euiCodeBlockFullScreen.fullscreenCollapse",
2164
2218
  "defString": "Collapse",
@@ -2214,22 +2268,22 @@
2214
2268
  "filepath": "src/components/code/code_block_full_screen.tsx"
2215
2269
  },
2216
2270
  {
2217
- "token": "euiCodeBlockCopy.copy",
2218
- "defString": "Copy",
2271
+ "token": "euiCodeBlock.label",
2272
+ "defString": "{language} code block:",
2219
2273
  "highlighting": "string",
2220
2274
  "loc": {
2221
2275
  "start": {
2222
- "line": 54,
2223
- "column": 31,
2224
- "index": 1895
2276
+ "line": 269,
2277
+ "column": 25,
2278
+ "index": 7663
2225
2279
  },
2226
2280
  "end": {
2227
- "line": 54,
2228
- "column": 74,
2229
- "index": 1938
2281
+ "line": 275,
2282
+ "column": 3,
2283
+ "index": 7762
2230
2284
  }
2231
2285
  },
2232
- "filepath": "src/components/code/code_block_copy.tsx"
2286
+ "filepath": "src/components/code/code_block.tsx"
2233
2287
  },
2234
2288
  {
2235
2289
  "token": "euiCodeBlockAnnotations.ariaLabel",
@@ -2249,24 +2303,6 @@
2249
2303
  },
2250
2304
  "filepath": "src/components/code/code_block_annotations.tsx"
2251
2305
  },
2252
- {
2253
- "token": "euiCodeBlock.label",
2254
- "defString": "{language} code block:",
2255
- "highlighting": "string",
2256
- "loc": {
2257
- "start": {
2258
- "line": 269,
2259
- "column": 25,
2260
- "index": 7663
2261
- },
2262
- "end": {
2263
- "line": 275,
2264
- "column": 3,
2265
- "index": 7762
2266
- }
2267
- },
2268
- "filepath": "src/components/code/code_block.tsx"
2269
- },
2270
2306
  {
2271
2307
  "token": "euiCallOut.dismissAriaLabel",
2272
2308
  "defString": "Dismiss this callout",
@@ -2455,84 +2491,84 @@
2455
2491
  "start": {
2456
2492
  "line": 321,
2457
2493
  "column": 6,
2458
- "index": 8192
2494
+ "index": 8203
2459
2495
  },
2460
2496
  "end": {
2461
2497
  "line": 321,
2462
2498
  "column": 79,
2463
- "index": 8265
2499
+ "index": 8276
2464
2500
  }
2465
2501
  },
2466
2502
  "filepath": "src/components/basic_table/basic_table.tsx"
2467
2503
  },
2468
2504
  {
2469
- "token": "euiBasicTable.tableCaptionWithPagination",
2470
- "defString": "{tableCaption}; Page {page} of {pageCount}.",
2505
+ "token": "euiBasicTable.caption.itemCountPart.withTotalItemCount",
2506
+ "defString": "Showing {itemCount} of {totalItemCount} data rows.",
2471
2507
  "highlighting": "string",
2472
2508
  "loc": {
2473
2509
  "start": {
2474
- "line": 631,
2510
+ "line": 640,
2475
2511
  "column": 10,
2476
- "index": 16361
2512
+ "index": 16589
2477
2513
  },
2478
2514
  "end": {
2479
- "line": 635,
2515
+ "line": 644,
2480
2516
  "column": 12,
2481
- "index": 16564
2517
+ "index": 16809
2482
2518
  }
2483
2519
  },
2484
2520
  "filepath": "src/components/basic_table/basic_table.tsx"
2485
2521
  },
2486
2522
  {
2487
- "token": "euiBasicTable.tableAutoCaptionWithPagination",
2488
- "defString": "This table contains {itemCount} rows out of {totalItemCount} rows; Page {page} of {pageCount}.",
2523
+ "token": "euiBasicTable.caption.paginationPart.withPageCount",
2524
+ "defString": "Page {page} of {pageCount}.",
2489
2525
  "highlighting": "string",
2490
2526
  "loc": {
2491
2527
  "start": {
2492
- "line": 644,
2493
- "column": 12,
2494
- "index": 16761
2528
+ "line": 653,
2529
+ "column": 10,
2530
+ "index": 16973
2495
2531
  },
2496
2532
  "end": {
2497
- "line": 648,
2498
- "column": 14,
2499
- "index": 17040
2533
+ "line": 657,
2534
+ "column": 12,
2535
+ "index": 17156
2500
2536
  }
2501
2537
  },
2502
2538
  "filepath": "src/components/basic_table/basic_table.tsx"
2503
2539
  },
2504
2540
  {
2505
- "token": "euiBasicTable.tableSimpleAutoCaptionWithPagination",
2506
- "defString": "This table contains {itemCount} rows; Page {page} of {pageCount}.",
2541
+ "token": "euiBasicTable.caption.tableName",
2542
+ "defString": "Data table",
2507
2543
  "highlighting": "string",
2508
2544
  "loc": {
2509
2545
  "start": {
2510
- "line": 652,
2511
- "column": 12,
2512
- "index": 17112
2546
+ "line": 669,
2547
+ "column": 16,
2548
+ "index": 17445
2513
2549
  },
2514
2550
  "end": {
2515
- "line": 656,
2516
- "column": 14,
2517
- "index": 17352
2551
+ "line": 672,
2552
+ "column": 18,
2553
+ "index": 17569
2518
2554
  }
2519
2555
  },
2520
2556
  "filepath": "src/components/basic_table/basic_table.tsx"
2521
2557
  },
2522
2558
  {
2523
- "token": "euiBasicTable.tableAutoCaptionWithoutPagination",
2524
- "defString": "This table contains {itemCount} rows.",
2559
+ "token": "euiBasicTable.caption.emptyState",
2560
+ "defString": "(empty)",
2525
2561
  "highlighting": "string",
2526
2562
  "loc": {
2527
2563
  "start": {
2528
- "line": 661,
2529
- "column": 10,
2530
- "index": 17428
2564
+ "line": 677,
2565
+ "column": 18,
2566
+ "index": 17684
2531
2567
  },
2532
2568
  "end": {
2533
- "line": 665,
2534
- "column": 12,
2535
- "index": 17612
2569
+ "line": 680,
2570
+ "column": 20,
2571
+ "index": 17812
2536
2572
  }
2537
2573
  },
2538
2574
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2543,14 +2579,14 @@
2543
2579
  "highlighting": "string",
2544
2580
  "loc": {
2545
2581
  "start": {
2546
- "line": 715,
2582
+ "line": 729,
2547
2583
  "column": 6,
2548
- "index": 18910
2584
+ "index": 19017
2549
2585
  },
2550
2586
  "end": {
2551
- "line": 718,
2587
+ "line": 732,
2552
2588
  "column": 7,
2553
- "index": 19061
2589
+ "index": 19168
2554
2590
  }
2555
2591
  },
2556
2592
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2561,14 +2597,14 @@
2561
2597
  "highlighting": "string",
2562
2598
  "loc": {
2563
2599
  "start": {
2564
- "line": 715,
2600
+ "line": 729,
2565
2601
  "column": 6,
2566
- "index": 18910
2602
+ "index": 19017
2567
2603
  },
2568
2604
  "end": {
2569
- "line": 718,
2605
+ "line": 732,
2570
2606
  "column": 7,
2571
- "index": 19061
2607
+ "index": 19168
2572
2608
  }
2573
2609
  },
2574
2610
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2579,14 +2615,14 @@
2579
2615
  "highlighting": "string",
2580
2616
  "loc": {
2581
2617
  "start": {
2582
- "line": 1135,
2618
+ "line": 1149,
2583
2619
  "column": 8,
2584
- "index": 31492
2620
+ "index": 31599
2585
2621
  },
2586
2622
  "end": {
2587
- "line": 1139,
2623
+ "line": 1153,
2588
2624
  "column": 9,
2589
- "index": 31647
2625
+ "index": 31754
2590
2626
  }
2591
2627
  },
2592
2628
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2597,18 +2633,36 @@
2597
2633
  "highlighting": "string",
2598
2634
  "loc": {
2599
2635
  "start": {
2600
- "line": 1383,
2636
+ "line": 1397,
2601
2637
  "column": 8,
2602
- "index": 38772
2638
+ "index": 38879
2603
2639
  },
2604
2640
  "end": {
2605
- "line": 1387,
2641
+ "line": 1401,
2606
2642
  "column": 9,
2607
- "index": 38931
2643
+ "index": 39038
2608
2644
  }
2609
2645
  },
2610
2646
  "filepath": "src/components/basic_table/basic_table.tsx"
2611
2647
  },
2648
+ {
2649
+ "token": "euiTableSortMobile.sorting",
2650
+ "defString": "Sorting",
2651
+ "highlighting": "string",
2652
+ "loc": {
2653
+ "start": {
2654
+ "line": 76,
2655
+ "column": 8,
2656
+ "index": 1963
2657
+ },
2658
+ "end": {
2659
+ "line": 76,
2660
+ "column": 72,
2661
+ "index": 2027
2662
+ }
2663
+ },
2664
+ "filepath": "src/components/table/mobile/table_sort_mobile.tsx"
2665
+ },
2612
2666
  {
2613
2667
  "token": "euiTablePagination.allRows",
2614
2668
  "defString": "Showing all rows",
@@ -2681,24 +2735,6 @@
2681
2735
  },
2682
2736
  "filepath": "src/components/table/table_pagination/table_pagination.tsx"
2683
2737
  },
2684
- {
2685
- "token": "euiTableSortMobile.sorting",
2686
- "defString": "Sorting",
2687
- "highlighting": "string",
2688
- "loc": {
2689
- "start": {
2690
- "line": 76,
2691
- "column": 8,
2692
- "index": 1963
2693
- },
2694
- "end": {
2695
- "line": 76,
2696
- "column": 72,
2697
- "index": 2027
2698
- }
2699
- },
2700
- "filepath": "src/components/table/mobile/table_sort_mobile.tsx"
2701
- },
2702
2738
  {
2703
2739
  "token": "euiFieldValueSelectionFilter.buttonLabelHint",
2704
2740
  "defString": "Selection",
@@ -3024,32 +3060,68 @@
3024
3060
  "filepath": "src/components/header/header_links/header_links.tsx"
3025
3061
  },
3026
3062
  {
3027
- "token": "euiSuperSelect.screenReaderAnnouncement",
3028
- "defString": "You are in a form selector and must select a single option.\n Use the Up and Down arrow keys to navigate or Escape to close.",
3063
+ "token": "euiRange.sliderScreenReaderInstructions",
3064
+ "defString": "You are in a custom range slider. Use the Up and Down arrow keys to change the value.",
3029
3065
  "highlighting": "string",
3030
3066
  "loc": {
3031
3067
  "start": {
3032
- "line": 341,
3033
- "column": 12,
3034
- "index": 9588
3068
+ "line": 205,
3069
+ "column": 6,
3070
+ "index": 5494
3035
3071
  },
3036
3072
  "end": {
3037
- "line": 345,
3038
- "column": 14,
3039
- "index": 9834
3073
+ "line": 208,
3074
+ "column": 8,
3075
+ "index": 5671
3040
3076
  }
3041
3077
  },
3042
- "filepath": "src/components/form/super_select/super_select.tsx"
3078
+ "filepath": "src/components/form/range/range.tsx"
3043
3079
  },
3044
3080
  {
3045
- "token": "euiSuperSelect.ariaLabel",
3046
- "defString": "Select listbox",
3081
+ "token": "euiDualRange.sliderScreenReaderInstructions",
3082
+ "defString": "You are in a custom range slider. Use the Up and Down arrow keys to change the minimum value. Press Tab to interact with the maximum value.",
3047
3083
  "highlighting": "string",
3048
3084
  "loc": {
3049
3085
  "start": {
3050
- "line": 348,
3051
- "column": 8,
3052
- "index": 9889
3086
+ "line": 593,
3087
+ "column": 6,
3088
+ "index": 17671
3089
+ },
3090
+ "end": {
3091
+ "line": 596,
3092
+ "column": 8,
3093
+ "index": 17906
3094
+ }
3095
+ },
3096
+ "filepath": "src/components/form/range/dual_range.tsx"
3097
+ },
3098
+ {
3099
+ "token": "euiSuperSelect.screenReaderAnnouncement",
3100
+ "defString": "You are in a form selector and must select a single option.\n Use the Up and Down arrow keys to navigate or Escape to close.",
3101
+ "highlighting": "string",
3102
+ "loc": {
3103
+ "start": {
3104
+ "line": 341,
3105
+ "column": 12,
3106
+ "index": 9588
3107
+ },
3108
+ "end": {
3109
+ "line": 345,
3110
+ "column": 14,
3111
+ "index": 9834
3112
+ }
3113
+ },
3114
+ "filepath": "src/components/form/super_select/super_select.tsx"
3115
+ },
3116
+ {
3117
+ "token": "euiSuperSelect.ariaLabel",
3118
+ "defString": "Select listbox",
3119
+ "highlighting": "string",
3120
+ "loc": {
3121
+ "start": {
3122
+ "line": 348,
3123
+ "column": 8,
3124
+ "index": 9889
3053
3125
  },
3054
3126
  "end": {
3055
3127
  "line": 348,
@@ -3060,40 +3132,40 @@
3060
3132
  "filepath": "src/components/form/super_select/super_select.tsx"
3061
3133
  },
3062
3134
  {
3063
- "token": "euiRange.sliderScreenReaderInstructions",
3064
- "defString": "You are in a custom range slider. Use the Up and Down arrow keys to change the value.",
3135
+ "token": "euiFormControlLayoutDelimited.delimiterLabel",
3136
+ "defString": "to",
3065
3137
  "highlighting": "string",
3066
3138
  "loc": {
3067
3139
  "start": {
3068
- "line": 205,
3069
- "column": 6,
3070
- "index": 5494
3140
+ "line": 127,
3141
+ "column": 27,
3142
+ "index": 3542
3071
3143
  },
3072
3144
  "end": {
3073
- "line": 208,
3074
- "column": 8,
3075
- "index": 5671
3145
+ "line": 130,
3146
+ "column": 3,
3147
+ "index": 3618
3076
3148
  }
3077
3149
  },
3078
- "filepath": "src/components/form/range/range.tsx"
3150
+ "filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
3079
3151
  },
3080
3152
  {
3081
- "token": "euiDualRange.sliderScreenReaderInstructions",
3082
- "defString": "You are in a custom range slider. Use the Up and Down arrow keys to change the minimum value. Press Tab to interact with the maximum value.",
3153
+ "token": "euiFormControlLayoutClearButton.label",
3154
+ "defString": "Clear input",
3083
3155
  "highlighting": "string",
3084
3156
  "loc": {
3085
3157
  "start": {
3086
- "line": 593,
3087
- "column": 6,
3088
- "index": 17671
3158
+ "line": 35,
3159
+ "column": 20,
3160
+ "index": 1412
3089
3161
  },
3090
3162
  "end": {
3091
- "line": 596,
3092
- "column": 8,
3093
- "index": 17906
3163
+ "line": 38,
3164
+ "column": 3,
3165
+ "index": 1490
3094
3166
  }
3095
3167
  },
3096
- "filepath": "src/components/form/range/dual_range.tsx"
3168
+ "filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
3097
3169
  },
3098
3170
  {
3099
3171
  "token": "euiFilePicker.promptText",
@@ -3167,42 +3239,6 @@
3167
3239
  },
3168
3240
  "filepath": "src/components/form/file_picker/file_picker.tsx"
3169
3241
  },
3170
- {
3171
- "token": "euiFormControlLayoutDelimited.delimiterLabel",
3172
- "defString": "to",
3173
- "highlighting": "string",
3174
- "loc": {
3175
- "start": {
3176
- "line": 127,
3177
- "column": 27,
3178
- "index": 3542
3179
- },
3180
- "end": {
3181
- "line": 130,
3182
- "column": 3,
3183
- "index": 3618
3184
- }
3185
- },
3186
- "filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
3187
- },
3188
- {
3189
- "token": "euiFormControlLayoutClearButton.label",
3190
- "defString": "Clear input",
3191
- "highlighting": "string",
3192
- "loc": {
3193
- "start": {
3194
- "line": 35,
3195
- "column": 20,
3196
- "index": 1412
3197
- },
3198
- "end": {
3199
- "line": 38,
3200
- "column": 3,
3201
- "index": 1490
3202
- }
3203
- },
3204
- "filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
3205
- },
3206
3242
  {
3207
3243
  "token": "euiFieldSearch.clearSearchButtonLabel",
3208
3244
  "defString": "Clear search input",
@@ -3258,164 +3294,380 @@
3258
3294
  "filepath": "src/components/form/field_password/field_password.tsx"
3259
3295
  },
3260
3296
  {
3261
- "token": "euiSuperUpdateButton.updatingButtonLabel",
3262
- "defString": "Updating",
3297
+ "token": "euiFlyoutManaged.defaultTitle",
3298
+ "defString": "Unknown Flyout",
3263
3299
  "highlighting": "string",
3264
3300
  "loc": {
3265
3301
  "start": {
3266
- "line": 204,
3267
- "column": 8,
3268
- "index": 5158
3302
+ "line": 123,
3303
+ "column": 23,
3304
+ "index": 3950
3269
3305
  },
3270
3306
  "end": {
3271
- "line": 207,
3272
- "column": 10,
3273
- "index": 5265
3307
+ "line": 126,
3308
+ "column": 3,
3309
+ "index": 4023
3274
3310
  }
3275
3311
  },
3276
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3312
+ "filepath": "src/components/flyout/manager/flyout_managed.tsx"
3277
3313
  },
3278
3314
  {
3279
- "token": "euiSuperUpdateButton.updateButtonLabel",
3280
- "defString": "Update",
3315
+ "token": "euiRefreshInterval.fullDescriptionOff",
3316
+ "defString": "Refresh is off, interval set to {optionValue} {optionText}.",
3281
3317
  "highlighting": "string",
3282
3318
  "loc": {
3283
3319
  "start": {
3284
- "line": 213,
3285
- "column": 8,
3286
- "index": 5328
3320
+ "line": 221,
3321
+ "column": 6,
3322
+ "index": 5894
3287
3323
  },
3288
3324
  "end": {
3289
- "line": 216,
3290
- "column": 10,
3291
- "index": 5431
3325
+ "line": 228,
3326
+ "column": 8,
3327
+ "index": 6124
3292
3328
  }
3293
3329
  },
3294
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3330
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3295
3331
  },
3296
3332
  {
3297
- "token": "euiSuperUpdateButton.refreshButtonLabel",
3298
- "defString": "Refresh",
3333
+ "token": "euiRefreshInterval.fullDescriptionOn",
3334
+ "defString": "Refresh is on, interval set to {optionValue} {optionText}.",
3299
3335
  "highlighting": "string",
3300
3336
  "loc": {
3301
3337
  "start": {
3302
- "line": 221,
3338
+ "line": 230,
3303
3339
  "column": 6,
3304
- "index": 5467
3340
+ "index": 6141
3305
3341
  },
3306
3342
  "end": {
3307
- "line": 224,
3343
+ "line": 237,
3308
3344
  "column": 8,
3309
- "index": 5566
3345
+ "index": 6369
3310
3346
  }
3311
3347
  },
3312
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3348
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3313
3349
  },
3314
3350
  {
3315
- "token": "euiSuperUpdateButton.cannotUpdateTooltip",
3316
- "defString": "Cannot update",
3351
+ "token": "euiRefreshInterval.toggleLabel",
3352
+ "defString": "Refresh every",
3317
3353
  "highlighting": "string",
3318
3354
  "loc": {
3319
3355
  "start": {
3320
- "line": 231,
3321
- "column": 8,
3322
- "index": 5681
3356
+ "line": 252,
3357
+ "column": 6,
3358
+ "index": 6639
3323
3359
  },
3324
3360
  "end": {
3325
- "line": 234,
3326
- "column": 10,
3327
- "index": 5793
3361
+ "line": 265,
3362
+ "column": 7,
3363
+ "index": 7028
3328
3364
  }
3329
3365
  },
3330
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3366
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3331
3367
  },
3332
3368
  {
3333
- "token": "euiSuperUpdateButton.clickToApplyTooltip",
3334
- "defString": "Click to apply",
3369
+ "token": "euiRefreshInterval.toggleAriaLabel",
3370
+ "defString": "Toggle refresh",
3335
3371
  "highlighting": "string",
3336
3372
  "loc": {
3337
3373
  "start": {
3338
- "line": 240,
3339
- "column": 8,
3340
- "index": 5892
3374
+ "line": 252,
3375
+ "column": 6,
3376
+ "index": 6639
3341
3377
  },
3342
3378
  "end": {
3343
- "line": 243,
3344
- "column": 10,
3345
- "index": 6005
3379
+ "line": 265,
3380
+ "column": 7,
3381
+ "index": 7028
3346
3382
  }
3347
3383
  },
3348
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3384
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3349
3385
  },
3350
3386
  {
3351
- "token": "euiTimeOptions.last",
3352
- "defString": "Last",
3387
+ "token": "euiRefreshInterval.valueAriaLabel",
3388
+ "defString": "Refresh interval value",
3353
3389
  "highlighting": "string",
3354
3390
  "loc": {
3355
3391
  "start": {
3356
- "line": 35,
3357
- "column": 25,
3358
- "index": 1138
3392
+ "line": 252,
3393
+ "column": 6,
3394
+ "index": 6639
3359
3395
  },
3360
3396
  "end": {
3361
- "line": 35,
3362
- "column": 66,
3363
- "index": 1179
3397
+ "line": 265,
3398
+ "column": 7,
3399
+ "index": 7028
3364
3400
  }
3365
3401
  },
3366
- "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3402
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3367
3403
  },
3368
3404
  {
3369
- "token": "euiTimeOptions.next",
3370
- "defString": "Next",
3405
+ "token": "euiRefreshInterval.unitsAriaLabel",
3406
+ "defString": "Refresh interval units",
3371
3407
  "highlighting": "string",
3372
3408
  "loc": {
3373
3409
  "start": {
3374
- "line": 36,
3375
- "column": 25,
3376
- "index": 1208
3410
+ "line": 252,
3411
+ "column": 6,
3412
+ "index": 6639
3377
3413
  },
3378
3414
  "end": {
3379
- "line": 36,
3380
- "column": 66,
3381
- "index": 1249
3415
+ "line": 265,
3416
+ "column": 7,
3417
+ "index": 7028
3382
3418
  }
3383
3419
  },
3384
- "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3420
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3385
3421
  },
3386
3422
  {
3387
- "token": "euiTimeOptions.seconds",
3388
- "defString": "Seconds",
3423
+ "token": "euiAutoRefresh.autoRefreshLabel",
3424
+ "defString": "Auto refresh",
3389
3425
  "highlighting": "string",
3390
3426
  "loc": {
3391
3427
  "start": {
3392
- "line": 40,
3393
- "column": 24,
3394
- "index": 1312
3428
+ "line": 50,
3429
+ "column": 26,
3430
+ "index": 1659
3395
3431
  },
3396
3432
  "end": {
3397
- "line": 40,
3398
- "column": 71,
3399
- "index": 1359
3433
+ "line": 53,
3434
+ "column": 3,
3435
+ "index": 1732
3400
3436
  }
3401
3437
  },
3402
- "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3438
+ "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
3403
3439
  },
3404
3440
  {
3405
- "token": "euiTimeOptions.minutes",
3406
- "defString": "Minutes",
3441
+ "token": "euiAutoRefresh.buttonLabelOff",
3442
+ "defString": "Auto refresh is off",
3407
3443
  "highlighting": "string",
3408
3444
  "loc": {
3409
3445
  "start": {
3410
- "line": 41,
3411
- "column": 24,
3412
- "index": 1387
3446
+ "line": 129,
3447
+ "column": 29,
3448
+ "index": 3709
3413
3449
  },
3414
3450
  "end": {
3415
- "line": 41,
3416
- "column": 71,
3417
- "index": 1434
3418
- }
3451
+ "line": 132,
3452
+ "column": 3,
3453
+ "index": 3787
3454
+ }
3455
+ },
3456
+ "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
3457
+ },
3458
+ {
3459
+ "token": "euiAutoRefresh.buttonLabelOn",
3460
+ "defString": "Auto refresh is on and set to {prettyInterval}",
3461
+ "highlighting": "string",
3462
+ "loc": {
3463
+ "start": {
3464
+ "line": 133,
3465
+ "column": 28,
3466
+ "index": 3817
3467
+ },
3468
+ "end": {
3469
+ "line": 141,
3470
+ "column": 3,
3471
+ "index": 4051
3472
+ }
3473
+ },
3474
+ "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
3475
+ },
3476
+ {
3477
+ "token": "euiTimeWindowButtons.invalidShiftLabel",
3478
+ "defString": "Cannot shift invalid time window",
3479
+ "highlighting": "string",
3480
+ "loc": {
3481
+ "start": {
3482
+ "line": 78,
3483
+ "column": 34,
3484
+ "index": 2324
3485
+ },
3486
+ "end": {
3487
+ "line": 81,
3488
+ "column": 3,
3489
+ "index": 2424
3490
+ }
3491
+ },
3492
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3493
+ },
3494
+ {
3495
+ "token": "euiTimeWindowButtons.invalidZoomOutLabel",
3496
+ "defString": "Cannot zoom out invalid time window",
3497
+ "highlighting": "string",
3498
+ "loc": {
3499
+ "start": {
3500
+ "line": 82,
3501
+ "column": 36,
3502
+ "index": 2462
3503
+ },
3504
+ "end": {
3505
+ "line": 85,
3506
+ "column": 3,
3507
+ "index": 2567
3508
+ }
3509
+ },
3510
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3511
+ },
3512
+ {
3513
+ "token": "euiTimeWindowButtons.previousLabel",
3514
+ "defString": "Previous",
3515
+ "highlighting": "string",
3516
+ "loc": {
3517
+ "start": {
3518
+ "line": 88,
3519
+ "column": 24,
3520
+ "index": 2659
3521
+ },
3522
+ "end": {
3523
+ "line": 91,
3524
+ "column": 3,
3525
+ "index": 2731
3526
+ }
3527
+ },
3528
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3529
+ },
3530
+ {
3531
+ "token": "euiTimeWindowButtons.previousDescription",
3532
+ "defString": "Previous {displayInterval}",
3533
+ "highlighting": "string",
3534
+ "loc": {
3535
+ "start": {
3536
+ "line": 92,
3537
+ "column": 33,
3538
+ "index": 2766
3539
+ },
3540
+ "end": {
3541
+ "line": 96,
3542
+ "column": 3,
3543
+ "index": 2887
3544
+ }
3545
+ },
3546
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3547
+ },
3548
+ {
3549
+ "token": "euiTimeWindowButtons.zoomOutLabel",
3550
+ "defString": "Zoom out",
3551
+ "highlighting": "string",
3552
+ "loc": {
3553
+ "start": {
3554
+ "line": 99,
3555
+ "column": 23,
3556
+ "index": 2977
3557
+ },
3558
+ "end": {
3559
+ "line": 102,
3560
+ "column": 3,
3561
+ "index": 3048
3562
+ }
3563
+ },
3564
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3565
+ },
3566
+ {
3567
+ "token": "euiTimeWindowButtons.nextLabel",
3568
+ "defString": "Next",
3569
+ "highlighting": "string",
3570
+ "loc": {
3571
+ "start": {
3572
+ "line": 108,
3573
+ "column": 20,
3574
+ "index": 3222
3575
+ },
3576
+ "end": {
3577
+ "line": 108,
3578
+ "column": 72,
3579
+ "index": 3274
3580
+ }
3581
+ },
3582
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3583
+ },
3584
+ {
3585
+ "token": "euiTimeWindowButtons.nextDescription",
3586
+ "defString": "Next {displayInterval}",
3587
+ "highlighting": "string",
3588
+ "loc": {
3589
+ "start": {
3590
+ "line": 109,
3591
+ "column": 29,
3592
+ "index": 3305
3593
+ },
3594
+ "end": {
3595
+ "line": 113,
3596
+ "column": 3,
3597
+ "index": 3418
3598
+ }
3599
+ },
3600
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3601
+ },
3602
+ {
3603
+ "token": "euiTimeOptions.last",
3604
+ "defString": "Last",
3605
+ "highlighting": "string",
3606
+ "loc": {
3607
+ "start": {
3608
+ "line": 35,
3609
+ "column": 25,
3610
+ "index": 1138
3611
+ },
3612
+ "end": {
3613
+ "line": 35,
3614
+ "column": 66,
3615
+ "index": 1179
3616
+ }
3617
+ },
3618
+ "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3619
+ },
3620
+ {
3621
+ "token": "euiTimeOptions.next",
3622
+ "defString": "Next",
3623
+ "highlighting": "string",
3624
+ "loc": {
3625
+ "start": {
3626
+ "line": 36,
3627
+ "column": 25,
3628
+ "index": 1208
3629
+ },
3630
+ "end": {
3631
+ "line": 36,
3632
+ "column": 66,
3633
+ "index": 1249
3634
+ }
3635
+ },
3636
+ "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3637
+ },
3638
+ {
3639
+ "token": "euiTimeOptions.seconds",
3640
+ "defString": "Seconds",
3641
+ "highlighting": "string",
3642
+ "loc": {
3643
+ "start": {
3644
+ "line": 40,
3645
+ "column": 24,
3646
+ "index": 1312
3647
+ },
3648
+ "end": {
3649
+ "line": 40,
3650
+ "column": 71,
3651
+ "index": 1359
3652
+ }
3653
+ },
3654
+ "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3655
+ },
3656
+ {
3657
+ "token": "euiTimeOptions.minutes",
3658
+ "defString": "Minutes",
3659
+ "highlighting": "string",
3660
+ "loc": {
3661
+ "start": {
3662
+ "line": 41,
3663
+ "column": 24,
3664
+ "index": 1387
3665
+ },
3666
+ "end": {
3667
+ "line": 41,
3668
+ "column": 71,
3669
+ "index": 1434
3670
+ }
3419
3671
  },
3420
3672
  "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
3421
3673
  },
@@ -4032,130 +4284,94 @@
4032
4284
  "filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
4033
4285
  },
4034
4286
  {
4035
- "token": "euiTimeWindowButtons.invalidShiftLabel",
4036
- "defString": "Cannot shift invalid time window",
4287
+ "token": "euiSuperUpdateButton.updatingButtonLabel",
4288
+ "defString": "Updating",
4037
4289
  "highlighting": "string",
4038
4290
  "loc": {
4039
4291
  "start": {
4040
- "line": 78,
4041
- "column": 34,
4042
- "index": 2343
4292
+ "line": 204,
4293
+ "column": 8,
4294
+ "index": 5158
4043
4295
  },
4044
4296
  "end": {
4045
- "line": 81,
4046
- "column": 3,
4047
- "index": 2443
4297
+ "line": 207,
4298
+ "column": 10,
4299
+ "index": 5265
4048
4300
  }
4049
4301
  },
4050
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4302
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4051
4303
  },
4052
4304
  {
4053
- "token": "euiTimeWindowButtons.invalidZoomOutLabel",
4054
- "defString": "Cannot zoom out invalid time window",
4305
+ "token": "euiSuperUpdateButton.updateButtonLabel",
4306
+ "defString": "Update",
4055
4307
  "highlighting": "string",
4056
4308
  "loc": {
4057
4309
  "start": {
4058
- "line": 82,
4059
- "column": 36,
4060
- "index": 2481
4310
+ "line": 213,
4311
+ "column": 8,
4312
+ "index": 5328
4061
4313
  },
4062
4314
  "end": {
4063
- "line": 85,
4064
- "column": 3,
4065
- "index": 2586
4315
+ "line": 216,
4316
+ "column": 10,
4317
+ "index": 5431
4066
4318
  }
4067
4319
  },
4068
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4320
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4069
4321
  },
4070
4322
  {
4071
- "token": "euiTimeWindowButtons.previousLabel",
4072
- "defString": "Previous",
4323
+ "token": "euiSuperUpdateButton.refreshButtonLabel",
4324
+ "defString": "Refresh",
4073
4325
  "highlighting": "string",
4074
4326
  "loc": {
4075
4327
  "start": {
4076
- "line": 88,
4077
- "column": 24,
4078
- "index": 2678
4328
+ "line": 221,
4329
+ "column": 6,
4330
+ "index": 5467
4079
4331
  },
4080
4332
  "end": {
4081
- "line": 91,
4082
- "column": 3,
4083
- "index": 2750
4333
+ "line": 224,
4334
+ "column": 8,
4335
+ "index": 5566
4084
4336
  }
4085
4337
  },
4086
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4338
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4087
4339
  },
4088
4340
  {
4089
- "token": "euiTimeWindowButtons.previousDescription",
4090
- "defString": "Previous {displayInterval}",
4091
- "highlighting": "string",
4092
- "loc": {
4093
- "start": {
4094
- "line": 92,
4095
- "column": 33,
4096
- "index": 2785
4097
- },
4098
- "end": {
4099
- "line": 96,
4100
- "column": 3,
4101
- "index": 2906
4102
- }
4103
- },
4104
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4105
- },
4106
- {
4107
- "token": "euiTimeWindowButtons.zoomOutLabel",
4108
- "defString": "Zoom out",
4109
- "highlighting": "string",
4110
- "loc": {
4111
- "start": {
4112
- "line": 99,
4113
- "column": 23,
4114
- "index": 2996
4115
- },
4116
- "end": {
4117
- "line": 102,
4118
- "column": 3,
4119
- "index": 3067
4120
- }
4121
- },
4122
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4123
- },
4124
- {
4125
- "token": "euiTimeWindowButtons.nextLabel",
4126
- "defString": "Next",
4341
+ "token": "euiSuperUpdateButton.cannotUpdateTooltip",
4342
+ "defString": "Cannot update",
4127
4343
  "highlighting": "string",
4128
4344
  "loc": {
4129
4345
  "start": {
4130
- "line": 108,
4131
- "column": 20,
4132
- "index": 3241
4346
+ "line": 231,
4347
+ "column": 8,
4348
+ "index": 5681
4133
4349
  },
4134
4350
  "end": {
4135
- "line": 108,
4136
- "column": 72,
4137
- "index": 3293
4351
+ "line": 234,
4352
+ "column": 10,
4353
+ "index": 5793
4138
4354
  }
4139
4355
  },
4140
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4356
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4141
4357
  },
4142
4358
  {
4143
- "token": "euiTimeWindowButtons.nextDescription",
4144
- "defString": "Next {displayInterval}",
4359
+ "token": "euiSuperUpdateButton.clickToApplyTooltip",
4360
+ "defString": "Click to apply",
4145
4361
  "highlighting": "string",
4146
4362
  "loc": {
4147
4363
  "start": {
4148
- "line": 109,
4149
- "column": 29,
4150
- "index": 3324
4364
+ "line": 240,
4365
+ "column": 8,
4366
+ "index": 5892
4151
4367
  },
4152
4368
  "end": {
4153
- "line": 113,
4154
- "column": 3,
4155
- "index": 3437
4369
+ "line": 243,
4370
+ "column": 10,
4371
+ "index": 6005
4156
4372
  }
4157
4373
  },
4158
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4374
+ "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
4159
4375
  },
4160
4376
  {
4161
4377
  "token": "euiPrettyInterval.seconds",
@@ -4752,536 +4968,194 @@
4752
4968
  "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
4753
4969
  },
4754
4970
  {
4755
- "token": "euiRefreshInterval.fullDescriptionOff",
4756
- "defString": "Refresh is off, interval set to {optionValue} {optionText}.",
4971
+ "token": "euiDataGridPagination.detailedPaginationLabel",
4972
+ "defString": "Pagination for preceding grid: {label}",
4757
4973
  "highlighting": "string",
4758
4974
  "loc": {
4759
4975
  "start": {
4760
- "line": 221,
4761
- "column": 6,
4762
- "index": 5894
4976
+ "line": 51,
4977
+ "column": 34,
4978
+ "index": 1785
4763
4979
  },
4764
4980
  "end": {
4765
- "line": 228,
4766
- "column": 8,
4767
- "index": 6124
4981
+ "line": 55,
4982
+ "column": 3,
4983
+ "index": 1930
4768
4984
  }
4769
4985
  },
4770
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
4986
+ "filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
4771
4987
  },
4772
4988
  {
4773
- "token": "euiRefreshInterval.fullDescriptionOn",
4774
- "defString": "Refresh is on, interval set to {optionValue} {optionText}.",
4989
+ "token": "euiDataGridPagination.paginationLabel",
4990
+ "defString": "Pagination for preceding grid",
4775
4991
  "highlighting": "string",
4776
4992
  "loc": {
4777
4993
  "start": {
4778
- "line": 230,
4779
- "column": 6,
4780
- "index": 6141
4994
+ "line": 56,
4995
+ "column": 26,
4996
+ "index": 1958
4781
4997
  },
4782
4998
  "end": {
4783
- "line": 237,
4784
- "column": 8,
4785
- "index": 6369
4999
+ "line": 59,
5000
+ "column": 3,
5001
+ "index": 2054
4786
5002
  }
4787
5003
  },
4788
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
5004
+ "filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
4789
5005
  },
4790
5006
  {
4791
- "token": "euiRefreshInterval.toggleLabel",
4792
- "defString": "Refresh every",
5007
+ "token": "euiKeyboardShortcuts.title",
5008
+ "defString": "Keyboard shortcuts",
4793
5009
  "highlighting": "string",
4794
5010
  "loc": {
4795
5011
  "start": {
4796
- "line": 252,
4797
- "column": 6,
4798
- "index": 6639
5012
+ "line": 26,
5013
+ "column": 16,
5014
+ "index": 1033
4799
5015
  },
4800
5016
  "end": {
4801
- "line": 265,
4802
- "column": 7,
4803
- "index": 7028
5017
+ "line": 26,
5018
+ "column": 78,
5019
+ "index": 1095
4804
5020
  }
4805
5021
  },
4806
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
5022
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
4807
5023
  },
4808
5024
  {
4809
- "token": "euiRefreshInterval.toggleAriaLabel",
4810
- "defString": "Toggle refresh",
5025
+ "token": "euiKeyboardShortcuts.upArrowTitle",
5026
+ "defString": "Up arrow",
4811
5027
  "highlighting": "string",
4812
5028
  "loc": {
4813
5029
  "start": {
4814
- "line": 252,
4815
- "column": 6,
4816
- "index": 6639
5030
+ "line": 70,
5031
+ "column": 20,
5032
+ "index": 2420
4817
5033
  },
4818
5034
  "end": {
4819
- "line": 265,
4820
- "column": 7,
4821
- "index": 7028
5035
+ "line": 73,
5036
+ "column": 22,
5037
+ "index": 2556
4822
5038
  }
4823
5039
  },
4824
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
5040
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
4825
5041
  },
4826
5042
  {
4827
- "token": "euiRefreshInterval.valueAriaLabel",
4828
- "defString": "Refresh interval value",
5043
+ "token": "euiKeyboardShortcuts.upArrowDescription",
5044
+ "defString": "Move one cell up",
4829
5045
  "highlighting": "string",
4830
5046
  "loc": {
4831
5047
  "start": {
4832
- "line": 252,
4833
- "column": 6,
4834
- "index": 6639
5048
+ "line": 77,
5049
+ "column": 18,
5050
+ "index": 2650
4835
5051
  },
4836
5052
  "end": {
4837
- "line": 265,
4838
- "column": 7,
4839
- "index": 7028
5053
+ "line": 80,
5054
+ "column": 20,
5055
+ "index": 2794
4840
5056
  }
4841
5057
  },
4842
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
5058
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
4843
5059
  },
4844
5060
  {
4845
- "token": "euiRefreshInterval.unitsAriaLabel",
4846
- "defString": "Refresh interval units",
5061
+ "token": "euiKeyboardShortcuts.downArrowTitle",
5062
+ "defString": "Down arrow",
4847
5063
  "highlighting": "string",
4848
5064
  "loc": {
4849
5065
  "start": {
4850
- "line": 252,
4851
- "column": 6,
4852
- "index": 6639
5066
+ "line": 86,
5067
+ "column": 20,
5068
+ "index": 2916
4853
5069
  },
4854
5070
  "end": {
4855
- "line": 265,
4856
- "column": 7,
4857
- "index": 7028
5071
+ "line": 89,
5072
+ "column": 22,
5073
+ "index": 3056
4858
5074
  }
4859
5075
  },
4860
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
5076
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
4861
5077
  },
4862
5078
  {
4863
- "token": "euiAutoRefresh.autoRefreshLabel",
4864
- "defString": "Auto refresh",
5079
+ "token": "euiKeyboardShortcuts.downArrowDescription",
5080
+ "defString": "Move one cell down",
4865
5081
  "highlighting": "string",
4866
5082
  "loc": {
4867
5083
  "start": {
4868
- "line": 50,
4869
- "column": 26,
4870
- "index": 1659
5084
+ "line": 93,
5085
+ "column": 18,
5086
+ "index": 3150
4871
5087
  },
4872
5088
  "end": {
4873
- "line": 53,
4874
- "column": 3,
4875
- "index": 1732
5089
+ "line": 96,
5090
+ "column": 20,
5091
+ "index": 3298
4876
5092
  }
4877
5093
  },
4878
- "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
5094
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
4879
5095
  },
4880
5096
  {
4881
- "token": "euiAutoRefresh.buttonLabelOff",
4882
- "defString": "Auto refresh is off",
5097
+ "token": "euiKeyboardShortcuts.rightArrowTitle",
5098
+ "defString": "Right arrow",
4883
5099
  "highlighting": "string",
4884
5100
  "loc": {
4885
5101
  "start": {
4886
- "line": 129,
4887
- "column": 29,
4888
- "index": 3709
5102
+ "line": 102,
5103
+ "column": 20,
5104
+ "index": 3420
4889
5105
  },
4890
5106
  "end": {
4891
- "line": 132,
4892
- "column": 3,
4893
- "index": 3787
5107
+ "line": 105,
5108
+ "column": 22,
5109
+ "index": 3562
4894
5110
  }
4895
5111
  },
4896
- "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
5112
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
4897
5113
  },
4898
5114
  {
4899
- "token": "euiAutoRefresh.buttonLabelOn",
4900
- "defString": "Auto refresh is on and set to {prettyInterval}",
5115
+ "token": "euiKeyboardShortcuts.rightArrowDescription",
5116
+ "defString": "Move one cell right",
4901
5117
  "highlighting": "string",
4902
5118
  "loc": {
4903
5119
  "start": {
4904
- "line": 133,
4905
- "column": 28,
4906
- "index": 3817
5120
+ "line": 109,
5121
+ "column": 18,
5122
+ "index": 3656
4907
5123
  },
4908
5124
  "end": {
4909
- "line": 141,
4910
- "column": 3,
4911
- "index": 4051
5125
+ "line": 112,
5126
+ "column": 20,
5127
+ "index": 3806
4912
5128
  }
4913
5129
  },
4914
- "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
5130
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
4915
5131
  },
4916
5132
  {
4917
- "token": "euiDataGridSchema.booleanSortTextAsc",
4918
- "defString": "False-True",
5133
+ "token": "euiKeyboardShortcuts.leftArrowTitle",
5134
+ "defString": "Left arrow",
4919
5135
  "highlighting": "string",
4920
5136
  "loc": {
4921
5137
  "start": {
4922
- "line": 56,
4923
- "column": 6,
4924
- "index": 1386
5138
+ "line": 118,
5139
+ "column": 20,
5140
+ "index": 3928
4925
5141
  },
4926
5142
  "end": {
4927
- "line": 59,
4928
- "column": 8,
4929
- "index": 1485
5143
+ "line": 121,
5144
+ "column": 22,
5145
+ "index": 4068
4930
5146
  }
4931
5147
  },
4932
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5148
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
4933
5149
  },
4934
5150
  {
4935
- "token": "euiDataGridSchema.booleanSortTextDesc",
4936
- "defString": "True-False",
5151
+ "token": "euiKeyboardShortcuts.leftArrowDescription",
5152
+ "defString": "Move one cell left",
4937
5153
  "highlighting": "string",
4938
5154
  "loc": {
4939
5155
  "start": {
4940
- "line": 62,
4941
- "column": 6,
4942
- "index": 1519
4943
- },
4944
- "end": {
4945
- "line": 65,
4946
- "column": 8,
4947
- "index": 1619
4948
- }
4949
- },
4950
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
4951
- },
4952
- {
4953
- "token": "euiDataGridSchema.currencySortTextAsc",
4954
- "defString": "Low-High",
4955
- "highlighting": "string",
4956
- "loc": {
4957
- "start": {
4958
- "line": 97,
4959
- "column": 6,
4960
- "index": 2704
4961
- },
4962
- "end": {
4963
- "line": 100,
4964
- "column": 8,
4965
- "index": 2802
4966
- }
4967
- },
4968
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
4969
- },
4970
- {
4971
- "token": "euiDataGridSchema.currencySortTextDesc",
4972
- "defString": "High-Low",
4973
- "highlighting": "string",
4974
- "loc": {
4975
- "start": {
4976
- "line": 103,
4977
- "column": 6,
4978
- "index": 2836
4979
- },
4980
- "end": {
4981
- "line": 106,
4982
- "column": 8,
4983
- "index": 2935
4984
- }
4985
- },
4986
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
4987
- },
4988
- {
4989
- "token": "euiDataGridSchema.dateSortTextAsc",
4990
- "defString": "Old-New",
4991
- "highlighting": "string",
4992
- "loc": {
4993
- "start": {
4994
- "line": 135,
4995
- "column": 6,
4996
- "index": 3889
4997
- },
4998
- "end": {
4999
- "line": 135,
5000
- "column": 77,
5001
- "index": 3960
5002
- }
5003
- },
5004
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5005
- },
5006
- {
5007
- "token": "euiDataGridSchema.dateSortTextDesc",
5008
- "defString": "New-Old",
5009
- "highlighting": "string",
5010
- "loc": {
5011
- "start": {
5012
- "line": 138,
5013
- "column": 6,
5014
- "index": 3994
5015
- },
5016
- "end": {
5017
- "line": 138,
5018
- "column": 78,
5019
- "index": 4066
5020
- }
5021
- },
5022
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5023
- },
5024
- {
5025
- "token": "euiDataGridSchema.numberSortTextAsc",
5026
- "defString": "Low-High",
5027
- "highlighting": "string",
5028
- "loc": {
5029
- "start": {
5030
- "line": 172,
5031
- "column": 6,
5032
- "index": 5163
5033
- },
5034
- "end": {
5035
- "line": 172,
5036
- "column": 80,
5037
- "index": 5237
5038
- }
5039
- },
5040
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5041
- },
5042
- {
5043
- "token": "euiDataGridSchema.numberSortTextDesc",
5044
- "defString": "High-Low",
5045
- "highlighting": "string",
5046
- "loc": {
5047
- "start": {
5048
- "line": 175,
5049
- "column": 6,
5050
- "index": 5271
5051
- },
5052
- "end": {
5053
- "line": 178,
5054
- "column": 8,
5055
- "index": 5368
5056
- }
5057
- },
5058
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5059
- },
5060
- {
5061
- "token": "euiDataGridSchema.jsonSortTextAsc",
5062
- "defString": "Small-Large",
5063
- "highlighting": "string",
5064
- "loc": {
5065
- "start": {
5066
- "line": 203,
5067
- "column": 6,
5068
- "index": 6054
5069
- },
5070
- "end": {
5071
- "line": 206,
5072
- "column": 8,
5073
- "index": 6151
5074
- }
5075
- },
5076
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5077
- },
5078
- {
5079
- "token": "euiDataGridSchema.jsonSortTextDesc",
5080
- "defString": "Large-Small",
5081
- "highlighting": "string",
5082
- "loc": {
5083
- "start": {
5084
- "line": 209,
5085
- "column": 6,
5086
- "index": 6185
5087
- },
5088
- "end": {
5089
- "line": 212,
5090
- "column": 8,
5091
- "index": 6283
5092
- }
5093
- },
5094
- "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5095
- },
5096
- {
5097
- "token": "euiDataGridPagination.detailedPaginationLabel",
5098
- "defString": "Pagination for preceding grid: {label}",
5099
- "highlighting": "string",
5100
- "loc": {
5101
- "start": {
5102
- "line": 51,
5103
- "column": 34,
5104
- "index": 1785
5105
- },
5106
- "end": {
5107
- "line": 55,
5108
- "column": 3,
5109
- "index": 1930
5110
- }
5111
- },
5112
- "filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
5113
- },
5114
- {
5115
- "token": "euiDataGridPagination.paginationLabel",
5116
- "defString": "Pagination for preceding grid",
5117
- "highlighting": "string",
5118
- "loc": {
5119
- "start": {
5120
- "line": 56,
5121
- "column": 26,
5122
- "index": 1958
5123
- },
5124
- "end": {
5125
- "line": 59,
5126
- "column": 3,
5127
- "index": 2054
5128
- }
5129
- },
5130
- "filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
5131
- },
5132
- {
5133
- "token": "euiKeyboardShortcuts.title",
5134
- "defString": "Keyboard shortcuts",
5135
- "highlighting": "string",
5136
- "loc": {
5137
- "start": {
5138
- "line": 26,
5139
- "column": 16,
5140
- "index": 1033
5141
- },
5142
- "end": {
5143
- "line": 26,
5144
- "column": 78,
5145
- "index": 1095
5146
- }
5147
- },
5148
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5149
- },
5150
- {
5151
- "token": "euiKeyboardShortcuts.upArrowTitle",
5152
- "defString": "Up arrow",
5153
- "highlighting": "string",
5154
- "loc": {
5155
- "start": {
5156
- "line": 70,
5157
- "column": 20,
5158
- "index": 2420
5159
- },
5160
- "end": {
5161
- "line": 73,
5162
- "column": 22,
5163
- "index": 2556
5164
- }
5165
- },
5166
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5167
- },
5168
- {
5169
- "token": "euiKeyboardShortcuts.upArrowDescription",
5170
- "defString": "Move one cell up",
5171
- "highlighting": "string",
5172
- "loc": {
5173
- "start": {
5174
- "line": 77,
5175
- "column": 18,
5176
- "index": 2650
5177
- },
5178
- "end": {
5179
- "line": 80,
5180
- "column": 20,
5181
- "index": 2794
5182
- }
5183
- },
5184
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5185
- },
5186
- {
5187
- "token": "euiKeyboardShortcuts.downArrowTitle",
5188
- "defString": "Down arrow",
5189
- "highlighting": "string",
5190
- "loc": {
5191
- "start": {
5192
- "line": 86,
5193
- "column": 20,
5194
- "index": 2916
5195
- },
5196
- "end": {
5197
- "line": 89,
5198
- "column": 22,
5199
- "index": 3056
5200
- }
5201
- },
5202
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5203
- },
5204
- {
5205
- "token": "euiKeyboardShortcuts.downArrowDescription",
5206
- "defString": "Move one cell down",
5207
- "highlighting": "string",
5208
- "loc": {
5209
- "start": {
5210
- "line": 93,
5211
- "column": 18,
5212
- "index": 3150
5213
- },
5214
- "end": {
5215
- "line": 96,
5216
- "column": 20,
5217
- "index": 3298
5218
- }
5219
- },
5220
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5221
- },
5222
- {
5223
- "token": "euiKeyboardShortcuts.rightArrowTitle",
5224
- "defString": "Right arrow",
5225
- "highlighting": "string",
5226
- "loc": {
5227
- "start": {
5228
- "line": 102,
5229
- "column": 20,
5230
- "index": 3420
5231
- },
5232
- "end": {
5233
- "line": 105,
5234
- "column": 22,
5235
- "index": 3562
5236
- }
5237
- },
5238
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5239
- },
5240
- {
5241
- "token": "euiKeyboardShortcuts.rightArrowDescription",
5242
- "defString": "Move one cell right",
5243
- "highlighting": "string",
5244
- "loc": {
5245
- "start": {
5246
- "line": 109,
5247
- "column": 18,
5248
- "index": 3656
5249
- },
5250
- "end": {
5251
- "line": 112,
5252
- "column": 20,
5253
- "index": 3806
5254
- }
5255
- },
5256
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5257
- },
5258
- {
5259
- "token": "euiKeyboardShortcuts.leftArrowTitle",
5260
- "defString": "Left arrow",
5261
- "highlighting": "string",
5262
- "loc": {
5263
- "start": {
5264
- "line": 118,
5265
- "column": 20,
5266
- "index": 3928
5267
- },
5268
- "end": {
5269
- "line": 121,
5270
- "column": 22,
5271
- "index": 4068
5272
- }
5273
- },
5274
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5275
- },
5276
- {
5277
- "token": "euiKeyboardShortcuts.leftArrowDescription",
5278
- "defString": "Move one cell left",
5279
- "highlighting": "string",
5280
- "loc": {
5281
- "start": {
5282
- "line": 125,
5283
- "column": 18,
5284
- "index": 4162
5156
+ "line": 125,
5157
+ "column": 18,
5158
+ "index": 4162
5285
5159
  },
5286
5160
  "end": {
5287
5161
  "line": 128,
@@ -5608,12 +5482,192 @@
5608
5482
  "index": 8774
5609
5483
  },
5610
5484
  "end": {
5611
- "line": 272,
5612
- "column": 20,
5613
- "index": 8931
5485
+ "line": 272,
5486
+ "column": 20,
5487
+ "index": 8931
5488
+ }
5489
+ },
5490
+ "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5491
+ },
5492
+ {
5493
+ "token": "euiDataGridSchema.booleanSortTextAsc",
5494
+ "defString": "False-True",
5495
+ "highlighting": "string",
5496
+ "loc": {
5497
+ "start": {
5498
+ "line": 56,
5499
+ "column": 6,
5500
+ "index": 1386
5501
+ },
5502
+ "end": {
5503
+ "line": 59,
5504
+ "column": 8,
5505
+ "index": 1485
5506
+ }
5507
+ },
5508
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5509
+ },
5510
+ {
5511
+ "token": "euiDataGridSchema.booleanSortTextDesc",
5512
+ "defString": "True-False",
5513
+ "highlighting": "string",
5514
+ "loc": {
5515
+ "start": {
5516
+ "line": 62,
5517
+ "column": 6,
5518
+ "index": 1519
5519
+ },
5520
+ "end": {
5521
+ "line": 65,
5522
+ "column": 8,
5523
+ "index": 1619
5524
+ }
5525
+ },
5526
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5527
+ },
5528
+ {
5529
+ "token": "euiDataGridSchema.currencySortTextAsc",
5530
+ "defString": "Low-High",
5531
+ "highlighting": "string",
5532
+ "loc": {
5533
+ "start": {
5534
+ "line": 97,
5535
+ "column": 6,
5536
+ "index": 2704
5537
+ },
5538
+ "end": {
5539
+ "line": 100,
5540
+ "column": 8,
5541
+ "index": 2802
5542
+ }
5543
+ },
5544
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5545
+ },
5546
+ {
5547
+ "token": "euiDataGridSchema.currencySortTextDesc",
5548
+ "defString": "High-Low",
5549
+ "highlighting": "string",
5550
+ "loc": {
5551
+ "start": {
5552
+ "line": 103,
5553
+ "column": 6,
5554
+ "index": 2836
5555
+ },
5556
+ "end": {
5557
+ "line": 106,
5558
+ "column": 8,
5559
+ "index": 2935
5560
+ }
5561
+ },
5562
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5563
+ },
5564
+ {
5565
+ "token": "euiDataGridSchema.dateSortTextAsc",
5566
+ "defString": "Old-New",
5567
+ "highlighting": "string",
5568
+ "loc": {
5569
+ "start": {
5570
+ "line": 135,
5571
+ "column": 6,
5572
+ "index": 3889
5573
+ },
5574
+ "end": {
5575
+ "line": 135,
5576
+ "column": 77,
5577
+ "index": 3960
5578
+ }
5579
+ },
5580
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5581
+ },
5582
+ {
5583
+ "token": "euiDataGridSchema.dateSortTextDesc",
5584
+ "defString": "New-Old",
5585
+ "highlighting": "string",
5586
+ "loc": {
5587
+ "start": {
5588
+ "line": 138,
5589
+ "column": 6,
5590
+ "index": 3994
5591
+ },
5592
+ "end": {
5593
+ "line": 138,
5594
+ "column": 78,
5595
+ "index": 4066
5596
+ }
5597
+ },
5598
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5599
+ },
5600
+ {
5601
+ "token": "euiDataGridSchema.numberSortTextAsc",
5602
+ "defString": "Low-High",
5603
+ "highlighting": "string",
5604
+ "loc": {
5605
+ "start": {
5606
+ "line": 172,
5607
+ "column": 6,
5608
+ "index": 5163
5609
+ },
5610
+ "end": {
5611
+ "line": 172,
5612
+ "column": 80,
5613
+ "index": 5237
5614
+ }
5615
+ },
5616
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5617
+ },
5618
+ {
5619
+ "token": "euiDataGridSchema.numberSortTextDesc",
5620
+ "defString": "High-Low",
5621
+ "highlighting": "string",
5622
+ "loc": {
5623
+ "start": {
5624
+ "line": 175,
5625
+ "column": 6,
5626
+ "index": 5271
5627
+ },
5628
+ "end": {
5629
+ "line": 178,
5630
+ "column": 8,
5631
+ "index": 5368
5632
+ }
5633
+ },
5634
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5635
+ },
5636
+ {
5637
+ "token": "euiDataGridSchema.jsonSortTextAsc",
5638
+ "defString": "Small-Large",
5639
+ "highlighting": "string",
5640
+ "loc": {
5641
+ "start": {
5642
+ "line": 203,
5643
+ "column": 6,
5644
+ "index": 6054
5645
+ },
5646
+ "end": {
5647
+ "line": 206,
5648
+ "column": 8,
5649
+ "index": 6151
5650
+ }
5651
+ },
5652
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5653
+ },
5654
+ {
5655
+ "token": "euiDataGridSchema.jsonSortTextDesc",
5656
+ "defString": "Large-Small",
5657
+ "highlighting": "string",
5658
+ "loc": {
5659
+ "start": {
5660
+ "line": 209,
5661
+ "column": 6,
5662
+ "index": 6185
5663
+ },
5664
+ "end": {
5665
+ "line": 212,
5666
+ "column": 8,
5667
+ "index": 6283
5614
5668
  }
5615
5669
  },
5616
- "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
5670
+ "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5617
5671
  },
5618
5672
  {
5619
5673
  "token": "euiFullscreenSelector.fullscreenButton",
@@ -5849,96 +5903,6 @@
5849
5903
  },
5850
5904
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
5851
5905
  },
5852
- {
5853
- "token": "euiColumnSorting.button",
5854
- "defString": "Sort fields",
5855
- "highlighting": "string",
5856
- "loc": {
5857
- "start": {
5858
- "line": 66,
5859
- "column": 30,
5860
- "index": 2120
5861
- },
5862
- "end": {
5863
- "line": 69,
5864
- "column": 5,
5865
- "index": 2190
5866
- }
5867
- },
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"
5941
- },
5942
5906
  {
5943
5907
  "token": "euiColumnSortingDraggable.defaultSortAsc",
5944
5908
  "defString": "A-Z",
@@ -6047,6 +6011,96 @@
6047
6011
  },
6048
6012
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
6049
6013
  },
6014
+ {
6015
+ "token": "euiColumnSorting.button",
6016
+ "defString": "Sort fields",
6017
+ "highlighting": "string",
6018
+ "loc": {
6019
+ "start": {
6020
+ "line": 66,
6021
+ "column": 30,
6022
+ "index": 2120
6023
+ },
6024
+ "end": {
6025
+ "line": 69,
6026
+ "column": 5,
6027
+ "index": 2190
6028
+ }
6029
+ },
6030
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
6031
+ },
6032
+ {
6033
+ "token": "euiColumnSorting.sortFieldAriaLabel",
6034
+ "defString": "Sort by: ",
6035
+ "highlighting": "string",
6036
+ "loc": {
6037
+ "start": {
6038
+ "line": 70,
6039
+ "column": 31,
6040
+ "index": 2223
6041
+ },
6042
+ "end": {
6043
+ "line": 73,
6044
+ "column": 5,
6045
+ "index": 2303
6046
+ }
6047
+ },
6048
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
6049
+ },
6050
+ {
6051
+ "token": "euiColumnSorting.emptySorting",
6052
+ "defString": "Currently no fields are sorted",
6053
+ "highlighting": "string",
6054
+ "loc": {
6055
+ "start": {
6056
+ "line": 220,
6057
+ "column": 14,
6058
+ "index": 6937
6059
+ },
6060
+ "end": {
6061
+ "line": 223,
6062
+ "column": 16,
6063
+ "index": 7073
6064
+ }
6065
+ },
6066
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
6067
+ },
6068
+ {
6069
+ "token": "euiColumnSorting.pickFields",
6070
+ "defString": "Pick fields to sort by",
6071
+ "highlighting": "string",
6072
+ "loc": {
6073
+ "start": {
6074
+ "line": 253,
6075
+ "column": 24,
6076
+ "index": 8296
6077
+ },
6078
+ "end": {
6079
+ "line": 256,
6080
+ "column": 26,
6081
+ "index": 8452
6082
+ }
6083
+ },
6084
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
6085
+ },
6086
+ {
6087
+ "token": "euiColumnSorting.clearAll",
6088
+ "defString": "Clear sorting",
6089
+ "highlighting": "string",
6090
+ "loc": {
6091
+ "start": {
6092
+ "line": 328,
6093
+ "column": 20,
6094
+ "index": 11806
6095
+ },
6096
+ "end": {
6097
+ "line": 331,
6098
+ "column": 22,
6099
+ "index": 11939
6100
+ }
6101
+ },
6102
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
6103
+ },
6050
6104
  {
6051
6105
  "token": "euiColumnSelector.dragHandleAriaLabel",
6052
6106
  "defString": "Drag handle",
@@ -6155,6 +6209,24 @@
6155
6209
  },
6156
6210
  "filepath": "src/components/datagrid/controls/column_selector.tsx"
6157
6211
  },
6212
+ {
6213
+ "token": "euiComboBoxPill.removeSelection",
6214
+ "defString": "Remove {children} from selection in this group",
6215
+ "highlighting": "string",
6216
+ "loc": {
6217
+ "start": {
6218
+ "line": 67,
6219
+ "column": 6,
6220
+ "index": 2037
6221
+ },
6222
+ "end": {
6223
+ "line": 71,
6224
+ "column": 7,
6225
+ "index": 2196
6226
+ }
6227
+ },
6228
+ "filepath": "src/components/combo_box/combo_box_input/combo_box_pill.tsx"
6229
+ },
6158
6230
  {
6159
6231
  "token": "euiComboBoxOptionsList.loadingOptions",
6160
6232
  "defString": "Loading options",
@@ -6282,22 +6354,58 @@
6282
6354
  "filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
6283
6355
  },
6284
6356
  {
6285
- "token": "euiComboBoxPill.removeSelection",
6286
- "defString": "Remove {children} from selection in this group",
6357
+ "token": "euiCollapsibleNavKibanaSolution.switcherTitle",
6358
+ "defString": "Solution view",
6287
6359
  "highlighting": "string",
6288
6360
  "loc": {
6289
6361
  "start": {
6290
- "line": 67,
6291
- "column": 6,
6292
- "index": 2037
6362
+ "line": 73,
6363
+ "column": 40,
6364
+ "index": 2535
6365
+ },
6366
+ "end": {
6367
+ "line": 76,
6368
+ "column": 3,
6369
+ "index": 2623
6370
+ }
6371
+ },
6372
+ "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6373
+ },
6374
+ {
6375
+ "token": "euiCollapsibleNavKibanaSolution.switcherAriaLabel",
6376
+ "defString": " - click to switch to another solution",
6377
+ "highlighting": "string",
6378
+ "loc": {
6379
+ "start": {
6380
+ "line": 77,
6381
+ "column": 44,
6382
+ "index": 2669
6383
+ },
6384
+ "end": {
6385
+ "line": 80,
6386
+ "column": 3,
6387
+ "index": 2786
6388
+ }
6389
+ },
6390
+ "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6391
+ },
6392
+ {
6393
+ "token": "euiCollapsibleNavKibanaSolution.groupLabel",
6394
+ "defString": "Navigate to solution",
6395
+ "highlighting": "string",
6396
+ "loc": {
6397
+ "start": {
6398
+ "line": 81,
6399
+ "column": 37,
6400
+ "index": 2825
6293
6401
  },
6294
6402
  "end": {
6295
- "line": 71,
6296
- "column": 7,
6297
- "index": 2196
6403
+ "line": 84,
6404
+ "column": 3,
6405
+ "index": 2917
6298
6406
  }
6299
6407
  },
6300
- "filepath": "src/components/combo_box/combo_box_input/combo_box_pill.tsx"
6408
+ "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6301
6409
  },
6302
6410
  {
6303
6411
  "token": "euiCollapsibleNavButton.ariaLabelExpand",
@@ -6371,60 +6479,6 @@
6371
6479
  },
6372
6480
  "filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
6373
6481
  },
6374
- {
6375
- "token": "euiCollapsibleNavKibanaSolution.switcherTitle",
6376
- "defString": "Solution view",
6377
- "highlighting": "string",
6378
- "loc": {
6379
- "start": {
6380
- "line": 73,
6381
- "column": 40,
6382
- "index": 2535
6383
- },
6384
- "end": {
6385
- "line": 76,
6386
- "column": 3,
6387
- "index": 2623
6388
- }
6389
- },
6390
- "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6391
- },
6392
- {
6393
- "token": "euiCollapsibleNavKibanaSolution.switcherAriaLabel",
6394
- "defString": " - click to switch to another solution",
6395
- "highlighting": "string",
6396
- "loc": {
6397
- "start": {
6398
- "line": 77,
6399
- "column": 44,
6400
- "index": 2669
6401
- },
6402
- "end": {
6403
- "line": 80,
6404
- "column": 3,
6405
- "index": 2786
6406
- }
6407
- },
6408
- "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6409
- },
6410
- {
6411
- "token": "euiCollapsibleNavKibanaSolution.groupLabel",
6412
- "defString": "Navigate to solution",
6413
- "highlighting": "string",
6414
- "loc": {
6415
- "start": {
6416
- "line": 81,
6417
- "column": 37,
6418
- "index": 2825
6419
- },
6420
- "end": {
6421
- "line": 84,
6422
- "column": 3,
6423
- "index": 2917
6424
- }
6425
- },
6426
- "filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
6427
- },
6428
6482
  {
6429
6483
  "token": "euiCardSelect.selected",
6430
6484
  "defString": "Selected",
@@ -6498,508 +6552,508 @@
6498
6552
  "filepath": "src/components/accordion/accordion_children/accordion_children_loading.tsx"
6499
6553
  },
6500
6554
  {
6501
- "token": "euiRecentlyUsed.legend",
6502
- "defString": "Recently used date ranges",
6555
+ "token": "euiDatePopoverContent.startDateLabel",
6556
+ "defString": "Start date",
6503
6557
  "highlighting": "string",
6504
6558
  "loc": {
6505
6559
  "start": {
6506
- "line": 33,
6507
- "column": 16,
6508
- "index": 1123
6560
+ "line": 77,
6561
+ "column": 25,
6562
+ "index": 2286
6509
6563
  },
6510
6564
  "end": {
6511
- "line": 36,
6565
+ "line": 80,
6512
6566
  "column": 3,
6513
- "index": 1200
6567
+ "index": 2362
6514
6568
  }
6515
6569
  },
6516
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/recently_used.tsx"
6570
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6517
6571
  },
6518
6572
  {
6519
- "token": "euiQuickSelectPopover.buttonLabel",
6520
- "defString": "Date quick select",
6573
+ "token": "euiDatePopoverContent.endDateLabel",
6574
+ "defString": "End date",
6521
6575
  "highlighting": "string",
6522
6576
  "loc": {
6523
6577
  "start": {
6524
- "line": 103,
6525
- "column": 22,
6526
- "index": 3370
6578
+ "line": 81,
6579
+ "column": 23,
6580
+ "index": 2387
6527
6581
  },
6528
6582
  "end": {
6529
- "line": 106,
6583
+ "line": 84,
6530
6584
  "column": 3,
6531
- "index": 3450
6585
+ "index": 2459
6532
6586
  }
6533
6587
  },
6534
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
6588
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6535
6589
  },
6536
6590
  {
6537
- "token": "euiQuickSelect.quickSelectTitle",
6538
- "defString": "Quick select",
6591
+ "token": "euiDatePopoverContent.absoluteTabLabel",
6592
+ "defString": "Absolute",
6539
6593
  "highlighting": "string",
6540
6594
  "loc": {
6541
6595
  "start": {
6542
- "line": 162,
6543
- "column": 10,
6544
- "index": 4691
6596
+ "line": 87,
6597
+ "column": 24,
6598
+ "index": 2562
6545
6599
  },
6546
6600
  "end": {
6547
- "line": 165,
6548
- "column": 12,
6549
- "index": 4799
6601
+ "line": 90,
6602
+ "column": 3,
6603
+ "index": 2638
6550
6604
  }
6551
6605
  },
6552
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6606
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6553
6607
  },
6554
6608
  {
6555
- "token": "euiQuickSelect.previousLabel",
6556
- "defString": "Previous time window",
6609
+ "token": "euiDatePopoverContent.relativeTabLabel",
6610
+ "defString": "Relative",
6557
6611
  "highlighting": "string",
6558
6612
  "loc": {
6559
6613
  "start": {
6560
- "line": 184,
6561
- "column": 12,
6562
- "index": 5381
6614
+ "line": 91,
6615
+ "column": 24,
6616
+ "index": 2664
6563
6617
  },
6564
6618
  "end": {
6565
- "line": 187,
6566
- "column": 13,
6567
- "index": 5499
6619
+ "line": 94,
6620
+ "column": 3,
6621
+ "index": 2740
6568
6622
  }
6569
6623
  },
6570
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6624
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6571
6625
  },
6572
6626
  {
6573
- "token": "euiQuickSelect.nextLabel",
6574
- "defString": "Next time window",
6627
+ "token": "euiDatePopoverContent.nowTabLabel",
6628
+ "defString": "Now",
6575
6629
  "highlighting": "string",
6576
6630
  "loc": {
6577
6631
  "start": {
6578
- "line": 200,
6579
- "column": 12,
6580
- "index": 5957
6632
+ "line": 95,
6633
+ "column": 19,
6634
+ "index": 2761
6581
6635
  },
6582
6636
  "end": {
6583
- "line": 203,
6584
- "column": 13,
6585
- "index": 6067
6637
+ "line": 95,
6638
+ "column": 73,
6639
+ "index": 2815
6586
6640
  }
6587
6641
  },
6588
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6642
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6589
6643
  },
6590
6644
  {
6591
- "token": "euiQuickSelect.tenseLabel",
6592
- "defString": "Time tense",
6645
+ "token": "euiDatePopoverContent.nowTabContent",
6646
+ "defString": "Setting the time to \"now\" means that on every refresh this time will be set to the time of the refresh.",
6593
6647
  "highlighting": "string",
6594
6648
  "loc": {
6595
6649
  "start": {
6596
- "line": 218,
6650
+ "line": 145,
6597
6651
  "column": 12,
6598
- "index": 6581
6652
+ "index": 4197
6599
6653
  },
6600
6654
  "end": {
6601
- "line": 218,
6602
- "column": 76,
6603
- "index": 6645
6655
+ "line": 148,
6656
+ "column": 14,
6657
+ "index": 4406
6604
6658
  }
6605
6659
  },
6606
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6660
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6607
6661
  },
6608
6662
  {
6609
- "token": "euiQuickSelect.valueLabel",
6610
- "defString": "Time value",
6663
+ "token": "euiDatePopoverContent.nowTabButtonStart",
6664
+ "defString": "Set start date and time to now",
6611
6665
  "highlighting": "string",
6612
6666
  "loc": {
6613
6667
  "start": {
6614
- "line": 233,
6615
- "column": 12,
6616
- "index": 7167
6668
+ "line": 160,
6669
+ "column": 14,
6670
+ "index": 4696
6617
6671
  },
6618
6672
  "end": {
6619
- "line": 233,
6620
- "column": 76,
6621
- "index": 7231
6673
+ "line": 163,
6674
+ "column": 16,
6675
+ "index": 4842
6622
6676
  }
6623
6677
  },
6624
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6678
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6625
6679
  },
6626
6680
  {
6627
- "token": "euiQuickSelect.unitLabel",
6628
- "defString": "Time unit",
6681
+ "token": "euiDatePopoverContent.nowTabButtonEnd",
6682
+ "defString": "Set end date and time to now",
6629
6683
  "highlighting": "string",
6630
6684
  "loc": {
6631
6685
  "start": {
6632
- "line": 247,
6633
- "column": 12,
6634
- "index": 7713
6686
+ "line": 165,
6687
+ "column": 14,
6688
+ "index": 4875
6635
6689
  },
6636
6690
  "end": {
6637
- "line": 247,
6638
- "column": 74,
6639
- "index": 7775
6691
+ "line": 168,
6692
+ "column": 16,
6693
+ "index": 5017
6640
6694
  }
6641
6695
  },
6642
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6696
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6643
6697
  },
6644
6698
  {
6645
- "token": "euiQuickSelect.applyButton",
6646
- "defString": "Apply",
6699
+ "token": "euiRelativeTab.numberInputLabel",
6700
+ "defString": "Time span amount",
6647
6701
  "highlighting": "string",
6648
6702
  "loc": {
6649
6703
  "start": {
6650
- "line": 270,
6651
- "column": 14,
6652
- "index": 8658
6704
+ "line": 126,
6705
+ "column": 26,
6706
+ "index": 3914
6653
6707
  },
6654
6708
  "end": {
6655
- "line": 270,
6656
- "column": 76,
6657
- "index": 8720
6709
+ "line": 129,
6710
+ "column": 3,
6711
+ "index": 3991
6658
6712
  }
6659
6713
  },
6660
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6714
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6661
6715
  },
6662
6716
  {
6663
- "token": "euiQuickSelect.fullDescription",
6664
- "defString": "Currently set to {timeTense} {timeValue} {timeUnit}.",
6717
+ "token": "euiRelativeTab.numberInputError",
6718
+ "defString": "Must be >= 0",
6665
6719
  "highlighting": "string",
6666
6720
  "loc": {
6667
6721
  "start": {
6668
- "line": 276,
6669
- "column": 12,
6670
- "index": 8877
6722
+ "line": 130,
6723
+ "column": 27,
6724
+ "index": 4020
6671
6725
  },
6672
6726
  "end": {
6673
- "line": 284,
6674
- "column": 14,
6675
- "index": 9151
6727
+ "line": 133,
6728
+ "column": 3,
6729
+ "index": 4093
6676
6730
  }
6677
6731
  },
6678
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6732
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6679
6733
  },
6680
6734
  {
6681
- "token": "euiCommonlyUsedTimeRanges.legend",
6682
- "defString": "Commonly used",
6735
+ "token": "euiRelativeTab.dateInputError",
6736
+ "defString": "Must be a valid range",
6683
6737
  "highlighting": "string",
6684
6738
  "loc": {
6685
6739
  "start": {
6686
- "line": 27,
6687
- "column": 16,
6688
- "index": 995
6740
+ "line": 134,
6741
+ "column": 25,
6742
+ "index": 4120
6689
6743
  },
6690
6744
  "end": {
6691
- "line": 27,
6692
- "column": 79,
6693
- "index": 1058
6745
+ "line": 137,
6746
+ "column": 3,
6747
+ "index": 4200
6694
6748
  }
6695
6749
  },
6696
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
6750
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6697
6751
  },
6698
6752
  {
6699
- "token": "euiRelativeTab.numberInputLabel",
6700
- "defString": "Time span amount",
6753
+ "token": "euiRelativeTab.unitInputLabel",
6754
+ "defString": "Relative time span",
6701
6755
  "highlighting": "string",
6702
6756
  "loc": {
6703
6757
  "start": {
6704
- "line": 125,
6705
- "column": 26,
6706
- "index": 3865
6758
+ "line": 138,
6759
+ "column": 30,
6760
+ "index": 4232
6707
6761
  },
6708
6762
  "end": {
6709
- "line": 128,
6763
+ "line": 141,
6710
6764
  "column": 3,
6711
- "index": 3942
6765
+ "index": 4309
6712
6766
  }
6713
6767
  },
6714
6768
  "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6715
6769
  },
6716
6770
  {
6717
- "token": "euiRelativeTab.numberInputError",
6718
- "defString": "Must be >= 0",
6771
+ "token": "euiRelativeTab.fullDescription",
6772
+ "defString": "The unit is changeable. Currently set to {unit}.",
6719
6773
  "highlighting": "string",
6720
6774
  "loc": {
6721
6775
  "start": {
6722
- "line": 129,
6723
- "column": 27,
6724
- "index": 3971
6776
+ "line": 193,
6777
+ "column": 12,
6778
+ "index": 5951
6725
6779
  },
6726
6780
  "end": {
6727
- "line": 132,
6728
- "column": 3,
6729
- "index": 4044
6781
+ "line": 197,
6782
+ "column": 14,
6783
+ "index": 6132
6730
6784
  }
6731
6785
  },
6732
6786
  "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6733
6787
  },
6734
6788
  {
6735
- "token": "euiRelativeTab.dateInputError",
6736
- "defString": "Must be a valid range",
6789
+ "token": "euiDatePopoverButton.invalidTitle",
6790
+ "defString": "Invalid date: {title}",
6737
6791
  "highlighting": "string",
6738
6792
  "loc": {
6739
6793
  "start": {
6740
- "line": 133,
6741
- "column": 25,
6742
- "index": 4071
6794
+ "line": 107,
6795
+ "column": 23,
6796
+ "index": 3054
6743
6797
  },
6744
6798
  "end": {
6745
- "line": 136,
6799
+ "line": 111,
6746
6800
  "column": 3,
6747
- "index": 4151
6801
+ "index": 3153
6748
6802
  }
6749
6803
  },
6750
- "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6804
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
6751
6805
  },
6752
6806
  {
6753
- "token": "euiRelativeTab.unitInputLabel",
6754
- "defString": "Relative time span",
6807
+ "token": "euiDatePopoverButton.outdatedTitle",
6808
+ "defString": "Update needed: {title}",
6755
6809
  "highlighting": "string",
6756
6810
  "loc": {
6757
6811
  "start": {
6758
- "line": 137,
6759
- "column": 30,
6760
- "index": 4183
6812
+ "line": 112,
6813
+ "column": 24,
6814
+ "index": 3179
6761
6815
  },
6762
6816
  "end": {
6763
- "line": 140,
6817
+ "line": 116,
6764
6818
  "column": 3,
6765
- "index": 4260
6819
+ "index": 3280
6766
6820
  }
6767
6821
  },
6768
- "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6822
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
6769
6823
  },
6770
6824
  {
6771
- "token": "euiRelativeTab.fullDescription",
6772
- "defString": "The unit is changeable. Currently set to {unit}.",
6825
+ "token": "euiAbsoluteTab.dateFormatButtonLabel",
6826
+ "defString": "Parse date",
6773
6827
  "highlighting": "string",
6774
6828
  "loc": {
6775
6829
  "start": {
6776
- "line": 189,
6777
- "column": 12,
6778
- "index": 5811
6830
+ "line": 95,
6831
+ "column": 28,
6832
+ "index": 2852
6779
6833
  },
6780
6834
  "end": {
6781
- "line": 193,
6782
- "column": 14,
6783
- "index": 5992
6835
+ "line": 98,
6836
+ "column": 3,
6837
+ "index": 2928
6784
6838
  }
6785
6839
  },
6786
- "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
6840
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
6787
6841
  },
6788
6842
  {
6789
- "token": "euiDatePopoverContent.startDateLabel",
6790
- "defString": "Start date",
6843
+ "token": "euiAbsoluteTab.dateFormatError",
6844
+ "defString": "Allowed formats: {dateFormat}, ISO 8601, RFC 2822, or Unix timestamp.",
6791
6845
  "highlighting": "string",
6792
6846
  "loc": {
6793
6847
  "start": {
6794
- "line": 77,
6795
- "column": 25,
6796
- "index": 2286
6848
+ "line": 99,
6849
+ "column": 26,
6850
+ "index": 2956
6797
6851
  },
6798
6852
  "end": {
6799
- "line": 80,
6853
+ "line": 103,
6800
6854
  "column": 3,
6801
- "index": 2362
6855
+ "index": 3138
6802
6856
  }
6803
6857
  },
6804
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6858
+ "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
6805
6859
  },
6806
6860
  {
6807
- "token": "euiDatePopoverContent.endDateLabel",
6808
- "defString": "End date",
6861
+ "token": "euiRecentlyUsed.legend",
6862
+ "defString": "Recently used date ranges",
6809
6863
  "highlighting": "string",
6810
6864
  "loc": {
6811
6865
  "start": {
6812
- "line": 81,
6813
- "column": 23,
6814
- "index": 2387
6866
+ "line": 33,
6867
+ "column": 16,
6868
+ "index": 1123
6815
6869
  },
6816
6870
  "end": {
6817
- "line": 84,
6871
+ "line": 36,
6818
6872
  "column": 3,
6819
- "index": 2459
6873
+ "index": 1200
6820
6874
  }
6821
6875
  },
6822
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6876
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/recently_used.tsx"
6823
6877
  },
6824
6878
  {
6825
- "token": "euiDatePopoverContent.absoluteTabLabel",
6826
- "defString": "Absolute",
6879
+ "token": "euiQuickSelectPopover.buttonLabel",
6880
+ "defString": "Date quick select",
6827
6881
  "highlighting": "string",
6828
6882
  "loc": {
6829
6883
  "start": {
6830
- "line": 87,
6831
- "column": 24,
6832
- "index": 2562
6884
+ "line": 103,
6885
+ "column": 22,
6886
+ "index": 3370
6833
6887
  },
6834
6888
  "end": {
6835
- "line": 90,
6889
+ "line": 106,
6836
6890
  "column": 3,
6837
- "index": 2638
6891
+ "index": 3450
6838
6892
  }
6839
6893
  },
6840
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6894
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
6841
6895
  },
6842
6896
  {
6843
- "token": "euiDatePopoverContent.relativeTabLabel",
6844
- "defString": "Relative",
6897
+ "token": "euiCommonlyUsedTimeRanges.legend",
6898
+ "defString": "Commonly used",
6845
6899
  "highlighting": "string",
6846
6900
  "loc": {
6847
6901
  "start": {
6848
- "line": 91,
6849
- "column": 24,
6850
- "index": 2664
6902
+ "line": 27,
6903
+ "column": 16,
6904
+ "index": 995
6851
6905
  },
6852
6906
  "end": {
6853
- "line": 94,
6854
- "column": 3,
6855
- "index": 2740
6907
+ "line": 27,
6908
+ "column": 79,
6909
+ "index": 1058
6856
6910
  }
6857
6911
  },
6858
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6912
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
6859
6913
  },
6860
6914
  {
6861
- "token": "euiDatePopoverContent.nowTabLabel",
6862
- "defString": "Now",
6915
+ "token": "euiQuickSelect.quickSelectTitle",
6916
+ "defString": "Quick select",
6863
6917
  "highlighting": "string",
6864
6918
  "loc": {
6865
6919
  "start": {
6866
- "line": 95,
6867
- "column": 19,
6868
- "index": 2761
6920
+ "line": 162,
6921
+ "column": 10,
6922
+ "index": 4691
6869
6923
  },
6870
6924
  "end": {
6871
- "line": 95,
6872
- "column": 73,
6873
- "index": 2815
6925
+ "line": 165,
6926
+ "column": 12,
6927
+ "index": 4799
6874
6928
  }
6875
6929
  },
6876
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6930
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6877
6931
  },
6878
6932
  {
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.",
6933
+ "token": "euiQuickSelect.previousLabel",
6934
+ "defString": "Previous time window",
6881
6935
  "highlighting": "string",
6882
6936
  "loc": {
6883
6937
  "start": {
6884
- "line": 145,
6938
+ "line": 184,
6885
6939
  "column": 12,
6886
- "index": 4197
6940
+ "index": 5381
6887
6941
  },
6888
6942
  "end": {
6889
- "line": 148,
6890
- "column": 14,
6891
- "index": 4406
6943
+ "line": 187,
6944
+ "column": 13,
6945
+ "index": 5499
6892
6946
  }
6893
6947
  },
6894
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6948
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6895
6949
  },
6896
6950
  {
6897
- "token": "euiDatePopoverContent.nowTabButtonStart",
6898
- "defString": "Set start date and time to now",
6951
+ "token": "euiQuickSelect.nextLabel",
6952
+ "defString": "Next time window",
6899
6953
  "highlighting": "string",
6900
6954
  "loc": {
6901
6955
  "start": {
6902
- "line": 160,
6903
- "column": 14,
6904
- "index": 4696
6956
+ "line": 200,
6957
+ "column": 12,
6958
+ "index": 5957
6905
6959
  },
6906
6960
  "end": {
6907
- "line": 163,
6908
- "column": 16,
6909
- "index": 4842
6961
+ "line": 203,
6962
+ "column": 13,
6963
+ "index": 6067
6910
6964
  }
6911
6965
  },
6912
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6966
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6913
6967
  },
6914
6968
  {
6915
- "token": "euiDatePopoverContent.nowTabButtonEnd",
6916
- "defString": "Set end date and time to now",
6969
+ "token": "euiQuickSelect.tenseLabel",
6970
+ "defString": "Time tense",
6917
6971
  "highlighting": "string",
6918
6972
  "loc": {
6919
6973
  "start": {
6920
- "line": 165,
6921
- "column": 14,
6922
- "index": 4875
6974
+ "line": 218,
6975
+ "column": 12,
6976
+ "index": 6581
6923
6977
  },
6924
6978
  "end": {
6925
- "line": 168,
6926
- "column": 16,
6927
- "index": 5017
6979
+ "line": 218,
6980
+ "column": 76,
6981
+ "index": 6645
6928
6982
  }
6929
6983
  },
6930
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
6984
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6931
6985
  },
6932
6986
  {
6933
- "token": "euiDatePopoverButton.invalidTitle",
6934
- "defString": "Invalid date: {title}",
6987
+ "token": "euiQuickSelect.valueLabel",
6988
+ "defString": "Time value",
6935
6989
  "highlighting": "string",
6936
6990
  "loc": {
6937
6991
  "start": {
6938
- "line": 107,
6939
- "column": 23,
6940
- "index": 3054
6992
+ "line": 233,
6993
+ "column": 12,
6994
+ "index": 7167
6941
6995
  },
6942
6996
  "end": {
6943
- "line": 111,
6944
- "column": 3,
6945
- "index": 3153
6997
+ "line": 233,
6998
+ "column": 76,
6999
+ "index": 7231
6946
7000
  }
6947
7001
  },
6948
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
7002
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6949
7003
  },
6950
7004
  {
6951
- "token": "euiDatePopoverButton.outdatedTitle",
6952
- "defString": "Update needed: {title}",
7005
+ "token": "euiQuickSelect.unitLabel",
7006
+ "defString": "Time unit",
6953
7007
  "highlighting": "string",
6954
7008
  "loc": {
6955
7009
  "start": {
6956
- "line": 112,
6957
- "column": 24,
6958
- "index": 3179
7010
+ "line": 247,
7011
+ "column": 12,
7012
+ "index": 7713
6959
7013
  },
6960
7014
  "end": {
6961
- "line": 116,
6962
- "column": 3,
6963
- "index": 3280
7015
+ "line": 247,
7016
+ "column": 74,
7017
+ "index": 7775
6964
7018
  }
6965
7019
  },
6966
- "filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
7020
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6967
7021
  },
6968
7022
  {
6969
- "token": "euiAbsoluteTab.dateFormatButtonLabel",
6970
- "defString": "Parse date",
7023
+ "token": "euiQuickSelect.applyButton",
7024
+ "defString": "Apply",
6971
7025
  "highlighting": "string",
6972
7026
  "loc": {
6973
7027
  "start": {
6974
- "line": 94,
6975
- "column": 28,
6976
- "index": 2803
7028
+ "line": 270,
7029
+ "column": 14,
7030
+ "index": 8658
6977
7031
  },
6978
7032
  "end": {
6979
- "line": 97,
6980
- "column": 3,
6981
- "index": 2879
7033
+ "line": 270,
7034
+ "column": 76,
7035
+ "index": 8720
6982
7036
  }
6983
7037
  },
6984
- "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
7038
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6985
7039
  },
6986
7040
  {
6987
- "token": "euiAbsoluteTab.dateFormatError",
6988
- "defString": "Allowed formats: {dateFormat}, ISO 8601, RFC 2822, or Unix timestamp.",
7041
+ "token": "euiQuickSelect.fullDescription",
7042
+ "defString": "Currently set to {timeTense} {timeValue} {timeUnit}.",
6989
7043
  "highlighting": "string",
6990
7044
  "loc": {
6991
7045
  "start": {
6992
- "line": 98,
6993
- "column": 26,
6994
- "index": 2907
7046
+ "line": 276,
7047
+ "column": 12,
7048
+ "index": 8877
6995
7049
  },
6996
7050
  "end": {
6997
- "line": 102,
6998
- "column": 3,
6999
- "index": 3089
7051
+ "line": 284,
7052
+ "column": 14,
7053
+ "index": 9151
7000
7054
  }
7001
7055
  },
7002
- "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
7056
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7003
7057
  },
7004
7058
  {
7005
7059
  "token": "euiDataGridHeaderCell.sortedByAscendingSingle",