@elastic/eui 110.0.0 → 111.0.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 (237) hide show
  1. package/es/components/collapsible_nav/collapsible_nav.js +20 -101
  2. package/es/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  3. package/es/components/flyout/_flyout_overlay.js +52 -0
  4. package/es/components/flyout/_flyout_resize_button.js +32 -0
  5. package/es/components/flyout/{flyout_resizable.styles.js → _flyout_resize_button.styles.js} +11 -11
  6. package/es/components/flyout/const.js +42 -0
  7. package/es/components/flyout/flyout.component.js +481 -0
  8. package/es/components/flyout/flyout.js +77 -379
  9. package/es/components/flyout/flyout.styles.js +105 -7
  10. package/es/components/flyout/flyout_menu.js +241 -0
  11. package/es/components/flyout/flyout_menu.styles.js +19 -0
  12. package/{optimize/es/components/flyout/flyout_context.js → es/components/flyout/flyout_menu_context.js} +1 -7
  13. package/es/components/flyout/flyout_parent_context.js +36 -0
  14. package/es/components/flyout/flyout_resizable.js +33 -144
  15. package/es/components/flyout/hooks.js +25 -0
  16. package/es/components/flyout/index.js +5 -2
  17. package/es/components/flyout/manager/actions.js +153 -0
  18. package/es/components/flyout/manager/activity_stage.js +95 -0
  19. package/es/components/flyout/manager/const.js +56 -0
  20. package/es/components/flyout/manager/context.js +33 -0
  21. package/es/components/flyout/manager/flyout_child.js +75 -0
  22. package/es/components/flyout/manager/flyout_main.js +65 -0
  23. package/es/components/flyout/manager/flyout_main.styles.js +25 -0
  24. package/es/components/flyout/manager/flyout_managed.js +227 -0
  25. package/es/components/flyout/manager/flyout_managed.styles.js +69 -0
  26. package/es/components/flyout/manager/hooks.js +55 -0
  27. package/es/components/flyout/manager/index.js +31 -0
  28. package/es/components/flyout/manager/layout_mode.js +167 -0
  29. package/es/components/flyout/manager/provider.js +57 -0
  30. package/es/components/flyout/manager/reducer.js +320 -0
  31. package/es/components/flyout/manager/selectors.js +116 -0
  32. package/es/components/flyout/manager/store.js +113 -0
  33. package/es/components/flyout/manager/validation.js +85 -0
  34. package/es/components/flyout/use_flyout_resizable.js +149 -0
  35. package/es/components/flyout/use_flyout_z_index.js +46 -0
  36. package/es/components/overlay_mask/overlay_mask.js +13 -3
  37. package/es/components/overlay_mask/overlay_mask.styles.js +11 -2
  38. package/es/components/provider/provider.js +2 -1
  39. package/eui.d.ts +1484 -921
  40. package/i18ntokens.json +1207 -1153
  41. package/lib/components/collapsible_nav/collapsible_nav.js +20 -101
  42. package/lib/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  43. package/lib/components/flyout/_flyout_overlay.js +59 -0
  44. package/lib/components/flyout/_flyout_resize_button.js +38 -0
  45. package/{test-env/components/flyout/flyout_resizable.styles.js → lib/components/flyout/_flyout_resize_button.styles.js} +12 -12
  46. package/lib/components/flyout/const.js +49 -0
  47. package/lib/components/flyout/flyout.component.js +488 -0
  48. package/lib/components/flyout/flyout.js +102 -379
  49. package/lib/components/flyout/flyout.styles.js +105 -7
  50. package/lib/components/flyout/flyout_menu.js +243 -0
  51. package/lib/components/flyout/flyout_menu.styles.js +25 -0
  52. package/{optimize/lib/components/flyout/flyout_context.js → lib/components/flyout/flyout_menu_context.js} +2 -7
  53. package/lib/components/flyout/flyout_parent_context.js +43 -0
  54. package/lib/components/flyout/flyout_resizable.js +36 -147
  55. package/lib/components/flyout/hooks.js +30 -0
  56. package/lib/components/flyout/index.js +21 -14
  57. package/lib/components/flyout/manager/actions.js +159 -0
  58. package/lib/components/flyout/manager/activity_stage.js +101 -0
  59. package/lib/components/flyout/manager/const.js +62 -0
  60. package/lib/components/flyout/manager/context.js +41 -0
  61. package/lib/components/flyout/manager/flyout_child.js +80 -0
  62. package/lib/components/flyout/manager/flyout_main.js +70 -0
  63. package/lib/components/flyout/manager/flyout_main.styles.js +31 -0
  64. package/lib/components/flyout/manager/flyout_managed.js +233 -0
  65. package/lib/components/flyout/manager/flyout_managed.styles.js +73 -0
  66. package/lib/components/flyout/manager/hooks.js +131 -0
  67. package/lib/components/flyout/manager/index.js +168 -0
  68. package/lib/components/flyout/manager/layout_mode.js +171 -0
  69. package/lib/components/flyout/manager/provider.js +63 -0
  70. package/lib/components/flyout/manager/reducer.js +325 -0
  71. package/lib/components/flyout/manager/selectors.js +122 -0
  72. package/lib/components/flyout/manager/store.js +120 -0
  73. package/lib/components/flyout/manager/validation.js +94 -0
  74. package/lib/components/flyout/use_flyout_resizable.js +153 -0
  75. package/lib/components/flyout/use_flyout_z_index.js +51 -0
  76. package/lib/components/overlay_mask/overlay_mask.js +12 -2
  77. package/lib/components/overlay_mask/overlay_mask.styles.js +11 -4
  78. package/lib/components/provider/provider.js +2 -1
  79. package/optimize/es/components/collapsible_nav/collapsible_nav.js +1 -0
  80. package/optimize/es/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  81. package/optimize/es/components/flyout/_flyout_overlay.js +52 -0
  82. package/optimize/es/components/flyout/_flyout_resize_button.js +31 -0
  83. package/optimize/es/components/flyout/{flyout_resizable.styles.js → _flyout_resize_button.styles.js} +11 -11
  84. package/optimize/es/components/flyout/const.js +42 -0
  85. package/optimize/es/components/flyout/flyout.component.js +469 -0
  86. package/optimize/es/components/flyout/flyout.js +53 -349
  87. package/optimize/es/components/flyout/flyout.styles.js +102 -7
  88. package/optimize/es/components/flyout/flyout_menu.js +162 -0
  89. package/optimize/es/components/flyout/flyout_menu.styles.js +19 -0
  90. package/{es/components/flyout/flyout_context.js → optimize/es/components/flyout/flyout_menu_context.js} +1 -7
  91. package/optimize/es/components/flyout/flyout_parent_context.js +36 -0
  92. package/optimize/es/components/flyout/flyout_resizable.js +7 -138
  93. package/optimize/es/components/flyout/hooks.js +25 -0
  94. package/optimize/es/components/flyout/index.js +5 -2
  95. package/optimize/es/components/flyout/manager/actions.js +153 -0
  96. package/optimize/es/components/flyout/manager/activity_stage.js +95 -0
  97. package/optimize/es/components/flyout/manager/const.js +56 -0
  98. package/optimize/es/components/flyout/manager/context.js +33 -0
  99. package/optimize/es/components/flyout/manager/flyout_child.js +71 -0
  100. package/optimize/es/components/flyout/manager/flyout_main.js +61 -0
  101. package/optimize/es/components/flyout/manager/flyout_main.styles.js +25 -0
  102. package/optimize/es/components/flyout/manager/flyout_managed.js +223 -0
  103. package/optimize/es/components/flyout/manager/flyout_managed.styles.js +69 -0
  104. package/optimize/es/components/flyout/manager/hooks.js +55 -0
  105. package/optimize/es/components/flyout/manager/index.js +31 -0
  106. package/optimize/es/components/flyout/manager/layout_mode.js +162 -0
  107. package/optimize/es/components/flyout/manager/provider.js +53 -0
  108. package/optimize/es/components/flyout/manager/reducer.js +312 -0
  109. package/optimize/es/components/flyout/manager/selectors.js +116 -0
  110. package/optimize/es/components/flyout/manager/store.js +113 -0
  111. package/optimize/es/components/flyout/manager/types.js +1 -0
  112. package/optimize/es/components/flyout/manager/validation.js +85 -0
  113. package/optimize/es/components/flyout/types.js +1 -0
  114. package/optimize/es/components/flyout/use_flyout_resizable.js +144 -0
  115. package/optimize/es/components/flyout/use_flyout_z_index.js +46 -0
  116. package/optimize/es/components/overlay_mask/overlay_mask.js +13 -3
  117. package/optimize/es/components/overlay_mask/overlay_mask.styles.js +11 -2
  118. package/optimize/es/components/provider/provider.js +2 -1
  119. package/optimize/lib/components/collapsible_nav/collapsible_nav.js +1 -0
  120. package/optimize/lib/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  121. package/optimize/lib/components/flyout/_flyout_overlay.js +62 -0
  122. package/optimize/lib/components/flyout/_flyout_resize_button.js +37 -0
  123. package/{lib/components/flyout/flyout_resizable.styles.js → optimize/lib/components/flyout/_flyout_resize_button.styles.js} +12 -12
  124. package/optimize/lib/components/flyout/const.js +49 -0
  125. package/optimize/lib/components/flyout/flyout.component.js +477 -0
  126. package/optimize/lib/components/flyout/flyout.js +77 -349
  127. package/optimize/lib/components/flyout/flyout.styles.js +102 -7
  128. package/optimize/lib/components/flyout/flyout_menu.js +168 -0
  129. package/optimize/lib/components/flyout/flyout_menu.styles.js +25 -0
  130. package/{lib/components/flyout/flyout_context.js → optimize/lib/components/flyout/flyout_menu_context.js} +2 -7
  131. package/optimize/lib/components/flyout/flyout_parent_context.js +43 -0
  132. package/optimize/lib/components/flyout/flyout_resizable.js +9 -139
  133. package/optimize/lib/components/flyout/hooks.js +30 -0
  134. package/optimize/lib/components/flyout/index.js +21 -14
  135. package/optimize/lib/components/flyout/manager/actions.js +159 -0
  136. package/optimize/lib/components/flyout/manager/activity_stage.js +101 -0
  137. package/optimize/lib/components/flyout/manager/const.js +62 -0
  138. package/optimize/lib/components/flyout/manager/context.js +41 -0
  139. package/optimize/lib/components/flyout/manager/flyout_child.js +76 -0
  140. package/optimize/lib/components/flyout/manager/flyout_main.js +66 -0
  141. package/optimize/lib/components/flyout/manager/flyout_main.styles.js +31 -0
  142. package/optimize/lib/components/flyout/manager/flyout_managed.js +231 -0
  143. package/optimize/lib/components/flyout/manager/flyout_managed.styles.js +74 -0
  144. package/optimize/lib/components/flyout/manager/hooks.js +131 -0
  145. package/optimize/lib/components/flyout/manager/index.js +168 -0
  146. package/optimize/lib/components/flyout/manager/layout_mode.js +169 -0
  147. package/optimize/lib/components/flyout/manager/provider.js +61 -0
  148. package/optimize/lib/components/flyout/manager/reducer.js +318 -0
  149. package/optimize/lib/components/flyout/manager/selectors.js +122 -0
  150. package/optimize/lib/components/flyout/manager/store.js +120 -0
  151. package/optimize/lib/components/flyout/manager/validation.js +94 -0
  152. package/optimize/lib/components/flyout/types.js +5 -0
  153. package/optimize/lib/components/flyout/use_flyout_resizable.js +151 -0
  154. package/optimize/lib/components/flyout/use_flyout_z_index.js +51 -0
  155. package/optimize/lib/components/overlay_mask/overlay_mask.js +12 -2
  156. package/optimize/lib/components/overlay_mask/overlay_mask.styles.js +11 -4
  157. package/optimize/lib/components/provider/provider.js +2 -1
  158. package/package.json +5 -4
  159. package/test-env/components/collapsible_nav/collapsible_nav.js +20 -101
  160. package/test-env/components/collapsible_nav_beta/collapsible_nav_beta.js +1 -0
  161. package/test-env/components/flyout/_flyout_overlay.js +62 -0
  162. package/test-env/components/flyout/_flyout_resize_button.js +37 -0
  163. package/{optimize/lib/components/flyout/flyout_resizable.styles.js → test-env/components/flyout/_flyout_resize_button.styles.js} +12 -12
  164. package/test-env/components/flyout/const.js +49 -0
  165. package/test-env/components/flyout/flyout.component.js +477 -0
  166. package/test-env/components/flyout/flyout.styles.js +102 -7
  167. package/test-env/components/flyout/flyout_menu.js +241 -0
  168. package/test-env/components/flyout/flyout_menu.styles.js +25 -0
  169. package/test-env/components/flyout/{flyout_context.js → flyout_menu_context.js} +2 -7
  170. package/test-env/components/flyout/flyout_parent_context.js +43 -0
  171. package/test-env/components/flyout/flyout_resizable.js +35 -139
  172. package/test-env/components/flyout/hooks.js +30 -0
  173. package/test-env/components/flyout/index.js +21 -14
  174. package/test-env/components/flyout/manager/actions.js +159 -0
  175. package/test-env/components/flyout/manager/activity_stage.js +101 -0
  176. package/test-env/components/flyout/manager/const.js +62 -0
  177. package/test-env/components/flyout/manager/context.js +41 -0
  178. package/test-env/components/flyout/manager/flyout_child.js +76 -0
  179. package/test-env/components/flyout/manager/flyout_main.js +66 -0
  180. package/test-env/components/flyout/manager/flyout_main.styles.js +31 -0
  181. package/test-env/components/flyout/manager/flyout_managed.js +231 -0
  182. package/test-env/components/flyout/manager/flyout_managed.styles.js +74 -0
  183. package/test-env/components/flyout/manager/hooks.js +131 -0
  184. package/test-env/components/flyout/manager/index.js +168 -0
  185. package/test-env/components/flyout/manager/layout_mode.js +169 -0
  186. package/test-env/components/flyout/manager/provider.js +61 -0
  187. package/test-env/components/flyout/manager/reducer.js +318 -0
  188. package/test-env/components/flyout/manager/selectors.js +122 -0
  189. package/test-env/components/flyout/manager/store.js +120 -0
  190. package/test-env/components/flyout/manager/types.js +5 -0
  191. package/test-env/components/flyout/manager/validation.js +94 -0
  192. package/test-env/components/flyout/types.js +5 -0
  193. package/test-env/components/flyout/use_flyout_resizable.js +151 -0
  194. package/test-env/components/flyout/use_flyout_z_index.js +51 -0
  195. package/test-env/components/overlay_mask/overlay_mask.js +12 -2
  196. package/test-env/components/overlay_mask/overlay_mask.styles.js +11 -4
  197. package/test-env/components/provider/provider.js +2 -1
  198. package/es/components/flyout/flyout_child.js +0 -223
  199. package/es/components/flyout/flyout_child.styles.js +0 -32
  200. package/es/components/flyout/flyout_child_manager.js +0 -114
  201. package/es/components/flyout/sessions/flyout_provider.js +0 -95
  202. package/es/components/flyout/sessions/flyout_reducer.js +0 -195
  203. package/es/components/flyout/sessions/index.js +0 -10
  204. package/es/components/flyout/sessions/use_eui_flyout.js +0 -82
  205. package/lib/components/flyout/flyout_child.js +0 -231
  206. package/lib/components/flyout/flyout_child.styles.js +0 -38
  207. package/lib/components/flyout/flyout_child_manager.js +0 -122
  208. package/lib/components/flyout/sessions/flyout_provider.js +0 -102
  209. package/lib/components/flyout/sessions/flyout_reducer.js +0 -202
  210. package/lib/components/flyout/sessions/index.js +0 -25
  211. package/lib/components/flyout/sessions/use_eui_flyout.js +0 -88
  212. package/optimize/es/components/flyout/flyout_child.js +0 -178
  213. package/optimize/es/components/flyout/flyout_child.styles.js +0 -32
  214. package/optimize/es/components/flyout/flyout_child_manager.js +0 -100
  215. package/optimize/es/components/flyout/sessions/flyout_provider.js +0 -90
  216. package/optimize/es/components/flyout/sessions/flyout_reducer.js +0 -187
  217. package/optimize/es/components/flyout/sessions/index.js +0 -10
  218. package/optimize/es/components/flyout/sessions/use_eui_flyout.js +0 -82
  219. package/optimize/lib/components/flyout/flyout_child.js +0 -186
  220. package/optimize/lib/components/flyout/flyout_child.styles.js +0 -38
  221. package/optimize/lib/components/flyout/flyout_child_manager.js +0 -110
  222. package/optimize/lib/components/flyout/sessions/flyout_provider.js +0 -100
  223. package/optimize/lib/components/flyout/sessions/flyout_reducer.js +0 -195
  224. package/optimize/lib/components/flyout/sessions/index.js +0 -25
  225. package/optimize/lib/components/flyout/sessions/use_eui_flyout.js +0 -88
  226. package/test-env/components/flyout/flyout_child.js +0 -230
  227. package/test-env/components/flyout/flyout_child.styles.js +0 -38
  228. package/test-env/components/flyout/flyout_child_manager.js +0 -119
  229. package/test-env/components/flyout/sessions/flyout_provider.js +0 -100
  230. package/test-env/components/flyout/sessions/flyout_reducer.js +0 -195
  231. package/test-env/components/flyout/sessions/index.js +0 -25
  232. package/test-env/components/flyout/sessions/use_eui_flyout.js +0 -88
  233. /package/es/components/flyout/{sessions → manager}/types.js +0 -0
  234. /package/{optimize/es/components/flyout/sessions → es/components/flyout}/types.js +0 -0
  235. /package/lib/components/flyout/{sessions → manager}/types.js +0 -0
  236. /package/{optimize/lib/components/flyout/sessions → lib/components/flyout}/types.js +0 -0
  237. /package/{test-env/components/flyout/sessions → optimize/lib/components/flyout/manager}/types.js +0 -0
package/i18ntokens.json CHANGED
@@ -1,22 +1,4 @@
1
1
  [
2
- {
3
- "token": "euiTreeView.listNavigationInstructions",
4
- "defString": "You can quickly navigate this list using arrow keys.",
5
- "highlighting": "string",
6
- "loc": {
7
- "start": {
8
- "line": 294,
9
- "column": 10,
10
- "index": 8109
11
- },
12
- "end": {
13
- "line": 297,
14
- "column": 11,
15
- "index": 8263
16
- }
17
- },
18
- "filepath": "src/components/tree_view/tree_view.tsx"
19
- },
20
2
  {
21
3
  "token": "euiTourStepIndicator.isActive",
22
4
  "defString": "active",
@@ -143,6 +125,42 @@
143
125
  },
144
126
  "filepath": "src/components/tour/_tour_footer.tsx"
145
127
  },
128
+ {
129
+ "token": "euiIconTip.defaultAriaLabel",
130
+ "defString": "Info",
131
+ "highlighting": "string",
132
+ "loc": {
133
+ "start": {
134
+ "line": 63,
135
+ "column": 27,
136
+ "index": 1811
137
+ },
138
+ "end": {
139
+ "line": 63,
140
+ "column": 76,
141
+ "index": 1860
142
+ }
143
+ },
144
+ "filepath": "src/components/tool_tip/icon_tip.tsx"
145
+ },
146
+ {
147
+ "token": "euiTreeView.listNavigationInstructions",
148
+ "defString": "You can quickly navigate this list using arrow keys.",
149
+ "highlighting": "string",
150
+ "loc": {
151
+ "start": {
152
+ "line": 294,
153
+ "column": 10,
154
+ "index": 8109
155
+ },
156
+ "end": {
157
+ "line": 297,
158
+ "column": 11,
159
+ "index": 8263
160
+ }
161
+ },
162
+ "filepath": "src/components/tree_view/tree_view.tsx"
163
+ },
146
164
  {
147
165
  "token": "euiToast.newNotification",
148
166
  "defString": "A new notification appears",
@@ -234,22 +252,22 @@
234
252
  "filepath": "src/components/toast/global_toast_list.tsx"
235
253
  },
236
254
  {
237
- "token": "euiIconTip.defaultAriaLabel",
238
- "defString": "Info",
255
+ "token": "euiStat.loadingText",
256
+ "defString": "Statistic is loading",
239
257
  "highlighting": "string",
240
258
  "loc": {
241
259
  "start": {
242
- "line": 63,
243
- "column": 27,
244
- "index": 1811
260
+ "line": 95,
261
+ "column": 32,
262
+ "index": 2317
245
263
  },
246
264
  "end": {
247
- "line": 63,
248
- "column": 76,
249
- "index": 1860
265
+ "line": 98,
266
+ "column": 3,
267
+ "index": 2386
250
268
  }
251
269
  },
252
- "filepath": "src/components/tool_tip/icon_tip.tsx"
270
+ "filepath": "src/components/stat/stat.tsx"
253
271
  },
254
272
  {
255
273
  "token": "euiTableHeaderCell.titleTextWithDesc",
@@ -557,24 +575,6 @@
557
575
  },
558
576
  "filepath": "src/components/steps/step_strings.tsx"
559
577
  },
560
- {
561
- "token": "euiStat.loadingText",
562
- "defString": "Statistic is loading",
563
- "highlighting": "string",
564
- "loc": {
565
- "start": {
566
- "line": 95,
567
- "column": 32,
568
- "index": 2317
569
- },
570
- "end": {
571
- "line": 98,
572
- "column": 3,
573
- "index": 2386
574
- }
575
- },
576
- "filepath": "src/components/stat/stat.tsx"
577
- },
578
578
  {
579
579
  "token": "euiSkeletonLoading.loadedAriaText",
580
580
  "defString": "Loaded {contentAriaLabel}",
@@ -611,60 +611,6 @@
611
611
  },
612
612
  "filepath": "src/components/skeleton/skeleton_loading.tsx"
613
613
  },
614
- {
615
- "token": "euiSearchBox.placeholder",
616
- "defString": "Search...",
617
- "highlighting": "string",
618
- "loc": {
619
- "start": {
620
- "line": 48,
621
- "column": 29,
622
- "index": 1388
623
- },
624
- "end": {
625
- "line": 51,
626
- "column": 3,
627
- "index": 1451
628
- }
629
- },
630
- "filepath": "src/components/search_bar/search_box.tsx"
631
- },
632
- {
633
- "token": "euiSearchBox.incrementalAriaLabel",
634
- "defString": "This is a search bar. As you type, the results lower in the page will automatically filter.",
635
- "highlighting": "string",
636
- "loc": {
637
- "start": {
638
- "line": 52,
639
- "column": 31,
640
- "index": 1484
641
- },
642
- "end": {
643
- "line": 55,
644
- "column": 3,
645
- "index": 1638
646
- }
647
- },
648
- "filepath": "src/components/search_bar/search_box.tsx"
649
- },
650
- {
651
- "token": "euiSearchBox.ariaLabel",
652
- "defString": "This is a search bar. After typing your query, hit enter to filter the results lower in the page.",
653
- "highlighting": "string",
654
- "loc": {
655
- "start": {
656
- "line": 56,
657
- "column": 25,
658
- "index": 1665
659
- },
660
- "end": {
661
- "line": 59,
662
- "column": 3,
663
- "index": 1814
664
- }
665
- },
666
- "filepath": "src/components/search_bar/search_box.tsx"
667
- },
668
614
  {
669
615
  "token": "euiSideNav.mobileToggleAriaLabel",
670
616
  "defString": "Toggle navigation",
@@ -683,74 +629,20 @@
683
629
  },
684
630
  "filepath": "src/components/side_nav/side_nav.tsx"
685
631
  },
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
632
  {
741
633
  "token": "euiSelectable.loadingOptions",
742
634
  "defString": "Loading options",
743
635
  "highlighting": "string",
744
636
  "loc": {
745
637
  "start": {
746
- "line": 628,
638
+ "line": 633,
747
639
  "column": 16,
748
- "index": 20323
640
+ "index": 20462
749
641
  },
750
642
  "end": {
751
- "line": 631,
643
+ "line": 636,
752
644
  "column": 18,
753
- "index": 20449
645
+ "index": 20588
754
646
  }
755
647
  },
756
648
  "filepath": "src/components/selectable/selectable.tsx"
@@ -761,14 +653,14 @@
761
653
  "highlighting": "string",
762
654
  "loc": {
763
655
  "start": {
764
- "line": 650,
656
+ "line": 655,
765
657
  "column": 14,
766
- "index": 20937
658
+ "index": 21076
767
659
  },
768
660
  "end": {
769
- "line": 654,
661
+ "line": 659,
770
662
  "column": 16,
771
- "index": 21157
663
+ "index": 21296
772
664
  }
773
665
  },
774
666
  "filepath": "src/components/selectable/selectable.tsx"
@@ -779,14 +671,14 @@
779
671
  "highlighting": "string",
780
672
  "loc": {
781
673
  "start": {
782
- "line": 669,
674
+ "line": 674,
783
675
  "column": 14,
784
- "index": 21568
676
+ "index": 21707
785
677
  },
786
678
  "end": {
787
- "line": 672,
679
+ "line": 677,
788
680
  "column": 16,
789
- "index": 21697
681
+ "index": 21836
790
682
  }
791
683
  },
792
684
  "filepath": "src/components/selectable/selectable.tsx"
@@ -797,14 +689,14 @@
797
689
  "highlighting": "string",
798
690
  "loc": {
799
691
  "start": {
800
- "line": 734,
692
+ "line": 739,
801
693
  "column": 6,
802
- "index": 23362
694
+ "index": 23501
803
695
  },
804
696
  "end": {
805
- "line": 743,
697
+ "line": 748,
806
698
  "column": 7,
807
- "index": 23690
699
+ "index": 23829
808
700
  }
809
701
  },
810
702
  "filepath": "src/components/selectable/selectable.tsx"
@@ -815,14 +707,14 @@
815
707
  "highlighting": "string",
816
708
  "loc": {
817
709
  "start": {
818
- "line": 734,
710
+ "line": 739,
819
711
  "column": 6,
820
- "index": 23362
712
+ "index": 23501
821
713
  },
822
714
  "end": {
823
- "line": 743,
715
+ "line": 748,
824
716
  "column": 7,
825
- "index": 23690
717
+ "index": 23829
826
718
  }
827
719
  },
828
720
  "filepath": "src/components/selectable/selectable.tsx"
@@ -833,14 +725,14 @@
833
725
  "highlighting": "code",
834
726
  "loc": {
835
727
  "start": {
836
- "line": 781,
728
+ "line": 790,
837
729
  "column": 6,
838
- "index": 25128
730
+ "index": 25340
839
731
  },
840
732
  "end": {
841
- "line": 787,
733
+ "line": 796,
842
734
  "column": 8,
843
- "index": 25353
735
+ "index": 25565
844
736
  }
845
737
  },
846
738
  "filepath": "src/components/selectable/selectable.tsx"
@@ -851,79 +743,187 @@
851
743
  "highlighting": "string",
852
744
  "loc": {
853
745
  "start": {
854
- "line": 799,
746
+ "line": 808,
855
747
  "column": 6,
856
- "index": 25647
748
+ "index": 25859
857
749
  },
858
750
  "end": {
859
- "line": 799,
751
+ "line": 808,
860
752
  "column": 78,
861
- "index": 25719
753
+ "index": 25931
862
754
  }
863
755
  },
864
756
  "filepath": "src/components/selectable/selectable.tsx"
865
757
  },
866
758
  {
867
- "token": "euiProgress.valueText",
868
- "defString": "{value}%",
759
+ "token": "euiSearchBox.placeholder",
760
+ "defString": "Search...",
869
761
  "highlighting": "string",
870
762
  "loc": {
871
763
  "start": {
872
- "line": 154,
873
- "column": 6,
874
- "index": 4411
764
+ "line": 48,
765
+ "column": 29,
766
+ "index": 1388
875
767
  },
876
768
  "end": {
877
- "line": 160,
878
- "column": 8,
879
- "index": 4539
769
+ "line": 51,
770
+ "column": 3,
771
+ "index": 1451
880
772
  }
881
773
  },
882
- "filepath": "src/components/progress/progress.tsx"
774
+ "filepath": "src/components/search_bar/search_box.tsx"
883
775
  },
884
776
  {
885
- "token": "euiPopover.screenReaderAnnouncement",
886
- "defString": "You are in a dialog. Press Escape, or tap/click outside the dialog to close.",
777
+ "token": "euiSearchBox.incrementalAriaLabel",
778
+ "defString": "This is a search bar. As you type, the results lower in the page will automatically filter.",
887
779
  "highlighting": "string",
888
780
  "loc": {
889
781
  "start": {
890
- "line": 706,
891
- "column": 16,
892
- "index": 21021
782
+ "line": 52,
783
+ "column": 31,
784
+ "index": 1484
893
785
  },
894
786
  "end": {
895
- "line": 709,
896
- "column": 18,
897
- "index": 21215
787
+ "line": 55,
788
+ "column": 3,
789
+ "index": 1638
898
790
  }
899
791
  },
900
- "filepath": "src/components/popover/popover.tsx"
792
+ "filepath": "src/components/search_bar/search_box.tsx"
901
793
  },
902
794
  {
903
- "token": "euiPaginationButtonArrow.firstPage",
904
- "defString": "First page",
795
+ "token": "euiSearchBox.ariaLabel",
796
+ "defString": "This is a search bar. After typing your query, hit enter to filter the results lower in the page.",
905
797
  "highlighting": "string",
906
798
  "loc": {
907
799
  "start": {
908
- "line": 48,
909
- "column": 11,
910
- "index": 1383
800
+ "line": 56,
801
+ "column": 25,
802
+ "index": 1665
911
803
  },
912
804
  "end": {
913
- "line": 48,
914
- "column": 73,
915
- "index": 1445
805
+ "line": 59,
806
+ "column": 3,
807
+ "index": 1814
916
808
  }
917
809
  },
918
- "filepath": "src/components/pagination/pagination_button_arrow.tsx"
810
+ "filepath": "src/components/search_bar/search_box.tsx"
919
811
  },
920
812
  {
921
- "token": "euiPaginationButtonArrow.previousPage",
922
- "defString": "Previous page",
813
+ "token": "euiResizablePanel.toggleButtonAriaLabel",
814
+ "defString": "Press to toggle this panel",
923
815
  "highlighting": "string",
924
816
  "loc": {
925
817
  "start": {
926
- "line": 49,
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
+ {
867
+ "token": "euiProgress.valueText",
868
+ "defString": "{value}%",
869
+ "highlighting": "string",
870
+ "loc": {
871
+ "start": {
872
+ "line": 154,
873
+ "column": 6,
874
+ "index": 4411
875
+ },
876
+ "end": {
877
+ "line": 160,
878
+ "column": 8,
879
+ "index": 4539
880
+ }
881
+ },
882
+ "filepath": "src/components/progress/progress.tsx"
883
+ },
884
+ {
885
+ "token": "euiPopover.screenReaderAnnouncement",
886
+ "defString": "You are in a dialog. Press Escape, or tap/click outside the dialog to close.",
887
+ "highlighting": "string",
888
+ "loc": {
889
+ "start": {
890
+ "line": 710,
891
+ "column": 16,
892
+ "index": 21185
893
+ },
894
+ "end": {
895
+ "line": 713,
896
+ "column": 18,
897
+ "index": 21379
898
+ }
899
+ },
900
+ "filepath": "src/components/popover/popover.tsx"
901
+ },
902
+ {
903
+ "token": "euiPaginationButtonArrow.firstPage",
904
+ "defString": "First page",
905
+ "highlighting": "string",
906
+ "loc": {
907
+ "start": {
908
+ "line": 48,
909
+ "column": 11,
910
+ "index": 1383
911
+ },
912
+ "end": {
913
+ "line": 48,
914
+ "column": 73,
915
+ "index": 1445
916
+ }
917
+ },
918
+ "filepath": "src/components/pagination/pagination_button_arrow.tsx"
919
+ },
920
+ {
921
+ "token": "euiPaginationButtonArrow.previousPage",
922
+ "defString": "Previous page",
923
+ "highlighting": "string",
924
+ "loc": {
925
+ "start": {
926
+ "line": 49,
927
927
  "column": 14,
928
928
  "index": 1461
929
929
  },
@@ -1151,6 +1151,42 @@
1151
1151
  },
1152
1152
  "filepath": "src/components/pagination/pagination.tsx"
1153
1153
  },
1154
+ {
1155
+ "token": "euiMark.highlightStart",
1156
+ "defString": "highlight start",
1157
+ "highlighting": "string",
1158
+ "loc": {
1159
+ "start": {
1160
+ "line": 44,
1161
+ "column": 25,
1162
+ "index": 1289
1163
+ },
1164
+ "end": {
1165
+ "line": 47,
1166
+ "column": 3,
1167
+ "index": 1356
1168
+ }
1169
+ },
1170
+ "filepath": "src/components/mark/mark.tsx"
1171
+ },
1172
+ {
1173
+ "token": "euiMark.highlightEnd",
1174
+ "defString": "highlight end",
1175
+ "highlighting": "string",
1176
+ "loc": {
1177
+ "start": {
1178
+ "line": 48,
1179
+ "column": 23,
1180
+ "index": 1381
1181
+ },
1182
+ "end": {
1183
+ "line": 48,
1184
+ "column": 74,
1185
+ "index": 1432
1186
+ }
1187
+ },
1188
+ "filepath": "src/components/mark/mark.tsx"
1189
+ },
1154
1190
  {
1155
1191
  "token": "euiModal.screenReaderModalDialog",
1156
1192
  "defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
@@ -1457,60 +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
- {
1497
- "token": "euiLoadingStrings.ariaLabel",
1498
- "defString": "Loading",
1499
- "highlighting": "string",
1500
- "loc": {
1501
- "start": {
1502
- "line": 12,
1503
- "column": 9,
1504
- "index": 454
1505
- },
1506
- "end": {
1507
- "line": 12,
1508
- "column": 61,
1509
- "index": 506
1510
- }
1511
- },
1512
- "filepath": "src/components/loading/_loading_strings.tsx"
1513
- },
1514
1496
  {
1515
1497
  "token": "euiExternalLinkIcon.newTarget.screenReaderOnlyText",
1516
1498
  "defString": "(external, opens in a new tab or window)",
@@ -1547,6 +1529,24 @@
1547
1529
  },
1548
1530
  "filepath": "src/components/link/external_link_icon.tsx"
1549
1531
  },
1532
+ {
1533
+ "token": "euiLoadingStrings.ariaLabel",
1534
+ "defString": "Loading",
1535
+ "highlighting": "string",
1536
+ "loc": {
1537
+ "start": {
1538
+ "line": 12,
1539
+ "column": 9,
1540
+ "index": 454
1541
+ },
1542
+ "end": {
1543
+ "line": 12,
1544
+ "column": 61,
1545
+ "index": 506
1546
+ }
1547
+ },
1548
+ "filepath": "src/components/loading/_loading_strings.tsx"
1549
+ },
1550
1550
  {
1551
1551
  "token": "euiInlineEditForm.saveButtonAriaLabel",
1552
1552
  "defString": "Save edit",
@@ -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,30 +2185,48 @@
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
  },
2162
2198
  {
2163
- "token": "euiCodeBlockFullScreen.fullscreenCollapse",
2164
- "defString": "Collapse",
2199
+ "token": "euiCallOut.dismissAriaLabel",
2200
+ "defString": "Dismiss this callout",
2165
2201
  "highlighting": "string",
2166
2202
  "loc": {
2167
2203
  "start": {
2168
- "line": 72,
2169
- "column": 49,
2170
- "index": 2157
2204
+ "line": 105,
2205
+ "column": 8,
2206
+ "index": 2943
2171
2207
  },
2172
2208
  "end": {
2173
- "line": 78,
2174
- "column": 3,
2175
- "index": 2312
2209
+ "line": 108,
2210
+ "column": 9,
2211
+ "index": 3048
2212
+ }
2213
+ },
2214
+ "filepath": "src/components/call_out/call_out.tsx"
2215
+ },
2216
+ {
2217
+ "token": "euiCodeBlockFullScreen.fullscreenCollapse",
2218
+ "defString": "Collapse",
2219
+ "highlighting": "string",
2220
+ "loc": {
2221
+ "start": {
2222
+ "line": 72,
2223
+ "column": 49,
2224
+ "index": 2157
2225
+ },
2226
+ "end": {
2227
+ "line": 78,
2228
+ "column": 3,
2229
+ "index": 2312
2176
2230
  }
2177
2231
  },
2178
2232
  "filepath": "src/components/code/code_block_full_screen.tsx"
@@ -2267,78 +2321,6 @@
2267
2321
  },
2268
2322
  "filepath": "src/components/code/code_block.tsx"
2269
2323
  },
2270
- {
2271
- "token": "euiCallOut.dismissAriaLabel",
2272
- "defString": "Dismiss this callout",
2273
- "highlighting": "string",
2274
- "loc": {
2275
- "start": {
2276
- "line": 105,
2277
- "column": 8,
2278
- "index": 2943
2279
- },
2280
- "end": {
2281
- "line": 108,
2282
- "column": 9,
2283
- "index": 3048
2284
- }
2285
- },
2286
- "filepath": "src/components/call_out/call_out.tsx"
2287
- },
2288
- {
2289
- "token": "euiBreadcrumbs.nav.ariaLabel",
2290
- "defString": "Breadcrumbs",
2291
- "highlighting": "string",
2292
- "loc": {
2293
- "start": {
2294
- "line": 42,
2295
- "column": 20,
2296
- "index": 1274
2297
- },
2298
- "end": {
2299
- "line": 42,
2300
- "column": 77,
2301
- "index": 1331
2302
- }
2303
- },
2304
- "filepath": "src/components/breadcrumbs/breadcrumbs.tsx"
2305
- },
2306
- {
2307
- "token": "euiBreadcrumb.collapsedBadge.ariaLabel",
2308
- "defString": "See collapsed breadcrumbs",
2309
- "highlighting": "string",
2310
- "loc": {
2311
- "start": {
2312
- "line": 56,
2313
- "column": 20,
2314
- "index": 1691
2315
- },
2316
- "end": {
2317
- "line": 59,
2318
- "column": 3,
2319
- "index": 1784
2320
- }
2321
- },
2322
- "filepath": "src/components/breadcrumbs/breadcrumb.tsx"
2323
- },
2324
- {
2325
- "token": "euiBreadcrumb.popoverAriaLabel",
2326
- "defString": "Clicking this button will toggle a popover dialog.",
2327
- "highlighting": "string",
2328
- "loc": {
2329
- "start": {
2330
- "line": 175,
2331
- "column": 29,
2332
- "index": 4936
2333
- },
2334
- "end": {
2335
- "line": 181,
2336
- "column": 5,
2337
- "index": 5269
2338
- }
2339
- },
2340
- "filepath": "src/components/breadcrumbs/_breadcrumb_content.tsx"
2341
- },
2342
2324
  {
2343
2325
  "token": "euiBottomBar.screenReaderHeading",
2344
2326
  "defString": "Page level controls",
@@ -2394,58 +2376,58 @@
2394
2376
  "filepath": "src/components/bottom_bar/bottom_bar.tsx"
2395
2377
  },
2396
2378
  {
2397
- "token": "euiCollapsedItemActions.allActionsTooltip",
2398
- "defString": "All actions",
2379
+ "token": "euiBreadcrumbs.nav.ariaLabel",
2380
+ "defString": "Breadcrumbs",
2399
2381
  "highlighting": "string",
2400
2382
  "loc": {
2401
2383
  "start": {
2402
- "line": 45,
2403
- "column": 28,
2404
- "index": 1373
2384
+ "line": 42,
2385
+ "column": 20,
2386
+ "index": 1274
2405
2387
  },
2406
2388
  "end": {
2407
- "line": 48,
2408
- "column": 3,
2409
- "index": 1455
2389
+ "line": 42,
2390
+ "column": 77,
2391
+ "index": 1331
2410
2392
  }
2411
2393
  },
2412
- "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2394
+ "filepath": "src/components/breadcrumbs/breadcrumbs.tsx"
2413
2395
  },
2414
2396
  {
2415
- "token": "euiCollapsedItemActions.allActions",
2416
- "defString": "All actions, row {index}",
2397
+ "token": "euiBreadcrumb.collapsedBadge.ariaLabel",
2398
+ "defString": "See collapsed breadcrumbs",
2417
2399
  "highlighting": "string",
2418
2400
  "loc": {
2419
2401
  "start": {
2420
- "line": 50,
2421
- "column": 36,
2422
- "index": 1494
2402
+ "line": 56,
2403
+ "column": 20,
2404
+ "index": 1691
2423
2405
  },
2424
2406
  "end": {
2425
- "line": 56,
2407
+ "line": 59,
2426
2408
  "column": 3,
2427
- "index": 1631
2409
+ "index": 1784
2428
2410
  }
2429
2411
  },
2430
- "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2412
+ "filepath": "src/components/breadcrumbs/breadcrumb.tsx"
2431
2413
  },
2432
2414
  {
2433
- "token": "euiCollapsedItemActions.allActionsDisabled",
2434
- "defString": "Individual item actions are disabled when rows are being selected.",
2415
+ "token": "euiBreadcrumb.popoverAriaLabel",
2416
+ "defString": "Clicking this button will toggle a popover dialog.",
2435
2417
  "highlighting": "string",
2436
2418
  "loc": {
2437
2419
  "start": {
2438
- "line": 58,
2439
- "column": 44,
2440
- "index": 1678
2420
+ "line": 175,
2421
+ "column": 29,
2422
+ "index": 4936
2441
2423
  },
2442
2424
  "end": {
2443
- "line": 61,
2444
- "column": 3,
2445
- "index": 1816
2425
+ "line": 181,
2426
+ "column": 5,
2427
+ "index": 5269
2446
2428
  }
2447
2429
  },
2448
- "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2430
+ "filepath": "src/components/breadcrumbs/_breadcrumb_content.tsx"
2449
2431
  },
2450
2432
  {
2451
2433
  "token": "euiBasicTable.noItemsMessage",
@@ -2471,14 +2453,14 @@
2471
2453
  "highlighting": "string",
2472
2454
  "loc": {
2473
2455
  "start": {
2474
- "line": 631,
2456
+ "line": 638,
2475
2457
  "column": 10,
2476
- "index": 16361
2458
+ "index": 16468
2477
2459
  },
2478
2460
  "end": {
2479
- "line": 635,
2461
+ "line": 642,
2480
2462
  "column": 12,
2481
- "index": 16564
2463
+ "index": 16671
2482
2464
  }
2483
2465
  },
2484
2466
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2489,14 +2471,14 @@
2489
2471
  "highlighting": "string",
2490
2472
  "loc": {
2491
2473
  "start": {
2492
- "line": 644,
2474
+ "line": 651,
2493
2475
  "column": 12,
2494
- "index": 16761
2476
+ "index": 16868
2495
2477
  },
2496
2478
  "end": {
2497
- "line": 648,
2479
+ "line": 655,
2498
2480
  "column": 14,
2499
- "index": 17040
2481
+ "index": 17147
2500
2482
  }
2501
2483
  },
2502
2484
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2507,14 +2489,14 @@
2507
2489
  "highlighting": "string",
2508
2490
  "loc": {
2509
2491
  "start": {
2510
- "line": 652,
2492
+ "line": 659,
2511
2493
  "column": 12,
2512
- "index": 17112
2494
+ "index": 17219
2513
2495
  },
2514
2496
  "end": {
2515
- "line": 656,
2497
+ "line": 663,
2516
2498
  "column": 14,
2517
- "index": 17352
2499
+ "index": 17459
2518
2500
  }
2519
2501
  },
2520
2502
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2525,14 +2507,14 @@
2525
2507
  "highlighting": "string",
2526
2508
  "loc": {
2527
2509
  "start": {
2528
- "line": 661,
2510
+ "line": 668,
2529
2511
  "column": 10,
2530
- "index": 17428
2512
+ "index": 17535
2531
2513
  },
2532
2514
  "end": {
2533
- "line": 665,
2515
+ "line": 672,
2534
2516
  "column": 12,
2535
- "index": 17612
2517
+ "index": 17719
2536
2518
  }
2537
2519
  },
2538
2520
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2543,14 +2525,14 @@
2543
2525
  "highlighting": "string",
2544
2526
  "loc": {
2545
2527
  "start": {
2546
- "line": 715,
2528
+ "line": 722,
2547
2529
  "column": 6,
2548
- "index": 18910
2530
+ "index": 19017
2549
2531
  },
2550
2532
  "end": {
2551
- "line": 718,
2533
+ "line": 725,
2552
2534
  "column": 7,
2553
- "index": 19061
2535
+ "index": 19168
2554
2536
  }
2555
2537
  },
2556
2538
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2561,14 +2543,14 @@
2561
2543
  "highlighting": "string",
2562
2544
  "loc": {
2563
2545
  "start": {
2564
- "line": 715,
2546
+ "line": 722,
2565
2547
  "column": 6,
2566
- "index": 18910
2548
+ "index": 19017
2567
2549
  },
2568
2550
  "end": {
2569
- "line": 718,
2551
+ "line": 725,
2570
2552
  "column": 7,
2571
- "index": 19061
2553
+ "index": 19168
2572
2554
  }
2573
2555
  },
2574
2556
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2579,14 +2561,14 @@
2579
2561
  "highlighting": "string",
2580
2562
  "loc": {
2581
2563
  "start": {
2582
- "line": 1135,
2564
+ "line": 1142,
2583
2565
  "column": 8,
2584
- "index": 31492
2566
+ "index": 31599
2585
2567
  },
2586
2568
  "end": {
2587
- "line": 1139,
2569
+ "line": 1146,
2588
2570
  "column": 9,
2589
- "index": 31647
2571
+ "index": 31754
2590
2572
  }
2591
2573
  },
2592
2574
  "filepath": "src/components/basic_table/basic_table.tsx"
@@ -2597,18 +2579,72 @@
2597
2579
  "highlighting": "string",
2598
2580
  "loc": {
2599
2581
  "start": {
2600
- "line": 1383,
2582
+ "line": 1390,
2601
2583
  "column": 8,
2602
- "index": 38772
2584
+ "index": 38879
2603
2585
  },
2604
2586
  "end": {
2605
- "line": 1387,
2587
+ "line": 1394,
2606
2588
  "column": 9,
2607
- "index": 38931
2589
+ "index": 39038
2608
2590
  }
2609
2591
  },
2610
2592
  "filepath": "src/components/basic_table/basic_table.tsx"
2611
2593
  },
2594
+ {
2595
+ "token": "euiCollapsedItemActions.allActionsTooltip",
2596
+ "defString": "All actions",
2597
+ "highlighting": "string",
2598
+ "loc": {
2599
+ "start": {
2600
+ "line": 45,
2601
+ "column": 28,
2602
+ "index": 1373
2603
+ },
2604
+ "end": {
2605
+ "line": 48,
2606
+ "column": 3,
2607
+ "index": 1455
2608
+ }
2609
+ },
2610
+ "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2611
+ },
2612
+ {
2613
+ "token": "euiCollapsedItemActions.allActions",
2614
+ "defString": "All actions, row {index}",
2615
+ "highlighting": "string",
2616
+ "loc": {
2617
+ "start": {
2618
+ "line": 50,
2619
+ "column": 36,
2620
+ "index": 1494
2621
+ },
2622
+ "end": {
2623
+ "line": 56,
2624
+ "column": 3,
2625
+ "index": 1631
2626
+ }
2627
+ },
2628
+ "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2629
+ },
2630
+ {
2631
+ "token": "euiCollapsedItemActions.allActionsDisabled",
2632
+ "defString": "Individual item actions are disabled when rows are being selected.",
2633
+ "highlighting": "string",
2634
+ "loc": {
2635
+ "start": {
2636
+ "line": 58,
2637
+ "column": 44,
2638
+ "index": 1678
2639
+ },
2640
+ "end": {
2641
+ "line": 61,
2642
+ "column": 3,
2643
+ "index": 1816
2644
+ }
2645
+ },
2646
+ "filepath": "src/components/basic_table/collapsed_item_actions.tsx"
2647
+ },
2612
2648
  {
2613
2649
  "token": "euiTablePagination.allRows",
2614
2650
  "defString": "Showing all rows",
@@ -2699,24 +2735,6 @@
2699
2735
  },
2700
2736
  "filepath": "src/components/table/mobile/table_sort_mobile.tsx"
2701
2737
  },
2702
- {
2703
- "token": "euiFieldValueSelectionFilter.buttonLabelHint",
2704
- "defString": "Selection",
2705
- "highlighting": "string",
2706
- "loc": {
2707
- "start": {
2708
- "line": 302,
2709
- "column": 6,
2710
- "index": 8615
2711
- },
2712
- "end": {
2713
- "line": 305,
2714
- "column": 7,
2715
- "index": 8720
2716
- }
2717
- },
2718
- "filepath": "src/components/search_bar/filters/field_value_selection_filter.tsx"
2719
- },
2720
2738
  {
2721
2739
  "token": "euiSelectableTemplateSitewide.searchPlaceholder",
2722
2740
  "defString": "Search for anything...",
@@ -2951,6 +2969,24 @@
2951
2969
  },
2952
2970
  "filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
2953
2971
  },
2972
+ {
2973
+ "token": "euiFieldValueSelectionFilter.buttonLabelHint",
2974
+ "defString": "Selection",
2975
+ "highlighting": "string",
2976
+ "loc": {
2977
+ "start": {
2978
+ "line": 302,
2979
+ "column": 6,
2980
+ "index": 8615
2981
+ },
2982
+ "end": {
2983
+ "line": 305,
2984
+ "column": 7,
2985
+ "index": 8720
2986
+ }
2987
+ },
2988
+ "filepath": "src/components/search_bar/filters/field_value_selection_filter.tsx"
2989
+ },
2954
2990
  {
2955
2991
  "token": "euiPinnableListGroup.pinExtraActionLabel",
2956
2992
  "defString": "Pin item",
@@ -3096,26 +3132,62 @@
3096
3132
  "filepath": "src/components/form/range/dual_range.tsx"
3097
3133
  },
3098
3134
  {
3099
- "token": "euiFilePicker.promptText",
3100
- "defString": "Select or drag and drop a file",
3135
+ "token": "euiFormControlLayoutDelimited.delimiterLabel",
3136
+ "defString": "to",
3101
3137
  "highlighting": "string",
3102
3138
  "loc": {
3103
3139
  "start": {
3104
- "line": 76,
3105
- "column": 6,
3106
- "index": 2335
3140
+ "line": 127,
3141
+ "column": 27,
3142
+ "index": 3542
3107
3143
  },
3108
3144
  "end": {
3109
- "line": 79,
3110
- "column": 8,
3111
- "index": 2442
3145
+ "line": 130,
3146
+ "column": 3,
3147
+ "index": 3618
3112
3148
  }
3113
3149
  },
3114
- "filepath": "src/components/form/file_picker/file_picker.tsx"
3150
+ "filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
3115
3151
  },
3116
3152
  {
3117
- "token": "euiFilePicker.filesSelected",
3118
- "defString": "{fileCount} files selected",
3153
+ "token": "euiFormControlLayoutClearButton.label",
3154
+ "defString": "Clear input",
3155
+ "highlighting": "string",
3156
+ "loc": {
3157
+ "start": {
3158
+ "line": 35,
3159
+ "column": 20,
3160
+ "index": 1412
3161
+ },
3162
+ "end": {
3163
+ "line": 38,
3164
+ "column": 3,
3165
+ "index": 1490
3166
+ }
3167
+ },
3168
+ "filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
3169
+ },
3170
+ {
3171
+ "token": "euiFilePicker.promptText",
3172
+ "defString": "Select or drag and drop a file",
3173
+ "highlighting": "string",
3174
+ "loc": {
3175
+ "start": {
3176
+ "line": 76,
3177
+ "column": 6,
3178
+ "index": 2335
3179
+ },
3180
+ "end": {
3181
+ "line": 79,
3182
+ "column": 8,
3183
+ "index": 2442
3184
+ }
3185
+ },
3186
+ "filepath": "src/components/form/file_picker/file_picker.tsx"
3187
+ },
3188
+ {
3189
+ "token": "euiFilePicker.filesSelected",
3190
+ "defString": "{fileCount} files selected",
3119
3191
  "highlighting": "string",
3120
3192
  "loc": {
3121
3193
  "start": {
@@ -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,94 +3294,310 @@
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",
3371
+ "highlighting": "string",
3372
+ "loc": {
3373
+ "start": {
3374
+ "line": 252,
3375
+ "column": 6,
3376
+ "index": 6639
3377
+ },
3378
+ "end": {
3379
+ "line": 265,
3380
+ "column": 7,
3381
+ "index": 7028
3382
+ }
3383
+ },
3384
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3385
+ },
3386
+ {
3387
+ "token": "euiRefreshInterval.valueAriaLabel",
3388
+ "defString": "Refresh interval value",
3389
+ "highlighting": "string",
3390
+ "loc": {
3391
+ "start": {
3392
+ "line": 252,
3393
+ "column": 6,
3394
+ "index": 6639
3395
+ },
3396
+ "end": {
3397
+ "line": 265,
3398
+ "column": 7,
3399
+ "index": 7028
3400
+ }
3401
+ },
3402
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3403
+ },
3404
+ {
3405
+ "token": "euiRefreshInterval.unitsAriaLabel",
3406
+ "defString": "Refresh interval units",
3407
+ "highlighting": "string",
3408
+ "loc": {
3409
+ "start": {
3410
+ "line": 252,
3411
+ "column": 6,
3412
+ "index": 6639
3413
+ },
3414
+ "end": {
3415
+ "line": 265,
3416
+ "column": 7,
3417
+ "index": 7028
3418
+ }
3419
+ },
3420
+ "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
3421
+ },
3422
+ {
3423
+ "token": "euiAutoRefresh.autoRefreshLabel",
3424
+ "defString": "Auto refresh",
3425
+ "highlighting": "string",
3426
+ "loc": {
3427
+ "start": {
3428
+ "line": 50,
3429
+ "column": 26,
3430
+ "index": 1659
3431
+ },
3432
+ "end": {
3433
+ "line": 53,
3434
+ "column": 3,
3435
+ "index": 1732
3436
+ }
3437
+ },
3438
+ "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
3439
+ },
3440
+ {
3441
+ "token": "euiAutoRefresh.buttonLabelOff",
3442
+ "defString": "Auto refresh is off",
3443
+ "highlighting": "string",
3444
+ "loc": {
3445
+ "start": {
3446
+ "line": 129,
3447
+ "column": 29,
3448
+ "index": 3709
3449
+ },
3450
+ "end": {
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}",
3335
3587
  "highlighting": "string",
3336
3588
  "loc": {
3337
3589
  "start": {
3338
- "line": 240,
3339
- "column": 8,
3340
- "index": 5892
3590
+ "line": 109,
3591
+ "column": 29,
3592
+ "index": 3305
3341
3593
  },
3342
3594
  "end": {
3343
- "line": 243,
3344
- "column": 10,
3345
- "index": 6005
3595
+ "line": 113,
3596
+ "column": 3,
3597
+ "index": 3418
3346
3598
  }
3347
3599
  },
3348
- "filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
3600
+ "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
3349
3601
  },
3350
3602
  {
3351
3603
  "token": "euiTimeOptions.last",
@@ -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",
4037
- "highlighting": "string",
4038
- "loc": {
4039
- "start": {
4040
- "line": 78,
4041
- "column": 34,
4042
- "index": 2343
4043
- },
4044
- "end": {
4045
- "line": 81,
4046
- "column": 3,
4047
- "index": 2443
4048
- }
4049
- },
4050
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4051
- },
4052
- {
4053
- "token": "euiTimeWindowButtons.invalidZoomOutLabel",
4054
- "defString": "Cannot zoom out invalid time window",
4055
- "highlighting": "string",
4056
- "loc": {
4057
- "start": {
4058
- "line": 82,
4059
- "column": 36,
4060
- "index": 2481
4061
- },
4062
- "end": {
4063
- "line": 85,
4064
- "column": 3,
4065
- "index": 2586
4066
- }
4067
- },
4068
- "filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
4069
- },
4070
- {
4071
- "token": "euiTimeWindowButtons.previousLabel",
4072
- "defString": "Previous",
4287
+ "token": "euiSuperUpdateButton.updatingButtonLabel",
4288
+ "defString": "Updating",
4073
4289
  "highlighting": "string",
4074
4290
  "loc": {
4075
4291
  "start": {
4076
- "line": 88,
4077
- "column": 24,
4078
- "index": 2678
4292
+ "line": 204,
4293
+ "column": 8,
4294
+ "index": 5158
4079
4295
  },
4080
4296
  "end": {
4081
- "line": 91,
4082
- "column": 3,
4083
- "index": 2750
4297
+ "line": 207,
4298
+ "column": 10,
4299
+ "index": 5265
4084
4300
  }
4085
4301
  },
4086
- "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"
4087
4303
  },
4088
4304
  {
4089
- "token": "euiTimeWindowButtons.previousDescription",
4090
- "defString": "Previous {displayInterval}",
4305
+ "token": "euiSuperUpdateButton.updateButtonLabel",
4306
+ "defString": "Update",
4091
4307
  "highlighting": "string",
4092
4308
  "loc": {
4093
4309
  "start": {
4094
- "line": 92,
4095
- "column": 33,
4096
- "index": 2785
4310
+ "line": 213,
4311
+ "column": 8,
4312
+ "index": 5328
4097
4313
  },
4098
4314
  "end": {
4099
- "line": 96,
4100
- "column": 3,
4101
- "index": 2906
4315
+ "line": 216,
4316
+ "column": 10,
4317
+ "index": 5431
4102
4318
  }
4103
4319
  },
4104
- "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"
4105
4321
  },
4106
4322
  {
4107
- "token": "euiTimeWindowButtons.zoomOutLabel",
4108
- "defString": "Zoom out",
4323
+ "token": "euiSuperUpdateButton.refreshButtonLabel",
4324
+ "defString": "Refresh",
4109
4325
  "highlighting": "string",
4110
4326
  "loc": {
4111
4327
  "start": {
4112
- "line": 99,
4113
- "column": 23,
4114
- "index": 2996
4328
+ "line": 221,
4329
+ "column": 6,
4330
+ "index": 5467
4115
4331
  },
4116
4332
  "end": {
4117
- "line": 102,
4118
- "column": 3,
4119
- "index": 3067
4333
+ "line": 224,
4334
+ "column": 8,
4335
+ "index": 5566
4120
4336
  }
4121
4337
  },
4122
- "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"
4123
4339
  },
4124
4340
  {
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",
@@ -4727,191 +4943,65 @@
4727
4943
  },
4728
4944
  "end": {
4729
4945
  "line": 166,
4730
- "column": 3,
4731
- "index": 4934
4732
- }
4733
- },
4734
- "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
4735
- },
4736
- {
4737
- "token": "euiPrettyDuration.fallbackDuration",
4738
- "defString": "{displayFrom} to {displayTo}",
4739
- "highlighting": "string",
4740
- "loc": {
4741
- "start": {
4742
- "line": 279,
4743
- "column": 27,
4744
- "index": 8267
4745
- },
4746
- "end": {
4747
- "line": 283,
4748
- "column": 3,
4749
- "index": 8391
4750
- }
4751
- },
4752
- "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
4753
- },
4754
- {
4755
- "token": "euiRefreshInterval.fullDescriptionOff",
4756
- "defString": "Refresh is off, interval set to {optionValue} {optionText}.",
4757
- "highlighting": "string",
4758
- "loc": {
4759
- "start": {
4760
- "line": 221,
4761
- "column": 6,
4762
- "index": 5894
4763
- },
4764
- "end": {
4765
- "line": 228,
4766
- "column": 8,
4767
- "index": 6124
4768
- }
4769
- },
4770
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
4771
- },
4772
- {
4773
- "token": "euiRefreshInterval.fullDescriptionOn",
4774
- "defString": "Refresh is on, interval set to {optionValue} {optionText}.",
4775
- "highlighting": "string",
4776
- "loc": {
4777
- "start": {
4778
- "line": 230,
4779
- "column": 6,
4780
- "index": 6141
4781
- },
4782
- "end": {
4783
- "line": 237,
4784
- "column": 8,
4785
- "index": 6369
4786
- }
4787
- },
4788
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
4789
- },
4790
- {
4791
- "token": "euiRefreshInterval.toggleLabel",
4792
- "defString": "Refresh every",
4793
- "highlighting": "string",
4794
- "loc": {
4795
- "start": {
4796
- "line": 252,
4797
- "column": 6,
4798
- "index": 6639
4799
- },
4800
- "end": {
4801
- "line": 265,
4802
- "column": 7,
4803
- "index": 7028
4804
- }
4805
- },
4806
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
4807
- },
4808
- {
4809
- "token": "euiRefreshInterval.toggleAriaLabel",
4810
- "defString": "Toggle refresh",
4811
- "highlighting": "string",
4812
- "loc": {
4813
- "start": {
4814
- "line": 252,
4815
- "column": 6,
4816
- "index": 6639
4817
- },
4818
- "end": {
4819
- "line": 265,
4820
- "column": 7,
4821
- "index": 7028
4822
- }
4823
- },
4824
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
4825
- },
4826
- {
4827
- "token": "euiRefreshInterval.valueAriaLabel",
4828
- "defString": "Refresh interval value",
4829
- "highlighting": "string",
4830
- "loc": {
4831
- "start": {
4832
- "line": 252,
4833
- "column": 6,
4834
- "index": 6639
4835
- },
4836
- "end": {
4837
- "line": 265,
4838
- "column": 7,
4839
- "index": 7028
4840
- }
4841
- },
4842
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
4843
- },
4844
- {
4845
- "token": "euiRefreshInterval.unitsAriaLabel",
4846
- "defString": "Refresh interval units",
4847
- "highlighting": "string",
4848
- "loc": {
4849
- "start": {
4850
- "line": 252,
4851
- "column": 6,
4852
- "index": 6639
4853
- },
4854
- "end": {
4855
- "line": 265,
4856
- "column": 7,
4857
- "index": 7028
4946
+ "column": 3,
4947
+ "index": 4934
4858
4948
  }
4859
4949
  },
4860
- "filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
4950
+ "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
4861
4951
  },
4862
4952
  {
4863
- "token": "euiAutoRefresh.autoRefreshLabel",
4864
- "defString": "Auto refresh",
4953
+ "token": "euiPrettyDuration.fallbackDuration",
4954
+ "defString": "{displayFrom} to {displayTo}",
4865
4955
  "highlighting": "string",
4866
4956
  "loc": {
4867
4957
  "start": {
4868
- "line": 50,
4869
- "column": 26,
4870
- "index": 1659
4958
+ "line": 279,
4959
+ "column": 27,
4960
+ "index": 8267
4871
4961
  },
4872
4962
  "end": {
4873
- "line": 53,
4963
+ "line": 283,
4874
4964
  "column": 3,
4875
- "index": 1732
4965
+ "index": 8391
4876
4966
  }
4877
4967
  },
4878
- "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
4968
+ "filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
4879
4969
  },
4880
4970
  {
4881
- "token": "euiAutoRefresh.buttonLabelOff",
4882
- "defString": "Auto refresh is off",
4971
+ "token": "euiDataGridPagination.detailedPaginationLabel",
4972
+ "defString": "Pagination for preceding grid: {label}",
4883
4973
  "highlighting": "string",
4884
4974
  "loc": {
4885
4975
  "start": {
4886
- "line": 129,
4887
- "column": 29,
4888
- "index": 3709
4976
+ "line": 51,
4977
+ "column": 34,
4978
+ "index": 1785
4889
4979
  },
4890
4980
  "end": {
4891
- "line": 132,
4981
+ "line": 55,
4892
4982
  "column": 3,
4893
- "index": 3787
4983
+ "index": 1930
4894
4984
  }
4895
4985
  },
4896
- "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
4986
+ "filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
4897
4987
  },
4898
4988
  {
4899
- "token": "euiAutoRefresh.buttonLabelOn",
4900
- "defString": "Auto refresh is on and set to {prettyInterval}",
4989
+ "token": "euiDataGridPagination.paginationLabel",
4990
+ "defString": "Pagination for preceding grid",
4901
4991
  "highlighting": "string",
4902
4992
  "loc": {
4903
4993
  "start": {
4904
- "line": 133,
4905
- "column": 28,
4906
- "index": 3817
4994
+ "line": 56,
4995
+ "column": 26,
4996
+ "index": 1958
4907
4997
  },
4908
4998
  "end": {
4909
- "line": 141,
4999
+ "line": 59,
4910
5000
  "column": 3,
4911
- "index": 4051
5001
+ "index": 2054
4912
5002
  }
4913
5003
  },
4914
- "filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
5004
+ "filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
4915
5005
  },
4916
5006
  {
4917
5007
  "token": "euiDataGridSchema.booleanSortTextAsc",
@@ -5093,42 +5183,6 @@
5093
5183
  },
5094
5184
  "filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
5095
5185
  },
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
5186
  {
5133
5187
  "token": "euiKeyboardShortcuts.title",
5134
5188
  "defString": "Keyboard shortcuts",
@@ -5651,24 +5705,6 @@
5651
5705
  },
5652
5706
  "filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
5653
5707
  },
5654
- {
5655
- "token": "euiDataGridToolbarControl.badgeAriaLabel",
5656
- "defString": "Active: {count}",
5657
- "highlighting": "string",
5658
- "loc": {
5659
- "start": {
5660
- "line": 31,
5661
- "column": 25,
5662
- "index": 1211
5663
- },
5664
- "end": {
5665
- "line": 40,
5666
- "column": 3,
5667
- "index": 1441
5668
- }
5669
- },
5670
- "filepath": "src/components/datagrid/controls/data_grid_toolbar_control.tsx"
5671
- },
5672
5708
  {
5673
5709
  "token": "euiDisplaySelector.densityLabel",
5674
5710
  "defString": "Density",
@@ -5850,202 +5886,220 @@
5850
5886
  "filepath": "src/components/datagrid/controls/display_selector.tsx"
5851
5887
  },
5852
5888
  {
5853
- "token": "euiColumnSorting.button",
5854
- "defString": "Sort fields",
5889
+ "token": "euiDataGridToolbarControl.badgeAriaLabel",
5890
+ "defString": "Active: {count}",
5855
5891
  "highlighting": "string",
5856
5892
  "loc": {
5857
5893
  "start": {
5858
- "line": 66,
5859
- "column": 30,
5860
- "index": 2120
5894
+ "line": 31,
5895
+ "column": 25,
5896
+ "index": 1211
5861
5897
  },
5862
5898
  "end": {
5863
- "line": 69,
5864
- "column": 5,
5865
- "index": 2190
5899
+ "line": 40,
5900
+ "column": 3,
5901
+ "index": 1441
5866
5902
  }
5867
5903
  },
5868
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5904
+ "filepath": "src/components/datagrid/controls/data_grid_toolbar_control.tsx"
5869
5905
  },
5870
5906
  {
5871
- "token": "euiColumnSorting.sortFieldAriaLabel",
5872
- "defString": "Sort by: ",
5907
+ "token": "euiColumnSortingDraggable.defaultSortAsc",
5908
+ "defString": "A-Z",
5873
5909
  "highlighting": "string",
5874
5910
  "loc": {
5875
5911
  "start": {
5876
- "line": 70,
5877
- "column": 31,
5878
- "index": 2223
5912
+ "line": 27,
5913
+ "column": 2,
5914
+ "index": 1166
5879
5915
  },
5880
5916
  "end": {
5881
- "line": 73,
5882
- "column": 5,
5883
- "index": 2303
5917
+ "line": 27,
5918
+ "column": 76,
5919
+ "index": 1240
5884
5920
  }
5885
5921
  },
5886
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5922
+ "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
5887
5923
  },
5888
5924
  {
5889
- "token": "euiColumnSorting.emptySorting",
5890
- "defString": "Currently no fields are sorted",
5925
+ "token": "euiColumnSortingDraggable.defaultSortDesc",
5926
+ "defString": "Z-A",
5891
5927
  "highlighting": "string",
5892
5928
  "loc": {
5893
5929
  "start": {
5894
- "line": 220,
5895
- "column": 14,
5896
- "index": 6937
5930
+ "line": 30,
5931
+ "column": 2,
5932
+ "index": 1284
5897
5933
  },
5898
5934
  "end": {
5899
- "line": 223,
5900
- "column": 16,
5901
- "index": 7073
5935
+ "line": 30,
5936
+ "column": 77,
5937
+ "index": 1359
5902
5938
  }
5903
5939
  },
5904
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5940
+ "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
5905
5941
  },
5906
5942
  {
5907
- "token": "euiColumnSorting.pickFields",
5908
- "defString": "Pick fields to sort by",
5943
+ "token": "euiColumnSortingDraggable.dragHandleAriaLabel",
5944
+ "defString": "Drag handle",
5909
5945
  "highlighting": "string",
5910
5946
  "loc": {
5911
5947
  "start": {
5912
- "line": 253,
5913
- "column": 24,
5914
- "index": 8296
5948
+ "line": 71,
5949
+ "column": 30,
5950
+ "index": 2323
5915
5951
  },
5916
5952
  "end": {
5917
- "line": 256,
5918
- "column": 26,
5919
- "index": 8452
5953
+ "line": 74,
5954
+ "column": 3,
5955
+ "index": 2409
5920
5956
  }
5921
5957
  },
5922
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5958
+ "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
5923
5959
  },
5924
5960
  {
5925
- "token": "euiColumnSorting.clearAll",
5926
- "defString": "Clear sorting",
5961
+ "token": "euiColumnSortingDraggable.activeSortLabel",
5962
+ "defString": "{display} is sorting this data grid",
5927
5963
  "highlighting": "string",
5928
5964
  "loc": {
5929
5965
  "start": {
5930
- "line": 328,
5931
- "column": 20,
5932
- "index": 11806
5966
+ "line": 120,
5967
+ "column": 14,
5968
+ "index": 3759
5933
5969
  },
5934
5970
  "end": {
5935
- "line": 331,
5936
- "column": 22,
5937
- "index": 11939
5971
+ "line": 124,
5972
+ "column": 15,
5973
+ "index": 3948
5938
5974
  }
5939
5975
  },
5940
- "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5976
+ "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
5941
5977
  },
5942
5978
  {
5943
- "token": "euiColumnSortingDraggable.defaultSortAsc",
5944
- "defString": "A-Z",
5979
+ "token": "euiColumnSortingDraggable.removeSortLabel",
5980
+ "defString": "Remove {display} from data grid sort",
5945
5981
  "highlighting": "string",
5946
5982
  "loc": {
5947
5983
  "start": {
5948
- "line": 27,
5949
- "column": 2,
5950
- "index": 1166
5984
+ "line": 130,
5985
+ "column": 12,
5986
+ "index": 4136
5951
5987
  },
5952
5988
  "end": {
5953
- "line": 27,
5954
- "column": 76,
5955
- "index": 1240
5989
+ "line": 134,
5990
+ "column": 13,
5991
+ "index": 4318
5956
5992
  }
5957
5993
  },
5958
5994
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
5959
5995
  },
5960
5996
  {
5961
- "token": "euiColumnSortingDraggable.defaultSortDesc",
5962
- "defString": "Z-A",
5997
+ "token": "euiColumnSortingDraggable.toggleLegend",
5998
+ "defString": "Select sorting method for {display}",
5963
5999
  "highlighting": "string",
5964
6000
  "loc": {
5965
6001
  "start": {
5966
- "line": 30,
5967
- "column": 2,
5968
- "index": 1284
6002
+ "line": 178,
6003
+ "column": 12,
6004
+ "index": 5821
5969
6005
  },
5970
6006
  "end": {
5971
- "line": 30,
5972
- "column": 77,
5973
- "index": 1359
6007
+ "line": 182,
6008
+ "column": 13,
6009
+ "index": 5999
5974
6010
  }
5975
6011
  },
5976
6012
  "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
5977
6013
  },
5978
6014
  {
5979
- "token": "euiColumnSortingDraggable.dragHandleAriaLabel",
5980
- "defString": "Drag handle",
6015
+ "token": "euiColumnSorting.button",
6016
+ "defString": "Sort fields",
5981
6017
  "highlighting": "string",
5982
6018
  "loc": {
5983
6019
  "start": {
5984
- "line": 71,
6020
+ "line": 66,
5985
6021
  "column": 30,
5986
- "index": 2323
6022
+ "index": 2120
5987
6023
  },
5988
6024
  "end": {
5989
- "line": 74,
5990
- "column": 3,
5991
- "index": 2409
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
5992
6046
  }
5993
6047
  },
5994
- "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
6048
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
5995
6049
  },
5996
6050
  {
5997
- "token": "euiColumnSortingDraggable.activeSortLabel",
5998
- "defString": "{display} is sorting this data grid",
6051
+ "token": "euiColumnSorting.emptySorting",
6052
+ "defString": "Currently no fields are sorted",
5999
6053
  "highlighting": "string",
6000
6054
  "loc": {
6001
6055
  "start": {
6002
- "line": 120,
6056
+ "line": 220,
6003
6057
  "column": 14,
6004
- "index": 3759
6058
+ "index": 6937
6005
6059
  },
6006
6060
  "end": {
6007
- "line": 124,
6008
- "column": 15,
6009
- "index": 3948
6061
+ "line": 223,
6062
+ "column": 16,
6063
+ "index": 7073
6010
6064
  }
6011
6065
  },
6012
- "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
6066
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
6013
6067
  },
6014
6068
  {
6015
- "token": "euiColumnSortingDraggable.removeSortLabel",
6016
- "defString": "Remove {display} from data grid sort",
6069
+ "token": "euiColumnSorting.pickFields",
6070
+ "defString": "Pick fields to sort by",
6017
6071
  "highlighting": "string",
6018
6072
  "loc": {
6019
6073
  "start": {
6020
- "line": 130,
6021
- "column": 12,
6022
- "index": 4136
6074
+ "line": 253,
6075
+ "column": 24,
6076
+ "index": 8296
6023
6077
  },
6024
6078
  "end": {
6025
- "line": 134,
6026
- "column": 13,
6027
- "index": 4318
6079
+ "line": 256,
6080
+ "column": 26,
6081
+ "index": 8452
6028
6082
  }
6029
6083
  },
6030
- "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
6084
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
6031
6085
  },
6032
6086
  {
6033
- "token": "euiColumnSortingDraggable.toggleLegend",
6034
- "defString": "Select sorting method for {display}",
6087
+ "token": "euiColumnSorting.clearAll",
6088
+ "defString": "Clear sorting",
6035
6089
  "highlighting": "string",
6036
6090
  "loc": {
6037
6091
  "start": {
6038
- "line": 178,
6039
- "column": 12,
6040
- "index": 5821
6092
+ "line": 328,
6093
+ "column": 20,
6094
+ "index": 11806
6041
6095
  },
6042
6096
  "end": {
6043
- "line": 182,
6044
- "column": 13,
6045
- "index": 5999
6097
+ "line": 331,
6098
+ "column": 22,
6099
+ "index": 11939
6046
6100
  }
6047
6101
  },
6048
- "filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
6102
+ "filepath": "src/components/datagrid/controls/column_sorting.tsx"
6049
6103
  },
6050
6104
  {
6051
6105
  "token": "euiColumnSelector.dragHandleAriaLabel",
@@ -6467,233 +6521,35 @@
6467
6521
  "highlighting": "string",
6468
6522
  "loc": {
6469
6523
  "start": {
6470
- "line": 67,
6471
- "column": 11,
6472
- "index": 1714
6473
- },
6474
- "end": {
6475
- "line": 67,
6476
- "column": 68,
6477
- "index": 1771
6478
- }
6479
- },
6480
- "filepath": "src/components/card/card_select/card_select.tsx"
6481
- },
6482
- {
6483
- "token": "euiAccordionChildrenLoading.message",
6484
- "defString": "Loading",
6485
- "highlighting": "string",
6486
- "loc": {
6487
- "start": {
6488
- "line": 39,
6489
- "column": 12,
6490
- "index": 1176
6491
- },
6492
- "end": {
6493
- "line": 42,
6494
- "column": 14,
6495
- "index": 1289
6496
- }
6497
- },
6498
- "filepath": "src/components/accordion/accordion_children/accordion_children_loading.tsx"
6499
- },
6500
- {
6501
- "token": "euiRecentlyUsed.legend",
6502
- "defString": "Recently used date ranges",
6503
- "highlighting": "string",
6504
- "loc": {
6505
- "start": {
6506
- "line": 33,
6507
- "column": 16,
6508
- "index": 1123
6509
- },
6510
- "end": {
6511
- "line": 36,
6512
- "column": 3,
6513
- "index": 1200
6514
- }
6515
- },
6516
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/recently_used.tsx"
6517
- },
6518
- {
6519
- "token": "euiQuickSelectPopover.buttonLabel",
6520
- "defString": "Date quick select",
6521
- "highlighting": "string",
6522
- "loc": {
6523
- "start": {
6524
- "line": 103,
6525
- "column": 22,
6526
- "index": 3370
6527
- },
6528
- "end": {
6529
- "line": 106,
6530
- "column": 3,
6531
- "index": 3450
6532
- }
6533
- },
6534
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
6535
- },
6536
- {
6537
- "token": "euiQuickSelect.quickSelectTitle",
6538
- "defString": "Quick select",
6539
- "highlighting": "string",
6540
- "loc": {
6541
- "start": {
6542
- "line": 162,
6543
- "column": 10,
6544
- "index": 4691
6545
- },
6546
- "end": {
6547
- "line": 165,
6548
- "column": 12,
6549
- "index": 4799
6550
- }
6551
- },
6552
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6553
- },
6554
- {
6555
- "token": "euiQuickSelect.previousLabel",
6556
- "defString": "Previous time window",
6557
- "highlighting": "string",
6558
- "loc": {
6559
- "start": {
6560
- "line": 184,
6561
- "column": 12,
6562
- "index": 5381
6563
- },
6564
- "end": {
6565
- "line": 187,
6566
- "column": 13,
6567
- "index": 5499
6568
- }
6569
- },
6570
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6571
- },
6572
- {
6573
- "token": "euiQuickSelect.nextLabel",
6574
- "defString": "Next time window",
6575
- "highlighting": "string",
6576
- "loc": {
6577
- "start": {
6578
- "line": 200,
6579
- "column": 12,
6580
- "index": 5957
6581
- },
6582
- "end": {
6583
- "line": 203,
6584
- "column": 13,
6585
- "index": 6067
6586
- }
6587
- },
6588
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6589
- },
6590
- {
6591
- "token": "euiQuickSelect.tenseLabel",
6592
- "defString": "Time tense",
6593
- "highlighting": "string",
6594
- "loc": {
6595
- "start": {
6596
- "line": 218,
6597
- "column": 12,
6598
- "index": 6581
6599
- },
6600
- "end": {
6601
- "line": 218,
6602
- "column": 76,
6603
- "index": 6645
6604
- }
6605
- },
6606
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6607
- },
6608
- {
6609
- "token": "euiQuickSelect.valueLabel",
6610
- "defString": "Time value",
6611
- "highlighting": "string",
6612
- "loc": {
6613
- "start": {
6614
- "line": 233,
6615
- "column": 12,
6616
- "index": 7167
6617
- },
6618
- "end": {
6619
- "line": 233,
6620
- "column": 76,
6621
- "index": 7231
6622
- }
6623
- },
6624
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6625
- },
6626
- {
6627
- "token": "euiQuickSelect.unitLabel",
6628
- "defString": "Time unit",
6629
- "highlighting": "string",
6630
- "loc": {
6631
- "start": {
6632
- "line": 247,
6633
- "column": 12,
6634
- "index": 7713
6635
- },
6636
- "end": {
6637
- "line": 247,
6638
- "column": 74,
6639
- "index": 7775
6640
- }
6641
- },
6642
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6643
- },
6644
- {
6645
- "token": "euiQuickSelect.applyButton",
6646
- "defString": "Apply",
6647
- "highlighting": "string",
6648
- "loc": {
6649
- "start": {
6650
- "line": 270,
6651
- "column": 14,
6652
- "index": 8658
6653
- },
6654
- "end": {
6655
- "line": 270,
6656
- "column": 76,
6657
- "index": 8720
6658
- }
6659
- },
6660
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6661
- },
6662
- {
6663
- "token": "euiQuickSelect.fullDescription",
6664
- "defString": "Currently set to {timeTense} {timeValue} {timeUnit}.",
6665
- "highlighting": "string",
6666
- "loc": {
6667
- "start": {
6668
- "line": 276,
6669
- "column": 12,
6670
- "index": 8877
6524
+ "line": 67,
6525
+ "column": 11,
6526
+ "index": 1714
6671
6527
  },
6672
6528
  "end": {
6673
- "line": 284,
6674
- "column": 14,
6675
- "index": 9151
6529
+ "line": 67,
6530
+ "column": 68,
6531
+ "index": 1771
6676
6532
  }
6677
6533
  },
6678
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
6534
+ "filepath": "src/components/card/card_select/card_select.tsx"
6679
6535
  },
6680
6536
  {
6681
- "token": "euiCommonlyUsedTimeRanges.legend",
6682
- "defString": "Commonly used",
6537
+ "token": "euiAccordionChildrenLoading.message",
6538
+ "defString": "Loading",
6683
6539
  "highlighting": "string",
6684
6540
  "loc": {
6685
6541
  "start": {
6686
- "line": 27,
6687
- "column": 16,
6688
- "index": 995
6542
+ "line": 39,
6543
+ "column": 12,
6544
+ "index": 1176
6689
6545
  },
6690
6546
  "end": {
6691
- "line": 27,
6692
- "column": 79,
6693
- "index": 1058
6547
+ "line": 42,
6548
+ "column": 14,
6549
+ "index": 1289
6694
6550
  }
6695
6551
  },
6696
- "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
6552
+ "filepath": "src/components/accordion/accordion_children/accordion_children_loading.tsx"
6697
6553
  },
6698
6554
  {
6699
6555
  "token": "euiRelativeTab.numberInputLabel",
@@ -6701,14 +6557,14 @@
6701
6557
  "highlighting": "string",
6702
6558
  "loc": {
6703
6559
  "start": {
6704
- "line": 125,
6560
+ "line": 126,
6705
6561
  "column": 26,
6706
- "index": 3865
6562
+ "index": 3914
6707
6563
  },
6708
6564
  "end": {
6709
- "line": 128,
6565
+ "line": 129,
6710
6566
  "column": 3,
6711
- "index": 3942
6567
+ "index": 3991
6712
6568
  }
6713
6569
  },
6714
6570
  "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
@@ -6719,14 +6575,14 @@
6719
6575
  "highlighting": "string",
6720
6576
  "loc": {
6721
6577
  "start": {
6722
- "line": 129,
6578
+ "line": 130,
6723
6579
  "column": 27,
6724
- "index": 3971
6580
+ "index": 4020
6725
6581
  },
6726
6582
  "end": {
6727
- "line": 132,
6583
+ "line": 133,
6728
6584
  "column": 3,
6729
- "index": 4044
6585
+ "index": 4093
6730
6586
  }
6731
6587
  },
6732
6588
  "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
@@ -6737,14 +6593,14 @@
6737
6593
  "highlighting": "string",
6738
6594
  "loc": {
6739
6595
  "start": {
6740
- "line": 133,
6596
+ "line": 134,
6741
6597
  "column": 25,
6742
- "index": 4071
6598
+ "index": 4120
6743
6599
  },
6744
6600
  "end": {
6745
- "line": 136,
6601
+ "line": 137,
6746
6602
  "column": 3,
6747
- "index": 4151
6603
+ "index": 4200
6748
6604
  }
6749
6605
  },
6750
6606
  "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
@@ -6755,14 +6611,14 @@
6755
6611
  "highlighting": "string",
6756
6612
  "loc": {
6757
6613
  "start": {
6758
- "line": 137,
6614
+ "line": 138,
6759
6615
  "column": 30,
6760
- "index": 4183
6616
+ "index": 4232
6761
6617
  },
6762
6618
  "end": {
6763
- "line": 140,
6619
+ "line": 141,
6764
6620
  "column": 3,
6765
- "index": 4260
6621
+ "index": 4309
6766
6622
  }
6767
6623
  },
6768
6624
  "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
@@ -6773,14 +6629,14 @@
6773
6629
  "highlighting": "string",
6774
6630
  "loc": {
6775
6631
  "start": {
6776
- "line": 189,
6632
+ "line": 193,
6777
6633
  "column": 12,
6778
- "index": 5811
6634
+ "index": 5951
6779
6635
  },
6780
6636
  "end": {
6781
- "line": 193,
6637
+ "line": 197,
6782
6638
  "column": 14,
6783
- "index": 5992
6639
+ "index": 6132
6784
6640
  }
6785
6641
  },
6786
6642
  "filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
@@ -6971,14 +6827,14 @@
6971
6827
  "highlighting": "string",
6972
6828
  "loc": {
6973
6829
  "start": {
6974
- "line": 94,
6830
+ "line": 95,
6975
6831
  "column": 28,
6976
- "index": 2803
6832
+ "index": 2852
6977
6833
  },
6978
6834
  "end": {
6979
- "line": 97,
6835
+ "line": 98,
6980
6836
  "column": 3,
6981
- "index": 2879
6837
+ "index": 2928
6982
6838
  }
6983
6839
  },
6984
6840
  "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
@@ -6989,14 +6845,14 @@
6989
6845
  "highlighting": "string",
6990
6846
  "loc": {
6991
6847
  "start": {
6992
- "line": 98,
6848
+ "line": 99,
6993
6849
  "column": 26,
6994
- "index": 2907
6850
+ "index": 2956
6995
6851
  },
6996
6852
  "end": {
6997
- "line": 102,
6853
+ "line": 103,
6998
6854
  "column": 3,
6999
- "index": 3089
6855
+ "index": 3138
7000
6856
  }
7001
6857
  },
7002
6858
  "filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
@@ -7289,6 +7145,204 @@
7289
7145
  },
7290
7146
  "filepath": "src/components/datagrid/body/header/column_actions.tsx"
7291
7147
  },
7148
+ {
7149
+ "token": "euiRecentlyUsed.legend",
7150
+ "defString": "Recently used date ranges",
7151
+ "highlighting": "string",
7152
+ "loc": {
7153
+ "start": {
7154
+ "line": 33,
7155
+ "column": 16,
7156
+ "index": 1123
7157
+ },
7158
+ "end": {
7159
+ "line": 36,
7160
+ "column": 3,
7161
+ "index": 1200
7162
+ }
7163
+ },
7164
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/recently_used.tsx"
7165
+ },
7166
+ {
7167
+ "token": "euiQuickSelectPopover.buttonLabel",
7168
+ "defString": "Date quick select",
7169
+ "highlighting": "string",
7170
+ "loc": {
7171
+ "start": {
7172
+ "line": 103,
7173
+ "column": 22,
7174
+ "index": 3370
7175
+ },
7176
+ "end": {
7177
+ "line": 106,
7178
+ "column": 3,
7179
+ "index": 3450
7180
+ }
7181
+ },
7182
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
7183
+ },
7184
+ {
7185
+ "token": "euiQuickSelect.quickSelectTitle",
7186
+ "defString": "Quick select",
7187
+ "highlighting": "string",
7188
+ "loc": {
7189
+ "start": {
7190
+ "line": 162,
7191
+ "column": 10,
7192
+ "index": 4691
7193
+ },
7194
+ "end": {
7195
+ "line": 165,
7196
+ "column": 12,
7197
+ "index": 4799
7198
+ }
7199
+ },
7200
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7201
+ },
7202
+ {
7203
+ "token": "euiQuickSelect.previousLabel",
7204
+ "defString": "Previous time window",
7205
+ "highlighting": "string",
7206
+ "loc": {
7207
+ "start": {
7208
+ "line": 184,
7209
+ "column": 12,
7210
+ "index": 5381
7211
+ },
7212
+ "end": {
7213
+ "line": 187,
7214
+ "column": 13,
7215
+ "index": 5499
7216
+ }
7217
+ },
7218
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7219
+ },
7220
+ {
7221
+ "token": "euiQuickSelect.nextLabel",
7222
+ "defString": "Next time window",
7223
+ "highlighting": "string",
7224
+ "loc": {
7225
+ "start": {
7226
+ "line": 200,
7227
+ "column": 12,
7228
+ "index": 5957
7229
+ },
7230
+ "end": {
7231
+ "line": 203,
7232
+ "column": 13,
7233
+ "index": 6067
7234
+ }
7235
+ },
7236
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7237
+ },
7238
+ {
7239
+ "token": "euiQuickSelect.tenseLabel",
7240
+ "defString": "Time tense",
7241
+ "highlighting": "string",
7242
+ "loc": {
7243
+ "start": {
7244
+ "line": 218,
7245
+ "column": 12,
7246
+ "index": 6581
7247
+ },
7248
+ "end": {
7249
+ "line": 218,
7250
+ "column": 76,
7251
+ "index": 6645
7252
+ }
7253
+ },
7254
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7255
+ },
7256
+ {
7257
+ "token": "euiQuickSelect.valueLabel",
7258
+ "defString": "Time value",
7259
+ "highlighting": "string",
7260
+ "loc": {
7261
+ "start": {
7262
+ "line": 233,
7263
+ "column": 12,
7264
+ "index": 7167
7265
+ },
7266
+ "end": {
7267
+ "line": 233,
7268
+ "column": 76,
7269
+ "index": 7231
7270
+ }
7271
+ },
7272
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7273
+ },
7274
+ {
7275
+ "token": "euiQuickSelect.unitLabel",
7276
+ "defString": "Time unit",
7277
+ "highlighting": "string",
7278
+ "loc": {
7279
+ "start": {
7280
+ "line": 247,
7281
+ "column": 12,
7282
+ "index": 7713
7283
+ },
7284
+ "end": {
7285
+ "line": 247,
7286
+ "column": 74,
7287
+ "index": 7775
7288
+ }
7289
+ },
7290
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7291
+ },
7292
+ {
7293
+ "token": "euiQuickSelect.applyButton",
7294
+ "defString": "Apply",
7295
+ "highlighting": "string",
7296
+ "loc": {
7297
+ "start": {
7298
+ "line": 270,
7299
+ "column": 14,
7300
+ "index": 8658
7301
+ },
7302
+ "end": {
7303
+ "line": 270,
7304
+ "column": 76,
7305
+ "index": 8720
7306
+ }
7307
+ },
7308
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7309
+ },
7310
+ {
7311
+ "token": "euiQuickSelect.fullDescription",
7312
+ "defString": "Currently set to {timeTense} {timeValue} {timeUnit}.",
7313
+ "highlighting": "string",
7314
+ "loc": {
7315
+ "start": {
7316
+ "line": 276,
7317
+ "column": 12,
7318
+ "index": 8877
7319
+ },
7320
+ "end": {
7321
+ "line": 284,
7322
+ "column": 14,
7323
+ "index": 9151
7324
+ }
7325
+ },
7326
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
7327
+ },
7328
+ {
7329
+ "token": "euiCommonlyUsedTimeRanges.legend",
7330
+ "defString": "Commonly used",
7331
+ "highlighting": "string",
7332
+ "loc": {
7333
+ "start": {
7334
+ "line": 27,
7335
+ "column": 16,
7336
+ "index": 995
7337
+ },
7338
+ "end": {
7339
+ "line": 27,
7340
+ "column": 79,
7341
+ "index": 1058
7342
+ }
7343
+ },
7344
+ "filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
7345
+ },
7292
7346
  {
7293
7347
  "token": "euiDataGridCell.focusTrapExitPrompt",
7294
7348
  "defString": "Exited cell content.",