@elastic/eui 92.2.1 → 93.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eui_theme_dark.css +0 -304
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +0 -304
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/avatar/avatar.js +1 -1
- package/es/components/badge/badge.js +1 -1
- package/es/components/badge/beta_badge/beta_badge.js +1 -1
- package/es/components/basic_table/basic_table.js +1 -10
- package/es/components/basic_table/in_memory_table.js +1 -11
- package/es/components/beacon/beacon.js +9 -6
- package/es/components/breadcrumbs/breadcrumb.js +0 -10
- package/es/components/breadcrumbs/breadcrumbs.js +0 -10
- package/es/components/button/button.js +1 -1
- package/es/components/button/button_display/_button_display.js +1 -1
- package/es/components/button/button_display/_button_display_content.js +1 -1
- package/es/components/button/button_empty/button_empty.js +1 -1
- package/es/components/button/button_group/button_group.js +1 -1
- package/es/components/button/button_group/button_group_button.js +1 -1
- package/es/components/button/button_icon/button_icon.js +1 -1
- package/es/components/call_out/call_out.js +1 -1
- package/es/components/card/card.js +2 -2
- package/es/components/card/card_select/card_select.js +1 -1
- package/es/components/code/code.js +2 -2
- package/es/components/code/code.styles.js +2 -4
- package/es/components/code/code_block.js +5 -3
- package/es/components/code/code_block.styles.js +4 -7
- package/es/components/code/code_block_controls.js +2 -2
- package/es/components/code/code_block_controls.styles.js +2 -4
- package/es/components/code/code_block_full_screen.js +2 -2
- package/es/components/code/code_syntax.styles.js +39 -34
- package/es/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +1 -1
- package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_item.js +2 -2
- package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +2 -2
- package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsible_nav_item.js +4 -4
- package/es/components/comment_list/comment.js +2 -2
- package/es/components/comment_list/comment_event.js +4 -3
- package/es/components/comment_list/comment_event.styles.js +2 -18
- package/es/components/comment_list/comment_list.js +2 -2
- package/es/components/comment_list/comment_timeline.js +1 -1
- package/es/components/context_menu/context_menu.js +17 -10
- package/es/components/context_menu/context_menu_item.js +2 -14
- package/es/components/datagrid/body/cell/data_grid_cell.js +25 -24
- package/es/components/datagrid/body/data_grid_body.js +13 -13
- package/es/components/datagrid/body/data_grid_body_custom.js +13 -13
- package/es/components/datagrid/body/data_grid_body_virtualized.js +13 -13
- package/es/components/datagrid/body/header/data_grid_header_cell.js +12 -12
- package/es/components/datagrid/body/header/data_grid_header_row.js +13 -13
- package/es/components/datagrid/controls/column_sorting_draggable.js +1 -1
- package/es/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
- package/es/components/datagrid/utils/in_memory.js +12 -12
- package/es/components/date_picker/auto_refresh/auto_refresh.js +34 -10
- package/es/components/date_picker/auto_refresh/refresh_interval.js +43 -13
- package/es/components/date_picker/date_picker.js +2 -2
- package/es/components/date_picker/date_picker_range.js +1 -1
- package/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +10 -2
- package/es/components/date_picker/super_date_picker/date_popover/date_popover_content.js +4 -1
- package/es/components/date_picker/super_date_picker/pretty_duration.js +45 -18
- package/es/components/date_picker/super_date_picker/pretty_interval.js +33 -17
- package/es/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +4 -1
- package/es/components/date_picker/super_date_picker/super_date_picker.js +55 -8
- package/es/components/empty_prompt/empty_prompt.js +63 -66
- package/es/components/empty_prompt/empty_prompt.styles.js +115 -0
- package/es/components/facet/facet_button.js +1 -1
- package/es/components/form/field_number/field_number.js +1 -1
- package/es/components/form/field_text/field_text.js +2 -2
- package/es/components/form/form_control_layout/form_control_layout.js +2 -2
- package/es/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
- package/es/components/form/form_control_layout/form_control_layout_icons.js +2 -2
- package/es/components/form/text_area/text_area.js +2 -2
- package/es/components/header/header_breadcrumbs/header_breadcrumbs.js +0 -10
- package/es/components/header/header_links/header_link.js +1 -1
- package/es/components/header/header_links/header_links.js +1 -11
- package/es/components/header/header_logo/header_logo.js +1 -1
- package/es/components/header/header_section/header_section_item_button.js +1 -1
- package/es/components/highlight/_highlight_all.js +87 -0
- package/es/components/highlight/_highlight_first.js +47 -0
- package/es/components/highlight/highlight.js +33 -76
- package/es/components/icon/assets/index.js +33 -0
- package/es/components/icon/icon.js +1 -1
- package/es/components/icon/icon_map.js +1 -0
- package/es/components/key_pad_menu/key_pad_menu_item.js +1 -1
- package/es/components/list_group/list_group.js +2 -2
- package/es/components/list_group/list_group_item.js +2 -2
- package/es/components/list_group/list_group_item_extra_action.js +1 -1
- package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +4 -4
- package/es/components/loading/loading_logo.js +1 -1
- package/es/components/markdown_editor/markdown_editor.js +1 -1
- package/es/components/markdown_editor/markdown_editor_drop_zone.js +1 -1
- package/es/components/markdown_editor/markdown_editor_footer.js +1 -1
- package/es/components/markdown_editor/markdown_editor_toolbar.js +1 -1
- package/es/components/page/page_header/page_header_content.js +1 -11
- package/es/components/pagination/pagination_button.js +1 -1
- package/es/components/popover/popover.js +3 -15
- package/es/components/search_bar/search_bar.js +36 -32
- package/es/components/search_bar/search_bar.styles.js +22 -0
- package/es/components/selectable/selectable_list/selectable_list.js +1 -1
- package/es/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/es/components/selectable/selectable_templates/selectable_template_sitewide.js +1 -1
- package/es/components/table/table_header_button.js +1 -1
- package/es/components/text_truncate/text_truncate.js +4 -1
- package/es/components/timeline/timeline_item_icon.js +1 -1
- package/es/components/toast/global_toast_list.js +1 -1
- package/es/components/toast/toast.js +1 -1
- package/es/components/tool_tip/icon_tip.js +1 -1
- package/es/components/tour/_tour_footer.js +97 -0
- package/es/components/tour/_tour_footer.styles.js +23 -0
- package/es/components/tour/_tour_header.js +37 -0
- package/es/components/tour/_tour_header.styles.js +20 -0
- package/es/components/tour/tour.styles.js +5 -28
- package/es/components/tour/tour_step.js +45 -130
- package/es/components/tree_view/_tree_view_item.js +83 -0
- package/es/components/tree_view/_tree_view_item.styles.js +38 -0
- package/es/components/tree_view/tree_view.a11y.js +2 -2
- package/es/components/tree_view/tree_view.js +73 -97
- package/es/components/tree_view/tree_view.styles.js +18 -0
- package/es/global_styling/mixins/_color.js +46 -13
- package/eui.d.ts +304 -88
- package/i18ntokens.json +258 -276
- package/lib/components/avatar/avatar.js +1 -1
- package/lib/components/badge/badge.js +1 -1
- package/lib/components/badge/beta_badge/beta_badge.js +1 -1
- package/lib/components/basic_table/basic_table.js +1 -10
- package/lib/components/basic_table/in_memory_table.js +1 -11
- package/lib/components/beacon/beacon.js +11 -6
- package/lib/components/breadcrumbs/breadcrumb.js +0 -10
- package/lib/components/button/button.js +1 -1
- package/lib/components/button/button_display/_button_display.js +1 -1
- package/lib/components/button/button_display/_button_display_content.js +1 -1
- package/lib/components/button/button_empty/button_empty.js +1 -1
- package/lib/components/button/button_group/button_group.js +1 -1
- package/lib/components/button/button_group/button_group_button.js +1 -1
- package/lib/components/button/button_icon/button_icon.js +1 -1
- package/lib/components/call_out/call_out.js +1 -1
- package/lib/components/card/card.js +2 -2
- package/lib/components/card/card_select/card_select.js +1 -1
- package/lib/components/code/code.js +2 -2
- package/lib/components/code/code.styles.js +2 -4
- package/lib/components/code/code_block.js +5 -3
- package/lib/components/code/code_block.styles.js +4 -7
- package/lib/components/code/code_block_controls.js +2 -2
- package/lib/components/code/code_block_controls.styles.js +2 -4
- package/lib/components/code/code_block_full_screen.js +2 -2
- package/lib/components/code/code_syntax.styles.js +40 -36
- package/lib/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +1 -1
- package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_item.js +2 -2
- package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +2 -2
- package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsible_nav_item.js +4 -4
- package/lib/components/comment_list/comment.js +2 -2
- package/lib/components/comment_list/comment_event.js +3 -2
- package/lib/components/comment_list/comment_event.styles.js +3 -20
- package/lib/components/comment_list/comment_list.js +2 -2
- package/lib/components/comment_list/comment_timeline.js +1 -1
- package/lib/components/context_menu/context_menu.js +16 -9
- package/lib/components/context_menu/context_menu_item.js +2 -14
- package/lib/components/datagrid/body/cell/data_grid_cell.js +25 -24
- package/lib/components/datagrid/body/data_grid_body.js +13 -13
- package/lib/components/datagrid/body/data_grid_body_custom.js +13 -13
- package/lib/components/datagrid/body/data_grid_body_virtualized.js +13 -13
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +12 -12
- package/lib/components/datagrid/body/header/data_grid_header_row.js +13 -13
- package/lib/components/datagrid/controls/column_sorting_draggable.js +1 -1
- package/lib/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
- package/lib/components/datagrid/utils/in_memory.js +12 -12
- package/lib/components/date_picker/auto_refresh/auto_refresh.js +34 -10
- package/lib/components/date_picker/auto_refresh/refresh_interval.js +43 -13
- package/lib/components/date_picker/date_picker.js +2 -2
- package/lib/components/date_picker/date_picker_range.js +1 -1
- package/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +10 -2
- package/lib/components/date_picker/super_date_picker/date_popover/date_popover_content.js +4 -1
- package/lib/components/date_picker/super_date_picker/pretty_duration.js +45 -18
- package/lib/components/date_picker/super_date_picker/pretty_interval.js +33 -17
- package/lib/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +4 -1
- package/lib/components/date_picker/super_date_picker/super_date_picker.js +55 -8
- package/lib/components/empty_prompt/empty_prompt.js +65 -65
- package/lib/components/empty_prompt/empty_prompt.styles.js +120 -0
- package/lib/components/facet/facet_button.js +1 -1
- package/lib/components/form/field_number/field_number.js +1 -1
- package/lib/components/form/field_text/field_text.js +2 -2
- package/lib/components/form/form_control_layout/form_control_layout.js +2 -2
- package/lib/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
- package/lib/components/form/form_control_layout/form_control_layout_icons.js +2 -2
- package/lib/components/form/text_area/text_area.js +2 -2
- package/lib/components/header/header_links/header_link.js +1 -1
- package/lib/components/header/header_links/header_links.js +1 -1
- package/lib/components/header/header_logo/header_logo.js +1 -1
- package/lib/components/header/header_section/header_section_item_button.js +1 -1
- package/lib/components/highlight/_highlight_all.js +96 -0
- package/lib/components/highlight/_highlight_first.js +55 -0
- package/lib/components/highlight/highlight.js +32 -75
- package/lib/components/icon/assets/index.js +41 -0
- package/lib/components/icon/icon.js +1 -1
- package/lib/components/icon/icon_map.js +1 -0
- package/lib/components/icon/svgs/index.svg +3 -0
- package/lib/components/key_pad_menu/key_pad_menu_item.js +1 -1
- package/lib/components/list_group/list_group.js +2 -2
- package/lib/components/list_group/list_group_item.js +2 -2
- package/lib/components/list_group/list_group_item_extra_action.js +1 -1
- package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +4 -4
- package/lib/components/loading/loading_logo.js +1 -1
- package/lib/components/markdown_editor/markdown_editor.js +1 -1
- package/lib/components/markdown_editor/markdown_editor_drop_zone.js +1 -1
- package/lib/components/markdown_editor/markdown_editor_footer.js +1 -1
- package/lib/components/markdown_editor/markdown_editor_toolbar.js +1 -1
- package/lib/components/page/page_header/page_header_content.js +1 -1
- package/lib/components/pagination/pagination_button.js +1 -1
- package/lib/components/popover/popover.js +3 -15
- package/lib/components/search_bar/search_bar.js +37 -33
- package/lib/components/search_bar/search_bar.styles.js +30 -0
- package/lib/components/selectable/selectable_list/selectable_list.js +1 -1
- package/lib/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +1 -1
- package/lib/components/table/table_header_button.js +1 -1
- package/lib/components/text_truncate/text_truncate.js +4 -1
- package/lib/components/timeline/timeline_item_icon.js +1 -1
- package/lib/components/toast/global_toast_list.js +1 -1
- package/lib/components/toast/toast.js +1 -1
- package/lib/components/tool_tip/icon_tip.js +1 -1
- package/lib/components/tour/_tour_footer.js +105 -0
- package/lib/components/tour/_tour_footer.styles.js +31 -0
- package/lib/components/tour/_tour_header.js +48 -0
- package/lib/components/tour/_tour_header.styles.js +27 -0
- package/lib/components/tour/tour.styles.js +7 -32
- package/lib/components/tour/tour_step.js +42 -117
- package/lib/components/tree_view/_tree_view_item.js +93 -0
- package/lib/components/tree_view/_tree_view_item.styles.js +45 -0
- package/lib/components/tree_view/tree_view.a11y.js +2 -2
- package/lib/components/tree_view/tree_view.js +76 -99
- package/lib/components/tree_view/tree_view.styles.js +25 -0
- package/lib/global_styling/mixins/_color.js +50 -15
- package/optimize/es/components/basic_table/basic_table.js +0 -9
- package/optimize/es/components/basic_table/in_memory_table.js +0 -10
- package/optimize/es/components/beacon/beacon.js +9 -6
- package/optimize/es/components/code/code.js +2 -2
- package/optimize/es/components/code/code.styles.js +2 -4
- package/optimize/es/components/code/code_block.js +5 -3
- package/optimize/es/components/code/code_block.styles.js +4 -7
- package/optimize/es/components/code/code_block_controls.js +2 -2
- package/optimize/es/components/code/code_block_controls.styles.js +2 -4
- package/optimize/es/components/code/code_block_full_screen.js +2 -2
- package/optimize/es/components/code/code_syntax.styles.js +39 -34
- package/optimize/es/components/comment_list/comment_event.js +3 -2
- package/optimize/es/components/comment_list/comment_event.styles.js +2 -18
- package/optimize/es/components/context_menu/context_menu.js +11 -9
- package/optimize/es/components/context_menu/context_menu_item.js +2 -6
- package/optimize/es/components/datagrid/body/cell/data_grid_cell.js +1 -0
- package/optimize/es/components/date_picker/auto_refresh/auto_refresh.js +24 -7
- package/optimize/es/components/date_picker/auto_refresh/refresh_interval.js +31 -12
- package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +9 -2
- package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_content.js +3 -1
- package/optimize/es/components/date_picker/super_date_picker/pretty_duration.js +45 -18
- package/optimize/es/components/date_picker/super_date_picker/pretty_interval.js +33 -17
- package/optimize/es/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +3 -1
- package/optimize/es/components/date_picker/super_date_picker/super_date_picker.js +19 -2
- package/optimize/es/components/empty_prompt/empty_prompt.js +62 -62
- package/optimize/es/components/empty_prompt/empty_prompt.styles.js +112 -0
- package/optimize/es/components/highlight/_highlight_all.js +76 -0
- package/optimize/es/components/highlight/_highlight_first.js +40 -0
- package/optimize/es/components/highlight/highlight.js +25 -74
- package/optimize/es/components/icon/assets/index.js +32 -0
- package/optimize/es/components/icon/icon_map.js +1 -0
- package/optimize/es/components/popover/popover.js +3 -5
- package/optimize/es/components/search_bar/search_bar.js +36 -32
- package/optimize/es/components/search_bar/search_bar.styles.js +22 -0
- package/optimize/es/components/text_truncate/text_truncate.js +4 -1
- package/optimize/es/components/tour/_tour_footer.js +89 -0
- package/optimize/es/components/tour/_tour_footer.styles.js +23 -0
- package/optimize/es/components/tour/_tour_header.js +33 -0
- package/optimize/es/components/tour/_tour_header.styles.js +20 -0
- package/optimize/es/components/tour/tour.styles.js +5 -28
- package/optimize/es/components/tour/tour_step.js +45 -113
- package/optimize/es/components/tree_view/_tree_view_item.js +66 -0
- package/optimize/es/components/tree_view/_tree_view_item.styles.js +38 -0
- package/optimize/es/components/tree_view/tree_view.a11y.js +2 -2
- package/optimize/es/components/tree_view/tree_view.js +62 -91
- package/optimize/es/components/tree_view/tree_view.styles.js +18 -0
- package/optimize/es/global_styling/mixins/_color.js +46 -13
- package/optimize/lib/components/basic_table/basic_table.js +0 -9
- package/optimize/lib/components/basic_table/in_memory_table.js +0 -10
- package/optimize/lib/components/beacon/beacon.js +12 -6
- package/optimize/lib/components/code/code.js +2 -2
- package/optimize/lib/components/code/code.styles.js +2 -4
- package/optimize/lib/components/code/code_block.js +5 -3
- package/optimize/lib/components/code/code_block.styles.js +4 -7
- package/optimize/lib/components/code/code_block_controls.js +2 -2
- package/optimize/lib/components/code/code_block_controls.styles.js +2 -4
- package/optimize/lib/components/code/code_block_full_screen.js +2 -2
- package/optimize/lib/components/code/code_syntax.styles.js +40 -36
- package/optimize/lib/components/comment_list/comment_event.js +2 -1
- package/optimize/lib/components/comment_list/comment_event.styles.js +3 -20
- package/optimize/lib/components/context_menu/context_menu.js +10 -8
- package/optimize/lib/components/context_menu/context_menu_item.js +2 -6
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell.js +1 -0
- package/optimize/lib/components/date_picker/auto_refresh/auto_refresh.js +24 -7
- package/optimize/lib/components/date_picker/auto_refresh/refresh_interval.js +31 -12
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +9 -2
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/date_popover_content.js +3 -1
- package/optimize/lib/components/date_picker/super_date_picker/pretty_duration.js +45 -18
- package/optimize/lib/components/date_picker/super_date_picker/pretty_interval.js +33 -17
- package/optimize/lib/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +3 -1
- package/optimize/lib/components/date_picker/super_date_picker/super_date_picker.js +19 -2
- package/optimize/lib/components/empty_prompt/empty_prompt.js +65 -62
- package/optimize/lib/components/empty_prompt/empty_prompt.styles.js +118 -0
- package/optimize/lib/components/highlight/_highlight_all.js +86 -0
- package/optimize/lib/components/highlight/_highlight_first.js +48 -0
- package/optimize/lib/components/highlight/highlight.js +24 -73
- package/optimize/lib/components/icon/assets/index.js +41 -0
- package/optimize/lib/components/icon/icon_map.js +1 -0
- package/optimize/lib/components/icon/svgs/index.svg +3 -0
- package/optimize/lib/components/popover/popover.js +3 -5
- package/optimize/lib/components/search_bar/search_bar.js +37 -33
- package/optimize/lib/components/search_bar/search_bar.styles.js +30 -0
- package/optimize/lib/components/text_truncate/text_truncate.js +4 -1
- package/optimize/lib/components/tour/_tour_footer.js +100 -0
- package/optimize/lib/components/tour/_tour_footer.styles.js +31 -0
- package/optimize/lib/components/tour/_tour_header.js +43 -0
- package/optimize/lib/components/tour/_tour_header.styles.js +27 -0
- package/optimize/lib/components/tour/tour.styles.js +7 -32
- package/optimize/lib/components/tour/tour_step.js +42 -110
- package/optimize/lib/components/tree_view/_tree_view_item.js +76 -0
- package/optimize/lib/components/tree_view/_tree_view_item.styles.js +45 -0
- package/optimize/lib/components/tree_view/tree_view.a11y.js +2 -2
- package/optimize/lib/components/tree_view/tree_view.js +65 -93
- package/optimize/lib/components/tree_view/tree_view.styles.js +25 -0
- package/optimize/lib/global_styling/mixins/_color.js +50 -15
- package/package.json +3 -3
- package/src/components/index.scss +0 -3
- package/test-env/components/avatar/avatar.js +1 -1
- package/test-env/components/badge/badge.js +1 -1
- package/test-env/components/badge/beta_badge/beta_badge.js +1 -1
- package/test-env/components/basic_table/basic_table.js +1 -10
- package/test-env/components/basic_table/in_memory_table.js +1 -11
- package/test-env/components/beacon/beacon.js +12 -6
- package/test-env/components/breadcrumbs/breadcrumb.js +0 -10
- package/test-env/components/button/button.js +1 -1
- package/test-env/components/button/button_display/_button_display.js +1 -1
- package/test-env/components/button/button_display/_button_display_content.js +1 -1
- package/test-env/components/button/button_empty/button_empty.js +1 -1
- package/test-env/components/button/button_group/button_group.js +1 -1
- package/test-env/components/button/button_group/button_group_button.js +1 -1
- package/test-env/components/button/button_icon/button_icon.js +1 -1
- package/test-env/components/call_out/call_out.js +1 -1
- package/test-env/components/card/card.js +2 -2
- package/test-env/components/card/card_select/card_select.js +1 -1
- package/test-env/components/code/code.styles.js +2 -4
- package/test-env/components/code/code_block.styles.js +4 -7
- package/test-env/components/code/code_block_controls.js +2 -2
- package/test-env/components/code/code_block_controls.styles.js +2 -4
- package/test-env/components/code/code_block_full_screen.js +2 -2
- package/test-env/components/code/code_syntax.styles.js +40 -36
- package/test-env/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +1 -1
- package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_item.js +2 -2
- package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +2 -2
- package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsible_nav_item.js +4 -4
- package/test-env/components/comment_list/comment.js +2 -2
- package/test-env/components/comment_list/comment_event.js +3 -2
- package/test-env/components/comment_list/comment_event.styles.js +3 -20
- package/test-env/components/comment_list/comment_list.js +2 -2
- package/test-env/components/comment_list/comment_timeline.js +1 -1
- package/test-env/components/context_menu/context_menu.js +16 -9
- package/test-env/components/context_menu/context_menu_item.js +2 -14
- package/test-env/components/datagrid/body/cell/data_grid_cell.js +25 -24
- package/test-env/components/datagrid/body/data_grid_body.js +13 -13
- package/test-env/components/datagrid/body/data_grid_body_custom.js +13 -13
- package/test-env/components/datagrid/body/data_grid_body_virtualized.js +13 -13
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +12 -12
- package/test-env/components/datagrid/body/header/data_grid_header_row.js +13 -13
- package/test-env/components/datagrid/controls/column_sorting_draggable.js +1 -1
- package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
- package/test-env/components/datagrid/utils/in_memory.js +12 -12
- package/test-env/components/date_picker/auto_refresh/auto_refresh.js +34 -10
- package/test-env/components/date_picker/auto_refresh/refresh_interval.js +43 -13
- package/test-env/components/date_picker/date_picker.js +2 -2
- package/test-env/components/date_picker/date_picker_range.js +1 -1
- package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_button.js +10 -2
- package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_content.js +4 -1
- package/test-env/components/date_picker/super_date_picker/pretty_duration.js +45 -18
- package/test-env/components/date_picker/super_date_picker/pretty_interval.js +33 -17
- package/test-env/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +4 -1
- package/test-env/components/date_picker/super_date_picker/super_date_picker.js +55 -8
- package/test-env/components/empty_prompt/empty_prompt.js +66 -63
- package/test-env/components/empty_prompt/empty_prompt.styles.js +118 -0
- package/test-env/components/facet/facet_button.js +1 -1
- package/test-env/components/form/field_number/field_number.js +1 -1
- package/test-env/components/form/field_text/field_text.js +2 -2
- package/test-env/components/form/form_control_layout/form_control_layout.js +2 -2
- package/test-env/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
- package/test-env/components/form/form_control_layout/form_control_layout_icons.js +2 -2
- package/test-env/components/form/text_area/text_area.js +2 -2
- package/test-env/components/header/header_links/header_link.js +1 -1
- package/test-env/components/header/header_links/header_links.js +1 -1
- package/test-env/components/header/header_logo/header_logo.js +1 -1
- package/test-env/components/header/header_section/header_section_item_button.js +1 -1
- package/test-env/components/highlight/_highlight_all.js +93 -0
- package/test-env/components/highlight/_highlight_first.js +55 -0
- package/test-env/components/highlight/highlight.js +32 -75
- package/test-env/components/icon/assets/index.js +41 -0
- package/test-env/components/icon/icon_map.js +1 -0
- package/test-env/components/key_pad_menu/key_pad_menu_item.js +1 -1
- package/test-env/components/list_group/list_group.js +2 -2
- package/test-env/components/list_group/list_group_item.js +2 -2
- package/test-env/components/list_group/list_group_item_extra_action.js +1 -1
- package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +4 -4
- package/test-env/components/loading/loading_logo.js +1 -1
- package/test-env/components/markdown_editor/markdown_editor.js +1 -1
- package/test-env/components/markdown_editor/markdown_editor_drop_zone.js +1 -1
- package/test-env/components/markdown_editor/markdown_editor_footer.js +1 -1
- package/test-env/components/markdown_editor/markdown_editor_toolbar.js +1 -1
- package/test-env/components/page/page_header/page_header_content.js +1 -1
- package/test-env/components/pagination/pagination_button.js +1 -1
- package/test-env/components/popover/popover.js +3 -15
- package/test-env/components/search_bar/search_bar.js +37 -33
- package/test-env/components/search_bar/search_bar.styles.js +30 -0
- package/test-env/components/selectable/selectable_list/selectable_list.js +1 -1
- package/test-env/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/test-env/components/selectable/selectable_templates/selectable_template_sitewide.js +1 -1
- package/test-env/components/table/table_header_button.js +1 -1
- package/test-env/components/text_truncate/text_truncate.js +4 -1
- package/test-env/components/timeline/timeline_item_icon.js +1 -1
- package/test-env/components/toast/global_toast_list.js +1 -1
- package/test-env/components/toast/toast.js +1 -1
- package/test-env/components/tool_tip/icon_tip.js +1 -1
- package/test-env/components/tour/_tour_footer.js +100 -0
- package/test-env/components/tour/_tour_footer.styles.js +31 -0
- package/test-env/components/tour/_tour_header.js +48 -0
- package/test-env/components/tour/_tour_header.styles.js +27 -0
- package/test-env/components/tour/tour.styles.js +7 -32
- package/test-env/components/tour/tour_step.js +42 -114
- package/test-env/components/tree_view/_tree_view_item.js +92 -0
- package/test-env/components/tree_view/_tree_view_item.styles.js +45 -0
- package/test-env/components/tree_view/tree_view.a11y.js +2 -2
- package/test-env/components/tree_view/tree_view.js +76 -99
- package/test-env/components/tree_view/tree_view.styles.js +25 -0
- package/test-env/global_styling/mixins/_color.js +50 -15
- package/src/components/empty_prompt/_empty_prompt.scss +0 -128
- package/src/components/empty_prompt/_index.scss +0 -1
- package/src/components/search_bar/_index.scss +0 -1
- package/src/components/search_bar/_search_bar.scss +0 -10
- package/src/components/tree_view/_index.scss +0 -1
- package/src/components/tree_view/tree_view.scss +0 -117
package/eui.d.ts
CHANGED
|
@@ -1096,6 +1096,17 @@ declare module '@elastic/eui/src/global_styling/mixins/_color' {
|
|
|
1096
1096
|
warning: import("@emotion/utils").SerializedStyles;
|
|
1097
1097
|
danger: import("@emotion/utils").SerializedStyles;
|
|
1098
1098
|
};
|
|
1099
|
+
export const euiBorderColor: ({ euiTheme, colorMode }: UseEuiTheme, color: _EuiBackgroundColor) => string;
|
|
1100
|
+
export const useEuiBorderColorCSS: () => {
|
|
1101
|
+
transparent: import("@emotion/utils").SerializedStyles;
|
|
1102
|
+
plain: import("@emotion/utils").SerializedStyles;
|
|
1103
|
+
subdued: import("@emotion/utils").SerializedStyles;
|
|
1104
|
+
accent: import("@emotion/utils").SerializedStyles;
|
|
1105
|
+
primary: import("@emotion/utils").SerializedStyles;
|
|
1106
|
+
success: import("@emotion/utils").SerializedStyles;
|
|
1107
|
+
warning: import("@emotion/utils").SerializedStyles;
|
|
1108
|
+
danger: import("@emotion/utils").SerializedStyles;
|
|
1109
|
+
};
|
|
1099
1110
|
|
|
1100
1111
|
}
|
|
1101
1112
|
declare module '@elastic/eui/src/global_styling/functions/logicals' {
|
|
@@ -2250,6 +2261,7 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
2250
2261
|
iInCircle: string;
|
|
2251
2262
|
image: string;
|
|
2252
2263
|
importAction: string;
|
|
2264
|
+
index: string;
|
|
2253
2265
|
indexClose: string;
|
|
2254
2266
|
indexEdit: string;
|
|
2255
2267
|
indexFlush: string;
|
|
@@ -2629,7 +2641,7 @@ declare module '@elastic/eui/src/components/icon/icon' {
|
|
|
2629
2641
|
import { WithEuiThemeProps } from '@elastic/eui/src/services';
|
|
2630
2642
|
export { COLORS } from '@elastic/eui/src/components/icon/named_colors';
|
|
2631
2643
|
import { NamedColor } from '@elastic/eui/src/components/icon/named_colors';
|
|
2632
|
-
export const TYPES: ("string" | "number" | "function" | "search" | "link" | "at" | "article" | "menu" | "filter" | "image" | "stop" | "key" | "temperature" | "color" | "email" | "list" | "user" | "alert" | "document" | "grid" | "copy" | "scale" | "wordWrap" | "grab" | "help" | "invert" | "spaces" | "dot" | "warning" | "error" | "download" | "accessibility" | "aggregate" | "analyzeEvent" | "annotation" | "apps" | "arrowStart" | "arrowEnd" | "asterisk" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "branch" | "branchUser" | "broom" | "brush" | "bug" | "bullseye" | "calendar" | "check" | "checkInCircleFilled" | "cheer" | "clock" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "cluster" | "compute" | "console" | "container" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "cross" | "crosshairs" | "currency" | "cut" | "database" | "desktop" | "discuss" | "documentEdit" | "documentation" | "documents" | "dotInCircle" | "doubleArrowLeft" | "doubleArrowRight" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "empty" | "endpoint" | "eql" | "eraser" | "esqlVis" | "exit" | "expand" | "expandMini" | "eye" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "flag" | "fold" | "frameNext" | "framePrevious" | "fullScreenExit" | "gear" | "glasses" | "globe" | "grabOmnidirectional" | "gradient" | "heart" | "heatmap" | "home" | "iInCircle" | "indexTemporary" | "infinity" | "inputOutput" | "inspect" | "ip" | "keyboard" | "kubernetesNode" | "kubernetesPod" | "launch" | "layers" | "lettering" | "lineDashed" | "lineDotted" | "lineSolid" | "lock" | "lockOpen" | "magnet" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "minimize" | "minus" | "mobile" | "moon" | "namespace" | "nested" | "node" | "offline" | "online" | "package" | "pageSelect" | "pagesSelect" | "palette" | "partial" | "pause" | "payment" | "pencil" | "percent" | "pin" | "pipeBreaks" | "pipeNoBreaks" | "pivot" | "play" | "playFilled" | "plus" | "popout" | "push" | "quote" | "refresh" | "reporter" | "save" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "shard" | "share" | "snowflake" | "sortAscending" | "sortDescending" | "sortLeft" | "sortRight" | "sortable" | "sparkles" | "starPlusEmpty" | "starPlusFilled" | "stats" | "storage" | "submodule" | "sun" | "symlink" | "tableOfContents" | "tag" | "tear" | "timeline" | "timelineWithArrow" | "timeRefresh" | "timeslider" | "training" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "trash" | "unfold" | "unlink" | "userAvatar" | "users" | "vector" | "videoPlayer" | "wordWrapDisabled" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenVectorSparse" | "addDataApp" | "advancedSettingsApp" | "agentApp" | "apmApp" | "apmTrace" | "appSearchApp" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowUp" | "auditbeatApp" | "boxesHorizontal" | "boxesVertical" | "canvasApp" | "casesApp" | "classificationJob" | "codeApp" | "consoleApp" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "createAdvancedJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "dashboardApp" | "dataVisualizer" | "devToolsApp" | "discoverApp" | "editorAlignCenter" | "editorAlignLeft" | "editorAlignRight" | "editorBold" | "editorChecklist" | "editorCodeBlock" | "editorComment" | "editorHeading" | "editorItalic" | "editorLink" | "editorOrderedList" | "editorRedo" | "editorStrike" | "editorTable" | "editorUnderline" | "editorUndo" | "editorUnorderedList" | "emsApp" | "exportAction" | "eyeClosed" | "faceHappy" | "faceNeutral" | "faceSad" | "filebeatApp" | "fleetApp" | "folderCheck" | "folderClosed" | "folderExclamation" | "folderOpen" | "fullScreen" | "gisApp" | "grabHorizontal" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "kqlField" | "kqlFunction" | "kqlOperand" | "kqlSelector" | "kqlValue" | "lensApp" | "listAdd" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElastic" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "managementApp" | "mapMarker" | "metricbeatApp" | "metricsApp" | "minusInCircle" | "minusInCircleFilled" | "monitoringApp" | "notebookApp" | "outlierDetectionJob" | "packetbeatApp" | "paperClip" | "pinFilled" | "pipelineApp" | "plusInCircle" | "plusInCircleFilled" | "questionInCircle" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "sortDown" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFilled" | "starFilledSpace" | "starMinusEmpty" | "starMinusFilled" | "stopFilled" | "stopSlash" | "swatchInput" | "tableDensityCompact" | "tableDensityExpanded" | "tableDensityNormal" | "timelionApp" | "upgradeAssistantApp" | "uptimeApp" | "usersRolesApp" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "watchesApp" | "workplaceSearchApp" | "tokenDenseVector")[];
|
|
2644
|
+
export const TYPES: ("string" | "number" | "function" | "search" | "link" | "at" | "article" | "menu" | "filter" | "image" | "stop" | "key" | "temperature" | "color" | "email" | "list" | "user" | "alert" | "document" | "grid" | "copy" | "scale" | "wordWrap" | "grab" | "help" | "invert" | "spaces" | "dot" | "warning" | "error" | "download" | "accessibility" | "aggregate" | "analyzeEvent" | "annotation" | "apps" | "arrowStart" | "arrowEnd" | "asterisk" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "branch" | "branchUser" | "broom" | "brush" | "bug" | "bullseye" | "calendar" | "check" | "checkInCircleFilled" | "cheer" | "clock" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "cluster" | "compute" | "console" | "container" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "cross" | "crosshairs" | "currency" | "cut" | "database" | "desktop" | "discuss" | "documentEdit" | "documentation" | "documents" | "dotInCircle" | "doubleArrowLeft" | "doubleArrowRight" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "empty" | "endpoint" | "eql" | "eraser" | "esqlVis" | "exit" | "expand" | "expandMini" | "eye" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "flag" | "fold" | "frameNext" | "framePrevious" | "fullScreenExit" | "gear" | "glasses" | "globe" | "grabOmnidirectional" | "gradient" | "heart" | "heatmap" | "home" | "iInCircle" | "index" | "indexTemporary" | "infinity" | "inputOutput" | "inspect" | "ip" | "keyboard" | "kubernetesNode" | "kubernetesPod" | "launch" | "layers" | "lettering" | "lineDashed" | "lineDotted" | "lineSolid" | "lock" | "lockOpen" | "magnet" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "minimize" | "minus" | "mobile" | "moon" | "namespace" | "nested" | "node" | "offline" | "online" | "package" | "pageSelect" | "pagesSelect" | "palette" | "partial" | "pause" | "payment" | "pencil" | "percent" | "pin" | "pipeBreaks" | "pipeNoBreaks" | "pivot" | "play" | "playFilled" | "plus" | "popout" | "push" | "quote" | "refresh" | "reporter" | "save" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "shard" | "share" | "snowflake" | "sortAscending" | "sortDescending" | "sortLeft" | "sortRight" | "sortable" | "sparkles" | "starPlusEmpty" | "starPlusFilled" | "stats" | "storage" | "submodule" | "sun" | "symlink" | "tableOfContents" | "tag" | "tear" | "timeline" | "timelineWithArrow" | "timeRefresh" | "timeslider" | "training" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "trash" | "unfold" | "unlink" | "userAvatar" | "users" | "vector" | "videoPlayer" | "wordWrapDisabled" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenVectorSparse" | "addDataApp" | "advancedSettingsApp" | "agentApp" | "apmApp" | "apmTrace" | "appSearchApp" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowUp" | "auditbeatApp" | "boxesHorizontal" | "boxesVertical" | "canvasApp" | "casesApp" | "classificationJob" | "codeApp" | "consoleApp" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "createAdvancedJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "dashboardApp" | "dataVisualizer" | "devToolsApp" | "discoverApp" | "editorAlignCenter" | "editorAlignLeft" | "editorAlignRight" | "editorBold" | "editorChecklist" | "editorCodeBlock" | "editorComment" | "editorHeading" | "editorItalic" | "editorLink" | "editorOrderedList" | "editorRedo" | "editorStrike" | "editorTable" | "editorUnderline" | "editorUndo" | "editorUnorderedList" | "emsApp" | "exportAction" | "eyeClosed" | "faceHappy" | "faceNeutral" | "faceSad" | "filebeatApp" | "fleetApp" | "folderCheck" | "folderClosed" | "folderExclamation" | "folderOpen" | "fullScreen" | "gisApp" | "grabHorizontal" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "kqlField" | "kqlFunction" | "kqlOperand" | "kqlSelector" | "kqlValue" | "lensApp" | "listAdd" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElastic" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "managementApp" | "mapMarker" | "metricbeatApp" | "metricsApp" | "minusInCircle" | "minusInCircleFilled" | "monitoringApp" | "notebookApp" | "outlierDetectionJob" | "packetbeatApp" | "paperClip" | "pinFilled" | "pipelineApp" | "plusInCircle" | "plusInCircleFilled" | "questionInCircle" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "sortDown" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFilled" | "starFilledSpace" | "starMinusEmpty" | "starMinusFilled" | "stopFilled" | "stopSlash" | "swatchInput" | "tableDensityCompact" | "tableDensityExpanded" | "tableDensityNormal" | "timelionApp" | "upgradeAssistantApp" | "uptimeApp" | "usersRolesApp" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "watchesApp" | "workplaceSearchApp" | "tokenDenseVector")[];
|
|
2633
2645
|
export type EuiIconType = keyof typeof typeToPathMap;
|
|
2634
2646
|
export type IconType = EuiIconType | string | ComponentType;
|
|
2635
2647
|
export type IconColor = string | NamedColor;
|
|
@@ -2672,7 +2684,7 @@ declare module '@elastic/eui/src/components/icon/icon' {
|
|
|
2672
2684
|
isLoading: boolean;
|
|
2673
2685
|
neededLoading: boolean;
|
|
2674
2686
|
}
|
|
2675
|
-
export const clearIconComponentCache: (iconType?: "string" | "number" | "function" | "search" | "link" | "at" | "article" | "menu" | "filter" | "image" | "stop" | "key" | "temperature" | "color" | "email" | "list" | "user" | "alert" | "document" | "grid" | "copy" | "scale" | "wordWrap" | "grab" | "help" | "invert" | "spaces" | "dot" | "warning" | "error" | "download" | "accessibility" | "aggregate" | "analyzeEvent" | "annotation" | "apps" | "arrowStart" | "arrowEnd" | "asterisk" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "branch" | "branchUser" | "broom" | "brush" | "bug" | "bullseye" | "calendar" | "check" | "checkInCircleFilled" | "cheer" | "clock" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "cluster" | "compute" | "console" | "container" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "cross" | "crosshairs" | "currency" | "cut" | "database" | "desktop" | "discuss" | "documentEdit" | "documentation" | "documents" | "dotInCircle" | "doubleArrowLeft" | "doubleArrowRight" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "empty" | "endpoint" | "eql" | "eraser" | "esqlVis" | "exit" | "expand" | "expandMini" | "eye" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "flag" | "fold" | "frameNext" | "framePrevious" | "fullScreenExit" | "gear" | "glasses" | "globe" | "grabOmnidirectional" | "gradient" | "heart" | "heatmap" | "home" | "iInCircle" | "indexTemporary" | "infinity" | "inputOutput" | "inspect" | "ip" | "keyboard" | "kubernetesNode" | "kubernetesPod" | "launch" | "layers" | "lettering" | "lineDashed" | "lineDotted" | "lineSolid" | "lock" | "lockOpen" | "magnet" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "minimize" | "minus" | "mobile" | "moon" | "namespace" | "nested" | "node" | "offline" | "online" | "package" | "pageSelect" | "pagesSelect" | "palette" | "partial" | "pause" | "payment" | "pencil" | "percent" | "pin" | "pipeBreaks" | "pipeNoBreaks" | "pivot" | "play" | "playFilled" | "plus" | "popout" | "push" | "quote" | "refresh" | "reporter" | "save" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "shard" | "share" | "snowflake" | "sortAscending" | "sortDescending" | "sortLeft" | "sortRight" | "sortable" | "sparkles" | "starPlusEmpty" | "starPlusFilled" | "stats" | "storage" | "submodule" | "sun" | "symlink" | "tableOfContents" | "tag" | "tear" | "timeline" | "timelineWithArrow" | "timeRefresh" | "timeslider" | "training" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "trash" | "unfold" | "unlink" | "userAvatar" | "users" | "vector" | "videoPlayer" | "wordWrapDisabled" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenVectorSparse" | "addDataApp" | "advancedSettingsApp" | "agentApp" | "apmApp" | "apmTrace" | "appSearchApp" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowUp" | "auditbeatApp" | "boxesHorizontal" | "boxesVertical" | "canvasApp" | "casesApp" | "classificationJob" | "codeApp" | "consoleApp" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "createAdvancedJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "dashboardApp" | "dataVisualizer" | "devToolsApp" | "discoverApp" | "editorAlignCenter" | "editorAlignLeft" | "editorAlignRight" | "editorBold" | "editorChecklist" | "editorCodeBlock" | "editorComment" | "editorHeading" | "editorItalic" | "editorLink" | "editorOrderedList" | "editorRedo" | "editorStrike" | "editorTable" | "editorUnderline" | "editorUndo" | "editorUnorderedList" | "emsApp" | "exportAction" | "eyeClosed" | "faceHappy" | "faceNeutral" | "faceSad" | "filebeatApp" | "fleetApp" | "folderCheck" | "folderClosed" | "folderExclamation" | "folderOpen" | "fullScreen" | "gisApp" | "grabHorizontal" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "kqlField" | "kqlFunction" | "kqlOperand" | "kqlSelector" | "kqlValue" | "lensApp" | "listAdd" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElastic" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "managementApp" | "mapMarker" | "metricbeatApp" | "metricsApp" | "minusInCircle" | "minusInCircleFilled" | "monitoringApp" | "notebookApp" | "outlierDetectionJob" | "packetbeatApp" | "paperClip" | "pinFilled" | "pipelineApp" | "plusInCircle" | "plusInCircleFilled" | "questionInCircle" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "sortDown" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFilled" | "starFilledSpace" | "starMinusEmpty" | "starMinusFilled" | "stopFilled" | "stopSlash" | "swatchInput" | "tableDensityCompact" | "tableDensityExpanded" | "tableDensityNormal" | "timelionApp" | "upgradeAssistantApp" | "uptimeApp" | "usersRolesApp" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "watchesApp" | "workplaceSearchApp" | "tokenDenseVector" | undefined) => void;
|
|
2687
|
+
export const clearIconComponentCache: (iconType?: "string" | "number" | "function" | "search" | "link" | "at" | "article" | "menu" | "filter" | "image" | "stop" | "key" | "temperature" | "color" | "email" | "list" | "user" | "alert" | "document" | "grid" | "copy" | "scale" | "wordWrap" | "grab" | "help" | "invert" | "spaces" | "dot" | "warning" | "error" | "download" | "accessibility" | "aggregate" | "analyzeEvent" | "annotation" | "apps" | "arrowStart" | "arrowEnd" | "asterisk" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "branch" | "branchUser" | "broom" | "brush" | "bug" | "bullseye" | "calendar" | "check" | "checkInCircleFilled" | "cheer" | "clock" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "cluster" | "compute" | "console" | "container" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "cross" | "crosshairs" | "currency" | "cut" | "database" | "desktop" | "discuss" | "documentEdit" | "documentation" | "documents" | "dotInCircle" | "doubleArrowLeft" | "doubleArrowRight" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "empty" | "endpoint" | "eql" | "eraser" | "esqlVis" | "exit" | "expand" | "expandMini" | "eye" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "flag" | "fold" | "frameNext" | "framePrevious" | "fullScreenExit" | "gear" | "glasses" | "globe" | "grabOmnidirectional" | "gradient" | "heart" | "heatmap" | "home" | "iInCircle" | "index" | "indexTemporary" | "infinity" | "inputOutput" | "inspect" | "ip" | "keyboard" | "kubernetesNode" | "kubernetesPod" | "launch" | "layers" | "lettering" | "lineDashed" | "lineDotted" | "lineSolid" | "lock" | "lockOpen" | "magnet" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "minimize" | "minus" | "mobile" | "moon" | "namespace" | "nested" | "node" | "offline" | "online" | "package" | "pageSelect" | "pagesSelect" | "palette" | "partial" | "pause" | "payment" | "pencil" | "percent" | "pin" | "pipeBreaks" | "pipeNoBreaks" | "pivot" | "play" | "playFilled" | "plus" | "popout" | "push" | "quote" | "refresh" | "reporter" | "save" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "shard" | "share" | "snowflake" | "sortAscending" | "sortDescending" | "sortLeft" | "sortRight" | "sortable" | "sparkles" | "starPlusEmpty" | "starPlusFilled" | "stats" | "storage" | "submodule" | "sun" | "symlink" | "tableOfContents" | "tag" | "tear" | "timeline" | "timelineWithArrow" | "timeRefresh" | "timeslider" | "training" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "trash" | "unfold" | "unlink" | "userAvatar" | "users" | "vector" | "videoPlayer" | "wordWrapDisabled" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenVectorSparse" | "addDataApp" | "advancedSettingsApp" | "agentApp" | "apmApp" | "apmTrace" | "appSearchApp" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowUp" | "auditbeatApp" | "boxesHorizontal" | "boxesVertical" | "canvasApp" | "casesApp" | "classificationJob" | "codeApp" | "consoleApp" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "createAdvancedJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "dashboardApp" | "dataVisualizer" | "devToolsApp" | "discoverApp" | "editorAlignCenter" | "editorAlignLeft" | "editorAlignRight" | "editorBold" | "editorChecklist" | "editorCodeBlock" | "editorComment" | "editorHeading" | "editorItalic" | "editorLink" | "editorOrderedList" | "editorRedo" | "editorStrike" | "editorTable" | "editorUnderline" | "editorUndo" | "editorUnorderedList" | "emsApp" | "exportAction" | "eyeClosed" | "faceHappy" | "faceNeutral" | "faceSad" | "filebeatApp" | "fleetApp" | "folderCheck" | "folderClosed" | "folderExclamation" | "folderOpen" | "fullScreen" | "gisApp" | "grabHorizontal" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "kqlField" | "kqlFunction" | "kqlOperand" | "kqlSelector" | "kqlValue" | "lensApp" | "listAdd" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElastic" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "managementApp" | "mapMarker" | "metricbeatApp" | "metricsApp" | "minusInCircle" | "minusInCircleFilled" | "monitoringApp" | "notebookApp" | "outlierDetectionJob" | "packetbeatApp" | "paperClip" | "pinFilled" | "pipelineApp" | "plusInCircle" | "plusInCircleFilled" | "questionInCircle" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "sortDown" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFilled" | "starFilledSpace" | "starMinusEmpty" | "starMinusFilled" | "stopFilled" | "stopSlash" | "swatchInput" | "tableDensityCompact" | "tableDensityExpanded" | "tableDensityNormal" | "timelionApp" | "upgradeAssistantApp" | "uptimeApp" | "usersRolesApp" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "watchesApp" | "workplaceSearchApp" | "tokenDenseVector" | undefined) => void;
|
|
2676
2688
|
export const appendIconComponentCache: (iconTypeToIconComponentMap: {
|
|
2677
2689
|
[iconType: string]: React.ComponentType<{}>;
|
|
2678
2690
|
}) => void;
|
|
@@ -5266,7 +5278,7 @@ declare module '@elastic/eui/src/components/context_menu/context_menu_item.style
|
|
|
5266
5278
|
declare module '@elastic/eui/src/components/context_menu/context_menu_item' {
|
|
5267
5279
|
import React, { PropsWithChildren, ButtonHTMLAttributes, FunctionComponent, ReactElement, ReactNode, Ref } from 'react';
|
|
5268
5280
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
5269
|
-
import { EuiToolTipProps
|
|
5281
|
+
import { EuiToolTipProps } from '@elastic/eui/src/components/tool_tip';
|
|
5270
5282
|
export type EuiContextMenuItemIcon = ReactElement<any> | string | HTMLElement;
|
|
5271
5283
|
export type EuiContextMenuItemLayoutAlignment = 'center' | 'top' | 'bottom';
|
|
5272
5284
|
export const SIZES: readonly ["s", "m"];
|
|
@@ -5285,14 +5297,6 @@ declare module '@elastic/eui/src/components/context_menu/context_menu_item' {
|
|
|
5285
5297
|
* Accepts any prop that EuiToolTip does, except for `content` and `children`.
|
|
5286
5298
|
*/
|
|
5287
5299
|
toolTipProps?: Partial<Omit<EuiToolTipProps, 'content' | 'children'>>;
|
|
5288
|
-
/**
|
|
5289
|
-
* @deprecated Use toolTipProps.title instead
|
|
5290
|
-
*/
|
|
5291
|
-
toolTipTitle?: ReactNode;
|
|
5292
|
-
/**
|
|
5293
|
-
* @deprecated Use tooltipProps.position instead
|
|
5294
|
-
*/
|
|
5295
|
-
toolTipPosition?: ToolTipPositions;
|
|
5296
5300
|
href?: string;
|
|
5297
5301
|
target?: string;
|
|
5298
5302
|
rel?: string;
|
|
@@ -5417,7 +5421,15 @@ declare module '@elastic/eui/src/components/context_menu/context_menu' {
|
|
|
5417
5421
|
isSeparator: true;
|
|
5418
5422
|
key?: string;
|
|
5419
5423
|
}
|
|
5420
|
-
export type
|
|
5424
|
+
export type EuiContextMenuPanelItemRenderCustom = {
|
|
5425
|
+
/**
|
|
5426
|
+
* Allows rendering any custom content alongside your array of context menu items.
|
|
5427
|
+
* Accepts either a component or an inline function component that returns any JSX.
|
|
5428
|
+
*/
|
|
5429
|
+
renderItem: (() => ReactNode) | Function;
|
|
5430
|
+
key?: string;
|
|
5431
|
+
};
|
|
5432
|
+
export type EuiContextMenuPanelItemDescriptor = ExclusiveUnion<ExclusiveUnion<EuiContextMenuPanelItemDescriptorEntry, EuiContextMenuPanelItemSeparator>, EuiContextMenuPanelItemRenderCustom>;
|
|
5421
5433
|
export interface EuiContextMenuPanelDescriptor {
|
|
5422
5434
|
id: EuiContextMenuPanelId;
|
|
5423
5435
|
title?: ReactNode;
|
|
@@ -6541,12 +6553,6 @@ declare module '@elastic/eui/src/components/popover/popover' {
|
|
|
6541
6553
|
export const popoverAnchorPosition: readonly ["upCenter", "upLeft", "upRight", "downCenter", "downLeft", "downRight", "leftCenter", "leftUp", "leftDown", "rightCenter", "rightUp", "rightDown"];
|
|
6542
6554
|
export type PopoverAnchorPosition = (typeof popoverAnchorPosition)[number];
|
|
6543
6555
|
export interface EuiPopoverProps extends PropsWithChildren, CommonProps {
|
|
6544
|
-
/**
|
|
6545
|
-
* Class name passed to the direct parent of the button
|
|
6546
|
-
*
|
|
6547
|
-
* @deprecated Use `className` instead
|
|
6548
|
-
*/
|
|
6549
|
-
anchorClassName?: string;
|
|
6550
6556
|
/**
|
|
6551
6557
|
* Alignment of the popover and arrow relative to the button
|
|
6552
6558
|
*/
|
|
@@ -6560,10 +6566,6 @@ declare module '@elastic/eui/src/components/popover/popover' {
|
|
|
6560
6566
|
* Triggering element for which to align the popover to
|
|
6561
6567
|
*/
|
|
6562
6568
|
button: NonNullable<ReactNode>;
|
|
6563
|
-
/**
|
|
6564
|
-
* @deprecated Use `popoverRef` instead
|
|
6565
|
-
*/
|
|
6566
|
-
buttonRef?: RefCallback<HTMLDivElement>;
|
|
6567
6569
|
/**
|
|
6568
6570
|
* Callback to handle hiding of the popover
|
|
6569
6571
|
*/
|
|
@@ -10198,8 +10200,7 @@ declare module '@elastic/eui/src/components/code/utils' {
|
|
|
10198
10200
|
|
|
10199
10201
|
}
|
|
10200
10202
|
declare module '@elastic/eui/src/components/code/code_syntax.styles' {
|
|
10201
|
-
|
|
10202
|
-
export const euiCodeSyntaxColors: (euiThemeContext: UseEuiTheme) => {
|
|
10203
|
+
export const useEuiCodeSyntaxVariables: () => {
|
|
10203
10204
|
backgroundColor: string;
|
|
10204
10205
|
color: string;
|
|
10205
10206
|
inlineCodeColor: string;
|
|
@@ -10223,13 +10224,15 @@ declare module '@elastic/eui/src/components/code/code_syntax.styles' {
|
|
|
10223
10224
|
deletionColor: string;
|
|
10224
10225
|
selectorClassColor: string;
|
|
10225
10226
|
selectorIdColor: string;
|
|
10227
|
+
readonly tokensCss: string;
|
|
10226
10228
|
};
|
|
10227
|
-
export
|
|
10229
|
+
export type UseEuiCodeSyntaxVariables = ReturnType<typeof useEuiCodeSyntaxVariables>;
|
|
10228
10230
|
|
|
10229
10231
|
}
|
|
10230
10232
|
declare module '@elastic/eui/src/components/code/code.styles' {
|
|
10231
10233
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
10232
|
-
|
|
10234
|
+
import { UseEuiCodeSyntaxVariables } from '@elastic/eui/src/components/code/code_syntax.styles';
|
|
10235
|
+
export const euiCodeStyles: (euiThemeContext: UseEuiTheme, euiCodeSyntaxVariables: UseEuiCodeSyntaxVariables) => {
|
|
10233
10236
|
euiCode: import("@emotion/utils").SerializedStyles;
|
|
10234
10237
|
transparentBackground: import("@emotion/utils").SerializedStyles;
|
|
10235
10238
|
};
|
|
@@ -10360,7 +10363,8 @@ declare module '@elastic/eui/src/components/overlay_mask' {
|
|
|
10360
10363
|
}
|
|
10361
10364
|
declare module '@elastic/eui/src/components/code/code_block.styles' {
|
|
10362
10365
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
10363
|
-
|
|
10366
|
+
import { UseEuiCodeSyntaxVariables } from '@elastic/eui/src/components/code/code_syntax.styles';
|
|
10367
|
+
export const euiCodeBlockStyles: (euiThemeContext: UseEuiTheme, euiCodeSyntaxVariables: UseEuiCodeSyntaxVariables) => {
|
|
10364
10368
|
euiCodeBlock: import("@emotion/utils").SerializedStyles;
|
|
10365
10369
|
s: import("@emotion/utils").SerializedStyles;
|
|
10366
10370
|
m: import("@emotion/utils").SerializedStyles;
|
|
@@ -10414,7 +10418,7 @@ declare module '@elastic/eui/src/components/code/code_block.styles' {
|
|
|
10414
10418
|
};
|
|
10415
10419
|
};
|
|
10416
10420
|
};
|
|
10417
|
-
export const euiCodeBlockCodeStyles: (euiThemeContext: UseEuiTheme) => {
|
|
10421
|
+
export const euiCodeBlockCodeStyles: (euiThemeContext: UseEuiTheme, euiCodeSyntaxVariables: UseEuiCodeSyntaxVariables) => {
|
|
10418
10422
|
euiCodeBlock__code: import("@emotion/utils").SerializedStyles;
|
|
10419
10423
|
isVirtualized: import("@emotion/utils").SerializedStyles;
|
|
10420
10424
|
};
|
|
@@ -10440,7 +10444,8 @@ declare module '@elastic/eui/src/components/code/code_block_full_screen' {
|
|
|
10440
10444
|
}
|
|
10441
10445
|
declare module '@elastic/eui/src/components/code/code_block_controls.styles' {
|
|
10442
10446
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
10443
|
-
|
|
10447
|
+
import { UseEuiCodeSyntaxVariables } from '@elastic/eui/src/components/code/code_syntax.styles';
|
|
10448
|
+
export const euiCodeBlockControlsStyles: (euiThemeContext: UseEuiTheme, euiCodeSyntaxVariables: UseEuiCodeSyntaxVariables) => {
|
|
10444
10449
|
euiCodeBlock__controls: import("@emotion/utils").SerializedStyles;
|
|
10445
10450
|
offset: {
|
|
10446
10451
|
none: import("@emotion/utils").SerializedStyles;
|
|
@@ -12250,20 +12255,47 @@ declare module '@elastic/eui/src/components/mark' {
|
|
|
12250
12255
|
export type { EuiMarkProps } from '@elastic/eui/src/components/mark/mark';
|
|
12251
12256
|
export { EuiMark } from '@elastic/eui/src/components/mark/mark';
|
|
12252
12257
|
|
|
12258
|
+
}
|
|
12259
|
+
declare module '@elastic/eui/src/components/highlight/_highlight_all' {
|
|
12260
|
+
import { FunctionComponent } from 'react';
|
|
12261
|
+
import type { _SharedSubcomponentProps } from '@elastic/eui/src/components/highlight/highlight';
|
|
12262
|
+
/**
|
|
12263
|
+
* Internal subcomponent with logic for highlighting all occurrences
|
|
12264
|
+
* of a search value within a subject
|
|
12265
|
+
*
|
|
12266
|
+
* Uses regex rather than indexOf/while loops for easier dev maintainability
|
|
12267
|
+
*/
|
|
12268
|
+
export const HighlightAll: FunctionComponent<_SharedSubcomponentProps>;
|
|
12269
|
+
|
|
12270
|
+
}
|
|
12271
|
+
declare module '@elastic/eui/src/components/highlight/_highlight_first' {
|
|
12272
|
+
import { FunctionComponent } from 'react';
|
|
12273
|
+
import { _SharedSubcomponentProps } from '@elastic/eui/src/components/highlight/highlight';
|
|
12274
|
+
/**
|
|
12275
|
+
* Internal subcomponent with logic for highlighting only the first occurrence
|
|
12276
|
+
* of a search value within a subject
|
|
12277
|
+
*
|
|
12278
|
+
* Uses indexOf for performance (which does matter for, e.g. EuiSelectable searching)
|
|
12279
|
+
*/
|
|
12280
|
+
export const HighlightFirst: FunctionComponent<_SharedSubcomponentProps>;
|
|
12281
|
+
|
|
12253
12282
|
}
|
|
12254
12283
|
declare module '@elastic/eui/src/components/highlight/highlight' {
|
|
12255
|
-
import { HTMLAttributes, FunctionComponent } from 'react';
|
|
12284
|
+
import { HTMLAttributes, FunctionComponent, ElementType } from 'react';
|
|
12256
12285
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
12257
|
-
import { EuiMarkProps } from '@elastic/eui/src/components/mark';
|
|
12258
|
-
export type EuiHighlightProps = HTMLAttributes<HTMLSpanElement> &
|
|
12286
|
+
import { EuiMarkProps } from '@elastic/eui/src/components/mark';
|
|
12287
|
+
export type EuiHighlightProps = HTMLAttributes<HTMLSpanElement> & Pick<EuiMarkProps, 'hasScreenReaderHelpText'> & CommonProps & {
|
|
12259
12288
|
/**
|
|
12260
12289
|
* string to highlight as this component's content
|
|
12261
12290
|
*/
|
|
12262
12291
|
children: string;
|
|
12263
12292
|
/**
|
|
12264
|
-
* What to search for
|
|
12293
|
+
* What to search for.
|
|
12294
|
+
*
|
|
12295
|
+
* Allows passing an array of strings (searching by multiple separate
|
|
12296
|
+
* words or phrases) **only** if `highlightAll` is also set to `true`.
|
|
12265
12297
|
*/
|
|
12266
|
-
search: string;
|
|
12298
|
+
search: string | string[];
|
|
12267
12299
|
/**
|
|
12268
12300
|
* Should the search be strict or not
|
|
12269
12301
|
*/
|
|
@@ -12274,7 +12306,12 @@ declare module '@elastic/eui/src/components/highlight/highlight' {
|
|
|
12274
12306
|
highlightAll?: boolean;
|
|
12275
12307
|
};
|
|
12276
12308
|
export const EuiHighlight: FunctionComponent<EuiHighlightProps>;
|
|
12277
|
-
export {
|
|
12309
|
+
export type _SharedSubcomponentProps = {
|
|
12310
|
+
searchValue: EuiHighlightProps['search'];
|
|
12311
|
+
searchSubject: EuiHighlightProps['children'];
|
|
12312
|
+
isStrict: EuiHighlightProps['strict'];
|
|
12313
|
+
highlightComponent?: ElementType;
|
|
12314
|
+
};
|
|
12278
12315
|
|
|
12279
12316
|
}
|
|
12280
12317
|
declare module '@elastic/eui/src/components/highlight' {
|
|
@@ -12737,16 +12774,6 @@ declare module '@elastic/eui/src/components/timeline' {
|
|
|
12737
12774
|
}
|
|
12738
12775
|
declare module '@elastic/eui/src/components/comment_list/comment_event.styles' {
|
|
12739
12776
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
12740
|
-
export const euiCommentEventBorderColors: ({ euiTheme, colorMode, }: UseEuiTheme) => {
|
|
12741
|
-
warning: import("@emotion/utils").SerializedStyles;
|
|
12742
|
-
accent: import("@emotion/utils").SerializedStyles;
|
|
12743
|
-
primary: import("@emotion/utils").SerializedStyles;
|
|
12744
|
-
success: import("@emotion/utils").SerializedStyles;
|
|
12745
|
-
danger: import("@emotion/utils").SerializedStyles;
|
|
12746
|
-
subdued: import("@emotion/utils").SerializedStyles;
|
|
12747
|
-
transparent: import("@emotion/utils").SerializedStyles;
|
|
12748
|
-
plain: import("@emotion/utils").SerializedStyles;
|
|
12749
|
-
};
|
|
12750
12777
|
export const euiCommentEventStyles: (euiThemeContext: UseEuiTheme) => {
|
|
12751
12778
|
euiCommentEvent: import("@emotion/utils").SerializedStyles;
|
|
12752
12779
|
border: import("@emotion/utils").SerializedStyles;
|
|
@@ -15821,9 +15848,11 @@ declare module '@elastic/eui/src/components/date_picker/types' {
|
|
|
15821
15848
|
text: string;
|
|
15822
15849
|
value: TimeUnitAllId;
|
|
15823
15850
|
}
|
|
15851
|
+
export type RefreshUnitsOptions = 's' | 'm' | 'h';
|
|
15824
15852
|
export type OnRefreshChangeProps = {
|
|
15825
15853
|
isPaused: boolean;
|
|
15826
15854
|
refreshInterval: number;
|
|
15855
|
+
intervalUnits: RefreshUnitsOptions;
|
|
15827
15856
|
};
|
|
15828
15857
|
export type ApplyRefreshInterval = (args: OnRefreshChangeProps) => void;
|
|
15829
15858
|
export interface QuickSelect {
|
|
@@ -15927,6 +15956,7 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/date_p
|
|
|
15927
15956
|
export interface EuiDatePopoverContentProps {
|
|
15928
15957
|
value: string;
|
|
15929
15958
|
onChange: (date: string) => void;
|
|
15959
|
+
canRoundRelativeUnits?: boolean;
|
|
15930
15960
|
roundUp?: boolean;
|
|
15931
15961
|
dateFormat: string;
|
|
15932
15962
|
timeFormat: string;
|
|
@@ -15974,9 +16004,13 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/date_p
|
|
|
15974
16004
|
}
|
|
15975
16005
|
declare module '@elastic/eui/src/components/date_picker/super_date_picker/pretty_duration' {
|
|
15976
16006
|
import React from 'react';
|
|
15977
|
-
import
|
|
16007
|
+
import moment from 'moment';
|
|
15978
16008
|
import { DurationRange, ShortDate } from '@elastic/eui/src/components/date_picker/types';
|
|
15979
|
-
export const useFormatTimeString: (timeString: string, dateFormat: string,
|
|
16009
|
+
export const useFormatTimeString: (timeString: string, dateFormat: string, options?: {
|
|
16010
|
+
locale?: moment.LocaleSpecifier | undefined;
|
|
16011
|
+
roundUp?: boolean | undefined;
|
|
16012
|
+
canRoundRelativeUnits?: boolean | undefined;
|
|
16013
|
+
} | undefined) => string;
|
|
15980
16014
|
/**
|
|
15981
16015
|
* Pretty duration hook+component
|
|
15982
16016
|
*/
|
|
@@ -16012,6 +16046,7 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/date_p
|
|
|
16012
16046
|
onPopoverClose: EuiPopoverProps['closePopover'];
|
|
16013
16047
|
onPopoverToggle: MouseEventHandler<HTMLButtonElement>;
|
|
16014
16048
|
position: 'start' | 'end';
|
|
16049
|
+
canRoundRelativeUnits?: boolean;
|
|
16015
16050
|
roundUp?: boolean;
|
|
16016
16051
|
timeFormat: string;
|
|
16017
16052
|
value: string;
|
|
@@ -16107,7 +16142,7 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/quick_
|
|
|
16107
16142
|
declare module '@elastic/eui/src/components/date_picker/auto_refresh/refresh_interval' {
|
|
16108
16143
|
import React, { Component, ChangeEventHandler, KeyboardEventHandler } from 'react';
|
|
16109
16144
|
import { TimeOptions } from '@elastic/eui/src/components/date_picker/super_date_picker/time_options';
|
|
16110
|
-
import { Milliseconds,
|
|
16145
|
+
import { Milliseconds, RefreshUnitsOptions, ApplyRefreshInterval } from '@elastic/eui/src/components/date_picker/types';
|
|
16111
16146
|
export type EuiRefreshIntervalProps = {
|
|
16112
16147
|
/**
|
|
16113
16148
|
* Is refresh paused or running.
|
|
@@ -16118,18 +16153,31 @@ declare module '@elastic/eui/src/components/date_picker/auto_refresh/refresh_int
|
|
|
16118
16153
|
*/
|
|
16119
16154
|
refreshInterval?: Milliseconds;
|
|
16120
16155
|
/**
|
|
16121
|
-
*
|
|
16156
|
+
* Allows specifying a minimum interval in milliseconds
|
|
16157
|
+
*/
|
|
16158
|
+
minInterval?: Milliseconds;
|
|
16159
|
+
/**
|
|
16160
|
+
* By default, refresh interval units will be rounded up to next largest unit of time
|
|
16161
|
+
* (for example, 90 seconds will become 2m).
|
|
16162
|
+
*
|
|
16163
|
+
* If you do not want this behavior, you can manually control the rendered unit via this prop.
|
|
16164
|
+
*/
|
|
16165
|
+
intervalUnits?: RefreshUnitsOptions;
|
|
16166
|
+
/**
|
|
16167
|
+
* Passes back the updated state of `isPaused`, `refreshInterval`, and `intervalUnits`.
|
|
16122
16168
|
*/
|
|
16123
16169
|
onRefreshChange: ApplyRefreshInterval;
|
|
16124
16170
|
};
|
|
16125
16171
|
interface EuiRefreshIntervalState {
|
|
16126
16172
|
value: number | '';
|
|
16127
|
-
units:
|
|
16173
|
+
units: RefreshUnitsOptions;
|
|
16174
|
+
min?: Milliseconds;
|
|
16128
16175
|
}
|
|
16129
16176
|
export class EuiRefreshInterval extends Component<EuiRefreshIntervalProps, EuiRefreshIntervalState> {
|
|
16130
16177
|
static defaultProps: {
|
|
16131
16178
|
isPaused: boolean;
|
|
16132
16179
|
refreshInterval: number;
|
|
16180
|
+
minInterval: number;
|
|
16133
16181
|
};
|
|
16134
16182
|
state: EuiRefreshIntervalState;
|
|
16135
16183
|
generateId: (idSuffix?: string) => string;
|
|
@@ -16154,7 +16202,7 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/quick_
|
|
|
16154
16202
|
import { EuiRecentlyUsed } from '@elastic/eui/src/components/date_picker/super_date_picker/quick_select_popover/recently_used';
|
|
16155
16203
|
import { EuiRefreshInterval } from '@elastic/eui/src/components/date_picker/auto_refresh/refresh_interval';
|
|
16156
16204
|
import { TimeOptions } from '@elastic/eui/src/components/date_picker/super_date_picker/time_options';
|
|
16157
|
-
import { DurationRange, ApplyRefreshInterval, ApplyTime, QuickSelect, QuickSelectPanel } from '@elastic/eui/src/components/date_picker/types';
|
|
16205
|
+
import { DurationRange, ApplyRefreshInterval, RefreshUnitsOptions, ApplyTime, QuickSelect, QuickSelectPanel } from '@elastic/eui/src/components/date_picker/types';
|
|
16158
16206
|
export type CustomQuickSelectRenderOptions = {
|
|
16159
16207
|
quickSelect: ReactElement<typeof EuiQuickSelect>;
|
|
16160
16208
|
commonlyUsedRanges: ReactElement<typeof EuiCommonlyUsedTimeRanges>;
|
|
@@ -16174,6 +16222,7 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/quick_
|
|
|
16174
16222
|
isPaused: boolean;
|
|
16175
16223
|
recentlyUsedRanges: DurationRange[];
|
|
16176
16224
|
refreshInterval: number;
|
|
16225
|
+
intervalUnits?: RefreshUnitsOptions;
|
|
16177
16226
|
start: string;
|
|
16178
16227
|
timeOptions: TimeOptions;
|
|
16179
16228
|
}
|
|
@@ -16368,7 +16417,10 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/super_
|
|
|
16368
16417
|
|
|
16369
16418
|
}
|
|
16370
16419
|
declare module '@elastic/eui/src/components/date_picker/super_date_picker/pretty_interval' {
|
|
16371
|
-
export const usePrettyInterval: (isPaused: boolean, intervalInMs: number,
|
|
16420
|
+
export const usePrettyInterval: (isPaused: boolean, intervalInMs: number, options?: {
|
|
16421
|
+
shortHand?: boolean | undefined;
|
|
16422
|
+
unit?: "s" | "m" | "h" | "d" | undefined;
|
|
16423
|
+
} | undefined) => string;
|
|
16372
16424
|
|
|
16373
16425
|
}
|
|
16374
16426
|
declare module '@elastic/eui/src/components/date_picker/auto_refresh/auto_refresh' {
|
|
@@ -16399,7 +16451,7 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/super_
|
|
|
16399
16451
|
import React, { Component, FocusEventHandler, FunctionComponent, ReactNode } from 'react';
|
|
16400
16452
|
import { LocaleSpecifier } from 'moment';
|
|
16401
16453
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
16402
|
-
import { ShortDate, Milliseconds, DurationRange, ApplyTime, ApplyRefreshInterval, QuickSelectPanel } from '@elastic/eui/src/components/date_picker/types';
|
|
16454
|
+
import { ShortDate, Milliseconds, DurationRange, ApplyTime, ApplyRefreshInterval, RefreshUnitsOptions, QuickSelectPanel } from '@elastic/eui/src/components/date_picker/types';
|
|
16403
16455
|
import { TimeOptions } from '@elastic/eui/src/components/date_picker/super_date_picker/time_options';
|
|
16404
16456
|
import { AsyncInterval } from '@elastic/eui/src/components/date_picker/super_date_picker/async_interval';
|
|
16405
16457
|
import { EuiSuperUpdateButtonProps } from '@elastic/eui/src/components/date_picker/super_date_picker/super_update_button';
|
|
@@ -16486,6 +16538,19 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/super_
|
|
|
16486
16538
|
* @default 1000
|
|
16487
16539
|
*/
|
|
16488
16540
|
refreshInterval?: Milliseconds;
|
|
16541
|
+
/**
|
|
16542
|
+
* Minimum refresh interval in milliseconds
|
|
16543
|
+
* @default 0
|
|
16544
|
+
*/
|
|
16545
|
+
refreshMinInterval?: Milliseconds;
|
|
16546
|
+
/**
|
|
16547
|
+
* By default, refresh interval units will be rounded up to next largest unit of time
|
|
16548
|
+
* (for example, 90 seconds will become 2m).
|
|
16549
|
+
*
|
|
16550
|
+
* If you do not want this behavior, you will need to store the user-set `intervalUnits`
|
|
16551
|
+
* (passed by `onRefreshChange`) and manually control it via this prop.
|
|
16552
|
+
*/
|
|
16553
|
+
refreshIntervalUnits?: RefreshUnitsOptions;
|
|
16489
16554
|
/**
|
|
16490
16555
|
* @default 'now-15m'
|
|
16491
16556
|
*/
|
|
@@ -16513,6 +16578,14 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/super_
|
|
|
16513
16578
|
* Props passed to the update button #EuiSuperUpdateButtonProps
|
|
16514
16579
|
*/
|
|
16515
16580
|
updateButtonProps?: EuiSuperUpdateButtonProps;
|
|
16581
|
+
/**
|
|
16582
|
+
* By default, relative units will be rounded up to next largest unit of time
|
|
16583
|
+
* (for example, 90 minutes will become ~ 2 hours).
|
|
16584
|
+
*
|
|
16585
|
+
* If you do not want this behavior and instead wish to keep the exact units
|
|
16586
|
+
* input by the user, set this flag to `false`.
|
|
16587
|
+
*/
|
|
16588
|
+
canRoundRelativeUnits?: boolean;
|
|
16516
16589
|
}; type EuiSuperDatePickerInternalProps = EuiSuperDatePickerProps & {
|
|
16517
16590
|
timeOptions: TimeOptions;
|
|
16518
16591
|
commonlyUsedRanges: DurationRange[];
|
|
@@ -16547,6 +16620,7 @@ declare module '@elastic/eui/src/components/date_picker/super_date_picker/super_
|
|
|
16547
16620
|
recentlyUsedRanges: never[];
|
|
16548
16621
|
refreshInterval: number;
|
|
16549
16622
|
showUpdateButton: boolean;
|
|
16623
|
+
canRoundRelativeUnits: boolean;
|
|
16550
16624
|
start: string;
|
|
16551
16625
|
timeFormat: string;
|
|
16552
16626
|
width: string;
|
|
@@ -16615,7 +16689,7 @@ declare module '@elastic/eui/src/components/date_picker' {
|
|
|
16615
16689
|
export { EuiDatePicker } from '@elastic/eui/src/components/date_picker/date_picker';
|
|
16616
16690
|
export type { EuiDatePickerRangeProps } from '@elastic/eui/src/components/date_picker/date_picker_range';
|
|
16617
16691
|
export { EuiDatePickerRange } from '@elastic/eui/src/components/date_picker/date_picker_range';
|
|
16618
|
-
export type { ApplyTime, DurationRange as EuiSuperDatePickerCommonRange, DurationRange as EuiSuperDatePickerDurationRange, DurationRange as EuiSuperDatePickerRecentRange, TimeUnitId, TimeUnitFromNowId, TimeUnitLabel, TimeUnitLabelPlural, AbsoluteDateMode, RelativeDateMode, NowDateMode, DateMode, OnRefreshChangeProps, ShortDate, RelativeParts, RelativeOption, QuickSelect, QuickSelectPanel as EuiSuperDatePickerQuickSelectPanel, } from '@elastic/eui/src/components/date_picker/types';
|
|
16692
|
+
export type { ApplyTime, DurationRange as EuiSuperDatePickerCommonRange, DurationRange as EuiSuperDatePickerDurationRange, DurationRange as EuiSuperDatePickerRecentRange, TimeUnitId, TimeUnitFromNowId, TimeUnitLabel, TimeUnitLabelPlural, AbsoluteDateMode, RelativeDateMode, NowDateMode, DateMode, OnRefreshChangeProps, RefreshUnitsOptions, ShortDate, RelativeParts, RelativeOption, QuickSelect, QuickSelectPanel as EuiSuperDatePickerQuickSelectPanel, } from '@elastic/eui/src/components/date_picker/types';
|
|
16619
16693
|
|
|
16620
16694
|
}
|
|
16621
16695
|
declare module '@elastic/eui/src/components/delay_hide/delay_hide' {
|
|
@@ -16689,6 +16763,61 @@ declare module '@elastic/eui/src/components/delay_render' {
|
|
|
16689
16763
|
export type { EuiDelayRenderProps } from '@elastic/eui/src/components/delay_render/delay_render';
|
|
16690
16764
|
export { EuiDelayRender } from '@elastic/eui/src/components/delay_render/delay_render';
|
|
16691
16765
|
|
|
16766
|
+
}
|
|
16767
|
+
declare module '@elastic/eui/src/components/empty_prompt/empty_prompt.styles' {
|
|
16768
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
16769
|
+
export const euiEmptyPromptStyles: (euiThemeContext: UseEuiTheme) => {
|
|
16770
|
+
euiEmptyPrompt: import("@emotion/utils").SerializedStyles;
|
|
16771
|
+
vertical: import("@emotion/utils").SerializedStyles;
|
|
16772
|
+
horizontal: import("@emotion/utils").SerializedStyles;
|
|
16773
|
+
main: {
|
|
16774
|
+
horizontalPadding: {
|
|
16775
|
+
none: null;
|
|
16776
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
16777
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
16778
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
16779
|
+
};
|
|
16780
|
+
none: null;
|
|
16781
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
16782
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
16783
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
16784
|
+
euiEmptyPrompt__main: import("@emotion/utils").SerializedStyles;
|
|
16785
|
+
vertical: import("@emotion/utils").SerializedStyles;
|
|
16786
|
+
horizontal: import("@emotion/utils").SerializedStyles;
|
|
16787
|
+
};
|
|
16788
|
+
content: {
|
|
16789
|
+
euiEmptyPrompt__content: import("@emotion/utils").SerializedStyles;
|
|
16790
|
+
vertical: import("@emotion/utils").SerializedStyles;
|
|
16791
|
+
horizontal: import("@emotion/utils").SerializedStyles;
|
|
16792
|
+
};
|
|
16793
|
+
icon: {
|
|
16794
|
+
euiEmptyPrompt__icon: import("@emotion/utils").SerializedStyles;
|
|
16795
|
+
vertical: import("@emotion/utils").SerializedStyles;
|
|
16796
|
+
horizontal: import("@emotion/utils").SerializedStyles;
|
|
16797
|
+
};
|
|
16798
|
+
actions: {
|
|
16799
|
+
euiEmptyPrompt__actions: import("@emotion/utils").SerializedStyles;
|
|
16800
|
+
vertical: import("@emotion/utils").SerializedStyles;
|
|
16801
|
+
horizontal: import("@emotion/utils").SerializedStyles;
|
|
16802
|
+
};
|
|
16803
|
+
footer: {
|
|
16804
|
+
none: null;
|
|
16805
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
16806
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
16807
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
16808
|
+
euiEmptyPrompt__footer: import("@emotion/utils").SerializedStyles;
|
|
16809
|
+
roundedBorders: import("@emotion/utils").SerializedStyles;
|
|
16810
|
+
transparent: import("@emotion/utils").SerializedStyles;
|
|
16811
|
+
plain: import("@emotion/utils").SerializedStyles;
|
|
16812
|
+
subdued: import("@emotion/utils").SerializedStyles;
|
|
16813
|
+
primary: import("@emotion/utils").SerializedStyles;
|
|
16814
|
+
accent: import("@emotion/utils").SerializedStyles;
|
|
16815
|
+
danger: import("@emotion/utils").SerializedStyles;
|
|
16816
|
+
warning: import("@emotion/utils").SerializedStyles;
|
|
16817
|
+
success: import("@emotion/utils").SerializedStyles;
|
|
16818
|
+
};
|
|
16819
|
+
};
|
|
16820
|
+
|
|
16692
16821
|
}
|
|
16693
16822
|
declare module '@elastic/eui/src/components/empty_prompt/empty_prompt' {
|
|
16694
16823
|
import { FunctionComponent, ReactElement, ReactNode } from 'react';
|
|
@@ -16696,7 +16825,7 @@ declare module '@elastic/eui/src/components/empty_prompt/empty_prompt' {
|
|
|
16696
16825
|
import { EuiTitleSize } from '@elastic/eui/src/components/title';
|
|
16697
16826
|
import { IconColor, IconType } from '@elastic/eui/src/components/icon';
|
|
16698
16827
|
import { _EuiPanelDivlike } from '@elastic/eui/src/components/panel/panel';
|
|
16699
|
-
export const PADDING_SIZES:
|
|
16828
|
+
export const PADDING_SIZES: readonly ["none", "s", "m", "l"];
|
|
16700
16829
|
export type PaddingSize = (typeof PADDING_SIZES)[number];
|
|
16701
16830
|
export type EuiEmptyPromptProps = CommonProps & Omit<_EuiPanelDivlike, 'borderRadius' | 'grow' | 'panelRef' | 'paddingSize' | 'title' | 'element'> & {
|
|
16702
16831
|
iconType?: IconType;
|
|
@@ -19499,9 +19628,59 @@ declare module '@elastic/eui/src/components/provider' {
|
|
|
19499
19628
|
export type { EuiComponentDefaultsProviderProps } from '@elastic/eui/src/components/provider/component_defaults';
|
|
19500
19629
|
export { EuiComponentDefaultsProvider, EuiComponentDefaultsContext, } from '@elastic/eui/src/components/provider/component_defaults';
|
|
19501
19630
|
|
|
19631
|
+
}
|
|
19632
|
+
declare module '@elastic/eui/src/components/tree_view/_tree_view_item.styles' {
|
|
19633
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
19634
|
+
export const euiTreeViewItemStyles: (euiThemeContext: UseEuiTheme) => {
|
|
19635
|
+
li: {
|
|
19636
|
+
euiTreeView__node: import("@emotion/utils").SerializedStyles;
|
|
19637
|
+
default: import("@emotion/utils").SerializedStyles;
|
|
19638
|
+
compressed: import("@emotion/utils").SerializedStyles;
|
|
19639
|
+
expanded: import("@emotion/utils").SerializedStyles;
|
|
19640
|
+
};
|
|
19641
|
+
button: {
|
|
19642
|
+
euiTreeView__nodeInner: import("@emotion/utils").SerializedStyles;
|
|
19643
|
+
default: import("@emotion/utils").SerializedStyles;
|
|
19644
|
+
compressed: import("@emotion/utils").SerializedStyles;
|
|
19645
|
+
};
|
|
19646
|
+
icon: {
|
|
19647
|
+
euiTreeView__iconWrapper: import("@emotion/utils").SerializedStyles;
|
|
19648
|
+
default: import("@emotion/utils").SerializedStyles;
|
|
19649
|
+
compressed: import("@emotion/utils").SerializedStyles;
|
|
19650
|
+
};
|
|
19651
|
+
};
|
|
19652
|
+
|
|
19653
|
+
}
|
|
19654
|
+
declare module '@elastic/eui/src/components/tree_view/_tree_view_item' {
|
|
19655
|
+
import { FunctionComponent, PropsWithChildren, HTMLAttributes, ReactNode, Ref } from 'react';
|
|
19656
|
+
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
19657
|
+
import { EuiTreeViewProps } from '@elastic/eui/src/components/tree_view/tree_view'; type EuiTreeViewItemProps = HTMLAttributes<HTMLButtonElement> & CommonProps & PropsWithChildren & {
|
|
19658
|
+
id: string;
|
|
19659
|
+
label: ReactNode;
|
|
19660
|
+
icon?: ReactNode;
|
|
19661
|
+
hasArrow?: boolean;
|
|
19662
|
+
isActive?: boolean;
|
|
19663
|
+
isExpanded?: boolean;
|
|
19664
|
+
display?: EuiTreeViewProps['display'];
|
|
19665
|
+
buttonRef?: Ref<HTMLButtonElement>;
|
|
19666
|
+
wrapperProps?: HTMLAttributes<HTMLLIElement>;
|
|
19667
|
+
};
|
|
19668
|
+
export const EuiTreeViewItem: FunctionComponent<EuiTreeViewItemProps>;
|
|
19669
|
+
export {};
|
|
19670
|
+
|
|
19671
|
+
}
|
|
19672
|
+
declare module '@elastic/eui/src/components/tree_view/tree_view.styles' {
|
|
19673
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
19674
|
+
export const euiTreeViewStyles: (euiThemeContext: UseEuiTheme) => {
|
|
19675
|
+
euiTreeView: import("@emotion/utils").SerializedStyles;
|
|
19676
|
+
default: import("@emotion/utils").SerializedStyles;
|
|
19677
|
+
compressed: import("@emotion/utils").SerializedStyles;
|
|
19678
|
+
};
|
|
19679
|
+
|
|
19502
19680
|
}
|
|
19503
19681
|
declare module '@elastic/eui/src/components/tree_view/tree_view' {
|
|
19504
19682
|
import React, { Component, HTMLAttributes, ContextType } from 'react';
|
|
19683
|
+
import { WithEuiThemeProps } from '@elastic/eui/src/services';
|
|
19505
19684
|
import { CommonProps } from '@elastic/eui/src/components/common'; const EuiTreeViewContext: React.Context<string>;
|
|
19506
19685
|
export interface Node {
|
|
19507
19686
|
/** An array of EuiTreeViewNodes to render as children
|
|
@@ -19547,16 +19726,21 @@ declare module '@elastic/eui/src/components/tree_view/tree_view' {
|
|
|
19547
19726
|
* Never accepts children directly, only through the `items` prop
|
|
19548
19727
|
*/
|
|
19549
19728
|
children?: never;
|
|
19550
|
-
/**
|
|
19729
|
+
/**
|
|
19730
|
+
* An array of EuiTreeViewNodes
|
|
19551
19731
|
*/
|
|
19552
19732
|
items: Node[];
|
|
19553
|
-
/**
|
|
19733
|
+
/**
|
|
19734
|
+
* Optionally use a variation with smaller text and icon sizes
|
|
19735
|
+
* @default default
|
|
19554
19736
|
*/
|
|
19555
19737
|
display?: EuiTreeViewDisplayOptions;
|
|
19556
|
-
/**
|
|
19738
|
+
/**
|
|
19739
|
+
* Set all items to open on initial load
|
|
19557
19740
|
*/
|
|
19558
19741
|
expandByDefault?: boolean;
|
|
19559
|
-
/**
|
|
19742
|
+
/**
|
|
19743
|
+
* Display expansion arrows next to all items
|
|
19560
19744
|
* that contain children
|
|
19561
19745
|
*/
|
|
19562
19746
|
showExpansionArrows?: boolean;
|
|
@@ -19566,12 +19750,12 @@ declare module '@elastic/eui/src/components/tree_view/tree_view' {
|
|
|
19566
19750
|
} | {
|
|
19567
19751
|
'aria-labelledby': string;
|
|
19568
19752
|
});
|
|
19569
|
-
export class
|
|
19753
|
+
export class EuiTreeViewClass extends Component<EuiTreeViewProps & WithEuiThemeProps, EuiTreeViewState> {
|
|
19570
19754
|
treeIdGenerator: (idSuffix?: string) => string;
|
|
19571
19755
|
static contextType: React.Context<string>;
|
|
19572
19756
|
context: ContextType<typeof EuiTreeViewContext>;
|
|
19573
19757
|
isNested: boolean;
|
|
19574
|
-
constructor(props: EuiTreeViewProps, context?: ContextType<typeof EuiTreeViewContext>);
|
|
19758
|
+
constructor(props: EuiTreeViewProps & WithEuiThemeProps, context?: ContextType<typeof EuiTreeViewContext>);
|
|
19575
19759
|
componentDidUpdate(prevProps: EuiTreeViewProps): void;
|
|
19576
19760
|
buttonRef: Array<HTMLButtonElement | undefined>;
|
|
19577
19761
|
setButtonRef: (ref: HTMLButtonElement | HTMLAnchorElement | null, index: number) => void;
|
|
@@ -19581,6 +19765,7 @@ declare module '@elastic/eui/src/components/tree_view/tree_view' {
|
|
|
19581
19765
|
onChildrenKeydown: (event: React.KeyboardEvent, index: number) => void;
|
|
19582
19766
|
render(): React.JSX.Element;
|
|
19583
19767
|
}
|
|
19768
|
+
export const EuiTreeView: React.ForwardRefExoticComponent<Omit<EuiTreeViewProps, "theme"> & React.RefAttributes<Omit<EuiTreeViewProps, "theme">>>;
|
|
19584
19769
|
export {};
|
|
19585
19770
|
|
|
19586
19771
|
}
|
|
@@ -21253,6 +21438,12 @@ declare module '@elastic/eui/src/components/search_bar/search_filters' {
|
|
|
21253
21438
|
render(): React.JSX.Element;
|
|
21254
21439
|
}
|
|
21255
21440
|
|
|
21441
|
+
}
|
|
21442
|
+
declare module '@elastic/eui/src/components/search_bar/search_bar.styles' {
|
|
21443
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
21444
|
+
export const euiSearchBar__searchHolder: (euiThemeContext: UseEuiTheme) => import("@emotion/utils").SerializedStyles;
|
|
21445
|
+
export const euiSearchBar__filtersHolder: (euiThemeContext: UseEuiTheme) => import("@emotion/utils").SerializedStyles;
|
|
21446
|
+
|
|
21256
21447
|
}
|
|
21257
21448
|
declare module '@elastic/eui/src/components/search_bar/search_bar' {
|
|
21258
21449
|
import React, { Component, ReactElement } from 'react';
|
|
@@ -21843,6 +22034,24 @@ declare module '@elastic/eui/src/components/steps' {
|
|
|
21843
22034
|
export type { EuiStepStatus, EuiStepNumberProps } from '@elastic/eui/src/components/steps/step_number';
|
|
21844
22035
|
export { EuiStepNumber } from '@elastic/eui/src/components/steps/step_number';
|
|
21845
22036
|
|
|
22037
|
+
}
|
|
22038
|
+
declare module '@elastic/eui/src/components/tour/_tour_header.styles' {
|
|
22039
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
22040
|
+
export const euiTourHeaderStyles: ({ euiTheme }: UseEuiTheme) => {
|
|
22041
|
+
euiTourHeader: import("@emotion/utils").SerializedStyles;
|
|
22042
|
+
euiTourHeader__title: import("@emotion/utils").SerializedStyles;
|
|
22043
|
+
euiTourHeader__subtitle: import("@emotion/utils").SerializedStyles;
|
|
22044
|
+
};
|
|
22045
|
+
|
|
22046
|
+
}
|
|
22047
|
+
declare module '@elastic/eui/src/components/tour/_tour_header' {
|
|
22048
|
+
import { FunctionComponent } from 'react';
|
|
22049
|
+
import type { EuiTourStepProps } from '@elastic/eui/src/components/tour/tour_step'; type EuiTourHeaderProps = {
|
|
22050
|
+
id: string;
|
|
22051
|
+
} & Pick<EuiTourStepProps, 'title' | 'subtitle'>;
|
|
22052
|
+
export const EuiTourHeader: FunctionComponent<EuiTourHeaderProps>;
|
|
22053
|
+
export {};
|
|
22054
|
+
|
|
21846
22055
|
}
|
|
21847
22056
|
declare module '@elastic/eui/src/components/tour/tour_step_indicator' {
|
|
21848
22057
|
import { FunctionComponent, HTMLAttributes } from 'react';
|
|
@@ -21854,10 +22063,25 @@ declare module '@elastic/eui/src/components/tour/tour_step_indicator' {
|
|
|
21854
22063
|
}
|
|
21855
22064
|
export const EuiTourStepIndicator: FunctionComponent<EuiTourStepIndicatorProps>;
|
|
21856
22065
|
|
|
22066
|
+
}
|
|
22067
|
+
declare module '@elastic/eui/src/components/tour/_tour_footer.styles' {
|
|
22068
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
22069
|
+
export const _tourFooterBgColor: ({ colorMode, euiTheme }: UseEuiTheme) => string;
|
|
22070
|
+
export const euiTourFooterStyles: (euiThemeContext: UseEuiTheme) => {
|
|
22071
|
+
euiTourFooter: import("@emotion/utils").SerializedStyles;
|
|
22072
|
+
};
|
|
22073
|
+
|
|
22074
|
+
}
|
|
22075
|
+
declare module '@elastic/eui/src/components/tour/_tour_footer' {
|
|
22076
|
+
import { FunctionComponent } from 'react';
|
|
22077
|
+
import type { EuiTourStepProps } from '@elastic/eui/src/components/tour/tour_step'; type EuiTourFooterProps = Pick<EuiTourStepProps, 'footerAction' | 'step' | 'stepsTotal' | 'onFinish'>;
|
|
22078
|
+
export const EuiTourFooter: FunctionComponent<EuiTourFooterProps>;
|
|
22079
|
+
export {};
|
|
22080
|
+
|
|
21857
22081
|
}
|
|
21858
22082
|
declare module '@elastic/eui/src/components/tour/tour.styles' {
|
|
21859
22083
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
21860
|
-
export const euiTourStyles: (
|
|
22084
|
+
export const euiTourStyles: (euiThemeContext: UseEuiTheme) => {
|
|
21861
22085
|
euiTour: import("@emotion/utils").SerializedStyles;
|
|
21862
22086
|
};
|
|
21863
22087
|
export const euiTourBeaconStyles: ({ euiTheme }: UseEuiTheme) => {
|
|
@@ -21868,21 +22092,13 @@ declare module '@elastic/eui/src/components/tour/tour.styles' {
|
|
|
21868
22092
|
top: import("@emotion/utils").SerializedStyles;
|
|
21869
22093
|
bottom: import("@emotion/utils").SerializedStyles;
|
|
21870
22094
|
};
|
|
21871
|
-
export const euiTourHeaderStyles: ({ euiTheme }: UseEuiTheme) => {
|
|
21872
|
-
euiTourHeader: import("@emotion/utils").SerializedStyles;
|
|
21873
|
-
euiTourHeader__title: import("@emotion/utils").SerializedStyles;
|
|
21874
|
-
euiTourHeader__subtitle: import("@emotion/utils").SerializedStyles;
|
|
21875
|
-
};
|
|
21876
|
-
export const euiTourFooterStyles: ({ euiTheme, colorMode }: UseEuiTheme) => {
|
|
21877
|
-
euiTourFooter: import("@emotion/utils").SerializedStyles;
|
|
21878
|
-
};
|
|
21879
22095
|
|
|
21880
22096
|
}
|
|
21881
22097
|
declare module '@elastic/eui/src/components/tour/tour_step' {
|
|
21882
|
-
import { CSSProperties, FunctionComponent, ReactElement, ReactNode } from 'react';
|
|
22098
|
+
import { CSSProperties, HTMLAttributes, FunctionComponent, ReactElement, ReactNode } from 'react';
|
|
21883
22099
|
import { CommonProps, ExclusiveUnion, NoArgCallback } from '@elastic/eui/src/components/common';
|
|
21884
22100
|
import { EuiPopoverProps } from '@elastic/eui/src/components/popover';
|
|
21885
|
-
import { ElementTarget } from '@elastic/eui/src/services'; type
|
|
22101
|
+
import { ElementTarget } from '@elastic/eui/src/services'; type _EuiPopoverProps = EuiPopoverProps & Omit<HTMLAttributes<HTMLDivElement>, 'content' | 'title' | 'step'>; type _PopoverOverrides = 'button' | 'closePopover'; type _PopoverPartials = 'closePopover'; type ExtendedEuiPopoverProps = Omit<_EuiPopoverProps, _PopoverOverrides> & Partial<Pick<EuiPopoverProps, _PopoverPartials>>;
|
|
21886
22102
|
export type EuiTourStepAnchorProps = ExclusiveUnion<{
|
|
21887
22103
|
/**
|
|
21888
22104
|
* Element to which the tour step popover attaches when open
|
|
@@ -21896,7 +22112,7 @@ declare module '@elastic/eui/src/components/tour/tour_step' {
|
|
|
21896
22112
|
children?: never;
|
|
21897
22113
|
anchor: ElementTarget;
|
|
21898
22114
|
}>;
|
|
21899
|
-
export type EuiTourStepProps = CommonProps &
|
|
22115
|
+
export type EuiTourStepProps = CommonProps & ExtendedEuiPopoverProps & EuiTourStepAnchorProps & {
|
|
21900
22116
|
/**
|
|
21901
22117
|
* Contents of the tour step popover
|
|
21902
22118
|
*/
|
|
@@ -21925,10 +22141,6 @@ declare module '@elastic/eui/src/components/tour/tour_step' {
|
|
|
21925
22141
|
* The total number of steps in the tour
|
|
21926
22142
|
*/
|
|
21927
22143
|
stepsTotal: number;
|
|
21928
|
-
/**
|
|
21929
|
-
* Optional, standard DOM `style` attribute. Passed to the EuiPopover panel.
|
|
21930
|
-
*/
|
|
21931
|
-
style?: CSSProperties;
|
|
21932
22144
|
/**
|
|
21933
22145
|
* Smaller title text that appears atop each step in the tour. The subtitle gets wrapped in the appropriate heading level.
|
|
21934
22146
|
*/
|
|
@@ -22519,10 +22731,6 @@ declare module '@elastic/eui/src/components/basic_table/basic_table' {
|
|
|
22519
22731
|
get pageSize(): number;
|
|
22520
22732
|
get isSelectionControlled(): boolean;
|
|
22521
22733
|
getInitialSelection(): void;
|
|
22522
|
-
/**
|
|
22523
|
-
* @deprecated Use `selection.selected` instead to declaratively control table selection
|
|
22524
|
-
*/
|
|
22525
|
-
setSelection(newSelection: T[]): void;
|
|
22526
22734
|
buildCriteria(props: EuiBasicTableProps<T>): Criteria<T>;
|
|
22527
22735
|
changeSelection(changedSelection: T[]): void;
|
|
22528
22736
|
clearSelection(): void;
|
|
@@ -22558,7 +22766,7 @@ declare module '@elastic/eui/src/components/basic_table/basic_table' {
|
|
|
22558
22766
|
}
|
|
22559
22767
|
declare module '@elastic/eui/src/components/basic_table/in_memory_table' {
|
|
22560
22768
|
import React, { Component, ReactNode } from 'react';
|
|
22561
|
-
import {
|
|
22769
|
+
import { Criteria, EuiBasicTableProps, CriteriaWithPagination } from '@elastic/eui/src/components/basic_table/basic_table';
|
|
22562
22770
|
import { PropertySort } from '@elastic/eui/src/services';
|
|
22563
22771
|
import { Direction } from '@elastic/eui/src/services/sort';
|
|
22564
22772
|
import { EuiSearchBarProps, Query, SchemaType } from '@elastic/eui/src/components/search_bar/search_bar';
|
|
@@ -22663,10 +22871,8 @@ declare module '@elastic/eui/src/components/basic_table/in_memory_table' {
|
|
|
22663
22871
|
tableLayout: string;
|
|
22664
22872
|
searchFormat: string;
|
|
22665
22873
|
};
|
|
22666
|
-
tableRef: React.RefObject<EuiBasicTable>;
|
|
22667
22874
|
static getDerivedStateFromProps<T extends object>(nextProps: EuiInMemoryTableProps<T>, prevState: State<T>): State<T> | null;
|
|
22668
22875
|
constructor(props: EuiInMemoryTableProps<T>, context: EuiComponentDefaults);
|
|
22669
|
-
setSelection(newSelection: T[]): void;
|
|
22670
22876
|
onTableChange: ({ page, sort }: Criteria<T>) => void;
|
|
22671
22877
|
onQueryChange: ({ query, queryText, error }: onChangeArgument) => void;
|
|
22672
22878
|
onPlainTextSearch: (searchValue: string) => void;
|
|
@@ -25160,6 +25366,17 @@ declare module '@elastic/eui/src/components/icon/assets/import' {
|
|
|
25160
25366
|
export const icon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
25161
25367
|
export {};
|
|
25162
25368
|
|
|
25369
|
+
}
|
|
25370
|
+
declare module '@elastic/eui/src/components/icon/assets' {
|
|
25371
|
+
import * as React from 'react';
|
|
25372
|
+
import type { SVGProps } from 'react';
|
|
25373
|
+
interface SVGRProps {
|
|
25374
|
+
title?: string;
|
|
25375
|
+
titleId?: string;
|
|
25376
|
+
}
|
|
25377
|
+
export const icon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
25378
|
+
export {};
|
|
25379
|
+
|
|
25163
25380
|
}
|
|
25164
25381
|
declare module '@elastic/eui/src/components/icon/assets/indexTemporary' {
|
|
25165
25382
|
import * as React from 'react';
|
|
@@ -28835,15 +29052,14 @@ declare module '@elastic/eui' {
|
|
|
28835
29052
|
"euiToast.dismissToast": any;
|
|
28836
29053
|
"euiToast.newNotification": any;
|
|
28837
29054
|
"euiToast.notification": any;
|
|
29055
|
+
"euiTourFooter.endTour": any;
|
|
29056
|
+
"euiTourFooter.skipTour": any;
|
|
29057
|
+
"euiTourFooter.closeTour": any;
|
|
28838
29058
|
"euiTourStepIndicator.isActive": any;
|
|
28839
29059
|
"euiTourStepIndicator.isComplete": any;
|
|
28840
29060
|
"euiTourStepIndicator.isIncomplete": any;
|
|
28841
29061
|
"euiTourStepIndicator.ariaLabel": any;
|
|
28842
|
-
"euiTourStep.endTour": any;
|
|
28843
|
-
"euiTourStep.skipTour": any;
|
|
28844
|
-
"euiTourStep.closeTour": any;
|
|
28845
29062
|
"euiTreeView.listNavigationInstructions": any;
|
|
28846
|
-
"euiTreeView.ariaLabel": any;
|
|
28847
29063
|
}
|
|
28848
29064
|
}
|
|
28849
29065
|
|