@elastic/eui 105.0.0 → 106.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -652,6 +652,8 @@ declare module '@elastic/eui/src/services/color/eui_palettes' {
|
|
|
652
652
|
};
|
|
653
653
|
export type EuiPaletteColorBlindProps = EuiPaletteCommonProps & EuiPaletteRotationProps;
|
|
654
654
|
/**
|
|
655
|
+
* For usage in React use the `useEuiPaletteColorBlind` hook instead.
|
|
656
|
+
*
|
|
655
657
|
* NOTE: These functions rely on base vis colors of the theme which are provided via a global
|
|
656
658
|
* singleton instance `EUI_VIS_COLOR_STORE` that's updated by the EuiProvider on theme change.
|
|
657
659
|
* Make sure the function is recalled on theme change to retrieve theme-related colors.
|
|
@@ -661,6 +663,8 @@ declare module '@elastic/eui/src/services/color/eui_palettes' {
|
|
|
661
663
|
*/
|
|
662
664
|
export const euiPaletteColorBlind: ({ rotations, order, direction, sortBy, sortShift, colors, }?: EuiPaletteColorBlindProps) => EuiPalette;
|
|
663
665
|
/**
|
|
666
|
+
* For usage in React use the `useEuiPaletteColorBlindBehindText` hook instead.
|
|
667
|
+
*
|
|
664
668
|
* Color blind palette with text is meant for use when text is applied on top of the color.
|
|
665
669
|
* It increases the brightness of the color to give the text more contrast.
|
|
666
670
|
*
|
|
@@ -683,56 +687,78 @@ declare module '@elastic/eui/src/services/color/eui_palettes' {
|
|
|
683
687
|
*/
|
|
684
688
|
export const euiPaletteForDarkBackground: ({ colors, }?: EuiPaletteCommonProps) => EuiPalette;
|
|
685
689
|
/**
|
|
690
|
+
* For usage in React use the `useEuiPaletteForStatus` hook instead.
|
|
691
|
+
*
|
|
686
692
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
687
693
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
688
694
|
*/
|
|
689
695
|
export const euiPaletteForStatus: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
|
|
690
696
|
/**
|
|
697
|
+
* For usage in React use the `useEuiPaletteForTemperature` hook instead.
|
|
698
|
+
*
|
|
691
699
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
692
700
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
693
701
|
*/
|
|
694
702
|
export const euiPaletteForTemperature: (steps: any, { colors, hasVisColorAdjustment }?: EuiPaletteCommonProps) => EuiPalette;
|
|
695
703
|
/**
|
|
704
|
+
* For usage in React use the `useEuiPaletteComplementary` hook instead.
|
|
705
|
+
*
|
|
696
706
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
697
707
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
698
708
|
*/
|
|
699
709
|
export const euiPaletteComplementary: (steps: number, { colors, hasVisColorAdjustment }?: EuiPaletteCommonProps) => EuiPalette;
|
|
700
710
|
/**
|
|
711
|
+
* For usage in React use the `useEuiPaletteRed` hook instead.
|
|
712
|
+
*
|
|
701
713
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
702
714
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
703
715
|
*/
|
|
704
716
|
export const euiPaletteRed: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
|
|
705
717
|
/**
|
|
718
|
+
* For usage in React use the `useEuiPaletteGreen` hook instead.
|
|
719
|
+
*
|
|
706
720
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
707
721
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
708
722
|
*/
|
|
709
723
|
export const euiPaletteGreen: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
|
|
710
724
|
/**
|
|
725
|
+
* For usage in React use the `useEuiPaletteSkyBlue` hook instead.
|
|
726
|
+
*
|
|
711
727
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
712
728
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
713
729
|
*/
|
|
714
730
|
export const euiPaletteSkyBlue: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
|
|
715
731
|
/**
|
|
732
|
+
* For usage in React use the `useEuiPaletteYellow` hook instead.
|
|
733
|
+
*
|
|
716
734
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
717
735
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
718
736
|
*/
|
|
719
737
|
export const euiPaletteYellow: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
|
|
720
738
|
/**
|
|
739
|
+
* For usage in React use the `useEuiPaletteOrange` hook instead.
|
|
740
|
+
*
|
|
721
741
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
722
742
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
723
743
|
*/
|
|
724
744
|
export const euiPaletteOrange: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
|
|
725
745
|
/**
|
|
746
|
+
* For usage in React use the `useEuiPaletteCool` hook instead.
|
|
747
|
+
*
|
|
726
748
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
727
749
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
728
750
|
*/
|
|
729
751
|
export const euiPaletteCool: (steps: number, { colors, hasVisColorAdjustment }?: EuiPaletteCommonProps) => EuiPalette;
|
|
730
752
|
/**
|
|
753
|
+
* For usage in React use the `useEuiPaletteWarm` hook instead.
|
|
754
|
+
*
|
|
731
755
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
732
756
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
733
757
|
*/
|
|
734
758
|
export const euiPaletteWarm: (steps: number, { colors }?: EuiPaletteCommonProps) => EuiPalette;
|
|
735
759
|
/**
|
|
760
|
+
* For usage in React use the `useEuiPaletteGray` hook instead.
|
|
761
|
+
*
|
|
736
762
|
* NOTE: This function is not pure. It relies on `EUI_VIS_COLOR_STORE` which is updated by the
|
|
737
763
|
* EuiProvider on theme change. Ensure to recall the function on theme change or subscribe to the store.
|
|
738
764
|
*/
|
|
@@ -740,7 +766,9 @@ declare module '@elastic/eui/src/services/color/eui_palettes' {
|
|
|
740
766
|
|
|
741
767
|
}
|
|
742
768
|
declare module '@elastic/eui/src/services/color/visualization_colors' {
|
|
769
|
+
/** @deprecated - use the data vis colors on `euiTheme.colors.vis` instead */
|
|
743
770
|
export const VISUALIZATION_COLORS: import ("@elastic/eui/src/services/color/eui_palettes").EuiPalette;
|
|
771
|
+
/** @deprecated - use the data vis colors on `euiTheme.colors.vis` instead */
|
|
744
772
|
export const DEFAULT_VISUALIZATION_COLOR: string;
|
|
745
773
|
|
|
746
774
|
}
|
|
@@ -1112,7 +1140,7 @@ declare module '@elastic/eui/src/global_styling/mixins/_button' {
|
|
|
1112
1140
|
minWidth: number;
|
|
1113
1141
|
height: string;
|
|
1114
1142
|
radius: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
1115
|
-
fontScale: "xs";
|
|
1143
|
+
fontScale: "s" | "xs";
|
|
1116
1144
|
};
|
|
1117
1145
|
s: {
|
|
1118
1146
|
minWidth: number;
|
|
@@ -4057,6 +4085,10 @@ declare module '@elastic/eui/src/components/form/form.styles' {
|
|
|
4057
4085
|
backgroundDisabledColor: string;
|
|
4058
4086
|
backgroundReadOnlyColor: string;
|
|
4059
4087
|
borderColor: string;
|
|
4088
|
+
borderHovered: string;
|
|
4089
|
+
borderFocused: string;
|
|
4090
|
+
borderInvalid: string;
|
|
4091
|
+
borderInvalidHovered: string;
|
|
4060
4092
|
controlDisabledColor: string;
|
|
4061
4093
|
controlBoxShadow: string;
|
|
4062
4094
|
controlPlaceholderText: string;
|
|
@@ -4066,7 +4098,7 @@ declare module '@elastic/eui/src/components/form/form.styles' {
|
|
|
4066
4098
|
controlCompressedHeight: string;
|
|
4067
4099
|
controlPadding: string;
|
|
4068
4100
|
controlCompressedPadding: string;
|
|
4069
|
-
controlBorderRadius:
|
|
4101
|
+
controlBorderRadius: string | number | undefined;
|
|
4070
4102
|
controlCompressedBorderRadius: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
4071
4103
|
iconAffordance: string;
|
|
4072
4104
|
iconCompressedAffordance: string;
|
|
@@ -4092,12 +4124,15 @@ declare module '@elastic/eui/src/components/form/form.styles' {
|
|
|
4092
4124
|
withBackgroundColor?: boolean;
|
|
4093
4125
|
withBackgroundAnimation?: boolean;
|
|
4094
4126
|
}) => string;
|
|
4127
|
+
export const disableFormControlHoverStyles: () => string;
|
|
4128
|
+
export const euiFormControlHoverStyles: (euiThemeContext: UseEuiTheme) => string;
|
|
4129
|
+
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";
|
|
4095
4130
|
export const euiFormControlFocusStyles: (euiThemeContext: UseEuiTheme) => string;
|
|
4096
4131
|
export const euiFormControlInvalidStyles: (euiThemeContext: UseEuiTheme) => string;
|
|
4097
4132
|
export const euiFormControlDisabledStyles: (euiThemeContext: UseEuiTheme) => string;
|
|
4098
4133
|
export const euiFormControlReadOnlyStyles: (euiThemeContext: UseEuiTheme) => string;
|
|
4099
4134
|
export const euiFormControlAutoFillStyles: (euiThemeContext: UseEuiTheme) => string;
|
|
4100
|
-
export const
|
|
4135
|
+
export const euiFormControlShowBackgroundLine: (euiThemeContext: UseEuiTheme, color: string) => string;
|
|
4101
4136
|
/**
|
|
4102
4137
|
* Selection custom controls - checkboxes, radios, and switches
|
|
4103
4138
|
*/
|
|
@@ -6323,7 +6358,7 @@ declare module '@elastic/eui/src/components/form/eui_form_context' {
|
|
|
6323
6358
|
}
|
|
6324
6359
|
declare module '@elastic/eui/src/components/form/form_control_layout/form_control_layout_clear_button.styles' {
|
|
6325
6360
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
6326
|
-
export const EuiFormControlLayoutClearButtonStyles: (
|
|
6361
|
+
export const EuiFormControlLayoutClearButtonStyles: (euiThemeContext: UseEuiTheme) => {
|
|
6327
6362
|
euiFormControlLayoutClearButton: import("@emotion/react").SerializedStyles;
|
|
6328
6363
|
size: {
|
|
6329
6364
|
s: string;
|
|
@@ -6532,10 +6567,11 @@ declare module '@elastic/eui/src/components/form/form_control_layout/form_contro
|
|
|
6532
6567
|
childrenWrapper: {
|
|
6533
6568
|
delimited: import("@emotion/react").SerializedStyles;
|
|
6534
6569
|
invalid: import("@emotion/react").SerializedStyles;
|
|
6570
|
+
readOnly: import("@emotion/react").SerializedStyles;
|
|
6535
6571
|
};
|
|
6536
6572
|
};
|
|
6537
|
-
export const euiFormControlLayoutDelimited__delimiter: import("@emotion/react").SerializedStyles;
|
|
6538
|
-
export const euiFormControlLayoutDelimited__input: import("@emotion/react").SerializedStyles;
|
|
6573
|
+
export const euiFormControlLayoutDelimited__delimiter: (euiThemeContext: UseEuiTheme) => import("@emotion/react").SerializedStyles;
|
|
6574
|
+
export const euiFormControlLayoutDelimited__input: (euiThemeContext: UseEuiTheme) => import("@emotion/react").SerializedStyles;
|
|
6539
6575
|
|
|
6540
6576
|
}
|
|
6541
6577
|
declare module '@elastic/eui/src/components/form/form_control_layout/form_control_layout_delimited' {
|
|
@@ -11711,11 +11747,12 @@ declare module '@elastic/eui/src/components/flyout/flyout_child.styles' {
|
|
|
11711
11747
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
11712
11748
|
export const euiFlyoutChildStyles: (euiThemeContext: UseEuiTheme) => {
|
|
11713
11749
|
euiFlyoutChild: import("@emotion/react").SerializedStyles;
|
|
11750
|
+
backgroundDefault: import("@emotion/react").SerializedStyles;
|
|
11751
|
+
backgroundShaded: import("@emotion/react").SerializedStyles;
|
|
11714
11752
|
sidePosition: import("@emotion/react").SerializedStyles;
|
|
11715
11753
|
stackedPosition: import("@emotion/react").SerializedStyles;
|
|
11716
11754
|
s: import("@emotion/react").SerializedStyles;
|
|
11717
11755
|
m: import("@emotion/react").SerializedStyles;
|
|
11718
|
-
closeButton: import("@emotion/react").SerializedStyles;
|
|
11719
11756
|
overflow: {
|
|
11720
11757
|
overflow: import("@emotion/react").SerializedStyles;
|
|
11721
11758
|
wrapper: import("@emotion/react").SerializedStyles;
|
|
@@ -11812,6 +11849,7 @@ declare module '@elastic/eui/src/components/flyout/flyout_child' {
|
|
|
11812
11849
|
* @default 's'
|
|
11813
11850
|
*/
|
|
11814
11851
|
size?: 's' | 'm';
|
|
11852
|
+
backgroundStyle?: 'shaded' | 'default';
|
|
11815
11853
|
/**
|
|
11816
11854
|
* Children are implicitly part of FunctionComponent, but good to have if props type is standalone.
|
|
11817
11855
|
*/
|
|
@@ -12582,8 +12620,6 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
|
|
|
12582
12620
|
isMainOpen: boolean;
|
|
12583
12621
|
isChildOpen: boolean;
|
|
12584
12622
|
config: EuiFlyoutSessionConfig;
|
|
12585
|
-
mainOnUnmount?: () => void;
|
|
12586
|
-
childOnUnmount?: () => void;
|
|
12587
12623
|
meta?: FlyoutMeta;
|
|
12588
12624
|
}
|
|
12589
12625
|
/**
|
|
@@ -12598,15 +12634,12 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
|
|
|
12598
12634
|
type: 'UPDATE_ACTIVE_FLYOUT_CONFIG';
|
|
12599
12635
|
payload: {
|
|
12600
12636
|
configChanges: Partial<EuiFlyoutSessionConfig>;
|
|
12601
|
-
newMainOnUnmount?: () => void;
|
|
12602
|
-
newChildOnUnmount?: () => void;
|
|
12603
12637
|
};
|
|
12604
12638
|
} | {
|
|
12605
12639
|
type: 'OPEN_MAIN_FLYOUT';
|
|
12606
12640
|
payload: {
|
|
12607
12641
|
size: EuiFlyoutSize;
|
|
12608
12642
|
flyoutProps?: Partial<Omit<EuiFlyoutProps, 'children'>>;
|
|
12609
|
-
onUnmount?: () => void;
|
|
12610
12643
|
meta?: FlyoutMeta;
|
|
12611
12644
|
};
|
|
12612
12645
|
} | {
|
|
@@ -12614,7 +12647,6 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
|
|
|
12614
12647
|
payload: {
|
|
12615
12648
|
size: 's' | 'm';
|
|
12616
12649
|
flyoutProps?: Partial<Omit<EuiFlyoutChildProps, 'children'>>;
|
|
12617
|
-
onUnmount?: () => void;
|
|
12618
12650
|
meta?: FlyoutMeta;
|
|
12619
12651
|
};
|
|
12620
12652
|
} | {
|
|
@@ -12623,12 +12655,10 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
|
|
|
12623
12655
|
main: {
|
|
12624
12656
|
size: EuiFlyoutSize;
|
|
12625
12657
|
flyoutProps?: Partial<Omit<EuiFlyoutProps, 'children'>>;
|
|
12626
|
-
onUnmount?: () => void;
|
|
12627
12658
|
};
|
|
12628
12659
|
child: {
|
|
12629
12660
|
size: 's' | 'm';
|
|
12630
12661
|
flyoutProps?: Partial<Omit<EuiFlyoutChildProps, 'children'>>;
|
|
12631
|
-
onUnmount?: () => void;
|
|
12632
12662
|
};
|
|
12633
12663
|
meta?: FlyoutMeta;
|
|
12634
12664
|
};
|
|
@@ -12643,13 +12673,7 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
|
|
|
12643
12673
|
* Flyout session context managed by `EuiFlyoutSessionProvider`, and passed to the `renderMainFlyoutContent` and `renderChildFlyoutContent` functions.
|
|
12644
12674
|
*/
|
|
12645
12675
|
export interface EuiFlyoutSessionRenderContext<FlyoutMeta = unknown> {
|
|
12646
|
-
flyoutProps: Partial<EuiFlyoutProps | EuiFlyoutChildProps>;
|
|
12647
|
-
flyoutSize: EuiFlyoutProps['size'] | EuiFlyoutChildProps['size'];
|
|
12648
|
-
flyoutType: 'main' | 'child';
|
|
12649
|
-
dispatch: React.Dispatch<EuiFlyoutSessionAction<FlyoutMeta>>;
|
|
12650
12676
|
activeFlyoutGroup: EuiFlyoutSessionGroup<FlyoutMeta> | null;
|
|
12651
|
-
onCloseFlyout: () => void;
|
|
12652
|
-
onCloseChildFlyout: () => void;
|
|
12653
12677
|
meta?: FlyoutMeta;
|
|
12654
12678
|
}
|
|
12655
12679
|
/**
|
|
@@ -12657,6 +12681,7 @@ declare module '@elastic/eui/src/components/flyout/sessions/types' {
|
|
|
12657
12681
|
*/
|
|
12658
12682
|
export interface EuiFlyoutSessionProviderComponentProps<FlyoutMeta = any> {
|
|
12659
12683
|
children: React.ReactNode;
|
|
12684
|
+
onUnmount?: () => void;
|
|
12660
12685
|
renderMainFlyoutContent: (context: EuiFlyoutSessionRenderContext<FlyoutMeta>) => React.ReactNode;
|
|
12661
12686
|
renderChildFlyoutContent?: (context: EuiFlyoutSessionRenderContext<FlyoutMeta>) => React.ReactNode;
|
|
12662
12687
|
}
|
|
@@ -12682,6 +12707,7 @@ declare module '@elastic/eui/src/components/flyout/sessions/flyout_provider' {
|
|
|
12682
12707
|
interface FlyoutSessionContextProps {
|
|
12683
12708
|
state: EuiFlyoutSessionHistoryState;
|
|
12684
12709
|
dispatch: React.Dispatch<EuiFlyoutSessionAction>;
|
|
12710
|
+
onUnmount?: EuiFlyoutSessionProviderComponentProps['onUnmount'];
|
|
12685
12711
|
}
|
|
12686
12712
|
/**
|
|
12687
12713
|
* Accesses the state data and dispatch function from the context of EuiFlyoutSessionProvider
|
|
@@ -12711,7 +12737,6 @@ declare module '@elastic/eui/src/components/flyout/sessions/use_eui_flyout' {
|
|
|
12711
12737
|
export interface EuiFlyoutSessionOpenMainOptions<Meta = unknown> {
|
|
12712
12738
|
size: EuiFlyoutSize;
|
|
12713
12739
|
flyoutProps?: EuiFlyoutSessionConfig['mainFlyoutProps'];
|
|
12714
|
-
onUnmount?: () => void;
|
|
12715
12740
|
meta?: Meta;
|
|
12716
12741
|
}
|
|
12717
12742
|
/**
|
|
@@ -12720,7 +12745,6 @@ declare module '@elastic/eui/src/components/flyout/sessions/use_eui_flyout' {
|
|
|
12720
12745
|
export interface EuiFlyoutSessionOpenChildOptions<Meta = unknown> {
|
|
12721
12746
|
size: 's' | 'm';
|
|
12722
12747
|
flyoutProps?: EuiFlyoutSessionConfig['childFlyoutProps'];
|
|
12723
|
-
onUnmount?: () => void;
|
|
12724
12748
|
meta?: Meta;
|
|
12725
12749
|
}
|
|
12726
12750
|
/**
|
|
@@ -12730,35 +12754,35 @@ declare module '@elastic/eui/src/components/flyout/sessions/use_eui_flyout' {
|
|
|
12730
12754
|
main: {
|
|
12731
12755
|
size: EuiFlyoutSize;
|
|
12732
12756
|
flyoutProps?: EuiFlyoutSessionConfig['mainFlyoutProps'];
|
|
12733
|
-
onUnmount?: () => void;
|
|
12734
12757
|
};
|
|
12735
12758
|
child: {
|
|
12736
12759
|
size: 's' | 'm';
|
|
12737
12760
|
flyoutProps?: EuiFlyoutSessionConfig['childFlyoutProps'];
|
|
12738
|
-
onUnmount?: () => void;
|
|
12739
12761
|
};
|
|
12740
12762
|
meta?: Meta;
|
|
12741
12763
|
}
|
|
12742
|
-
|
|
12743
|
-
* Hook for accessing the flyout API
|
|
12744
|
-
*/
|
|
12745
|
-
export function useEuiFlyoutSession(): {
|
|
12764
|
+
export interface EuiFlyoutSessionApi {
|
|
12746
12765
|
openFlyout: (options: EuiFlyoutSessionOpenMainOptions) => void;
|
|
12747
12766
|
openChildFlyout: (options: EuiFlyoutSessionOpenChildOptions) => void;
|
|
12748
12767
|
openFlyoutGroup: (options: EuiFlyoutSessionOpenGroupOptions) => void;
|
|
12749
12768
|
closeChildFlyout: () => void;
|
|
12750
12769
|
goBack: () => void;
|
|
12751
|
-
|
|
12770
|
+
clearHistory: () => void;
|
|
12752
12771
|
isFlyoutOpen: boolean;
|
|
12753
12772
|
isChildFlyoutOpen: boolean;
|
|
12754
|
-
|
|
12755
|
-
}
|
|
12773
|
+
canGoBack: boolean;
|
|
12774
|
+
}
|
|
12775
|
+
/**
|
|
12776
|
+
* Hook for accessing the flyout API
|
|
12777
|
+
* @public
|
|
12778
|
+
*/
|
|
12779
|
+
export function useEuiFlyoutSession(): EuiFlyoutSessionApi;
|
|
12756
12780
|
|
|
12757
12781
|
}
|
|
12758
12782
|
declare module '@elastic/eui/src/components/flyout/sessions' {
|
|
12759
12783
|
export { EuiFlyoutSessionProvider, useEuiFlyoutSessionContext, } from '@elastic/eui/src/components/flyout/sessions/flyout_provider';
|
|
12760
12784
|
export type { EuiFlyoutSessionConfig, EuiFlyoutSessionProviderComponentProps, EuiFlyoutSessionRenderContext, } from '@elastic/eui/src/components/flyout/sessions/types';
|
|
12761
|
-
export { useEuiFlyoutSession, type EuiFlyoutSessionOpenChildOptions, type EuiFlyoutSessionOpenMainOptions, } from '@elastic/eui/src/components/flyout/sessions/use_eui_flyout';
|
|
12785
|
+
export { useEuiFlyoutSession, type EuiFlyoutSessionOpenChildOptions, type EuiFlyoutSessionOpenMainOptions, type EuiFlyoutSessionApi, } from '@elastic/eui/src/components/flyout/sessions/use_eui_flyout';
|
|
12762
12786
|
|
|
12763
12787
|
}
|
|
12764
12788
|
declare module '@elastic/eui/src/components/flyout' {
|
|
@@ -12775,7 +12799,7 @@ declare module '@elastic/eui/src/components/flyout' {
|
|
|
12775
12799
|
export { EuiFlyoutResizable } from '@elastic/eui/src/components/flyout/flyout_resizable';
|
|
12776
12800
|
export { EuiFlyoutChild } from '@elastic/eui/src/components/flyout/flyout_child';
|
|
12777
12801
|
export type { EuiFlyoutChildProps } from '@elastic/eui/src/components/flyout/flyout_child';
|
|
12778
|
-
export type { EuiFlyoutSessionConfig, EuiFlyoutSessionOpenChildOptions, EuiFlyoutSessionOpenMainOptions, EuiFlyoutSessionProviderComponentProps, EuiFlyoutSessionRenderContext, } from '@elastic/eui/src/components/flyout/sessions';
|
|
12802
|
+
export type { EuiFlyoutSessionConfig, EuiFlyoutSessionOpenChildOptions, EuiFlyoutSessionOpenMainOptions, EuiFlyoutSessionProviderComponentProps, EuiFlyoutSessionRenderContext, EuiFlyoutSessionApi, } from '@elastic/eui/src/components/flyout/sessions';
|
|
12779
12803
|
export { EuiFlyoutSessionProvider, useEuiFlyoutSession } from '@elastic/eui/src/components/flyout/sessions';
|
|
12780
12804
|
|
|
12781
12805
|
}
|
|
@@ -12986,9 +13010,17 @@ declare module '@elastic/eui/src/themes/amsterdam/global_styling/variables/_form
|
|
|
12986
13010
|
backgroundReadOnly: any;
|
|
12987
13011
|
backgroundFocused: any;
|
|
12988
13012
|
backgroundAutofilled: string;
|
|
13013
|
+
backgroundDropping: string;
|
|
12989
13014
|
prependBackground: string;
|
|
12990
13015
|
border: string;
|
|
13016
|
+
borderDisabled: string;
|
|
13017
|
+
borderFocused: any;
|
|
13018
|
+
borderInvalid: any;
|
|
13019
|
+
borderHovered: string;
|
|
13020
|
+
borderInvalidHovered: any;
|
|
12991
13021
|
borderAutofilled: string;
|
|
13022
|
+
borderAutofilledHovered: string;
|
|
13023
|
+
clearButtonBackground: any;
|
|
12992
13024
|
controlBorder: string;
|
|
12993
13025
|
controlBorderSelected: string;
|
|
12994
13026
|
controlBorderDisabled: string;
|
|
@@ -13004,12 +13036,20 @@ declare module '@elastic/eui/src/themes/amsterdam/global_styling/variables/_form
|
|
|
13004
13036
|
backgroundAutofilled: string;
|
|
13005
13037
|
prependBackground: string;
|
|
13006
13038
|
border: string;
|
|
13039
|
+
clearButtonBackground: any;
|
|
13007
13040
|
controlBorder: string;
|
|
13008
13041
|
controlBorderSelected: string;
|
|
13009
13042
|
controlBorderDisabled: string;
|
|
13010
13043
|
backgroundDisabled: string;
|
|
13011
13044
|
backgroundReadOnly: any;
|
|
13045
|
+
backgroundDropping: string;
|
|
13046
|
+
borderDisabled: string;
|
|
13047
|
+
borderFocused: any;
|
|
13048
|
+
borderInvalid: any;
|
|
13049
|
+
borderHovered: string;
|
|
13050
|
+
borderInvalidHovered: any;
|
|
13012
13051
|
borderAutofilled: string;
|
|
13052
|
+
borderAutofilledHovered: string;
|
|
13013
13053
|
controlBackgroundUnselected: any;
|
|
13014
13054
|
controlBackgroundDisabled: any;
|
|
13015
13055
|
colorHasPlaceholder: string;
|
|
@@ -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
|
|