@elastic/eui 105.0.0-amsterdam.0 → 106.0.0-amsterdam.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 (233) hide show
  1. package/dist/eui_theme_amsterdam_dark.json +2 -0
  2. package/dist/eui_theme_amsterdam_dark.json.d.ts +2 -0
  3. package/dist/eui_theme_amsterdam_light.json +2 -0
  4. package/dist/eui_theme_amsterdam_light.json.d.ts +2 -0
  5. package/dist/eui_theme_borealis_dark.json +2 -0
  6. package/dist/eui_theme_borealis_dark.json.d.ts +2 -0
  7. package/dist/eui_theme_borealis_light.json +10 -8
  8. package/dist/eui_theme_borealis_light.json.d.ts +2 -0
  9. package/es/components/combo_box/combo_box_input/combo_box_input.js +65 -61
  10. package/es/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
  11. package/es/components/date_picker/date_picker.styles.js +4 -1
  12. package/es/components/date_picker/date_picker_range.js +3 -2
  13. package/es/components/date_picker/date_picker_range.styles.js +11 -4
  14. package/es/components/date_picker/super_date_picker/super_date_picker.styles.js +23 -14
  15. package/es/components/flyout/_flyout_close_button.styles.js +10 -1
  16. package/es/components/flyout/flyout_child.js +8 -3
  17. package/es/components/flyout/flyout_child.styles.js +3 -2
  18. package/es/components/flyout/sessions/flyout_provider.js +7 -21
  19. package/es/components/flyout/sessions/flyout_reducer.js +5 -26
  20. package/es/components/flyout/sessions/use_eui_flyout.js +21 -10
  21. package/es/components/form/field_number/field_number.styles.js +4 -1
  22. package/es/components/form/field_text/field_text.styles.js +4 -1
  23. package/es/components/form/file_picker/file_picker.js +107 -101
  24. package/es/components/form/file_picker/file_picker.styles.js +18 -17
  25. package/es/components/form/form.styles.js +72 -22
  26. package/es/components/form/form_control_layout/form_control_layout.styles.js +28 -17
  27. package/es/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
  28. package/es/components/form/form_control_layout/form_control_layout_delimited.js +10 -7
  29. package/es/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -29
  30. package/es/components/form/form_control_layout/form_control_layout_icons.js +35 -20
  31. package/es/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
  32. package/es/components/form/form_error_text/form_error_text.styles.js +3 -1
  33. package/es/components/form/form_label/form_label.styles.js +4 -2
  34. package/es/components/header/header.styles.js +5 -3
  35. package/es/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
  36. package/es/components/progress/progress.a11y.js +7 -7
  37. package/es/components/progress/progress.js +18 -27
  38. package/es/components/selectable/selectable_templates/selectable_template_sitewide.js +59 -23
  39. package/es/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +8 -2
  40. package/es/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +63 -0
  41. package/es/global_styling/mixins/_button.js +1 -1
  42. package/es/services/color/eui_palettes.js +26 -0
  43. package/es/services/color/vis_color_store.js +1 -1
  44. package/es/services/color/visualization_colors.js +4 -0
  45. package/es/services/theme/provider.js +13 -6
  46. package/es/themes/amsterdam/global_styling/variables/_colors.js +8 -3
  47. package/es/themes/amsterdam/global_styling/variables/_forms.js +96 -53
  48. package/es/themes/amsterdam/theme.js +2 -1
  49. package/es/themes/json/eui_theme_amsterdam_dark.json +2 -0
  50. package/es/themes/json/eui_theme_amsterdam_light.json +2 -0
  51. package/es/themes/json/eui_theme_borealis_dark.json +2 -0
  52. package/es/themes/json/eui_theme_borealis_light.json +10 -8
  53. package/eui.d.ts +461 -376
  54. package/i18ntokens.json +3595 -3523
  55. package/lib/components/combo_box/combo_box_input/combo_box_input.js +64 -60
  56. package/lib/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
  57. package/lib/components/date_picker/date_picker.styles.js +4 -1
  58. package/lib/components/date_picker/date_picker_range.js +3 -2
  59. package/lib/components/date_picker/date_picker_range.styles.js +11 -4
  60. package/lib/components/date_picker/super_date_picker/super_date_picker.styles.js +21 -12
  61. package/lib/components/flyout/_flyout_close_button.styles.js +10 -3
  62. package/lib/components/flyout/flyout_child.js +8 -3
  63. package/lib/components/flyout/flyout_child.styles.js +3 -2
  64. package/lib/components/flyout/sessions/flyout_provider.js +7 -21
  65. package/lib/components/flyout/sessions/flyout_reducer.js +5 -26
  66. package/lib/components/flyout/sessions/use_eui_flyout.js +21 -10
  67. package/lib/components/form/field_number/field_number.styles.js +4 -1
  68. package/lib/components/form/field_text/field_text.styles.js +4 -1
  69. package/lib/components/form/file_picker/file_picker.js +106 -100
  70. package/lib/components/form/file_picker/file_picker.styles.js +16 -15
  71. package/lib/components/form/form.styles.js +72 -22
  72. package/lib/components/form/form_control_layout/form_control_layout.styles.js +28 -17
  73. package/lib/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
  74. package/lib/components/form/form_control_layout/form_control_layout_delimited.js +9 -6
  75. package/lib/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -27
  76. package/lib/components/form/form_control_layout/form_control_layout_icons.js +34 -19
  77. package/lib/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
  78. package/lib/components/form/form_error_text/form_error_text.styles.js +3 -1
  79. package/lib/components/form/form_label/form_label.styles.js +4 -2
  80. package/lib/components/header/header.styles.js +4 -2
  81. package/lib/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
  82. package/lib/components/progress/progress.a11y.js +7 -7
  83. package/lib/components/progress/progress.js +18 -27
  84. package/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +57 -21
  85. package/lib/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +9 -3
  86. package/lib/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +69 -0
  87. package/lib/global_styling/mixins/_button.js +1 -1
  88. package/lib/services/color/eui_palettes.js +26 -0
  89. package/lib/services/color/vis_color_store.js +1 -1
  90. package/lib/services/color/visualization_colors.js +3 -0
  91. package/lib/services/theme/provider.js +13 -6
  92. package/lib/themes/amsterdam/global_styling/variables/_colors.js +8 -3
  93. package/lib/themes/amsterdam/global_styling/variables/_forms.js +96 -53
  94. package/lib/themes/amsterdam/theme.js +2 -1
  95. package/lib/themes/json/eui_theme_amsterdam_dark.json +2 -0
  96. package/lib/themes/json/eui_theme_amsterdam_light.json +2 -0
  97. package/lib/themes/json/eui_theme_borealis_dark.json +2 -0
  98. package/lib/themes/json/eui_theme_borealis_light.json +10 -8
  99. package/optimize/es/components/combo_box/combo_box_input/combo_box_input.js +65 -61
  100. package/optimize/es/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
  101. package/optimize/es/components/date_picker/date_picker.styles.js +4 -1
  102. package/optimize/es/components/date_picker/date_picker_range.js +3 -2
  103. package/optimize/es/components/date_picker/date_picker_range.styles.js +11 -4
  104. package/optimize/es/components/date_picker/super_date_picker/super_date_picker.styles.js +23 -14
  105. package/optimize/es/components/flyout/_flyout_close_button.styles.js +10 -1
  106. package/optimize/es/components/flyout/flyout_child.js +4 -3
  107. package/optimize/es/components/flyout/flyout_child.styles.js +3 -2
  108. package/optimize/es/components/flyout/sessions/flyout_provider.js +7 -21
  109. package/optimize/es/components/flyout/sessions/flyout_reducer.js +5 -26
  110. package/optimize/es/components/flyout/sessions/use_eui_flyout.js +21 -10
  111. package/optimize/es/components/form/field_number/field_number.styles.js +4 -1
  112. package/optimize/es/components/form/field_text/field_text.styles.js +4 -1
  113. package/optimize/es/components/form/file_picker/file_picker.js +107 -101
  114. package/optimize/es/components/form/file_picker/file_picker.styles.js +18 -17
  115. package/optimize/es/components/form/form.styles.js +72 -22
  116. package/optimize/es/components/form/form_control_layout/form_control_layout.styles.js +28 -17
  117. package/optimize/es/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
  118. package/optimize/es/components/form/form_control_layout/form_control_layout_delimited.js +10 -7
  119. package/optimize/es/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -29
  120. package/optimize/es/components/form/form_control_layout/form_control_layout_icons.js +35 -20
  121. package/optimize/es/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
  122. package/optimize/es/components/form/form_error_text/form_error_text.styles.js +3 -1
  123. package/optimize/es/components/form/form_label/form_label.styles.js +4 -2
  124. package/optimize/es/components/header/header.styles.js +5 -3
  125. package/optimize/es/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
  126. package/optimize/es/components/progress/progress.a11y.js +7 -7
  127. package/optimize/es/components/progress/progress.js +18 -27
  128. package/optimize/es/components/selectable/selectable_templates/selectable_template_sitewide.js +47 -22
  129. package/optimize/es/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +8 -2
  130. package/optimize/es/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +52 -0
  131. package/optimize/es/global_styling/mixins/_button.js +1 -1
  132. package/optimize/es/services/color/eui_palettes.js +26 -0
  133. package/optimize/es/services/color/vis_color_store.js +1 -1
  134. package/optimize/es/services/color/visualization_colors.js +4 -0
  135. package/optimize/es/services/theme/provider.js +13 -6
  136. package/optimize/es/themes/amsterdam/global_styling/variables/_colors.js +8 -3
  137. package/optimize/es/themes/amsterdam/global_styling/variables/_forms.js +96 -53
  138. package/optimize/es/themes/amsterdam/theme.js +2 -1
  139. package/optimize/es/themes/json/eui_theme_amsterdam_dark.json +2 -0
  140. package/optimize/es/themes/json/eui_theme_amsterdam_light.json +2 -0
  141. package/optimize/es/themes/json/eui_theme_borealis_dark.json +2 -0
  142. package/optimize/es/themes/json/eui_theme_borealis_light.json +10 -8
  143. package/optimize/lib/components/combo_box/combo_box_input/combo_box_input.js +64 -60
  144. package/optimize/lib/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
  145. package/optimize/lib/components/date_picker/date_picker.styles.js +4 -1
  146. package/optimize/lib/components/date_picker/date_picker_range.js +3 -2
  147. package/optimize/lib/components/date_picker/date_picker_range.styles.js +11 -4
  148. package/optimize/lib/components/date_picker/super_date_picker/super_date_picker.styles.js +21 -12
  149. package/optimize/lib/components/flyout/_flyout_close_button.styles.js +10 -3
  150. package/optimize/lib/components/flyout/flyout_child.js +4 -3
  151. package/optimize/lib/components/flyout/flyout_child.styles.js +3 -2
  152. package/optimize/lib/components/flyout/sessions/flyout_provider.js +7 -21
  153. package/optimize/lib/components/flyout/sessions/flyout_reducer.js +5 -26
  154. package/optimize/lib/components/flyout/sessions/use_eui_flyout.js +21 -10
  155. package/optimize/lib/components/form/field_number/field_number.styles.js +4 -1
  156. package/optimize/lib/components/form/field_text/field_text.styles.js +4 -1
  157. package/optimize/lib/components/form/file_picker/file_picker.js +106 -100
  158. package/optimize/lib/components/form/file_picker/file_picker.styles.js +16 -15
  159. package/optimize/lib/components/form/form.styles.js +72 -22
  160. package/optimize/lib/components/form/form_control_layout/form_control_layout.styles.js +28 -17
  161. package/optimize/lib/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
  162. package/optimize/lib/components/form/form_control_layout/form_control_layout_delimited.js +9 -6
  163. package/optimize/lib/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -27
  164. package/optimize/lib/components/form/form_control_layout/form_control_layout_icons.js +34 -19
  165. package/optimize/lib/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
  166. package/optimize/lib/components/form/form_error_text/form_error_text.styles.js +3 -1
  167. package/optimize/lib/components/form/form_label/form_label.styles.js +4 -2
  168. package/optimize/lib/components/header/header.styles.js +4 -2
  169. package/optimize/lib/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
  170. package/optimize/lib/components/progress/progress.a11y.js +7 -7
  171. package/optimize/lib/components/progress/progress.js +18 -27
  172. package/optimize/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +45 -20
  173. package/optimize/lib/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +9 -3
  174. package/optimize/lib/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +58 -0
  175. package/optimize/lib/global_styling/mixins/_button.js +1 -1
  176. package/optimize/lib/services/color/eui_palettes.js +26 -0
  177. package/optimize/lib/services/color/vis_color_store.js +1 -1
  178. package/optimize/lib/services/color/visualization_colors.js +3 -0
  179. package/optimize/lib/services/theme/provider.js +13 -6
  180. package/optimize/lib/themes/amsterdam/global_styling/variables/_colors.js +8 -3
  181. package/optimize/lib/themes/amsterdam/global_styling/variables/_forms.js +96 -53
  182. package/optimize/lib/themes/amsterdam/theme.js +2 -1
  183. package/optimize/lib/themes/json/eui_theme_amsterdam_dark.json +2 -0
  184. package/optimize/lib/themes/json/eui_theme_amsterdam_light.json +2 -0
  185. package/optimize/lib/themes/json/eui_theme_borealis_dark.json +2 -0
  186. package/optimize/lib/themes/json/eui_theme_borealis_light.json +10 -8
  187. package/package.json +12 -10
  188. package/src/themes/amsterdam/_colors_dark.scss +3 -0
  189. package/src/themes/amsterdam/_colors_light.scss +3 -0
  190. package/test-env/components/combo_box/combo_box_input/combo_box_input.js +64 -60
  191. package/test-env/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
  192. package/test-env/components/date_picker/date_picker.styles.js +4 -1
  193. package/test-env/components/date_picker/date_picker_range.js +3 -2
  194. package/test-env/components/date_picker/date_picker_range.styles.js +11 -4
  195. package/test-env/components/date_picker/super_date_picker/super_date_picker.styles.js +21 -12
  196. package/test-env/components/flyout/_flyout_close_button.styles.js +10 -3
  197. package/test-env/components/flyout/flyout_child.js +8 -3
  198. package/test-env/components/flyout/flyout_child.styles.js +3 -2
  199. package/test-env/components/flyout/sessions/flyout_provider.js +7 -21
  200. package/test-env/components/flyout/sessions/flyout_reducer.js +5 -26
  201. package/test-env/components/flyout/sessions/use_eui_flyout.js +21 -10
  202. package/test-env/components/form/field_number/field_number.styles.js +4 -1
  203. package/test-env/components/form/field_text/field_text.styles.js +4 -1
  204. package/test-env/components/form/file_picker/file_picker.js +106 -100
  205. package/test-env/components/form/file_picker/file_picker.styles.js +16 -15
  206. package/test-env/components/form/form.styles.js +72 -22
  207. package/test-env/components/form/form_control_layout/form_control_layout.styles.js +28 -17
  208. package/test-env/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
  209. package/test-env/components/form/form_control_layout/form_control_layout_delimited.js +9 -6
  210. package/test-env/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -27
  211. package/test-env/components/form/form_control_layout/form_control_layout_icons.js +34 -19
  212. package/test-env/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
  213. package/test-env/components/form/form_error_text/form_error_text.styles.js +3 -1
  214. package/test-env/components/form/form_label/form_label.styles.js +4 -2
  215. package/test-env/components/header/header.styles.js +4 -2
  216. package/test-env/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
  217. package/test-env/components/progress/progress.a11y.js +7 -7
  218. package/test-env/components/progress/progress.js +18 -27
  219. package/test-env/components/selectable/selectable_templates/selectable_template_sitewide.js +57 -21
  220. package/test-env/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +9 -3
  221. package/test-env/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +68 -0
  222. package/test-env/global_styling/mixins/_button.js +1 -1
  223. package/test-env/services/color/eui_palettes.js +26 -0
  224. package/test-env/services/color/vis_color_store.js +1 -1
  225. package/test-env/services/color/visualization_colors.js +3 -0
  226. package/test-env/services/theme/provider.js +13 -6
  227. package/test-env/themes/amsterdam/global_styling/variables/_colors.js +8 -3
  228. package/test-env/themes/amsterdam/global_styling/variables/_forms.js +96 -53
  229. package/test-env/themes/amsterdam/theme.js +2 -1
  230. package/test-env/themes/json/eui_theme_amsterdam_dark.json +2 -0
  231. package/test-env/themes/json/eui_theme_amsterdam_light.json +2 -0
  232. package/test-env/themes/json/eui_theme_borealis_dark.json +2 -0
  233. package/test-env/themes/json/eui_theme_borealis_light.json +10 -8
package/eui.d.ts CHANGED
@@ -559,6 +559,8 @@ declare module '@elastic/eui/src/services/color/eui_palettes' {
559
559
  };
560
560
  export type EuiPaletteColorBlindProps = EuiPaletteCommonProps & EuiPaletteRotationProps;
561
561
  /**
562
+ * For usage in React use the `useEuiPaletteColorBlind` hook instead.
563
+ *
562
564
  * NOTE: These functions rely on base vis colors of the theme which are provided via a global
563
565
  * singleton instance `EUI_VIS_COLOR_STORE` that's updated by the EuiProvider on theme change.
564
566
  * Make sure the function is recalled on theme change to retrieve theme-related colors.
@@ -568,6 +570,8 @@ declare module '@elastic/eui/src/services/color/eui_palettes' {
568
570
  */
569
571
  export const euiPaletteColorBlind: ({ rotations, order, direction, sortBy, sortShift, colors, }?: EuiPaletteColorBlindProps) => EuiPalette;
570
572
  /**
573
+ * For usage in React use the `useEuiPaletteColorBlindBehindText` hook instead.
574
+ *
571
575
  * Color blind palette with text is meant for use when text is applied on top of the color.
572
576
  * It increases the brightness of the color to give the text more contrast.
573
577
  *
@@ -590,56 +594,78 @@ declare module '@elastic/eui/src/services/color/eui_palettes' {
590
594
  */
591
595
  export const euiPaletteForDarkBackground: ({ colors, }?: EuiPaletteCommonProps) => EuiPalette;
592
596
  /**
597
+ * For usage in React use the `useEuiPaletteForStatus` hook instead.
598
+ *
593
599
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
594
600
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
595
601
  */
596
602
  export const euiPaletteForStatus: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
597
603
  /**
604
+ * For usage in React use the `useEuiPaletteForTemperature` hook instead.
605
+ *
598
606
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
599
607
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
600
608
  */
601
609
  export const euiPaletteForTemperature: (steps: any, { colors, hasVisColorAdjustment }?: EuiPaletteCommonProps) => EuiPalette;
602
610
  /**
611
+ * For usage in React use the `useEuiPaletteComplementary` hook instead.
612
+ *
603
613
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
604
614
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
605
615
  */
606
616
  export const euiPaletteComplementary: (steps: number, { colors, hasVisColorAdjustment }?: EuiPaletteCommonProps) => EuiPalette;
607
617
  /**
618
+ * For usage in React use the `useEuiPaletteRed` hook instead.
619
+ *
608
620
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
609
621
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
610
622
  */
611
623
  export const euiPaletteRed: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
612
624
  /**
625
+ * For usage in React use the `useEuiPaletteGreen` hook instead.
626
+ *
613
627
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
614
628
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
615
629
  */
616
630
  export const euiPaletteGreen: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
617
631
  /**
632
+ * For usage in React use the `useEuiPaletteSkyBlue` hook instead.
633
+ *
618
634
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
619
635
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
620
636
  */
621
637
  export const euiPaletteSkyBlue: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
622
638
  /**
639
+ * For usage in React use the `useEuiPaletteYellow` hook instead.
640
+ *
623
641
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
624
642
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
625
643
  */
626
644
  export const euiPaletteYellow: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
627
645
  /**
646
+ * For usage in React use the `useEuiPaletteOrange` hook instead.
647
+ *
628
648
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
629
649
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
630
650
  */
631
651
  export const euiPaletteOrange: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
632
652
  /**
653
+ * For usage in React use the `useEuiPaletteCool` hook instead.
654
+ *
633
655
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
634
656
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
635
657
  */
636
658
  export const euiPaletteCool: (steps: number, { colors, hasVisColorAdjustment }?: EuiPaletteCommonProps) => EuiPalette;
637
659
  /**
660
+ * For usage in React use the `useEuiPaletteWarm` hook instead.
661
+ *
638
662
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
639
663
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
640
664
  */
641
665
  export const euiPaletteWarm: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
642
666
  /**
667
+ * For usage in React use the `useEuiPaletteGray` hook instead.
668
+ *
643
669
  * NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
644
670
  * EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
645
671
  */
@@ -647,7 +673,9 @@ declare module '@elastic/eui/src/services/color/eui_palettes' {
647
673
 
648
674
  }
649
675
  declare module '@elastic/eui/src/services/color/visualization_colors' {
676
+ /** @deprecated - use the data vis colors on `euiTheme.colors.vis` instead */
650
677
  export const VISUALIZATION_COLORS: import ("@elastic/eui/src/services/color/eui_palettes").EuiPalette;
678
+ /** @deprecated - use the data vis colors on `euiTheme.colors.vis` instead */
651
679
  export const DEFAULT_VISUALIZATION_COLOR: string;
652
680
 
653
681
  }
@@ -1019,7 +1047,7 @@ declare module '@elastic/eui/src/global_styling/mixins/_button' {
1019
1047
  minWidth: number;
1020
1048
  height: string;
1021
1049
  radius: import("csstype").Property.BorderRadius<string | number> | undefined;
1022
- fontScale: "xs";
1050
+ fontScale: "s" | "xs";
1023
1051
  };
1024
1052
  s: {
1025
1053
  minWidth: number;
@@ -3970,6 +3998,10 @@ declare module '@elastic/eui/src/components/form/form.styles' {
3970
3998
  backgroundDisabledColor: string;
3971
3999
  backgroundReadOnlyColor: string;
3972
4000
  borderColor: string;
4001
+ borderHovered: string;
4002
+ borderFocused: string;
4003
+ borderInvalid: string;
4004
+ borderInvalidHovered: string;
3973
4005
  controlDisabledColor: string;
3974
4006
  controlBoxShadow: string;
3975
4007
  controlPlaceholderText: string;
@@ -3979,7 +4011,7 @@ declare module '@elastic/eui/src/components/form/form.styles' {
3979
4011
  controlCompressedHeight: string;
3980
4012
  controlPadding: string;
3981
4013
  controlCompressedPadding: string;
3982
- controlBorderRadius: import("csstype").Property.BorderRadius<string | number> | undefined;
4014
+ controlBorderRadius: string | number | undefined;
3983
4015
  controlCompressedBorderRadius: import("csstype").Property.BorderRadius<string | number> | undefined;
3984
4016
  iconAffordance: string;
3985
4017
  iconCompressedAffordance: string;
@@ -4005,12 +4037,15 @@ declare module '@elastic/eui/src/components/form/form.styles' {
4005
4037
  withBackgroundColor?: boolean;
4006
4038
  withBackgroundAnimation?: boolean;
4007
4039
  }) => string;
4040
+ export const disableFormControlHoverStyles: () => string;
4041
+ export const euiFormControlHoverStyles: (euiThemeContext: UseEuiTheme) => string;
4042
+ export const euiFormControlHighlightBorderStyles = "\n position: relative;\n z-index: 1;\n box-shadow: none;\n outline: var(--euiFormControlStateWidth) solid var(--euiFormControlStateColor);\n outline-offset: calc(-1 * var(--euiFormControlStateWidth));\n";
4008
4043
  export const euiFormControlFocusStyles: (euiThemeContext: UseEuiTheme) => string;
4009
4044
  export const euiFormControlInvalidStyles: (euiThemeContext: UseEuiTheme) => string;
4010
4045
  export const euiFormControlDisabledStyles: (euiThemeContext: UseEuiTheme) => string;
4011
4046
  export const euiFormControlReadOnlyStyles: (euiThemeContext: UseEuiTheme) => string;
4012
4047
  export const euiFormControlAutoFillStyles: (euiThemeContext: UseEuiTheme) => string;
4013
- export const euiFormControlShowBackgroundUnderline: (euiThemeContext: UseEuiTheme, color: string) => string;
4048
+ export const euiFormControlShowBackgroundLine: (euiThemeContext: UseEuiTheme, color: string) => string;
4014
4049
  /**
4015
4050
  * Selection custom controls - checkboxes, radios, and switches
4016
4051
  */
@@ -6236,7 +6271,7 @@ declare module '@elastic/eui/src/components/form/eui_form_context' {
6236
6271
  }
6237
6272
  declare module '@elastic/eui/src/components/form/form_control_layout/form_control_layout_clear_button.styles' {
6238
6273
  import { UseEuiTheme } from '@elastic/eui/src/services';
6239
- export const EuiFormControlLayoutClearButtonStyles: ({ euiTheme, colorMode, highContrastMode, }: UseEuiTheme) => {
6274
+ export const EuiFormControlLayoutClearButtonStyles: (euiThemeContext: UseEuiTheme) => {
6240
6275
  euiFormControlLayoutClearButton: import("@emotion/react").SerializedStyles;
6241
6276
  size: {
6242
6277
  s: string;
@@ -6445,10 +6480,11 @@ declare module '@elastic/eui/src/components/form/form_control_layout/form_contro
6445
6480
  childrenWrapper: {
6446
6481
  delimited: import("@emotion/react").SerializedStyles;
6447
6482
  invalid: import("@emotion/react").SerializedStyles;
6483
+ readOnly: import("@emotion/react").SerializedStyles;
6448
6484
  };
6449
6485
  };
6450
- export const euiFormControlLayoutDelimited__delimiter: import("@emotion/react").SerializedStyles;
6451
- export const euiFormControlLayoutDelimited__input: import("@emotion/react").SerializedStyles;
6486
+ export const euiFormControlLayoutDelimited__delimiter: (euiThemeContext: UseEuiTheme) => import("@emotion/react").SerializedStyles;
6487
+ export const euiFormControlLayoutDelimited__input: (euiThemeContext: UseEuiTheme) => import("@emotion/react").SerializedStyles;
6452
6488
 
6453
6489
  }
6454
6490
  declare module '@elastic/eui/src/components/form/form_control_layout/form_control_layout_delimited' {
@@ -7126,9 +7162,17 @@ declare module '@elastic/eui/src/themes/amsterdam/global_styling/variables/_form
7126
7162
  backgroundReadOnly: any;
7127
7163
  backgroundFocused: any;
7128
7164
  backgroundAutofilled: string;
7165
+ backgroundDropping: string;
7129
7166
  prependBackground: string;
7130
7167
  border: string;
7168
+ borderDisabled: string;
7169
+ borderFocused: any;
7170
+ borderInvalid: any;
7171
+ borderHovered: string;
7172
+ borderInvalidHovered: any;
7131
7173
  borderAutofilled: string;
7174
+ borderAutofilledHovered: string;
7175
+ clearButtonBackground: any;
7132
7176
  controlBorder: string;
7133
7177
  controlBorderSelected: string;
7134
7178
  controlBorderDisabled: string;
@@ -7144,12 +7188,20 @@ declare module '@elastic/eui/src/themes/amsterdam/global_styling/variables/_form
7144
7188
  backgroundAutofilled: string;
7145
7189
  prependBackground: string;
7146
7190
  border: string;
7191
+ clearButtonBackground: any;
7147
7192
  controlBorder: string;
7148
7193
  controlBorderSelected: string;
7149
7194
  controlBorderDisabled: string;
7150
7195
  backgroundDisabled: string;
7151
7196
  backgroundReadOnly: any;
7197
+ backgroundDropping: string;
7198
+ borderDisabled: string;
7199
+ borderFocused: any;
7200
+ borderInvalid: any;
7201
+ borderHovered: string;
7202
+ borderInvalidHovered: any;
7152
7203
  borderAutofilled: string;
7204
+ borderAutofilledHovered: string;
7153
7205
  controlBackgroundUnselected: any;
7154
7206
  controlBackgroundDisabled: any;
7155
7207
  colorHasPlaceholder: string;
@@ -11858,11 +11910,12 @@ declare module '@elastic/eui/src/components/flyout/flyout_child.styles' {
11858
11910
  import { UseEuiTheme } from '@elastic/eui/src/services';
11859
11911
  export const euiFlyoutChildStyles: (euiThemeContext: UseEuiTheme) => {
11860
11912
  euiFlyoutChild: import("@emotion/react").SerializedStyles;
11913
+ backgroundDefault: import("@emotion/react").SerializedStyles;
11914
+ backgroundShaded: import("@emotion/react").SerializedStyles;
11861
11915
  sidePosition: import("@emotion/react").SerializedStyles;
11862
11916
  stackedPosition: import("@emotion/react").SerializedStyles;
11863
11917
  s: import("@emotion/react").SerializedStyles;
11864
11918
  m: import("@emotion/react").SerializedStyles;
11865
- closeButton: import("@emotion/react").SerializedStyles;
11866
11919
  overflow: {
11867
11920
  overflow: import("@emotion/react").SerializedStyles;
11868
11921
  wrapper: import("@emotion/react").SerializedStyles;
@@ -11959,6 +12012,7 @@ declare module '@elastic/eui/src/components/flyout/flyout_child' {
11959
12012
  * @default 's'
11960
12013
  */
11961
12014
  size?: 's' | 'm';
12015
+ backgroundStyle?: 'shaded' | 'default';
11962
12016
  /**
11963
12017
  * Children are implicitly part of FunctionComponent, but good to have if props type is standalone.
11964
12018
  */
@@ -12729,8 +12783,6 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
12729
12783
  isMainOpen: boolean;
12730
12784
  isChildOpen: boolean;
12731
12785
  config: EuiFlyoutSessionConfig;
12732
- mainOnUnmount?: () => void;
12733
- childOnUnmount?: () => void;
12734
12786
  meta?: FlyoutMeta;
12735
12787
  }
12736
12788
  /**
@@ -12745,15 +12797,12 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
12745
12797
  type: 'UPDATE_ACTIVE_FLYOUT_CONFIG';
12746
12798
  payload: {
12747
12799
  configChanges: Partial<EuiFlyoutSessionConfig>;
12748
- newMainOnUnmount?: () => void;
12749
- newChildOnUnmount?: () => void;
12750
12800
  };
12751
12801
  } | {
12752
12802
  type: 'OPEN_MAIN_FLYOUT';
12753
12803
  payload: {
12754
12804
  size: EuiFlyoutSize;
12755
12805
  flyoutProps?: Partial<Omit<EuiFlyoutProps, 'children'>>;
12756
- onUnmount?: () => void;
12757
12806
  meta?: FlyoutMeta;
12758
12807
  };
12759
12808
  } | {
@@ -12761,7 +12810,6 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
12761
12810
  payload: {
12762
12811
  size: 's' | 'm';
12763
12812
  flyoutProps?: Partial<Omit<EuiFlyoutChildProps, 'children'>>;
12764
- onUnmount?: () => void;
12765
12813
  meta?: FlyoutMeta;
12766
12814
  };
12767
12815
  } | {
@@ -12770,12 +12818,10 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
12770
12818
  main: {
12771
12819
  size: EuiFlyoutSize;
12772
12820
  flyoutProps?: Partial<Omit<EuiFlyoutProps, 'children'>>;
12773
- onUnmount?: () => void;
12774
12821
  };
12775
12822
  child: {
12776
12823
  size: 's' | 'm';
12777
12824
  flyoutProps?: Partial<Omit<EuiFlyoutChildProps, 'children'>>;
12778
- onUnmount?: () => void;
12779
12825
  };
12780
12826
  meta?: FlyoutMeta;
12781
12827
  };
@@ -12790,13 +12836,7 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
12790
12836
  * Flyout session context managed by `EuiFlyoutSessionProvider`, and passed to the `renderMainFlyoutContent` and `renderChildFlyoutContent` functions.
12791
12837
  */
12792
12838
  export interface EuiFlyoutSessionRenderContext<FlyoutMeta = unknown> {
12793
- flyoutProps: Partial<EuiFlyoutProps | EuiFlyoutChildProps>;
12794
- flyoutSize: EuiFlyoutProps['size'] | EuiFlyoutChildProps['size'];
12795
- flyoutType: 'main' | 'child';
12796
- dispatch: React.Dispatch<EuiFlyoutSessionAction<FlyoutMeta>>;
12797
12839
  activeFlyoutGroup: EuiFlyoutSessionGroup<FlyoutMeta> | null;
12798
- onCloseFlyout: () => void;
12799
- onCloseChildFlyout: () => void;
12800
12840
  meta?: FlyoutMeta;
12801
12841
  }
12802
12842
  /**
@@ -12804,6 +12844,7 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
12804
12844
  */
12805
12845
  export interface EuiFlyoutSessionProviderComponentProps<FlyoutMeta = any> {
12806
12846
  children: React.ReactNode;
12847
+ onUnmount?: () => void;
12807
12848
  renderMainFlyoutContent: (context: EuiFlyoutSessionRenderContext<FlyoutMeta>) => React.ReactNode;
12808
12849
  renderChildFlyoutContent?: (context: EuiFlyoutSessionRenderContext<FlyoutMeta>) => React.ReactNode;
12809
12850
  }
@@ -12829,6 +12870,7 @@ declare module '@elastic/eui/src/components/flyout/sessions/flyout_provider' {
12829
12870
  interface FlyoutSessionContextProps {
12830
12871
  state: EuiFlyoutSessionHistoryState;
12831
12872
  dispatch: React.Dispatch<EuiFlyoutSessionAction>;
12873
+ onUnmount?: EuiFlyoutSessionProviderComponentProps['onUnmount'];
12832
12874
  }
12833
12875
  /**
12834
12876
  * Accesses the state data and dispatch function from the context of EuiFlyoutSessionProvider
@@ -12858,7 +12900,6 @@ declare module '@elastic/eui/src/components/flyout/sessions/use_eui_flyout' {
12858
12900
  export interface EuiFlyoutSessionOpenMainOptions<Meta = unknown> {
12859
12901
  size: EuiFlyoutSize;
12860
12902
  flyoutProps?: EuiFlyoutSessionConfig['mainFlyoutProps'];
12861
- onUnmount?: () => void;
12862
12903
  meta?: Meta;
12863
12904
  }
12864
12905
  /**
@@ -12867,7 +12908,6 @@ declare module '@elastic/eui/src/components/flyout/sessions/use_eui_flyout' {
12867
12908
  export interface EuiFlyoutSessionOpenChildOptions<Meta = unknown> {
12868
12909
  size: 's' | 'm';
12869
12910
  flyoutProps?: EuiFlyoutSessionConfig['childFlyoutProps'];
12870
- onUnmount?: () => void;
12871
12911
  meta?: Meta;
12872
12912
  }
12873
12913
  /**
@@ -12877,35 +12917,35 @@ declare module '@elastic/eui/src/components/flyout/sessions/use_eui_flyout' {
12877
12917
  main: {
12878
12918
  size: EuiFlyoutSize;
12879
12919
  flyoutProps?: EuiFlyoutSessionConfig['mainFlyoutProps'];
12880
- onUnmount?: () => void;
12881
12920
  };
12882
12921
  child: {
12883
12922
  size: 's' | 'm';
12884
12923
  flyoutProps?: EuiFlyoutSessionConfig['childFlyoutProps'];
12885
- onUnmount?: () => void;
12886
12924
  };
12887
12925
  meta?: Meta;
12888
12926
  }
12889
- /**
12890
- * Hook for accessing the flyout API
12891
- */
12892
- export function useEuiFlyoutSession(): {
12927
+ export interface EuiFlyoutSessionApi {
12893
12928
  openFlyout: (options: EuiFlyoutSessionOpenMainOptions) => void;
12894
12929
  openChildFlyout: (options: EuiFlyoutSessionOpenChildOptions) => void;
12895
12930
  openFlyoutGroup: (options: EuiFlyoutSessionOpenGroupOptions) => void;
12896
12931
  closeChildFlyout: () => void;
12897
12932
  goBack: () => void;
12898
- canGoBack: boolean;
12933
+ clearHistory: () => void;
12899
12934
  isFlyoutOpen: boolean;
12900
12935
  isChildFlyoutOpen: boolean;
12901
- clearHistory: () => void;
12902
- };
12936
+ canGoBack: boolean;
12937
+ }
12938
+ /**
12939
+ * Hook for accessing the flyout API
12940
+ * @public
12941
+ */
12942
+ export function useEuiFlyoutSession(): EuiFlyoutSessionApi;
12903
12943
 
12904
12944
  }
12905
12945
  declare module '@elastic/eui/src/components/flyout/sessions' {
12906
12946
  export { EuiFlyoutSessionProvider, useEuiFlyoutSessionContext, } from '@elastic/eui/src/components/flyout/sessions/flyout_provider';
12907
12947
  export type { EuiFlyoutSessionConfig, EuiFlyoutSessionProviderComponentProps, EuiFlyoutSessionRenderContext, } from '@elastic/eui/src/components/flyout/sessions/types';
12908
- export { useEuiFlyoutSession, type EuiFlyoutSessionOpenChildOptions, type EuiFlyoutSessionOpenMainOptions, } from '@elastic/eui/src/components/flyout/sessions/use_eui_flyout';
12948
+ export { useEuiFlyoutSession, type EuiFlyoutSessionOpenChildOptions, type EuiFlyoutSessionOpenMainOptions, type EuiFlyoutSessionApi, } from '@elastic/eui/src/components/flyout/sessions/use_eui_flyout';
12909
12949
 
12910
12950
  }
12911
12951
  declare module '@elastic/eui/src/components/flyout' {
@@ -12922,7 +12962,7 @@ declare module '@elastic/eui/src/components/flyout' {
12922
12962
  export { EuiFlyoutResizable } from '@elastic/eui/src/components/flyout/flyout_resizable';
12923
12963
  export { EuiFlyoutChild } from '@elastic/eui/src/components/flyout/flyout_child';
12924
12964
  export type { EuiFlyoutChildProps } from '@elastic/eui/src/components/flyout/flyout_child';
12925
- export type { EuiFlyoutSessionConfig, EuiFlyoutSessionOpenChildOptions, EuiFlyoutSessionOpenMainOptions, EuiFlyoutSessionProviderComponentProps, EuiFlyoutSessionRenderContext, } from '@elastic/eui/src/components/flyout/sessions';
12965
+ export type { EuiFlyoutSessionConfig, EuiFlyoutSessionOpenChildOptions, EuiFlyoutSessionOpenMainOptions, EuiFlyoutSessionProviderComponentProps, EuiFlyoutSessionRenderContext, EuiFlyoutSessionApi, } from '@elastic/eui/src/components/flyout/sessions';
12926
12966
  export { EuiFlyoutSessionProvider, useEuiFlyoutSession } from '@elastic/eui/src/components/flyout/sessions';
12927
12967
 
12928
12968
  }
@@ -18637,7 +18677,7 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/async_
18637
18677
  }
18638
18678
  declare module '@elastic/eui/src/components/date_picker/date_picker_range.styles' {
18639
18679
  import { UseEuiTheme } from '@elastic/eui/src/services';
18640
- export const euiDatePickerRangeStyles: {
18680
+ export const euiDatePickerRangeStyles: (euiThemeContext: UseEuiTheme) => {
18641
18681
  euiDatePickerRange: import("@emotion/react").SerializedStyles;
18642
18682
  };
18643
18683
  export const euiDatePickerRangeInlineStyles: (euiThemeContext: UseEuiTheme) => {
@@ -23924,6 +23964,9 @@ declare module '@elastic/eui/src/components/selectable/selectable_templates/sele
23924
23964
  platform: import("@emotion/react").SerializedStyles;
23925
23965
  };
23926
23966
  };
23967
+ export const euiSelectableTemplateSitewidePopoverStyles: (euiThemeContext: UseEuiTheme) => {
23968
+ euiSelectableTemplateSitewide__popover: import("@emotion/react").SerializedStyles;
23969
+ };
23927
23970
 
23928
23971
  }
23929
23972
  declare module '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide_option' {
@@ -23975,13 +24018,32 @@ declare module '@elastic/eui/src/components/selectable/selectable_templates/sele
23975
24018
  export const euiSelectableTemplateSitewideFormatOptions: (options: EuiSelectableTemplateSitewideOption[], styles: ReturnType<typeof euiSelectableTemplateSitewideStyles>) => EuiSelectableTemplateSitewideOption[];
23976
24019
  export const euiSelectableTemplateSitewideRenderOptions: (option: EuiSelectableTemplateSitewideOption, searchValue: string) => React.JSX.Element;
23977
24020
 
24021
+ }
24022
+ declare module '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide_popover' {
24023
+ import { CSSProperties, FunctionComponent, ReactNode } from 'react';
24024
+ import { EuiPopoverProps } from '@elastic/eui/src/components/popover';
24025
+ import type { EuiSelectableTemplateSitewideProps } from '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide';
24026
+ type EuiSelectableTemplateSitewidePopoverProps = Partial<EuiPopoverProps> & {
24027
+ search: ReactNode;
24028
+ list: ReactNode;
24029
+ trigger?: ReactNode;
24030
+ title?: EuiSelectableTemplateSitewideProps['popoverTitle'];
24031
+ footer?: EuiSelectableTemplateSitewideProps['popoverFooter'];
24032
+ width: CSSProperties['width'];
24033
+ isOpen: boolean;
24034
+ };
24035
+ export const EuiSelectableTemplateSitewidePopover: FunctionComponent<EuiSelectableTemplateSitewidePopoverProps>;
24036
+ export {};
24037
+
23978
24038
  }
23979
24039
  declare module '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide' {
23980
24040
  import { FunctionComponent, ReactNode, CSSProperties, ReactElement } from 'react';
24041
+ import { EuiThemeColorMode } from '@elastic/eui/src/services';
23981
24042
  import { EuiBreakpointSize } from '@elastic/eui/src/services/breakpoint';
23982
24043
  import { Props as PopoverProps } from '@elastic/eui/src/components/popover/popover';
23983
24044
  import { EuiSelectableProps } from '@elastic/eui/src/components/selectable/selectable';
23984
24045
  import { EuiSelectableTemplateSitewideOption } from '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide_option';
24046
+ export type EuiSelectableTemplateSitewideTheme = 'default' | 'global' | EuiThemeColorMode;
23985
24047
  export type EuiSelectableTemplateSitewideProps = Partial<Omit<EuiSelectableProps<{
23986
24048
  [key: string]: any;
23987
24049
  }>, 'options'>> & {
@@ -24014,13 +24076,24 @@ declare module '@elastic/eui/src/components/selectable/selectable_templates/sele
24014
24076
  * If `undefined`, the `popoverButton` will always show (if provided)
24015
24077
  */
24016
24078
  popoverButtonBreakpoints?: EuiBreakpointSize[];
24079
+ /**
24080
+ * Manually sets the color mode for the search input and popover. It supports the common `colorMode`
24081
+ * values: `light`, `dark`, `inverse` and additionally `default` and `global`.
24082
+ *
24083
+ * `default` applies the local (nearest) context `colorMode`.
24084
+ * `global` applies the global context `colorMode`
24085
+ */
24086
+ colorModes?: {
24087
+ search: EuiSelectableTemplateSitewideTheme;
24088
+ popover: EuiSelectableTemplateSitewideTheme;
24089
+ };
24017
24090
  };
24018
24091
  export const EuiSelectableTemplateSitewide: FunctionComponent<EuiSelectableTemplateSitewideProps>;
24019
24092
 
24020
24093
  }
24021
24094
  declare module '@elastic/eui/src/components/selectable/selectable_templates' {
24022
24095
  export type { EuiSelectableTemplateSitewideProps } from '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide';
24023
- export { EuiSelectableTemplateSitewide } from '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide';
24096
+ export { type EuiSelectableTemplateSitewideTheme, EuiSelectableTemplateSitewide, } from '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide';
24024
24097
  export type { EuiSelectableTemplateSitewideOption, EuiSelectableTemplateSitewideMetaData, } from '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide_option';
24025
24098
  export { euiSelectableTemplateSitewideFormatOptions, euiSelectableTemplateSitewideRenderOptions, } from '@elastic/eui/src/components/selectable/selectable_templates/selectable_template_sitewide_option';
24026
24099
 
@@ -32255,6 +32328,8 @@ declare module '@elastic/eui/dist/eui_theme_amsterdam_dark.json' {
32255
32328
  euiColorBorderBaseFloating: string;
32256
32329
  euiColorBorderBaseFormsColorSwatch: string;
32257
32330
  euiColorBorderBaseFormsControl: string;
32331
+ euiColorBorderInteractiveFormsHoverPlain: string;
32332
+ euiColorBorderInteractiveFormsHoverDanger: string;
32258
32333
  euiColorBorderStrongPrimary: string;
32259
32334
  euiColorBorderStrongAccent: string;
32260
32335
  euiColorBorderStrongAccentSecondary: string;
@@ -32683,6 +32758,8 @@ declare module '@elastic/eui/dist/eui_theme_amsterdam_light.json' {
32683
32758
  euiColorBorderBaseFloating: string;
32684
32759
  euiColorBorderBaseFormsColorSwatch: string;
32685
32760
  euiColorBorderBaseFormsControl: string;
32761
+ euiColorBorderInteractiveFormsHoverPlain: string;
32762
+ euiColorBorderInteractiveFormsHoverDanger: string;
32686
32763
  euiColorBorderStrongPrimary: string;
32687
32764
  euiColorBorderStrongAccent: string;
32688
32765
  euiColorBorderStrongAccentSecondary: string;
@@ -33111,6 +33188,8 @@ declare module '@elastic/eui/dist/eui_theme_borealis_dark.json' {
33111
33188
  euiColorBorderBaseFloating: string;
33112
33189
  euiColorBorderBaseFormsColorSwatch: string;
33113
33190
  euiColorBorderBaseFormsControl: string;
33191
+ euiColorBorderInteractiveFormsHoverPlain: string;
33192
+ euiColorBorderInteractiveFormsHoverDanger: string;
33114
33193
  euiColorBorderStrongPrimary: string;
33115
33194
  euiColorBorderStrongAccent: string;
33116
33195
  euiColorBorderStrongAccentSecondary: string;
@@ -33539,6 +33618,8 @@ declare module '@elastic/eui/dist/eui_theme_borealis_light.json' {
33539
33618
  euiColorBorderBaseFloating: string;
33540
33619
  euiColorBorderBaseFormsColorSwatch: string;
33541
33620
  euiColorBorderBaseFormsControl: string;
33621
+ euiColorBorderInteractiveFormsHoverPlain: string;
33622
+ euiColorBorderInteractiveFormsHoverDanger: string;
33542
33623
  euiColorBorderStrongPrimary: string;
33543
33624
  euiColorBorderStrongAccent: string;
33544
33625
  euiColorBorderStrongAccentSecondary: string;
@@ -33561,227 +33642,194 @@ declare module '@loki/create-async-callback' {
33561
33642
 
33562
33643
  declare module '@elastic/eui' {
33563
33644
  export type EuiTokensObject = {
33564
- "euiAccordionChildrenLoading.message": any;
33565
- "euiBasicTable.noItemsMessage": any;
33566
- "euiBasicTable.tableCaptionWithPagination": any;
33567
- "euiBasicTable.tableAutoCaptionWithPagination": any;
33568
- "euiBasicTable.tableSimpleAutoCaptionWithPagination": any;
33569
- "euiBasicTable.tableAutoCaptionWithoutPagination": any;
33570
- "euiBasicTable.selectAllRows": any;
33571
- "euiBasicTable.deselectRows": any;
33572
- "euiBasicTable.selectThisRow": any;
33573
- "euiBasicTable.tablePagination": any;
33574
- "euiCollapsedItemActions.allActionsTooltip": any;
33575
- "euiCollapsedItemActions.allActions": any;
33576
- "euiCollapsedItemActions.allActionsDisabled": any;
33577
- "euiBottomBar.screenReaderHeading": any;
33578
- "euiBottomBar.customScreenReaderAnnouncement": any;
33579
- "euiBottomBar.screenReaderAnnouncement": any;
33580
- "euiBreadcrumb.popoverAriaLabel": any;
33581
- "euiBreadcrumb.collapsedBadge.ariaLabel": any;
33582
- "euiBreadcrumbs.nav.ariaLabel": any;
33583
- "euiCallOut.dismissAriaLabel": any;
33584
- "euiCardSelect.selected": any;
33585
- "euiCardSelect.unavailable": any;
33586
- "euiCardSelect.select": any;
33587
- "euiCodeBlockAnnotations.ariaLabel": any;
33588
- "euiCodeBlockCopy.copy": any;
33589
- "euiCodeBlockFullScreen.fullscreenCollapse": any;
33590
- "euiCodeBlockFullScreen.fullscreenExpand": any;
33591
- "euiCodeBlockFullScreen.ariaLabel": any;
33592
- "euiCodeBlock.label": any;
33593
- "euiCollapsibleNavKibanaSolution.switcherTitle": any;
33594
- "euiCollapsibleNavKibanaSolution.switcherAriaLabel": any;
33595
- "euiCollapsibleNavKibanaSolution.groupLabel": any;
33645
+ "euiTreeView.listNavigationInstructions": any;
33646
+ "euiTourStepIndicator.isActive": any;
33647
+ "euiTourStepIndicator.isComplete": any;
33648
+ "euiTourStepIndicator.isIncomplete": any;
33649
+ "euiTourStepIndicator.ariaLabel": any;
33650
+ "euiTourFooter.endTour": any;
33651
+ "euiTourFooter.skipTour": any;
33652
+ "euiTourFooter.closeTour": any;
33653
+ "euiIconTip.defaultAriaLabel": any;
33654
+ "euiToast.newNotification": any;
33655
+ "euiToast.notification": any;
33656
+ "euiToast.dismissToast": any;
33657
+ "euiGlobalToastList.clearAllToastsButtonAriaLabel": any;
33658
+ "euiGlobalToastList.clearAllToastsButtonDisplayText": any;
33659
+ "euiTableHeaderCell.titleTextWithDesc": any;
33660
+ "euiStepStrings.step": any;
33661
+ "euiStepStrings.simpleStep": any;
33662
+ "euiStepStrings.complete": any;
33663
+ "euiStepStrings.simpleComplete": any;
33664
+ "euiStepStrings.warning": any;
33665
+ "euiStepStrings.simpleWarning": any;
33666
+ "euiStepStrings.errors": any;
33667
+ "euiStepStrings.simpleErrors": any;
33668
+ "euiStepStrings.incomplete": any;
33669
+ "euiStepStrings.simpleIncomplete": any;
33670
+ "euiStepStrings.disabled": any;
33671
+ "euiStepStrings.simpleDisabled": any;
33672
+ "euiStepStrings.loading": any;
33673
+ "euiStepStrings.simpleLoading": any;
33674
+ "euiStepStrings.current": any;
33675
+ "euiStepStrings.simpleCurrent": any;
33676
+ "euiStat.loadingText": any;
33677
+ "euiSkeletonLoading.loadedAriaText": any;
33678
+ "euiSkeletonLoading.loadingAriaText": any;
33679
+ "euiSideNav.mobileToggleAriaLabel": any;
33680
+ "euiSelectable.loadingOptions": any;
33681
+ "euiSelectable.noMatchingOptions": any;
33682
+ "euiSelectable.noAvailableOptions": any;
33683
+ "euiSelectable.screenReaderInstructions": any;
33684
+ "euiSelectable.placeholderName": any;
33685
+ "euiSelectable.searchResults": any;
33686
+ "euiSearchBox.placeholder": any;
33687
+ "euiSearchBox.incrementalAriaLabel": any;
33688
+ "euiSearchBox.ariaLabel": any;
33689
+ "euiResizablePanel.toggleButtonAriaLabel": any;
33690
+ "euiResizableButton.horizontalResizerAriaLabel": any;
33691
+ "euiResizableButton.verticalResizerAriaLabel": any;
33692
+ "euiProgress.valueText": any;
33693
+ "euiPopover.screenReaderAnnouncement": any;
33694
+ "euiPaginationButtonArrow.firstPage": any;
33695
+ "euiPaginationButtonArrow.previousPage": any;
33696
+ "euiPaginationButtonArrow.nextPage": any;
33697
+ "euiPaginationButtonArrow.lastPage": any;
33698
+ "euiPaginationButton.longPageString": any;
33699
+ "euiPaginationButton.shortPageString": any;
33700
+ "euiPagination.pageOfTotalCompressed": any;
33701
+ "euiPagination.firstRangeAriaLabel": any;
33702
+ "euiPagination.lastRangeAriaLabel": any;
33703
+ "euiPagination.last": any;
33704
+ "euiPagination.page": any;
33705
+ "euiPagination.of": any;
33706
+ "euiPagination.collection": any;
33707
+ "euiPagination.fromEndLabel": any;
33708
+ "euiModal.closeModal": any;
33709
+ "euiMark.highlightStart": any;
33710
+ "euiMark.highlightEnd": any;
33711
+ "euiMarkdownEditorToolbar.editor": any;
33712
+ "euiMarkdownEditorToolbar.previewMarkdown": any;
33713
+ "euiMarkdownEditorFooter.uploadingFiles": any;
33714
+ "euiMarkdownEditorFooter.openUploadModal": any;
33715
+ "euiMarkdownEditorFooter.unsupportedFileType": any;
33716
+ "euiMarkdownEditorFooter.supportedFileTypes": any;
33717
+ "euiMarkdownEditorFooter.showSyntaxErrors": any;
33718
+ "euiMarkdownEditorFooter.showMarkdownHelp": any;
33719
+ "euiMarkdownEditorFooter.syntaxTitle": any;
33720
+ "euiMarkdownEditorFooter.errorsTitle": any;
33721
+ "euiMarkdownEditorFooter.mdSyntaxLink": any;
33722
+ "euiMarkdownEditorFooter.syntaxModalDescriptionPrefix": any;
33723
+ "euiMarkdownEditorFooter.syntaxModalDescriptionSuffix": any;
33724
+ "euiMarkdownEditorFooter.closeButton": any;
33725
+ "euiMarkdownEditorFooter.syntaxPopoverDescription": any;
33726
+ "euiLoadingStrings.ariaLabel": any;
33727
+ "euiExternalLinkIcon.newTarget.screenReaderOnlyText": any;
33728
+ "euiExternalLinkIcon.externalTarget.screenReaderOnlyText": any;
33729
+ "euiInlineEditForm.saveButtonAriaLabel": any;
33730
+ "euiInlineEditForm.cancelButtonAriaLabel": any;
33731
+ "euiInlineEditForm.inputKeyboardInstructions": any;
33732
+ "euiInlineEditForm.activateEditModeDescription": any;
33733
+ "euiImageButton.openFullScreen": any;
33734
+ "euiImageButton.closeFullScreen": any;
33735
+ "euiForm.addressFormErrors": any;
33736
+ "euiFilterButton.filterBadgeActiveAriaLabel": any;
33737
+ "euiFilterButton.filterBadgeAvailableAriaLabel": any;
33738
+ "euiFlyout.screenReaderModalDialog": any;
33739
+ "euiFlyout.screenReaderNonModalDialog": any;
33740
+ "euiFlyout.screenReaderFixedHeaders": any;
33741
+ "euiFlyoutCloseButton.ariaLabel": any;
33742
+ "euiErrorBoundary.error": any;
33743
+ "euiDataGrid.ariaLabel": any;
33744
+ "euiDataGrid.ariaLabelledBy": any;
33745
+ "euiDataGrid.screenReaderNotice": any;
33746
+ "euiComboBox.listboxAriaLabel": any;
33596
33747
  "euiCollapsibleNavBeta.ariaLabel": any;
33597
- "euiCollapsibleNavButton.ariaLabelExpand": any;
33598
- "euiCollapsibleNavButton.ariaLabelCollapse": any;
33599
- "euiCollapsibleNavButton.ariaLabelOpen": any;
33600
- "euiCollapsibleNavButton.ariaLabelClose": any;
33601
- "euiCollapsedNavButton.ariaLabelButtonIcon": any;
33748
+ "euiSaturation.ariaLabel": any;
33749
+ "euiSaturation.roleDescription": any;
33750
+ "euiSaturation.screenReaderInstructions": any;
33751
+ "euiHue.ariaValueText": any;
33752
+ "euiHue.ariaRoleDescription": any;
33753
+ "euiHue.label": any;
33602
33754
  "euiColorPickerSwatch.ariaLabel": any;
33603
33755
  "euiColorPicker.popoverLabel": any;
33604
33756
  "euiColorPicker.colorLabel": any;
33757
+ "euiColorPicker.selectedColorLabel": any;
33605
33758
  "euiColorPicker.colorErrorMessage": any;
33606
33759
  "euiColorPicker.transparent": any;
33607
33760
  "euiColorPicker.alphaLabel": any;
33608
33761
  "euiColorPicker.openLabel": any;
33609
33762
  "euiColorPicker.closeLabel": any;
33610
- "euiHue.label": any;
33611
- "euiSaturation.ariaLabel": any;
33612
- "euiSaturation.screenReaderInstructions": any;
33613
- "euiComboBoxPill.removeSelection": any;
33614
- "euiComboBoxOptionsList.loadingOptions": any;
33615
- "euiComboBoxOptionsList.delimiterMessage": any;
33616
- "euiComboBoxOptionsList.alreadyAdded": any;
33617
- "euiComboBoxOptionsList.createCustomOption": any;
33618
- "euiComboBoxOptionsList.noMatchingOptions": any;
33619
- "euiComboBoxOptionsList.noAvailableOptions": any;
33620
- "euiComboBoxOptionsList.allOptionsSelected": any;
33621
- "euiComboBox.listboxAriaLabel": any;
33622
- "euiDataGridCellActions.expandButtonTitle": any;
33623
- "euiDataGridCell.position": any;
33624
- "euiDataGridCell.expansionEnterPrompt": any;
33625
- "euiDataGridCell.focusTrapExitPrompt": any;
33626
- "euiDataGridCell.focusTrapEnterPrompt": any;
33627
- "euiDataGridHeaderCell.actionsButtonAriaLabel": any;
33628
- "euiDataGridHeaderCell.actionsEnterKeyInstructions": any;
33629
- "euiDataGridHeaderCell.actionsPopoverScreenReaderText": any;
33630
- "euiColumnActions.hideColumn": any;
33631
- "euiColumnActions.moveLeft": any;
33632
- "euiColumnActions.moveRight": any;
33633
- "euiColumnActions.unsort": any;
33634
- "euiColumnActions.sort": any;
33635
- "euiDataGridHeaderCell.sortedByAscendingSingle": any;
33636
- "euiDataGridHeaderCell.sortedByDescendingSingle": any;
33637
- "euiDataGridHeaderCell.sortedByAscendingFirst": any;
33638
- "euiDataGridHeaderCell.sortedByDescendingFirst": any;
33639
- "euiDataGridHeaderCell.sortedByAscendingMultiple": any;
33640
- "euiDataGridHeaderCell.sortedByDescendingMultiple": any;
33641
- "euiColumnSelector.dragHandleAriaLabel": any;
33642
- "euiColumnSelector.button": any;
33643
- "euiColumnSelector.search": any;
33644
- "euiColumnSelector.searchcolumns": any;
33645
- "euiColumnSelector.selectAll": any;
33646
- "euiColumnSelector.hideAll": any;
33647
- "euiColumnSortingDraggable.defaultSortAsc": any;
33648
- "euiColumnSortingDraggable.defaultSortDesc": any;
33649
- "euiColumnSortingDraggable.dragHandleAriaLabel": any;
33650
- "euiColumnSortingDraggable.activeSortLabel": any;
33651
- "euiColumnSortingDraggable.removeSortLabel": any;
33652
- "euiColumnSortingDraggable.toggleLegend": any;
33653
- "euiColumnSorting.button": any;
33654
- "euiColumnSorting.sortFieldAriaLabel": any;
33655
- "euiColumnSorting.emptySorting": any;
33656
- "euiColumnSorting.pickFields": any;
33657
- "euiColumnSorting.clearAll": any;
33658
- "euiDataGridToolbarControl.badgeAriaLabel": any;
33659
- "euiDisplaySelector.densityLabel": any;
33660
- "euiDisplaySelector.labelCompact": any;
33661
- "euiDisplaySelector.labelNormal": any;
33662
- "euiDisplaySelector.labelExpanded": any;
33663
- "euiDisplaySelector.rowHeightLabel": any;
33664
- "euiDisplaySelector.labelAuto": any;
33665
- "euiDisplaySelector.labelStatic": any;
33666
- "euiDisplaySelector.labelMax": any;
33667
- "euiDisplaySelector.buttonText": any;
33668
- "euiDisplaySelector.resetButtonText": any;
33669
- "euiFullscreenSelector.fullscreenButton": any;
33670
- "euiFullscreenSelector.fullscreenButtonActive": any;
33671
- "euiKeyboardShortcuts.title": any;
33672
- "euiKeyboardShortcuts.upArrowTitle": any;
33673
- "euiKeyboardShortcuts.upArrowDescription": any;
33674
- "euiKeyboardShortcuts.downArrowTitle": any;
33675
- "euiKeyboardShortcuts.downArrowDescription": any;
33676
- "euiKeyboardShortcuts.rightArrowTitle": any;
33677
- "euiKeyboardShortcuts.rightArrowDescription": any;
33678
- "euiKeyboardShortcuts.leftArrowTitle": any;
33679
- "euiKeyboardShortcuts.leftArrowDescription": any;
33680
- "euiKeyboardShortcuts.homeTitle": any;
33681
- "euiKeyboardShortcuts.homeDescription": any;
33682
- "euiKeyboardShortcuts.endTitle": any;
33683
- "euiKeyboardShortcuts.endDescription": any;
33684
- "euiKeyboardShortcuts.ctrl": any;
33685
- "euiKeyboardShortcuts.ctrlHomeDescription": any;
33686
- "euiKeyboardShortcuts.ctrlEndDescription": any;
33687
- "euiKeyboardShortcuts.pageUpTitle": any;
33688
- "euiKeyboardShortcuts.pageUpDescription": any;
33689
- "euiKeyboardShortcuts.pageDownTitle": any;
33690
- "euiKeyboardShortcuts.pageDownDescription": any;
33691
- "euiKeyboardShortcuts.enterTitle": any;
33692
- "euiKeyboardShortcuts.enterDescription": any;
33693
- "euiKeyboardShortcuts.escapeTitle": any;
33694
- "euiKeyboardShortcuts.escapeDescription": any;
33695
- "euiDataGrid.ariaLabel": any;
33696
- "euiDataGrid.ariaLabelledBy": any;
33697
- "euiDataGrid.screenReaderNotice": any;
33698
- "euiDataGridPagination.detailedPaginationLabel": any;
33699
- "euiDataGridPagination.paginationLabel": any;
33700
- "euiDataGridSchema.booleanSortTextAsc": any;
33701
- "euiDataGridSchema.booleanSortTextDesc": any;
33702
- "euiDataGridSchema.currencySortTextAsc": any;
33703
- "euiDataGridSchema.currencySortTextDesc": any;
33704
- "euiDataGridSchema.dateSortTextAsc": any;
33705
- "euiDataGridSchema.dateSortTextDesc": any;
33706
- "euiDataGridSchema.numberSortTextAsc": any;
33707
- "euiDataGridSchema.numberSortTextDesc": any;
33708
- "euiDataGridSchema.jsonSortTextAsc": any;
33709
- "euiDataGridSchema.jsonSortTextDesc": any;
33710
- "euiAutoRefresh.autoRefreshLabel": any;
33711
- "euiAutoRefresh.buttonLabelOff": any;
33712
- "euiAutoRefresh.buttonLabelOn": any;
33763
+ "euiCallOut.dismissAriaLabel": any;
33764
+ "euiCodeBlockFullScreen.fullscreenCollapse": any;
33765
+ "euiCodeBlockFullScreen.fullscreenExpand": any;
33766
+ "euiCodeBlockFullScreen.ariaLabel": any;
33767
+ "euiCodeBlockCopy.copy": any;
33768
+ "euiCodeBlockAnnotations.ariaLabel": any;
33769
+ "euiCodeBlock.label": any;
33770
+ "euiBreadcrumbs.nav.ariaLabel": any;
33771
+ "euiBreadcrumb.collapsedBadge.ariaLabel": any;
33772
+ "euiBreadcrumb.popoverAriaLabel": any;
33773
+ "euiBottomBar.screenReaderHeading": any;
33774
+ "euiBottomBar.customScreenReaderAnnouncement": any;
33775
+ "euiBottomBar.screenReaderAnnouncement": any;
33776
+ "euiCollapsedItemActions.allActionsTooltip": any;
33777
+ "euiCollapsedItemActions.allActions": any;
33778
+ "euiCollapsedItemActions.allActionsDisabled": any;
33779
+ "euiBasicTable.noItemsMessage": any;
33780
+ "euiBasicTable.tableCaptionWithPagination": any;
33781
+ "euiBasicTable.tableAutoCaptionWithPagination": any;
33782
+ "euiBasicTable.tableSimpleAutoCaptionWithPagination": any;
33783
+ "euiBasicTable.tableAutoCaptionWithoutPagination": any;
33784
+ "euiBasicTable.selectAllRows": any;
33785
+ "euiBasicTable.deselectRows": any;
33786
+ "euiBasicTable.selectThisRow": any;
33787
+ "euiBasicTable.tablePagination": any;
33788
+ "euiTablePagination.allRows": any;
33789
+ "euiTablePagination.rowsPerPage": any;
33790
+ "euiTablePagination.rowsPerPageOptionShowAllRows": any;
33791
+ "euiTablePagination.rowsPerPageOption": any;
33792
+ "euiTableSortMobile.sorting": any;
33793
+ "euiSelectableTemplateSitewide.searchPlaceholder": any;
33794
+ "euiSelectableTemplateSitewide.loadingResults": any;
33795
+ "euiSelectableTemplateSitewide.noResults": any;
33796
+ "euiSelectableTemplateSitewide.onFocusBadgeGoTo": any;
33797
+ "euiSelectableListItem.checkedOption": any;
33798
+ "euiSelectableListItem.checkOptionInstructions": any;
33799
+ "euiSelectableListItem.uncheckOptionInstructions": any;
33800
+ "euiSelectableListItem.excludedOption": any;
33801
+ "euiSelectableListItem.excludeOptionInstructions": any;
33802
+ "euiSelectableListItem.mixedOption": any;
33803
+ "euiSelectableListItem.mixedOptionInstructions": any;
33804
+ "euiSelectableListItem.mixedOptionUncheckInstructions": any;
33805
+ "euiSelectableListItem.mixedOptionExcludeInstructions": any;
33806
+ "euiFieldValueSelectionFilter.buttonLabelHint": any;
33807
+ "euiPinnableListGroup.pinExtraActionLabel": any;
33808
+ "euiPinnableListGroup.pinnedExtraActionLabel": any;
33809
+ "euiHeaderLinks.appNavigation": any;
33810
+ "euiHeaderLinks.openNavigationMenu": any;
33811
+ "euiRange.sliderScreenReaderInstructions": any;
33812
+ "euiDualRange.sliderScreenReaderInstructions": any;
33813
+ "euiSuperSelect.screenReaderAnnouncement": any;
33814
+ "euiSuperSelect.ariaLabel": any;
33815
+ "euiFormControlLayoutDelimited.delimiterLabel": any;
33816
+ "euiFormControlLayoutClearButton.label": any;
33817
+ "euiFilePicker.promptText": any;
33818
+ "euiFilePicker.filesSelected": any;
33819
+ "euiFilePicker.removeSelectedAriaLabel": any;
33820
+ "euiFilePicker.removeSelected": any;
33821
+ "euiFieldPassword.showPassword": any;
33822
+ "euiFieldPassword.maskPassword": any;
33823
+ "euiFieldSearch.clearSearchButtonLabel": any;
33713
33824
  "euiRefreshInterval.fullDescriptionOff": any;
33714
33825
  "euiRefreshInterval.fullDescriptionOn": any;
33715
33826
  "euiRefreshInterval.toggleLabel": any;
33716
33827
  "euiRefreshInterval.toggleAriaLabel": any;
33717
33828
  "euiRefreshInterval.valueAriaLabel": any;
33718
33829
  "euiRefreshInterval.unitsAriaLabel": any;
33719
- "euiAbsoluteTab.dateFormatButtonLabel": any;
33720
- "euiAbsoluteTab.dateFormatError": any;
33721
- "euiDatePopoverButton.invalidTitle": any;
33722
- "euiDatePopoverButton.outdatedTitle": any;
33723
- "euiDatePopoverContent.startDateLabel": any;
33724
- "euiDatePopoverContent.endDateLabel": any;
33725
- "euiDatePopoverContent.absoluteTabLabel": any;
33726
- "euiDatePopoverContent.relativeTabLabel": any;
33727
- "euiDatePopoverContent.nowTabLabel": any;
33728
- "euiDatePopoverContent.nowTabContent": any;
33729
- "euiDatePopoverContent.nowTabButtonStart": any;
33730
- "euiDatePopoverContent.nowTabButtonEnd": any;
33731
- "euiRelativeTab.numberInputLabel": any;
33732
- "euiRelativeTab.numberInputError": any;
33733
- "euiRelativeTab.dateInputError": any;
33734
- "euiRelativeTab.unitInputLabel": any;
33735
- "euiRelativeTab.fullDescription": any;
33736
- "euiPrettyDuration.lastDurationSeconds": any;
33737
- "euiPrettyDuration.nextDurationSeconds": any;
33738
- "euiPrettyDuration.lastDurationMinutes": any;
33739
- "euiPrettyDuration.nextDurationMinutes": any;
33740
- "euiPrettyDuration.lastDurationHours": any;
33741
- "euiPrettyDuration.nextDurationHours": any;
33742
- "euiPrettyDuration.lastDurationDays": any;
33743
- "euiPrettyDuration.nexttDurationDays": any;
33744
- "euiPrettyDuration.lastDurationWeeks": any;
33745
- "euiPrettyDuration.nextDurationWeeks": any;
33746
- "euiPrettyDuration.lastDurationMonths": any;
33747
- "euiPrettyDuration.nextDurationMonths": any;
33748
- "euiPrettyDuration.lastDurationYears": any;
33749
- "euiPrettyDuration.nextDurationYears": any;
33750
- "euiPrettyDuration.durationRoundedToSecond": any;
33751
- "euiPrettyDuration.durationRoundedToMinute": any;
33752
- "euiPrettyDuration.durationRoundedToHour": any;
33753
- "euiPrettyDuration.durationRoundedToDay": any;
33754
- "euiPrettyDuration.durationRoundedToWeek": any;
33755
- "euiPrettyDuration.durationRoundedToMonth": any;
33756
- "euiPrettyDuration.durationRoundedToYear": any;
33757
- "euiPrettyDuration.now": any;
33758
- "euiPrettyDuration.invalid": any;
33759
- "euiPrettyDuration.fallbackDuration": any;
33760
- "euiPrettyInterval.seconds": any;
33761
- "euiPrettyInterval.minutes": any;
33762
- "euiPrettyInterval.hours": any;
33763
- "euiPrettyInterval.days": any;
33764
- "euiPrettyInterval.secondsShorthand": any;
33765
- "euiPrettyInterval.minutesShorthand": any;
33766
- "euiPrettyInterval.hoursShorthand": any;
33767
- "euiPrettyInterval.daysShorthand": any;
33768
- "euiPrettyInterval.off": any;
33769
- "euiCommonlyUsedTimeRanges.legend": any;
33770
- "euiQuickSelectPopover.buttonLabel": any;
33771
- "euiQuickSelect.quickSelectTitle": any;
33772
- "euiQuickSelect.previousLabel": any;
33773
- "euiQuickSelect.nextLabel": any;
33774
- "euiQuickSelect.tenseLabel": any;
33775
- "euiQuickSelect.valueLabel": any;
33776
- "euiQuickSelect.unitLabel": any;
33777
- "euiQuickSelect.applyButton": any;
33778
- "euiQuickSelect.fullDescription": any;
33779
- "euiRecentlyUsed.legend": any;
33780
- "euiSuperUpdateButton.updatingButtonLabel": any;
33781
- "euiSuperUpdateButton.updateButtonLabel": any;
33782
- "euiSuperUpdateButton.refreshButtonLabel": any;
33783
- "euiSuperUpdateButton.cannotUpdateTooltip": any;
33784
- "euiSuperUpdateButton.clickToApplyTooltip": any;
33830
+ "euiAutoRefresh.autoRefreshLabel": any;
33831
+ "euiAutoRefresh.buttonLabelOff": any;
33832
+ "euiAutoRefresh.buttonLabelOn": any;
33785
33833
  "euiTimeOptions.last": any;
33786
33834
  "euiTimeOptions.next": any;
33787
33835
  "euiTimeOptions.seconds": any;
@@ -33820,140 +33868,177 @@ declare module '@elastic/eui' {
33820
33868
  "euiTimeOptions.weekToDate": any;
33821
33869
  "euiTimeOptions.monthToDate": any;
33822
33870
  "euiTimeOptions.yearToDate": any;
33823
- "euiErrorBoundary.error": any;
33824
- "euiFilterButton.filterBadgeActiveAriaLabel": any;
33825
- "euiFilterButton.filterBadgeAvailableAriaLabel": any;
33826
- "euiFlyoutCloseButton.ariaLabel": any;
33827
- "euiFlyout.screenReaderModalDialog": any;
33828
- "euiFlyout.screenReaderNonModalDialog": any;
33829
- "euiFlyout.screenReaderFixedHeaders": any;
33830
- "euiFieldPassword.showPassword": any;
33831
- "euiFieldPassword.maskPassword": any;
33832
- "euiFieldSearch.clearSearchButtonLabel": any;
33833
- "euiFilePicker.promptText": any;
33834
- "euiFilePicker.filesSelected": any;
33835
- "euiFilePicker.removeSelectedAriaLabel": any;
33836
- "euiFilePicker.removeSelected": any;
33837
- "euiFormControlLayoutClearButton.label": any;
33838
- "euiFormControlLayoutDelimited.delimiterLabel": any;
33839
- "euiForm.addressFormErrors": any;
33840
- "euiDualRange.sliderScreenReaderInstructions": any;
33841
- "euiRange.sliderScreenReaderInstructions": any;
33842
- "euiSuperSelect.screenReaderAnnouncement": any;
33843
- "euiSuperSelect.ariaLabel": any;
33844
- "euiHeaderLinks.openNavigationMenu": any;
33845
- "euiHeaderLinks.appNavigation": any;
33846
- "euiImageButton.openFullScreen": any;
33847
- "euiImageButton.closeFullScreen": any;
33848
- "euiInlineEditForm.saveButtonAriaLabel": any;
33849
- "euiInlineEditForm.cancelButtonAriaLabel": any;
33850
- "euiInlineEditForm.inputKeyboardInstructions": any;
33851
- "euiInlineEditForm.activateEditModeDescription": any;
33852
- "euiExternalLinkIcon.newTarget.screenReaderOnlyText": any;
33853
- "euiExternalLinkIcon.externalTarget.screenReaderOnlyText": any;
33854
- "euiPinnableListGroup.pinExtraActionLabel": any;
33855
- "euiPinnableListGroup.pinnedExtraActionLabel": any;
33856
- "euiLoadingStrings.ariaLabel": any;
33857
- "euiMark.highlightStart": any;
33858
- "euiMark.highlightEnd": any;
33859
- "euiMarkdownEditorFooter.uploadingFiles": any;
33860
- "euiMarkdownEditorFooter.openUploadModal": any;
33861
- "euiMarkdownEditorFooter.unsupportedFileType": any;
33862
- "euiMarkdownEditorFooter.supportedFileTypes": any;
33863
- "euiMarkdownEditorFooter.showSyntaxErrors": any;
33864
- "euiMarkdownEditorFooter.showMarkdownHelp": any;
33865
- "euiMarkdownEditorFooter.syntaxTitle": any;
33866
- "euiMarkdownEditorFooter.errorsTitle": any;
33867
- "euiMarkdownEditorFooter.mdSyntaxLink": any;
33868
- "euiMarkdownEditorFooter.syntaxModalDescriptionPrefix": any;
33869
- "euiMarkdownEditorFooter.syntaxModalDescriptionSuffix": any;
33870
- "euiMarkdownEditorFooter.closeButton": any;
33871
- "euiMarkdownEditorFooter.syntaxPopoverDescription": any;
33872
- "euiMarkdownEditorToolbar.editor": any;
33873
- "euiMarkdownEditorToolbar.previewMarkdown": any;
33874
- "euiModal.closeModal": any;
33875
- "euiPaginationButtonArrow.firstPage": any;
33876
- "euiPaginationButtonArrow.previousPage": any;
33877
- "euiPaginationButtonArrow.nextPage": any;
33878
- "euiPaginationButtonArrow.lastPage": any;
33879
- "euiPaginationButton.longPageString": any;
33880
- "euiPaginationButton.shortPageString": any;
33881
- "euiPagination.pageOfTotalCompressed": any;
33882
- "euiPagination.firstRangeAriaLabel": any;
33883
- "euiPagination.lastRangeAriaLabel": any;
33884
- "euiPagination.last": any;
33885
- "euiPagination.page": any;
33886
- "euiPagination.of": any;
33887
- "euiPagination.collection": any;
33888
- "euiPagination.fromEndLabel": any;
33889
- "euiPopover.screenReaderAnnouncement": any;
33890
- "euiProgress.valueText": any;
33891
- "euiResizableButton.horizontalResizerAriaLabel": any;
33892
- "euiResizableButton.verticalResizerAriaLabel": any;
33893
- "euiResizablePanel.toggleButtonAriaLabel": any;
33894
- "euiFieldValueSelectionFilter.buttonLabelHint": any;
33895
- "euiSearchBox.placeholder": any;
33896
- "euiSearchBox.incrementalAriaLabel": any;
33897
- "euiSearchBox.ariaLabel": any;
33898
- "euiSelectableListItem.checkedOption": any;
33899
- "euiSelectableListItem.checkOptionInstructions": any;
33900
- "euiSelectableListItem.uncheckOptionInstructions": any;
33901
- "euiSelectableListItem.excludedOption": any;
33902
- "euiSelectableListItem.excludeOptionInstructions": any;
33903
- "euiSelectableListItem.mixedOption": any;
33904
- "euiSelectableListItem.mixedOptionInstructions": any;
33905
- "euiSelectableListItem.mixedOptionUncheckInstructions": any;
33906
- "euiSelectableListItem.mixedOptionExcludeInstructions": any;
33907
- "euiSelectableTemplateSitewide.searchPlaceholder": any;
33908
- "euiSelectableTemplateSitewide.loadingResults": any;
33909
- "euiSelectableTemplateSitewide.noResults": any;
33910
- "euiSelectableTemplateSitewide.onFocusBadgeGoTo": any;
33911
- "euiSelectable.loadingOptions": any;
33912
- "euiSelectable.noMatchingOptions": any;
33913
- "euiSelectable.noAvailableOptions": any;
33914
- "euiSelectable.screenReaderInstructions": any;
33915
- "euiSelectable.placeholderName": any;
33916
- "euiSelectable.searchResults": any;
33917
- "euiSideNav.mobileToggleAriaLabel": any;
33918
- "euiSkeletonLoading.loadedAriaText": any;
33919
- "euiSkeletonLoading.loadingAriaText": any;
33920
- "euiStat.loadingText": any;
33921
- "euiStepStrings.step": any;
33922
- "euiStepStrings.simpleStep": any;
33923
- "euiStepStrings.complete": any;
33924
- "euiStepStrings.simpleComplete": any;
33925
- "euiStepStrings.warning": any;
33926
- "euiStepStrings.simpleWarning": any;
33927
- "euiStepStrings.errors": any;
33928
- "euiStepStrings.simpleErrors": any;
33929
- "euiStepStrings.incomplete": any;
33930
- "euiStepStrings.simpleIncomplete": any;
33931
- "euiStepStrings.disabled": any;
33932
- "euiStepStrings.simpleDisabled": any;
33933
- "euiStepStrings.loading": any;
33934
- "euiStepStrings.simpleLoading": any;
33935
- "euiStepStrings.current": any;
33936
- "euiStepStrings.simpleCurrent": any;
33937
- "euiTableSortMobile.sorting": any;
33938
- "euiTableHeaderCell.titleTextWithDesc": any;
33939
- "euiTablePagination.allRows": any;
33940
- "euiTablePagination.rowsPerPage": any;
33941
- "euiTablePagination.rowsPerPageOptionShowAllRows": any;
33942
- "euiTablePagination.rowsPerPageOption": any;
33943
- "euiGlobalToastList.clearAllToastsButtonAriaLabel": any;
33944
- "euiGlobalToastList.clearAllToastsButtonDisplayText": any;
33945
- "euiToast.newNotification": any;
33946
- "euiToast.notification": any;
33947
- "euiToast.dismissToast": any;
33948
- "euiIconTip.defaultAriaLabel": any;
33949
- "euiTourFooter.endTour": any;
33950
- "euiTourFooter.skipTour": any;
33951
- "euiTourFooter.closeTour": any;
33952
- "euiTourStepIndicator.isActive": any;
33953
- "euiTourStepIndicator.isComplete": any;
33954
- "euiTourStepIndicator.isIncomplete": any;
33955
- "euiTourStepIndicator.ariaLabel": any;
33956
- "euiTreeView.listNavigationInstructions": any;
33871
+ "euiSuperUpdateButton.updatingButtonLabel": any;
33872
+ "euiSuperUpdateButton.updateButtonLabel": any;
33873
+ "euiSuperUpdateButton.refreshButtonLabel": any;
33874
+ "euiSuperUpdateButton.cannotUpdateTooltip": any;
33875
+ "euiSuperUpdateButton.clickToApplyTooltip": any;
33876
+ "euiPrettyInterval.seconds": any;
33877
+ "euiPrettyInterval.minutes": any;
33878
+ "euiPrettyInterval.hours": any;
33879
+ "euiPrettyInterval.days": any;
33880
+ "euiPrettyInterval.secondsShorthand": any;
33881
+ "euiPrettyInterval.minutesShorthand": any;
33882
+ "euiPrettyInterval.hoursShorthand": any;
33883
+ "euiPrettyInterval.daysShorthand": any;
33884
+ "euiPrettyInterval.off": any;
33885
+ "euiPrettyDuration.lastDurationSeconds": any;
33886
+ "euiPrettyDuration.nextDurationSeconds": any;
33887
+ "euiPrettyDuration.lastDurationMinutes": any;
33888
+ "euiPrettyDuration.nextDurationMinutes": any;
33889
+ "euiPrettyDuration.lastDurationHours": any;
33890
+ "euiPrettyDuration.nextDurationHours": any;
33891
+ "euiPrettyDuration.lastDurationDays": any;
33892
+ "euiPrettyDuration.nexttDurationDays": any;
33893
+ "euiPrettyDuration.lastDurationWeeks": any;
33894
+ "euiPrettyDuration.nextDurationWeeks": any;
33895
+ "euiPrettyDuration.lastDurationMonths": any;
33896
+ "euiPrettyDuration.nextDurationMonths": any;
33897
+ "euiPrettyDuration.lastDurationYears": any;
33898
+ "euiPrettyDuration.nextDurationYears": any;
33899
+ "euiPrettyDuration.durationRoundedToSecond": any;
33900
+ "euiPrettyDuration.durationRoundedToMinute": any;
33901
+ "euiPrettyDuration.durationRoundedToHour": any;
33902
+ "euiPrettyDuration.durationRoundedToDay": any;
33903
+ "euiPrettyDuration.durationRoundedToWeek": any;
33904
+ "euiPrettyDuration.durationRoundedToMonth": any;
33905
+ "euiPrettyDuration.durationRoundedToYear": any;
33906
+ "euiPrettyDuration.now": any;
33907
+ "euiPrettyDuration.invalid": any;
33908
+ "euiPrettyDuration.fallbackDuration": any;
33909
+ "euiDataGridSchema.booleanSortTextAsc": any;
33910
+ "euiDataGridSchema.booleanSortTextDesc": any;
33911
+ "euiDataGridSchema.currencySortTextAsc": any;
33912
+ "euiDataGridSchema.currencySortTextDesc": any;
33913
+ "euiDataGridSchema.dateSortTextAsc": any;
33914
+ "euiDataGridSchema.dateSortTextDesc": any;
33915
+ "euiDataGridSchema.numberSortTextAsc": any;
33916
+ "euiDataGridSchema.numberSortTextDesc": any;
33917
+ "euiDataGridSchema.jsonSortTextAsc": any;
33918
+ "euiDataGridSchema.jsonSortTextDesc": any;
33919
+ "euiKeyboardShortcuts.title": any;
33920
+ "euiKeyboardShortcuts.upArrowTitle": any;
33921
+ "euiKeyboardShortcuts.upArrowDescription": any;
33922
+ "euiKeyboardShortcuts.downArrowTitle": any;
33923
+ "euiKeyboardShortcuts.downArrowDescription": any;
33924
+ "euiKeyboardShortcuts.rightArrowTitle": any;
33925
+ "euiKeyboardShortcuts.rightArrowDescription": any;
33926
+ "euiKeyboardShortcuts.leftArrowTitle": any;
33927
+ "euiKeyboardShortcuts.leftArrowDescription": any;
33928
+ "euiKeyboardShortcuts.homeTitle": any;
33929
+ "euiKeyboardShortcuts.homeDescription": any;
33930
+ "euiKeyboardShortcuts.endTitle": any;
33931
+ "euiKeyboardShortcuts.endDescription": any;
33932
+ "euiKeyboardShortcuts.ctrl": any;
33933
+ "euiKeyboardShortcuts.ctrlHomeDescription": any;
33934
+ "euiKeyboardShortcuts.ctrlEndDescription": any;
33935
+ "euiKeyboardShortcuts.pageUpTitle": any;
33936
+ "euiKeyboardShortcuts.pageUpDescription": any;
33937
+ "euiKeyboardShortcuts.pageDownTitle": any;
33938
+ "euiKeyboardShortcuts.pageDownDescription": any;
33939
+ "euiKeyboardShortcuts.enterTitle": any;
33940
+ "euiKeyboardShortcuts.enterDescription": any;
33941
+ "euiKeyboardShortcuts.escapeTitle": any;
33942
+ "euiKeyboardShortcuts.escapeDescription": any;
33943
+ "euiFullscreenSelector.fullscreenButton": any;
33944
+ "euiFullscreenSelector.fullscreenButtonActive": any;
33945
+ "euiDisplaySelector.densityLabel": any;
33946
+ "euiDisplaySelector.labelCompact": any;
33947
+ "euiDisplaySelector.labelNormal": any;
33948
+ "euiDisplaySelector.labelExpanded": any;
33949
+ "euiDisplaySelector.rowHeightLabel": any;
33950
+ "euiDisplaySelector.labelAuto": any;
33951
+ "euiDisplaySelector.labelStatic": any;
33952
+ "euiDisplaySelector.labelMax": any;
33953
+ "euiDisplaySelector.buttonText": any;
33954
+ "euiDisplaySelector.resetButtonText": any;
33955
+ "euiDataGridToolbarControl.badgeAriaLabel": any;
33956
+ "euiColumnSortingDraggable.defaultSortAsc": any;
33957
+ "euiColumnSortingDraggable.defaultSortDesc": any;
33958
+ "euiColumnSortingDraggable.dragHandleAriaLabel": any;
33959
+ "euiColumnSortingDraggable.activeSortLabel": any;
33960
+ "euiColumnSortingDraggable.removeSortLabel": any;
33961
+ "euiColumnSortingDraggable.toggleLegend": any;
33962
+ "euiColumnSorting.button": any;
33963
+ "euiColumnSorting.sortFieldAriaLabel": any;
33964
+ "euiColumnSorting.emptySorting": any;
33965
+ "euiColumnSorting.pickFields": any;
33966
+ "euiColumnSorting.clearAll": any;
33967
+ "euiColumnSelector.dragHandleAriaLabel": any;
33968
+ "euiColumnSelector.button": any;
33969
+ "euiColumnSelector.search": any;
33970
+ "euiColumnSelector.searchcolumns": any;
33971
+ "euiColumnSelector.selectAll": any;
33972
+ "euiColumnSelector.hideAll": any;
33973
+ "euiDataGridPagination.detailedPaginationLabel": any;
33974
+ "euiDataGridPagination.paginationLabel": any;
33975
+ "euiComboBoxOptionsList.loadingOptions": any;
33976
+ "euiComboBoxOptionsList.delimiterMessage": any;
33977
+ "euiComboBoxOptionsList.alreadyAdded": any;
33978
+ "euiComboBoxOptionsList.createCustomOption": any;
33979
+ "euiComboBoxOptionsList.noMatchingOptions": any;
33980
+ "euiComboBoxOptionsList.noAvailableOptions": any;
33981
+ "euiComboBoxOptionsList.allOptionsSelected": any;
33982
+ "euiComboBoxPill.removeSelection": any;
33983
+ "euiCollapsibleNavButton.ariaLabelExpand": any;
33984
+ "euiCollapsibleNavButton.ariaLabelCollapse": any;
33985
+ "euiCollapsibleNavButton.ariaLabelOpen": any;
33986
+ "euiCollapsibleNavButton.ariaLabelClose": any;
33987
+ "euiCollapsibleNavKibanaSolution.switcherTitle": any;
33988
+ "euiCollapsibleNavKibanaSolution.switcherAriaLabel": any;
33989
+ "euiCollapsibleNavKibanaSolution.groupLabel": any;
33990
+ "euiCardSelect.selected": any;
33991
+ "euiCardSelect.unavailable": any;
33992
+ "euiCardSelect.select": any;
33993
+ "euiAccordionChildrenLoading.message": any;
33994
+ "euiRecentlyUsed.legend": any;
33995
+ "euiQuickSelectPopover.buttonLabel": any;
33996
+ "euiQuickSelect.quickSelectTitle": any;
33997
+ "euiQuickSelect.previousLabel": any;
33998
+ "euiQuickSelect.nextLabel": any;
33999
+ "euiQuickSelect.tenseLabel": any;
34000
+ "euiQuickSelect.valueLabel": any;
34001
+ "euiQuickSelect.unitLabel": any;
34002
+ "euiQuickSelect.applyButton": any;
34003
+ "euiQuickSelect.fullDescription": any;
34004
+ "euiCommonlyUsedTimeRanges.legend": any;
34005
+ "euiRelativeTab.numberInputLabel": any;
34006
+ "euiRelativeTab.numberInputError": any;
34007
+ "euiRelativeTab.dateInputError": any;
34008
+ "euiRelativeTab.unitInputLabel": any;
34009
+ "euiRelativeTab.fullDescription": any;
34010
+ "euiDatePopoverContent.startDateLabel": any;
34011
+ "euiDatePopoverContent.endDateLabel": any;
34012
+ "euiDatePopoverContent.absoluteTabLabel": any;
34013
+ "euiDatePopoverContent.relativeTabLabel": any;
34014
+ "euiDatePopoverContent.nowTabLabel": any;
34015
+ "euiDatePopoverContent.nowTabContent": any;
34016
+ "euiDatePopoverContent.nowTabButtonStart": any;
34017
+ "euiDatePopoverContent.nowTabButtonEnd": any;
34018
+ "euiDatePopoverButton.invalidTitle": any;
34019
+ "euiDatePopoverButton.outdatedTitle": any;
34020
+ "euiAbsoluteTab.dateFormatButtonLabel": any;
34021
+ "euiAbsoluteTab.dateFormatError": any;
34022
+ "euiDataGridHeaderCell.sortedByAscendingSingle": any;
34023
+ "euiDataGridHeaderCell.sortedByDescendingSingle": any;
34024
+ "euiDataGridHeaderCell.sortedByAscendingFirst": any;
34025
+ "euiDataGridHeaderCell.sortedByDescendingFirst": any;
34026
+ "euiDataGridHeaderCell.sortedByAscendingMultiple": any;
34027
+ "euiDataGridHeaderCell.sortedByDescendingMultiple": any;
34028
+ "euiDataGridHeaderCell.actionsButtonAriaLabel": any;
34029
+ "euiDataGridHeaderCell.actionsEnterKeyInstructions": any;
34030
+ "euiDataGridHeaderCell.actionsPopoverScreenReaderText": any;
34031
+ "euiColumnActions.hideColumn": any;
34032
+ "euiColumnActions.moveLeft": any;
34033
+ "euiColumnActions.moveRight": any;
34034
+ "euiColumnActions.unsort": any;
34035
+ "euiColumnActions.sort": any;
34036
+ "euiDataGridCell.focusTrapExitPrompt": any;
34037
+ "euiDataGridCell.focusTrapEnterPrompt": any;
34038
+ "euiDataGridCellActions.expandButtonTitle": any;
34039
+ "euiDataGridCell.position": any;
34040
+ "euiDataGridCell.expansionEnterPrompt": any;
34041
+ "euiCollapsedNavButton.ariaLabelButtonIcon": any;
33957
34042
  }
33958
34043
  }
33959
34044