@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.
- package/dist/eui_theme_amsterdam_dark.json +2 -0
- package/dist/eui_theme_amsterdam_dark.json.d.ts +2 -0
- package/dist/eui_theme_amsterdam_light.json +2 -0
- package/dist/eui_theme_amsterdam_light.json.d.ts +2 -0
- package/dist/eui_theme_borealis_dark.json +2 -0
- package/dist/eui_theme_borealis_dark.json.d.ts +2 -0
- package/dist/eui_theme_borealis_light.json +10 -8
- package/dist/eui_theme_borealis_light.json.d.ts +2 -0
- package/es/components/combo_box/combo_box_input/combo_box_input.js +65 -61
- package/es/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
- package/es/components/date_picker/date_picker.styles.js +4 -1
- package/es/components/date_picker/date_picker_range.js +3 -2
- package/es/components/date_picker/date_picker_range.styles.js +11 -4
- package/es/components/date_picker/super_date_picker/super_date_picker.styles.js +23 -14
- package/es/components/flyout/_flyout_close_button.styles.js +10 -1
- package/es/components/flyout/flyout_child.js +8 -3
- package/es/components/flyout/flyout_child.styles.js +3 -2
- package/es/components/flyout/sessions/flyout_provider.js +7 -21
- package/es/components/flyout/sessions/flyout_reducer.js +5 -26
- package/es/components/flyout/sessions/use_eui_flyout.js +21 -10
- package/es/components/form/field_number/field_number.styles.js +4 -1
- package/es/components/form/field_text/field_text.styles.js +4 -1
- package/es/components/form/file_picker/file_picker.js +107 -101
- package/es/components/form/file_picker/file_picker.styles.js +18 -17
- package/es/components/form/form.styles.js +72 -22
- package/es/components/form/form_control_layout/form_control_layout.styles.js +28 -17
- package/es/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
- package/es/components/form/form_control_layout/form_control_layout_delimited.js +10 -7
- package/es/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -29
- package/es/components/form/form_control_layout/form_control_layout_icons.js +35 -20
- package/es/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
- package/es/components/form/form_error_text/form_error_text.styles.js +3 -1
- package/es/components/form/form_label/form_label.styles.js +4 -2
- package/es/components/header/header.styles.js +5 -3
- package/es/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
- package/es/components/progress/progress.a11y.js +7 -7
- package/es/components/progress/progress.js +18 -27
- package/es/components/selectable/selectable_templates/selectable_template_sitewide.js +59 -23
- package/es/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +8 -2
- package/es/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +63 -0
- package/es/global_styling/mixins/_button.js +1 -1
- package/es/services/color/eui_palettes.js +26 -0
- package/es/services/color/vis_color_store.js +1 -1
- package/es/services/color/visualization_colors.js +4 -0
- package/es/services/theme/provider.js +13 -6
- package/es/themes/amsterdam/global_styling/variables/_colors.js +8 -3
- package/es/themes/amsterdam/global_styling/variables/_forms.js +96 -53
- package/es/themes/amsterdam/theme.js +2 -1
- package/es/themes/json/eui_theme_amsterdam_dark.json +2 -0
- package/es/themes/json/eui_theme_amsterdam_light.json +2 -0
- package/es/themes/json/eui_theme_borealis_dark.json +2 -0
- package/es/themes/json/eui_theme_borealis_light.json +10 -8
- package/eui.d.ts +461 -376
- package/i18ntokens.json +3595 -3523
- package/lib/components/combo_box/combo_box_input/combo_box_input.js +64 -60
- package/lib/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
- package/lib/components/date_picker/date_picker.styles.js +4 -1
- package/lib/components/date_picker/date_picker_range.js +3 -2
- package/lib/components/date_picker/date_picker_range.styles.js +11 -4
- package/lib/components/date_picker/super_date_picker/super_date_picker.styles.js +21 -12
- package/lib/components/flyout/_flyout_close_button.styles.js +10 -3
- package/lib/components/flyout/flyout_child.js +8 -3
- package/lib/components/flyout/flyout_child.styles.js +3 -2
- package/lib/components/flyout/sessions/flyout_provider.js +7 -21
- package/lib/components/flyout/sessions/flyout_reducer.js +5 -26
- package/lib/components/flyout/sessions/use_eui_flyout.js +21 -10
- package/lib/components/form/field_number/field_number.styles.js +4 -1
- package/lib/components/form/field_text/field_text.styles.js +4 -1
- package/lib/components/form/file_picker/file_picker.js +106 -100
- package/lib/components/form/file_picker/file_picker.styles.js +16 -15
- package/lib/components/form/form.styles.js +72 -22
- package/lib/components/form/form_control_layout/form_control_layout.styles.js +28 -17
- package/lib/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
- package/lib/components/form/form_control_layout/form_control_layout_delimited.js +9 -6
- package/lib/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -27
- package/lib/components/form/form_control_layout/form_control_layout_icons.js +34 -19
- package/lib/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
- package/lib/components/form/form_error_text/form_error_text.styles.js +3 -1
- package/lib/components/form/form_label/form_label.styles.js +4 -2
- package/lib/components/header/header.styles.js +4 -2
- package/lib/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
- package/lib/components/progress/progress.a11y.js +7 -7
- package/lib/components/progress/progress.js +18 -27
- package/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +57 -21
- package/lib/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +9 -3
- package/lib/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +69 -0
- package/lib/global_styling/mixins/_button.js +1 -1
- package/lib/services/color/eui_palettes.js +26 -0
- package/lib/services/color/vis_color_store.js +1 -1
- package/lib/services/color/visualization_colors.js +3 -0
- package/lib/services/theme/provider.js +13 -6
- package/lib/themes/amsterdam/global_styling/variables/_colors.js +8 -3
- package/lib/themes/amsterdam/global_styling/variables/_forms.js +96 -53
- package/lib/themes/amsterdam/theme.js +2 -1
- package/lib/themes/json/eui_theme_amsterdam_dark.json +2 -0
- package/lib/themes/json/eui_theme_amsterdam_light.json +2 -0
- package/lib/themes/json/eui_theme_borealis_dark.json +2 -0
- package/lib/themes/json/eui_theme_borealis_light.json +10 -8
- package/optimize/es/components/combo_box/combo_box_input/combo_box_input.js +65 -61
- package/optimize/es/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
- package/optimize/es/components/date_picker/date_picker.styles.js +4 -1
- package/optimize/es/components/date_picker/date_picker_range.js +3 -2
- package/optimize/es/components/date_picker/date_picker_range.styles.js +11 -4
- package/optimize/es/components/date_picker/super_date_picker/super_date_picker.styles.js +23 -14
- package/optimize/es/components/flyout/_flyout_close_button.styles.js +10 -1
- package/optimize/es/components/flyout/flyout_child.js +4 -3
- package/optimize/es/components/flyout/flyout_child.styles.js +3 -2
- package/optimize/es/components/flyout/sessions/flyout_provider.js +7 -21
- package/optimize/es/components/flyout/sessions/flyout_reducer.js +5 -26
- package/optimize/es/components/flyout/sessions/use_eui_flyout.js +21 -10
- package/optimize/es/components/form/field_number/field_number.styles.js +4 -1
- package/optimize/es/components/form/field_text/field_text.styles.js +4 -1
- package/optimize/es/components/form/file_picker/file_picker.js +107 -101
- package/optimize/es/components/form/file_picker/file_picker.styles.js +18 -17
- package/optimize/es/components/form/form.styles.js +72 -22
- package/optimize/es/components/form/form_control_layout/form_control_layout.styles.js +28 -17
- package/optimize/es/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
- package/optimize/es/components/form/form_control_layout/form_control_layout_delimited.js +10 -7
- package/optimize/es/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -29
- package/optimize/es/components/form/form_control_layout/form_control_layout_icons.js +35 -20
- package/optimize/es/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
- package/optimize/es/components/form/form_error_text/form_error_text.styles.js +3 -1
- package/optimize/es/components/form/form_label/form_label.styles.js +4 -2
- package/optimize/es/components/header/header.styles.js +5 -3
- package/optimize/es/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
- package/optimize/es/components/progress/progress.a11y.js +7 -7
- package/optimize/es/components/progress/progress.js +18 -27
- package/optimize/es/components/selectable/selectable_templates/selectable_template_sitewide.js +47 -22
- package/optimize/es/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +8 -2
- package/optimize/es/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +52 -0
- package/optimize/es/global_styling/mixins/_button.js +1 -1
- package/optimize/es/services/color/eui_palettes.js +26 -0
- package/optimize/es/services/color/vis_color_store.js +1 -1
- package/optimize/es/services/color/visualization_colors.js +4 -0
- package/optimize/es/services/theme/provider.js +13 -6
- package/optimize/es/themes/amsterdam/global_styling/variables/_colors.js +8 -3
- package/optimize/es/themes/amsterdam/global_styling/variables/_forms.js +96 -53
- package/optimize/es/themes/amsterdam/theme.js +2 -1
- package/optimize/es/themes/json/eui_theme_amsterdam_dark.json +2 -0
- package/optimize/es/themes/json/eui_theme_amsterdam_light.json +2 -0
- package/optimize/es/themes/json/eui_theme_borealis_dark.json +2 -0
- package/optimize/es/themes/json/eui_theme_borealis_light.json +10 -8
- package/optimize/lib/components/combo_box/combo_box_input/combo_box_input.js +64 -60
- package/optimize/lib/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
- package/optimize/lib/components/date_picker/date_picker.styles.js +4 -1
- package/optimize/lib/components/date_picker/date_picker_range.js +3 -2
- package/optimize/lib/components/date_picker/date_picker_range.styles.js +11 -4
- package/optimize/lib/components/date_picker/super_date_picker/super_date_picker.styles.js +21 -12
- package/optimize/lib/components/flyout/_flyout_close_button.styles.js +10 -3
- package/optimize/lib/components/flyout/flyout_child.js +4 -3
- package/optimize/lib/components/flyout/flyout_child.styles.js +3 -2
- package/optimize/lib/components/flyout/sessions/flyout_provider.js +7 -21
- package/optimize/lib/components/flyout/sessions/flyout_reducer.js +5 -26
- package/optimize/lib/components/flyout/sessions/use_eui_flyout.js +21 -10
- package/optimize/lib/components/form/field_number/field_number.styles.js +4 -1
- package/optimize/lib/components/form/field_text/field_text.styles.js +4 -1
- package/optimize/lib/components/form/file_picker/file_picker.js +106 -100
- package/optimize/lib/components/form/file_picker/file_picker.styles.js +16 -15
- package/optimize/lib/components/form/form.styles.js +72 -22
- package/optimize/lib/components/form/form_control_layout/form_control_layout.styles.js +28 -17
- package/optimize/lib/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
- package/optimize/lib/components/form/form_control_layout/form_control_layout_delimited.js +9 -6
- package/optimize/lib/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -27
- package/optimize/lib/components/form/form_control_layout/form_control_layout_icons.js +34 -19
- package/optimize/lib/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
- package/optimize/lib/components/form/form_error_text/form_error_text.styles.js +3 -1
- package/optimize/lib/components/form/form_label/form_label.styles.js +4 -2
- package/optimize/lib/components/header/header.styles.js +4 -2
- package/optimize/lib/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
- package/optimize/lib/components/progress/progress.a11y.js +7 -7
- package/optimize/lib/components/progress/progress.js +18 -27
- package/optimize/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +45 -20
- package/optimize/lib/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +9 -3
- package/optimize/lib/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +58 -0
- package/optimize/lib/global_styling/mixins/_button.js +1 -1
- package/optimize/lib/services/color/eui_palettes.js +26 -0
- package/optimize/lib/services/color/vis_color_store.js +1 -1
- package/optimize/lib/services/color/visualization_colors.js +3 -0
- package/optimize/lib/services/theme/provider.js +13 -6
- package/optimize/lib/themes/amsterdam/global_styling/variables/_colors.js +8 -3
- package/optimize/lib/themes/amsterdam/global_styling/variables/_forms.js +96 -53
- package/optimize/lib/themes/amsterdam/theme.js +2 -1
- package/optimize/lib/themes/json/eui_theme_amsterdam_dark.json +2 -0
- package/optimize/lib/themes/json/eui_theme_amsterdam_light.json +2 -0
- package/optimize/lib/themes/json/eui_theme_borealis_dark.json +2 -0
- package/optimize/lib/themes/json/eui_theme_borealis_light.json +10 -8
- package/package.json +12 -10
- package/src/themes/amsterdam/_colors_dark.scss +3 -0
- package/src/themes/amsterdam/_colors_light.scss +3 -0
- package/test-env/components/combo_box/combo_box_input/combo_box_input.js +64 -60
- package/test-env/components/combo_box/combo_box_input/combo_box_input.styles.js +6 -4
- package/test-env/components/date_picker/date_picker.styles.js +4 -1
- package/test-env/components/date_picker/date_picker_range.js +3 -2
- package/test-env/components/date_picker/date_picker_range.styles.js +11 -4
- package/test-env/components/date_picker/super_date_picker/super_date_picker.styles.js +21 -12
- package/test-env/components/flyout/_flyout_close_button.styles.js +10 -3
- package/test-env/components/flyout/flyout_child.js +8 -3
- package/test-env/components/flyout/flyout_child.styles.js +3 -2
- package/test-env/components/flyout/sessions/flyout_provider.js +7 -21
- package/test-env/components/flyout/sessions/flyout_reducer.js +5 -26
- package/test-env/components/flyout/sessions/use_eui_flyout.js +21 -10
- package/test-env/components/form/field_number/field_number.styles.js +4 -1
- package/test-env/components/form/field_text/field_text.styles.js +4 -1
- package/test-env/components/form/file_picker/file_picker.js +106 -100
- package/test-env/components/form/file_picker/file_picker.styles.js +16 -15
- package/test-env/components/form/form.styles.js +72 -22
- package/test-env/components/form/form_control_layout/form_control_layout.styles.js +28 -17
- package/test-env/components/form/form_control_layout/form_control_layout_clear_button.styles.js +7 -7
- package/test-env/components/form/form_control_layout/form_control_layout_delimited.js +9 -6
- package/test-env/components/form/form_control_layout/form_control_layout_delimited.styles.js +34 -27
- package/test-env/components/form/form_control_layout/form_control_layout_icons.js +34 -19
- package/test-env/components/form/form_control_layout/form_control_layout_icons.styles.js +6 -6
- package/test-env/components/form/form_error_text/form_error_text.styles.js +3 -1
- package/test-env/components/form/form_label/form_label.styles.js +4 -2
- package/test-env/components/header/header.styles.js +4 -2
- package/test-env/components/markdown_editor/markdown_editor_drop_zone.styles.js +6 -3
- package/test-env/components/progress/progress.a11y.js +7 -7
- package/test-env/components/progress/progress.js +18 -27
- package/test-env/components/selectable/selectable_templates/selectable_template_sitewide.js +57 -21
- package/test-env/components/selectable/selectable_templates/selectable_template_sitewide.styles.js +9 -3
- package/test-env/components/selectable/selectable_templates/selectable_template_sitewide_popover.js +68 -0
- package/test-env/global_styling/mixins/_button.js +1 -1
- package/test-env/services/color/eui_palettes.js +26 -0
- package/test-env/services/color/vis_color_store.js +1 -1
- package/test-env/services/color/visualization_colors.js +3 -0
- package/test-env/services/theme/provider.js +13 -6
- package/test-env/themes/amsterdam/global_styling/variables/_colors.js +8 -3
- package/test-env/themes/amsterdam/global_styling/variables/_forms.js +96 -53
- package/test-env/themes/amsterdam/theme.js +2 -1
- package/test-env/themes/json/eui_theme_amsterdam_dark.json +2 -0
- package/test-env/themes/json/eui_theme_amsterdam_light.json +2 -0
- package/test-env/themes/json/eui_theme_borealis_dark.json +2 -0
- 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:
|
|
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
|
|
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: (
|
|
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
|
-
|
|
12933
|
+
clearHistory: () => void;
|
|
12899
12934
|
isFlyoutOpen: boolean;
|
|
12900
12935
|
isChildFlyoutOpen: boolean;
|
|
12901
|
-
|
|
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
|
-
"
|
|
33565
|
-
"
|
|
33566
|
-
"
|
|
33567
|
-
"
|
|
33568
|
-
"
|
|
33569
|
-
"
|
|
33570
|
-
"
|
|
33571
|
-
"
|
|
33572
|
-
"
|
|
33573
|
-
"
|
|
33574
|
-
"
|
|
33575
|
-
"
|
|
33576
|
-
"
|
|
33577
|
-
"
|
|
33578
|
-
"
|
|
33579
|
-
"
|
|
33580
|
-
"
|
|
33581
|
-
"
|
|
33582
|
-
"
|
|
33583
|
-
"
|
|
33584
|
-
"
|
|
33585
|
-
"
|
|
33586
|
-
"
|
|
33587
|
-
"
|
|
33588
|
-
"
|
|
33589
|
-
"
|
|
33590
|
-
"
|
|
33591
|
-
"
|
|
33592
|
-
"
|
|
33593
|
-
"
|
|
33594
|
-
"
|
|
33595
|
-
"
|
|
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
|
-
"
|
|
33598
|
-
"
|
|
33599
|
-
"
|
|
33600
|
-
"
|
|
33601
|
-
"
|
|
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
|
-
"
|
|
33611
|
-
"
|
|
33612
|
-
"
|
|
33613
|
-
"
|
|
33614
|
-
"
|
|
33615
|
-
"
|
|
33616
|
-
"
|
|
33617
|
-
"
|
|
33618
|
-
"
|
|
33619
|
-
"
|
|
33620
|
-
"
|
|
33621
|
-
"
|
|
33622
|
-
"
|
|
33623
|
-
"
|
|
33624
|
-
"
|
|
33625
|
-
"
|
|
33626
|
-
"
|
|
33627
|
-
"
|
|
33628
|
-
"
|
|
33629
|
-
"
|
|
33630
|
-
"
|
|
33631
|
-
"
|
|
33632
|
-
"
|
|
33633
|
-
"
|
|
33634
|
-
"
|
|
33635
|
-
"
|
|
33636
|
-
"
|
|
33637
|
-
"
|
|
33638
|
-
"
|
|
33639
|
-
"
|
|
33640
|
-
"
|
|
33641
|
-
"
|
|
33642
|
-
"
|
|
33643
|
-
"
|
|
33644
|
-
"
|
|
33645
|
-
"
|
|
33646
|
-
"
|
|
33647
|
-
"
|
|
33648
|
-
"
|
|
33649
|
-
"
|
|
33650
|
-
"
|
|
33651
|
-
"
|
|
33652
|
-
"
|
|
33653
|
-
"
|
|
33654
|
-
"
|
|
33655
|
-
"
|
|
33656
|
-
"
|
|
33657
|
-
"
|
|
33658
|
-
"
|
|
33659
|
-
"
|
|
33660
|
-
"
|
|
33661
|
-
"
|
|
33662
|
-
"
|
|
33663
|
-
"
|
|
33664
|
-
"
|
|
33665
|
-
"
|
|
33666
|
-
"
|
|
33667
|
-
"
|
|
33668
|
-
"
|
|
33669
|
-
"
|
|
33670
|
-
"
|
|
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
|
-
"
|
|
33720
|
-
"
|
|
33721
|
-
"
|
|
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
|
-
"
|
|
33824
|
-
"
|
|
33825
|
-
"
|
|
33826
|
-
"
|
|
33827
|
-
"
|
|
33828
|
-
"
|
|
33829
|
-
"
|
|
33830
|
-
"
|
|
33831
|
-
"
|
|
33832
|
-
"
|
|
33833
|
-
"
|
|
33834
|
-
"
|
|
33835
|
-
"
|
|
33836
|
-
"
|
|
33837
|
-
"
|
|
33838
|
-
"
|
|
33839
|
-
"
|
|
33840
|
-
"
|
|
33841
|
-
"
|
|
33842
|
-
"
|
|
33843
|
-
"
|
|
33844
|
-
"
|
|
33845
|
-
"
|
|
33846
|
-
"
|
|
33847
|
-
"
|
|
33848
|
-
"
|
|
33849
|
-
"
|
|
33850
|
-
"
|
|
33851
|
-
"
|
|
33852
|
-
"
|
|
33853
|
-
"
|
|
33854
|
-
"
|
|
33855
|
-
"
|
|
33856
|
-
"
|
|
33857
|
-
"
|
|
33858
|
-
"
|
|
33859
|
-
"
|
|
33860
|
-
"
|
|
33861
|
-
"
|
|
33862
|
-
"
|
|
33863
|
-
"
|
|
33864
|
-
"
|
|
33865
|
-
"
|
|
33866
|
-
"
|
|
33867
|
-
"
|
|
33868
|
-
"
|
|
33869
|
-
"
|
|
33870
|
-
"
|
|
33871
|
-
"
|
|
33872
|
-
"
|
|
33873
|
-
"
|
|
33874
|
-
"
|
|
33875
|
-
"
|
|
33876
|
-
"
|
|
33877
|
-
"
|
|
33878
|
-
"
|
|
33879
|
-
"
|
|
33880
|
-
"
|
|
33881
|
-
"
|
|
33882
|
-
"
|
|
33883
|
-
"
|
|
33884
|
-
"
|
|
33885
|
-
"
|
|
33886
|
-
"
|
|
33887
|
-
"
|
|
33888
|
-
"
|
|
33889
|
-
"
|
|
33890
|
-
"
|
|
33891
|
-
"
|
|
33892
|
-
"
|
|
33893
|
-
"
|
|
33894
|
-
"
|
|
33895
|
-
"
|
|
33896
|
-
"
|
|
33897
|
-
"
|
|
33898
|
-
"
|
|
33899
|
-
"
|
|
33900
|
-
"
|
|
33901
|
-
"
|
|
33902
|
-
"
|
|
33903
|
-
"
|
|
33904
|
-
"
|
|
33905
|
-
"
|
|
33906
|
-
"
|
|
33907
|
-
"
|
|
33908
|
-
"
|
|
33909
|
-
"
|
|
33910
|
-
"
|
|
33911
|
-
"
|
|
33912
|
-
"
|
|
33913
|
-
"
|
|
33914
|
-
"
|
|
33915
|
-
"
|
|
33916
|
-
"
|
|
33917
|
-
"
|
|
33918
|
-
"
|
|
33919
|
-
"
|
|
33920
|
-
"
|
|
33921
|
-
"
|
|
33922
|
-
"
|
|
33923
|
-
"
|
|
33924
|
-
"
|
|
33925
|
-
"
|
|
33926
|
-
"
|
|
33927
|
-
"
|
|
33928
|
-
"
|
|
33929
|
-
"
|
|
33930
|
-
"
|
|
33931
|
-
"
|
|
33932
|
-
"
|
|
33933
|
-
"
|
|
33934
|
-
"
|
|
33935
|
-
"
|
|
33936
|
-
"
|
|
33937
|
-
"
|
|
33938
|
-
"
|
|
33939
|
-
"
|
|
33940
|
-
"
|
|
33941
|
-
"
|
|
33942
|
-
"
|
|
33943
|
-
"
|
|
33944
|
-
"
|
|
33945
|
-
"
|
|
33946
|
-
"
|
|
33947
|
-
"
|
|
33948
|
-
"
|
|
33949
|
-
"
|
|
33950
|
-
"
|
|
33951
|
-
"
|
|
33952
|
-
"
|
|
33953
|
-
"
|
|
33954
|
-
"
|
|
33955
|
-
"
|
|
33956
|
-
"
|
|
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
|
|