@elastic/eui 68.0.0 → 70.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eui_charts_theme.js +5661 -5814
- package/dist/eui_charts_theme.js.map +1 -1
- package/dist/eui_theme_dark.css +0 -896
- package/dist/eui_theme_dark.json +0 -52
- package/dist/eui_theme_dark.json.d.ts +0 -52
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +0 -896
- package/dist/eui_theme_light.json +0 -52
- package/dist/eui_theme_light.json.d.ts +0 -52
- 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 -1
- package/es/components/basic_table/collapsed_item_actions.js +1 -1
- package/es/components/basic_table/in_memory_table.js +15 -3
- package/es/components/breadcrumbs/breadcrumb.js +9 -5
- package/es/components/breadcrumbs/breadcrumbs.js +7 -4
- package/es/components/button/_button_content_deprecated.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 +1 -1
- package/es/components/code/code.js +7 -3
- package/es/components/code/code.styles.js +32 -0
- package/es/components/code/code_block.js +72 -315
- package/es/components/code/code_block.styles.js +153 -0
- package/es/components/code/code_block_controls.js +29 -0
- package/es/components/code/code_block_controls.styles.js +43 -0
- package/es/components/code/code_block_copy.js +65 -0
- package/es/components/code/code_block_full_screen.js +90 -0
- package/es/components/code/code_block_line.styles.js +49 -0
- package/es/components/code/code_block_overflow.js +78 -0
- package/es/components/code/code_block_virtualized.js +59 -0
- package/es/components/code/code_syntax.styles.js +43 -0
- package/es/components/code/utils.js +43 -37
- package/es/components/collapsible_nav/collapsible_nav.js +0 -5
- package/es/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/es/components/color_picker/color_palette_picker/color_palette_picker.js +18 -0
- package/es/components/combo_box/combo_box.js +52 -11
- package/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +14 -6
- package/es/components/combo_box/matching_options.js +60 -11
- package/es/components/comment_list/comment.js +2 -2
- package/es/components/comment_list/comment_event.js +1 -1
- package/es/components/comment_list/comment_list.js +2 -2
- package/es/components/comment_list/comment_timeline.js +1 -1
- package/es/components/datagrid/body/data_grid_body.js +13 -13
- package/es/components/datagrid/body/data_grid_cell.js +24 -24
- 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/data_grid.js +13 -13
- package/es/components/datagrid/utils/in_memory.js +12 -12
- package/es/components/date_picker/date_picker.js +2 -2
- package/es/components/date_picker/date_picker_range.js +1 -1
- package/es/components/empty_prompt/empty_prompt.js +1 -1
- package/es/components/flex/flex_grid.js +30 -40
- package/es/components/flex/flex_grid.styles.js +137 -0
- package/es/components/flex/flex_group.js +16 -42
- package/es/components/flex/flex_group.styles.js +202 -0
- package/es/components/flex/flex_item.js +17 -16
- package/es/components/flex/flex_item.styles.js +148 -0
- package/es/components/flyout/flyout_body.js +2 -3
- package/es/components/flyout/flyout_footer.js +2 -3
- package/es/components/flyout/flyout_header.js +2 -3
- package/es/components/form/described_form_group/described_form_group.js +28 -23
- package/es/components/form/eui_form_context.js +14 -0
- package/es/components/form/field_number/field_number.js +38 -23
- package/es/components/form/field_password/field_password.js +31 -20
- package/es/components/form/field_search/field_search.js +14 -2
- package/es/components/form/field_text/field_text.js +30 -20
- package/es/components/form/file_picker/file_picker.js +13 -1
- package/es/components/form/form.js +21 -3
- package/es/components/form/form_control_layout/form_control_layout.js +19 -3
- 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/form_row/form_row.js +22 -4
- package/es/components/form/range/dual_range.js +14 -2
- package/es/components/form/range/range.js +14 -2
- package/es/components/form/range/range_wrapper.js +16 -6
- package/es/components/form/select/select.js +41 -25
- package/es/components/form/super_select/super_select.js +18 -0
- package/es/components/form/super_select/super_select_control.js +26 -22
- package/es/components/form/text_area/text_area.js +26 -15
- package/es/components/header/header_links/header_link.js +1 -1
- package/es/components/header/header_links/header_links.js +1 -1
- package/es/components/header/header_logo.js +1 -1
- package/es/components/icon/assets/filter.js +1 -2
- package/es/components/icon/assets/filterExclude.js +43 -0
- package/es/components/icon/assets/filterIgnore.js +38 -0
- package/es/components/icon/assets/filterInclude.js +38 -0
- package/es/components/icon/assets/indexTemporary.js +40 -0
- package/es/components/icon/assets/infinity.js +38 -0
- package/es/components/icon/assets/sortAscending.js +38 -0
- package/es/components/icon/assets/sortDescending.js +38 -0
- package/es/components/icon/icon.js +1 -1
- package/es/components/icon/icon_map.js +7 -0
- package/es/components/image/image_fullscreen_wrapper.js +3 -3
- 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/notification/notification_event.js +2 -2
- package/es/components/notification/notification_event_meta.js +1 -1
- package/es/components/overlay_mask/overlay_mask.js +8 -14
- package/es/components/overlay_mask/overlay_mask.styles.js +4 -14
- package/es/components/overlay_mask/overlay_mask_body.styles.js +18 -0
- package/es/components/page/page_header/page_header_content.js +1 -1
- package/es/components/page/page_section/page_section.js +4 -3
- package/es/components/pagination/pagination.js +4 -4
- package/es/components/pagination/pagination_button.js +1 -1
- package/es/components/provider/provider.js +1 -5
- package/es/components/resizable_container/helpers.js +2 -2
- package/es/components/resizable_container/resizable_container.js +83 -25
- package/es/components/resizable_container/resizable_container.styles.js +28 -0
- package/es/components/resizable_container/resizable_panel.js +25 -48
- package/es/components/resizable_container/resizable_panel.styles.js +69 -0
- package/es/components/search_bar/query/ast.js +14 -3
- package/es/components/search_bar/search_bar.js +6 -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/suggest/suggest.js +1 -1
- package/es/components/suggest/suggest_item.js +1 -1
- package/es/components/table/table_header_button.js +1 -1
- package/es/components/text/text.js +1 -0
- 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/tool_tip/tool_tip.js +3 -2
- package/es/components/tool_tip/tool_tip.styles.js +17 -22
- package/es/components/tool_tip/tool_tip_anchor.js +2 -2
- package/es/components/tool_tip/tool_tip_arrow.js +17 -3
- package/es/components/tool_tip/tool_tip_popover.js +7 -7
- package/es/components/tour/tour.styles.js +4 -3
- package/es/components/tour/tour_step.js +7 -5
- package/es/global_styling/functions/logicals.js +5 -3
- package/es/global_styling/functions/math.js +37 -19
- package/es/global_styling/mixins/_padding.js +13 -9
- package/eui.d.ts +664 -122
- package/i18ntokens.json +60 -60
- 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 -1
- package/lib/components/basic_table/collapsed_item_actions.js +1 -1
- package/lib/components/basic_table/in_memory_table.js +15 -3
- package/lib/components/breadcrumbs/breadcrumb.js +9 -5
- package/lib/components/breadcrumbs/breadcrumbs.js +7 -4
- package/lib/components/button/_button_content_deprecated.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 +1 -1
- package/lib/components/code/code.js +9 -3
- package/lib/components/code/code.styles.js +35 -0
- package/lib/components/code/code_block.js +72 -320
- package/lib/components/code/code_block.styles.js +154 -0
- package/lib/components/code/code_block_controls.js +48 -0
- package/lib/components/code/code_block_controls.styles.js +39 -0
- package/lib/components/code/code_block_copy.js +78 -0
- package/lib/components/code/code_block_full_screen.js +108 -0
- package/lib/components/code/code_block_line.styles.js +45 -0
- package/lib/components/code/code_block_overflow.js +82 -0
- package/lib/components/code/code_block_virtualized.js +72 -0
- package/lib/components/code/code_syntax.styles.js +57 -0
- package/lib/components/code/utils.js +40 -39
- package/lib/components/collapsible_nav/collapsible_nav.js +0 -5
- package/lib/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/lib/components/color_picker/color_palette_picker/color_palette_picker.js +18 -0
- package/lib/components/combo_box/combo_box.js +51 -10
- package/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +14 -6
- package/lib/components/combo_box/matching_options.js +64 -12
- package/lib/components/comment_list/comment.js +2 -2
- package/lib/components/comment_list/comment_event.js +1 -1
- package/lib/components/comment_list/comment_list.js +2 -2
- package/lib/components/comment_list/comment_timeline.js +1 -1
- package/lib/components/datagrid/body/data_grid_body.js +13 -13
- package/lib/components/datagrid/body/data_grid_cell.js +24 -24
- 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/data_grid.js +13 -13
- package/lib/components/datagrid/utils/in_memory.js +12 -12
- package/lib/components/date_picker/date_picker.js +2 -2
- package/lib/components/date_picker/date_picker_range.js +1 -1
- package/lib/components/empty_prompt/empty_prompt.js +1 -1
- package/lib/components/flex/flex_grid.js +33 -42
- package/lib/components/flex/flex_grid.styles.js +140 -0
- package/lib/components/flex/flex_group.js +17 -42
- package/lib/components/flex/flex_group.styles.js +205 -0
- package/lib/components/flex/flex_item.js +20 -19
- package/lib/components/flex/flex_item.styles.js +150 -0
- package/lib/components/flyout/flyout_body.js +2 -3
- package/lib/components/flyout/flyout_footer.js +2 -3
- package/lib/components/flyout/flyout_header.js +2 -3
- package/lib/components/form/described_form_group/described_form_group.js +29 -23
- package/lib/components/form/eui_form_context.js +28 -0
- package/lib/components/form/field_number/field_number.js +39 -23
- package/lib/components/form/field_password/field_password.js +32 -20
- package/lib/components/form/field_search/field_search.js +15 -2
- package/lib/components/form/field_text/field_text.js +31 -20
- package/lib/components/form/file_picker/file_picker.js +14 -1
- package/lib/components/form/form.js +23 -3
- package/lib/components/form/form_control_layout/form_control_layout.js +20 -3
- 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/form_row/form_row.js +23 -4
- package/lib/components/form/range/dual_range.js +15 -2
- package/lib/components/form/range/range.js +15 -2
- package/lib/components/form/range/range_wrapper.js +17 -6
- package/lib/components/form/select/select.js +42 -25
- package/lib/components/form/super_select/super_select.js +18 -0
- package/lib/components/form/super_select/super_select_control.js +27 -22
- package/lib/components/form/text_area/text_area.js +27 -15
- 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.js +1 -1
- package/lib/components/icon/assets/filter.js +1 -2
- package/lib/components/icon/assets/filterExclude.js +50 -0
- package/lib/components/icon/assets/filterIgnore.js +45 -0
- package/lib/components/icon/assets/filterInclude.js +45 -0
- package/lib/components/icon/assets/indexTemporary.js +47 -0
- package/lib/components/icon/assets/infinity.js +45 -0
- package/lib/components/icon/assets/sortAscending.js +45 -0
- package/lib/components/icon/assets/sortDescending.js +45 -0
- package/lib/components/icon/icon.js +1 -1
- package/lib/components/icon/icon_map.js +7 -0
- package/lib/components/icon/svgs/filter.svg +1 -1
- package/lib/components/icon/svgs/filterExclude.svg +5 -0
- package/lib/components/icon/svgs/filterIgnore.svg +4 -0
- package/lib/components/icon/svgs/filterInclude.svg +5 -0
- package/lib/components/icon/svgs/indexTemporary.svg +4 -0
- package/lib/components/icon/svgs/infinity.svg +3 -0
- package/lib/components/icon/svgs/sortAscending.svg +3 -0
- package/lib/components/icon/svgs/sortDescending.svg +3 -0
- package/lib/components/image/image_fullscreen_wrapper.js +3 -3
- 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/notification/notification_event.js +2 -2
- package/lib/components/notification/notification_event_meta.js +1 -1
- package/lib/components/overlay_mask/overlay_mask.js +9 -14
- package/lib/components/overlay_mask/overlay_mask.styles.js +13 -17
- package/lib/components/overlay_mask/overlay_mask_body.styles.js +20 -0
- package/lib/components/page/page_header/page_header_content.js +1 -1
- package/lib/components/page/page_section/page_section.js +4 -3
- package/lib/components/pagination/pagination.js +4 -4
- package/lib/components/provider/provider.js +7 -12
- package/lib/components/resizable_container/helpers.js +2 -2
- package/lib/components/resizable_container/resizable_container.js +84 -25
- package/lib/components/resizable_container/resizable_container.styles.js +31 -0
- package/lib/components/resizable_container/resizable_panel.js +28 -49
- package/lib/components/resizable_container/resizable_panel.styles.js +74 -0
- package/lib/components/search_bar/query/ast.js +14 -3
- package/lib/components/search_bar/search_bar.js +6 -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/suggest/suggest.js +1 -1
- package/lib/components/suggest/suggest_item.js +1 -1
- package/lib/components/table/table_header_button.js +1 -1
- package/lib/components/text/text.js +1 -0
- 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/tool_tip/tool_tip.js +3 -2
- package/lib/components/tool_tip/tool_tip.styles.js +18 -26
- package/lib/components/tool_tip/tool_tip_anchor.js +2 -2
- package/lib/components/tool_tip/tool_tip_arrow.js +19 -4
- package/lib/components/tool_tip/tool_tip_popover.js +6 -6
- package/lib/components/tour/tour.styles.js +3 -2
- package/lib/components/tour/tour_step.js +7 -5
- package/lib/global_styling/functions/logicals.js +5 -3
- package/lib/global_styling/functions/math.js +37 -19
- package/lib/global_styling/mixins/_padding.js +17 -10
- package/optimize/es/components/basic_table/in_memory_table.js +1 -1
- package/optimize/es/components/breadcrumbs/breadcrumb.js +3 -2
- package/optimize/es/components/breadcrumbs/breadcrumbs.js +7 -4
- package/optimize/es/components/code/code.js +7 -3
- package/optimize/es/components/code/code.styles.js +32 -0
- package/optimize/es/components/code/code_block.js +70 -299
- package/optimize/es/components/code/code_block.styles.js +153 -0
- package/optimize/es/components/code/code_block_controls.js +29 -0
- package/optimize/es/components/code/code_block_controls.styles.js +43 -0
- package/optimize/es/components/code/code_block_copy.js +55 -0
- package/optimize/es/components/code/code_block_full_screen.js +80 -0
- package/optimize/es/components/code/code_block_line.styles.js +49 -0
- package/optimize/es/components/code/code_block_overflow.js +67 -0
- package/optimize/es/components/code/code_block_virtualized.js +59 -0
- package/optimize/es/components/code/code_syntax.styles.js +43 -0
- package/optimize/es/components/code/utils.js +43 -37
- package/optimize/es/components/combo_box/combo_box.js +47 -11
- package/optimize/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +13 -6
- package/optimize/es/components/combo_box/matching_options.js +60 -11
- package/optimize/es/components/flex/flex_grid.js +18 -34
- package/optimize/es/components/flex/flex_grid.styles.js +137 -0
- package/optimize/es/components/flex/flex_group.js +12 -38
- package/optimize/es/components/flex/flex_group.styles.js +202 -0
- package/optimize/es/components/flex/flex_item.js +11 -14
- package/optimize/es/components/flex/flex_item.styles.js +148 -0
- package/optimize/es/components/flyout/flyout_body.js +2 -3
- package/optimize/es/components/flyout/flyout_footer.js +2 -3
- package/optimize/es/components/flyout/flyout_header.js +2 -3
- package/optimize/es/components/form/described_form_group/described_form_group.js +22 -22
- package/optimize/es/components/form/eui_form_context.js +14 -0
- package/optimize/es/components/form/field_number/field_number.js +26 -22
- package/optimize/es/components/form/field_password/field_password.js +24 -20
- package/optimize/es/components/form/field_search/field_search.js +8 -2
- package/optimize/es/components/form/field_text/field_text.js +22 -18
- package/optimize/es/components/form/file_picker/file_picker.js +7 -1
- package/optimize/es/components/form/form.js +11 -2
- package/optimize/es/components/form/form_control_layout/form_control_layout.js +10 -2
- package/optimize/es/components/form/form_row/form_row.js +10 -4
- package/optimize/es/components/form/range/dual_range.js +8 -2
- package/optimize/es/components/form/range/range.js +8 -2
- package/optimize/es/components/form/range/range_wrapper.js +11 -6
- package/optimize/es/components/form/select/select.js +28 -24
- package/optimize/es/components/form/super_select/super_select_control.js +26 -22
- package/optimize/es/components/form/text_area/text_area.js +19 -15
- package/optimize/es/components/icon/assets/filter.js +1 -2
- package/optimize/es/components/icon/assets/filterExclude.js +39 -0
- package/optimize/es/components/icon/assets/filterIgnore.js +34 -0
- package/optimize/es/components/icon/assets/filterInclude.js +34 -0
- package/optimize/es/components/icon/assets/indexTemporary.js +36 -0
- package/optimize/es/components/icon/assets/infinity.js +34 -0
- package/optimize/es/components/icon/assets/sortAscending.js +34 -0
- package/optimize/es/components/icon/assets/sortDescending.js +34 -0
- package/optimize/es/components/icon/icon_map.js +7 -0
- package/optimize/es/components/image/image_fullscreen_wrapper.js +3 -3
- package/optimize/es/components/overlay_mask/overlay_mask.js +8 -9
- package/optimize/es/components/overlay_mask/overlay_mask.styles.js +4 -14
- package/optimize/es/components/overlay_mask/overlay_mask_body.styles.js +18 -0
- package/optimize/es/components/page/page_section/page_section.js +4 -3
- package/optimize/es/components/pagination/pagination.js +4 -4
- package/optimize/es/components/provider/provider.js +1 -5
- package/optimize/es/components/resizable_container/helpers.js +2 -2
- package/optimize/es/components/resizable_container/resizable_container.js +73 -25
- package/optimize/es/components/resizable_container/resizable_container.styles.js +28 -0
- package/optimize/es/components/resizable_container/resizable_panel.js +25 -48
- package/optimize/es/components/resizable_container/resizable_panel.styles.js +69 -0
- package/optimize/es/components/search_bar/query/ast.js +14 -3
- package/optimize/es/components/tool_tip/tool_tip.js +3 -2
- package/optimize/es/components/tool_tip/tool_tip.styles.js +17 -22
- package/optimize/es/components/tool_tip/tool_tip_anchor.js +2 -2
- package/optimize/es/components/tool_tip/tool_tip_arrow.js +9 -3
- package/optimize/es/components/tool_tip/tool_tip_popover.js +7 -7
- package/optimize/es/components/tour/tour.styles.js +4 -3
- package/optimize/es/components/tour/tour_step.js +7 -5
- package/optimize/es/global_styling/functions/logicals.js +5 -3
- package/optimize/es/global_styling/functions/math.js +35 -17
- package/optimize/es/global_styling/mixins/_padding.js +13 -9
- package/optimize/lib/components/basic_table/in_memory_table.js +1 -1
- package/optimize/lib/components/breadcrumbs/breadcrumb.js +3 -2
- package/optimize/lib/components/breadcrumbs/breadcrumbs.js +7 -4
- package/optimize/lib/components/code/code.js +9 -3
- package/optimize/lib/components/code/code.styles.js +35 -0
- package/optimize/lib/components/code/code_block.js +71 -306
- package/optimize/lib/components/code/code_block.styles.js +156 -0
- package/optimize/lib/components/code/code_block_controls.js +48 -0
- package/optimize/lib/components/code/code_block_controls.styles.js +39 -0
- package/optimize/lib/components/code/code_block_copy.js +78 -0
- package/optimize/lib/components/code/code_block_full_screen.js +108 -0
- package/optimize/lib/components/code/code_block_line.styles.js +45 -0
- package/optimize/lib/components/code/code_block_overflow.js +82 -0
- package/optimize/lib/components/code/code_block_virtualized.js +81 -0
- package/optimize/lib/components/code/code_syntax.styles.js +57 -0
- package/optimize/lib/components/code/utils.js +40 -37
- package/optimize/lib/components/combo_box/combo_box.js +46 -10
- package/optimize/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +13 -6
- package/optimize/lib/components/combo_box/matching_options.js +64 -12
- package/optimize/lib/components/flex/flex_grid.js +21 -36
- package/optimize/lib/components/flex/flex_grid.styles.js +140 -0
- package/optimize/lib/components/flex/flex_group.js +13 -38
- package/optimize/lib/components/flex/flex_group.styles.js +205 -0
- package/optimize/lib/components/flex/flex_item.js +14 -17
- package/optimize/lib/components/flex/flex_item.styles.js +150 -0
- package/optimize/lib/components/flyout/flyout_body.js +2 -3
- package/optimize/lib/components/flyout/flyout_footer.js +2 -3
- package/optimize/lib/components/flyout/flyout_header.js +2 -3
- package/optimize/lib/components/form/described_form_group/described_form_group.js +23 -22
- package/optimize/lib/components/form/eui_form_context.js +28 -0
- package/optimize/lib/components/form/field_number/field_number.js +27 -22
- package/optimize/lib/components/form/field_password/field_password.js +24 -20
- package/optimize/lib/components/form/field_search/field_search.js +7 -2
- package/optimize/lib/components/form/field_text/field_text.js +23 -18
- package/optimize/lib/components/form/file_picker/file_picker.js +7 -1
- package/optimize/lib/components/form/form.js +14 -2
- package/optimize/lib/components/form/form_control_layout/form_control_layout.js +10 -2
- package/optimize/lib/components/form/form_row/form_row.js +9 -4
- package/optimize/lib/components/form/range/dual_range.js +7 -2
- package/optimize/lib/components/form/range/range.js +7 -2
- package/optimize/lib/components/form/range/range_wrapper.js +12 -6
- package/optimize/lib/components/form/select/select.js +29 -24
- package/optimize/lib/components/form/super_select/super_select_control.js +27 -22
- package/optimize/lib/components/form/text_area/text_area.js +20 -15
- package/optimize/lib/components/icon/assets/filter.js +1 -2
- package/optimize/lib/components/icon/assets/filterExclude.js +49 -0
- package/optimize/lib/components/icon/assets/filterIgnore.js +44 -0
- package/optimize/lib/components/icon/assets/filterInclude.js +44 -0
- package/optimize/lib/components/icon/assets/indexTemporary.js +46 -0
- package/optimize/lib/components/icon/assets/infinity.js +44 -0
- package/optimize/lib/components/icon/assets/sortAscending.js +44 -0
- package/optimize/lib/components/icon/assets/sortDescending.js +44 -0
- package/optimize/lib/components/icon/icon_map.js +7 -0
- package/optimize/lib/components/icon/svgs/filter.svg +1 -1
- package/optimize/lib/components/icon/svgs/filterExclude.svg +5 -0
- package/optimize/lib/components/icon/svgs/filterIgnore.svg +4 -0
- package/optimize/lib/components/icon/svgs/filterInclude.svg +5 -0
- package/optimize/lib/components/icon/svgs/indexTemporary.svg +4 -0
- package/optimize/lib/components/icon/svgs/infinity.svg +3 -0
- package/optimize/lib/components/icon/svgs/sortAscending.svg +3 -0
- package/optimize/lib/components/icon/svgs/sortDescending.svg +3 -0
- package/optimize/lib/components/image/image_fullscreen_wrapper.js +3 -3
- package/optimize/lib/components/overlay_mask/overlay_mask.js +9 -9
- package/optimize/lib/components/overlay_mask/overlay_mask.styles.js +13 -17
- package/optimize/lib/components/overlay_mask/overlay_mask_body.styles.js +20 -0
- package/optimize/lib/components/page/page_section/page_section.js +4 -3
- package/optimize/lib/components/pagination/pagination.js +4 -4
- package/optimize/lib/components/provider/provider.js +7 -12
- package/optimize/lib/components/resizable_container/helpers.js +2 -2
- package/optimize/lib/components/resizable_container/resizable_container.js +74 -25
- package/optimize/lib/components/resizable_container/resizable_container.styles.js +31 -0
- package/optimize/lib/components/resizable_container/resizable_panel.js +28 -49
- package/optimize/lib/components/resizable_container/resizable_panel.styles.js +76 -0
- package/optimize/lib/components/search_bar/query/ast.js +14 -3
- package/optimize/lib/components/tool_tip/tool_tip.js +3 -2
- package/optimize/lib/components/tool_tip/tool_tip.styles.js +18 -26
- package/optimize/lib/components/tool_tip/tool_tip_anchor.js +2 -2
- package/optimize/lib/components/tool_tip/tool_tip_arrow.js +10 -10
- package/optimize/lib/components/tool_tip/tool_tip_popover.js +6 -6
- package/optimize/lib/components/tour/tour.styles.js +3 -2
- package/optimize/lib/components/tour/tour_step.js +7 -5
- package/optimize/lib/global_styling/functions/logicals.js +4 -10
- package/optimize/lib/global_styling/functions/math.js +37 -19
- package/optimize/lib/global_styling/mixins/_padding.js +17 -10
- package/package.json +24 -21
- package/src/components/index.scss +0 -2
- package/src/components/resizable_container/_index.scss +0 -2
- package/src/global_styling/mixins/_header.scss +1 -1
- package/src/global_styling/variables/_index.scss +0 -1
- package/src/themes/amsterdam/overrides/_index.scss +0 -1
- 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 -1
- package/test-env/components/basic_table/collapsed_item_actions.js +1 -1
- package/test-env/components/basic_table/in_memory_table.js +15 -3
- package/test-env/components/breadcrumbs/breadcrumb.js +9 -5
- package/test-env/components/breadcrumbs/breadcrumbs.js +7 -4
- package/test-env/components/button/_button_content_deprecated.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 +1 -1
- package/test-env/components/code/code.styles.js +35 -0
- package/test-env/components/code/code_block.styles.js +156 -0
- package/test-env/components/code/code_block_controls.js +48 -0
- package/test-env/components/code/code_block_controls.styles.js +39 -0
- package/test-env/components/code/code_block_copy.js +78 -0
- package/test-env/components/code/code_block_full_screen.js +108 -0
- package/test-env/components/code/code_block_line.styles.js +45 -0
- package/test-env/components/code/code_block_overflow.js +82 -0
- package/test-env/components/code/code_block_virtualized.js +81 -0
- package/test-env/components/code/code_syntax.styles.js +57 -0
- package/test-env/components/code/utils.js +40 -37
- package/test-env/components/collapsible_nav/collapsible_nav.js +0 -5
- package/test-env/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/test-env/components/color_picker/color_palette_picker/color_palette_picker.js +18 -0
- package/test-env/components/combo_box/combo_box.js +51 -10
- package/test-env/components/combo_box/combo_box_options_list/combo_box_options_list.js +14 -6
- package/test-env/components/combo_box/matching_options.js +64 -12
- package/test-env/components/comment_list/comment.js +2 -2
- package/test-env/components/comment_list/comment_event.js +1 -1
- 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/datagrid/body/data_grid_body.js +13 -13
- package/test-env/components/datagrid/body/data_grid_cell.js +24 -24
- 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/data_grid.js +13 -13
- package/test-env/components/datagrid/utils/in_memory.js +12 -12
- 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/empty_prompt/empty_prompt.js +1 -1
- package/test-env/components/flex/flex_grid.js +33 -42
- package/test-env/components/flex/flex_grid.styles.js +140 -0
- package/test-env/components/flex/flex_group.js +17 -42
- package/test-env/components/flex/flex_group.styles.js +205 -0
- package/test-env/components/flex/flex_item.js +20 -18
- package/test-env/components/flex/flex_item.styles.js +150 -0
- package/test-env/components/flyout/flyout_body.js +2 -3
- package/test-env/components/flyout/flyout_footer.js +2 -3
- package/test-env/components/flyout/flyout_header.js +2 -3
- package/test-env/components/form/described_form_group/described_form_group.js +29 -23
- package/test-env/components/form/eui_form_context.js +28 -0
- package/test-env/components/form/field_number/field_number.js +39 -23
- package/test-env/components/form/field_password/field_password.js +31 -20
- package/test-env/components/form/field_search/field_search.js +13 -2
- package/test-env/components/form/field_text/field_text.js +31 -20
- package/test-env/components/form/file_picker/file_picker.js +13 -1
- package/test-env/components/form/form.js +24 -3
- package/test-env/components/form/form_control_layout/form_control_layout.js +17 -3
- 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/form_row/form_row.js +21 -4
- package/test-env/components/form/range/dual_range.js +13 -2
- package/test-env/components/form/range/range.js +13 -2
- package/test-env/components/form/range/range_wrapper.js +17 -6
- package/test-env/components/form/select/select.js +41 -24
- package/test-env/components/form/super_select/super_select.js +18 -0
- package/test-env/components/form/super_select/super_select_control.js +27 -22
- package/test-env/components/form/text_area/text_area.js +27 -15
- 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.js +1 -1
- package/test-env/components/icon/assets/filter.js +1 -2
- package/test-env/components/icon/assets/filterExclude.js +49 -0
- package/test-env/components/icon/assets/filterIgnore.js +44 -0
- package/test-env/components/icon/assets/filterInclude.js +44 -0
- package/test-env/components/icon/assets/indexTemporary.js +46 -0
- package/test-env/components/icon/assets/infinity.js +44 -0
- package/test-env/components/icon/assets/sortAscending.js +44 -0
- package/test-env/components/icon/assets/sortDescending.js +44 -0
- package/test-env/components/icon/icon_map.js +7 -0
- package/test-env/components/image/image_fullscreen_wrapper.js +3 -3
- 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/notification/notification_event.js +2 -2
- package/test-env/components/notification/notification_event_meta.js +1 -1
- package/test-env/components/overlay_mask/overlay_mask.js +9 -14
- package/test-env/components/overlay_mask/overlay_mask.styles.js +13 -17
- package/test-env/components/overlay_mask/overlay_mask_body.styles.js +20 -0
- package/test-env/components/page/page_header/page_header_content.js +1 -1
- package/test-env/components/page/page_section/page_section.js +4 -3
- package/test-env/components/pagination/pagination.js +4 -4
- package/test-env/components/provider/provider.js +7 -12
- package/test-env/components/resizable_container/helpers.js +2 -2
- package/test-env/components/resizable_container/resizable_container.js +84 -25
- package/test-env/components/resizable_container/resizable_container.styles.js +31 -0
- package/test-env/components/resizable_container/resizable_panel.js +28 -49
- package/test-env/components/resizable_container/resizable_panel.styles.js +76 -0
- package/test-env/components/search_bar/query/ast.js +14 -3
- package/test-env/components/search_bar/search_bar.js +6 -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/suggest/suggest.js +1 -1
- package/test-env/components/suggest/suggest_item.js +1 -1
- package/test-env/components/table/table_header_button.js +1 -1
- package/test-env/components/text/text.js +1 -0
- 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/tool_tip/tool_tip.js +3 -2
- package/test-env/components/tool_tip/tool_tip.styles.js +18 -26
- package/test-env/components/tool_tip/tool_tip_anchor.js +2 -2
- package/test-env/components/tool_tip/tool_tip_arrow.js +16 -11
- package/test-env/components/tool_tip/tool_tip_popover.js +6 -6
- package/test-env/components/tour/tour.styles.js +3 -2
- package/test-env/components/tour/tour_step.js +7 -5
- package/test-env/global_styling/functions/logicals.js +4 -10
- package/test-env/global_styling/functions/math.js +37 -19
- package/test-env/global_styling/mixins/_padding.js +17 -10
- package/src/components/code/_code.scss +0 -15
- package/src/components/code/_code_block.scss +0 -177
- package/src/components/code/_index.scss +0 -4
- package/src/components/code/_mixins.scss +0 -127
- package/src/components/code/_variables.scss +0 -5
- package/src/components/flex/_flex_grid.scss +0 -99
- package/src/components/flex/_flex_group.scss +0 -100
- package/src/components/flex/_flex_item.scss +0 -35
- package/src/components/flex/_index.scss +0 -3
- package/src/components/resizable_container/_resizable_container.scss +0 -8
- package/src/components/resizable_container/_resizable_panel.scss +0 -51
- package/src/global_styling/variables/_colors_code.scss +0 -23
- package/src/themes/amsterdam/overrides/_code.scss +0 -9
package/eui.d.ts
CHANGED
|
@@ -1064,6 +1064,9 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
1064
1064
|
faceSad: string;
|
|
1065
1065
|
filebeatApp: string;
|
|
1066
1066
|
filter: string;
|
|
1067
|
+
filterExclude: string;
|
|
1068
|
+
filterIgnore: string;
|
|
1069
|
+
filterInclude: string;
|
|
1067
1070
|
flag: string;
|
|
1068
1071
|
fleetApp: string;
|
|
1069
1072
|
fold: string;
|
|
@@ -1103,6 +1106,8 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
1103
1106
|
indexRollupApp: string;
|
|
1104
1107
|
indexRuntime: string;
|
|
1105
1108
|
indexSettings: string;
|
|
1109
|
+
indexTemporary: string;
|
|
1110
|
+
infinity: string;
|
|
1106
1111
|
inputOutput: string;
|
|
1107
1112
|
inspect: string;
|
|
1108
1113
|
invert: string;
|
|
@@ -1263,6 +1268,8 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
1263
1268
|
shard: string;
|
|
1264
1269
|
share: string;
|
|
1265
1270
|
snowflake: string;
|
|
1271
|
+
sortAscending: string;
|
|
1272
|
+
sortDescending: string;
|
|
1266
1273
|
sortDown: string;
|
|
1267
1274
|
sortLeft: string;
|
|
1268
1275
|
sortRight: string;
|
|
@@ -1450,7 +1457,7 @@ declare module '@elastic/eui/src/components/icon/icon' {
|
|
|
1450
1457
|
import { WithEuiThemeProps } from '@elastic/eui/src/services';
|
|
1451
1458
|
export { COLORS } from '@elastic/eui/src/components/icon/named_colors';
|
|
1452
1459
|
import { NamedColor } from '@elastic/eui/src/components/icon/named_colors';
|
|
1453
|
-
export const TYPES: ("string" | "number" | "function" | "link" | "menu" | "filter" | "image" | "stop" | "search" | "temperature" | "color" | "accessibility" | "aggregate" | "alert" | "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" | "copy" | "cross" | "crossInACircleFilled" | "crosshairs" | "currency" | "cut" | "database" | "desktop" | "document" | "documentEdit" | "documentation" | "documents" | "dot" | "doubleArrowLeft" | "doubleArrowRight" | "download" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "email" | "empty" | "eql" | "eraser" | "exit" | "expand" | "expandMini" | "eye" | "flag" | "fold" | "frameNext" | "framePrevious" | "fullScreenExit" | "gear" | "glasses" | "globe" | "grab" | "grid" | "heart" | "heatmap" | "help" | "home" | "iInCircle" | "inputOutput" | "inspect" | "invert" | "ip" | "keyboard" | "kubernetesNode" | "kubernetesPod" | "launch" | "layers" | "lettering" | "lineDashed" | "lineDotted" | "lineSolid" | "list" | "lock" | "lockOpen" | "magnet" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "minimize" | "minus" | "mobile" | "moon" | "namespace" | "nested" | "node" | "offline" | "online" | "package" | "pageSelect" | "pagesSelect" | "partial" | "pause" | "payment" | "pencil" | "percent" | "pin" | "play" | "playFilled" | "plus" | "popout" | "push" | "quote" | "refresh" | "reporter" | "save" | "scale" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "shard" | "share" | "snowflake" | "sortLeft" | "sortRight" | "sortable" | "spaces" | "starPlusEmpty" | "starPlusFilled" | "stats" | "storage" | "submodule" | "sun" | "symlink" | "tableOfContents" | "tag" | "tear" | "timeline" | "timeRefresh" | "timeslider" | "training" | "trash" | "unfold" | "unlink" | "user" | "userAvatar" | "users" | "vector" | "videoPlayer" | "wordWrap" | "wordWrapDisabled" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDenseVector" | "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" | "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" | "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" | "watchesApp" | "workplaceSearchApp")[];
|
|
1460
|
+
export const TYPES: ("string" | "number" | "function" | "link" | "menu" | "filter" | "image" | "stop" | "search" | "temperature" | "color" | "accessibility" | "aggregate" | "alert" | "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" | "copy" | "cross" | "crossInACircleFilled" | "crosshairs" | "currency" | "cut" | "database" | "desktop" | "document" | "documentEdit" | "documentation" | "documents" | "dot" | "doubleArrowLeft" | "doubleArrowRight" | "download" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "email" | "empty" | "eql" | "eraser" | "exit" | "expand" | "expandMini" | "eye" | "filterExclude" | "filterIgnore" | "filterInclude" | "flag" | "fold" | "frameNext" | "framePrevious" | "fullScreenExit" | "gear" | "glasses" | "globe" | "grab" | "grid" | "heart" | "heatmap" | "help" | "home" | "iInCircle" | "indexTemporary" | "infinity" | "inputOutput" | "inspect" | "invert" | "ip" | "keyboard" | "kubernetesNode" | "kubernetesPod" | "launch" | "layers" | "lettering" | "lineDashed" | "lineDotted" | "lineSolid" | "list" | "lock" | "lockOpen" | "magnet" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "minimize" | "minus" | "mobile" | "moon" | "namespace" | "nested" | "node" | "offline" | "online" | "package" | "pageSelect" | "pagesSelect" | "partial" | "pause" | "payment" | "pencil" | "percent" | "pin" | "play" | "playFilled" | "plus" | "popout" | "push" | "quote" | "refresh" | "reporter" | "save" | "scale" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "shard" | "share" | "snowflake" | "sortAscending" | "sortDescending" | "sortLeft" | "sortRight" | "sortable" | "spaces" | "starPlusEmpty" | "starPlusFilled" | "stats" | "storage" | "submodule" | "sun" | "symlink" | "tableOfContents" | "tag" | "tear" | "timeline" | "timeRefresh" | "timeslider" | "training" | "trash" | "unfold" | "unlink" | "user" | "userAvatar" | "users" | "vector" | "videoPlayer" | "wordWrap" | "wordWrapDisabled" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDenseVector" | "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" | "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" | "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" | "watchesApp" | "workplaceSearchApp")[];
|
|
1454
1461
|
export type EuiIconType = keyof typeof typeToPathMap;
|
|
1455
1462
|
export type IconType = EuiIconType | string | ComponentType;
|
|
1456
1463
|
export type IconColor = string | NamedColor;
|
|
@@ -1493,7 +1500,7 @@ declare module '@elastic/eui/src/components/icon/icon' {
|
|
|
1493
1500
|
isLoading: boolean;
|
|
1494
1501
|
neededLoading: boolean;
|
|
1495
1502
|
}
|
|
1496
|
-
export const clearIconComponentCache: (iconType?: "string" | "number" | "function" | "link" | "menu" | "filter" | "image" | "stop" | "search" | "temperature" | "color" | "accessibility" | "aggregate" | "alert" | "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" | "copy" | "cross" | "crossInACircleFilled" | "crosshairs" | "currency" | "cut" | "database" | "desktop" | "document" | "documentEdit" | "documentation" | "documents" | "dot" | "doubleArrowLeft" | "doubleArrowRight" | "download" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "email" | "empty" | "eql" | "eraser" | "exit" | "expand" | "expandMini" | "eye" | "flag" | "fold" | "frameNext" | "framePrevious" | "fullScreenExit" | "gear" | "glasses" | "globe" | "grab" | "grid" | "heart" | "heatmap" | "help" | "home" | "iInCircle" | "inputOutput" | "inspect" | "invert" | "ip" | "keyboard" | "kubernetesNode" | "kubernetesPod" | "launch" | "layers" | "lettering" | "lineDashed" | "lineDotted" | "lineSolid" | "list" | "lock" | "lockOpen" | "magnet" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "minimize" | "minus" | "mobile" | "moon" | "namespace" | "nested" | "node" | "offline" | "online" | "package" | "pageSelect" | "pagesSelect" | "partial" | "pause" | "payment" | "pencil" | "percent" | "pin" | "play" | "playFilled" | "plus" | "popout" | "push" | "quote" | "refresh" | "reporter" | "save" | "scale" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "shard" | "share" | "snowflake" | "sortLeft" | "sortRight" | "sortable" | "spaces" | "starPlusEmpty" | "starPlusFilled" | "stats" | "storage" | "submodule" | "sun" | "symlink" | "tableOfContents" | "tag" | "tear" | "timeline" | "timeRefresh" | "timeslider" | "training" | "trash" | "unfold" | "unlink" | "user" | "userAvatar" | "users" | "vector" | "videoPlayer" | "wordWrap" | "wordWrapDisabled" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDenseVector" | "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" | "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" | "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" | "watchesApp" | "workplaceSearchApp" | undefined) => void;
|
|
1503
|
+
export const clearIconComponentCache: (iconType?: "string" | "number" | "function" | "link" | "menu" | "filter" | "image" | "stop" | "search" | "temperature" | "color" | "accessibility" | "aggregate" | "alert" | "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" | "copy" | "cross" | "crossInACircleFilled" | "crosshairs" | "currency" | "cut" | "database" | "desktop" | "document" | "documentEdit" | "documentation" | "documents" | "dot" | "doubleArrowLeft" | "doubleArrowRight" | "download" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "email" | "empty" | "eql" | "eraser" | "exit" | "expand" | "expandMini" | "eye" | "filterExclude" | "filterIgnore" | "filterInclude" | "flag" | "fold" | "frameNext" | "framePrevious" | "fullScreenExit" | "gear" | "glasses" | "globe" | "grab" | "grid" | "heart" | "heatmap" | "help" | "home" | "iInCircle" | "indexTemporary" | "infinity" | "inputOutput" | "inspect" | "invert" | "ip" | "keyboard" | "kubernetesNode" | "kubernetesPod" | "launch" | "layers" | "lettering" | "lineDashed" | "lineDotted" | "lineSolid" | "list" | "lock" | "lockOpen" | "magnet" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "minimize" | "minus" | "mobile" | "moon" | "namespace" | "nested" | "node" | "offline" | "online" | "package" | "pageSelect" | "pagesSelect" | "partial" | "pause" | "payment" | "pencil" | "percent" | "pin" | "play" | "playFilled" | "plus" | "popout" | "push" | "quote" | "refresh" | "reporter" | "save" | "scale" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "shard" | "share" | "snowflake" | "sortAscending" | "sortDescending" | "sortLeft" | "sortRight" | "sortable" | "spaces" | "starPlusEmpty" | "starPlusFilled" | "stats" | "storage" | "submodule" | "sun" | "symlink" | "tableOfContents" | "tag" | "tear" | "timeline" | "timeRefresh" | "timeslider" | "training" | "trash" | "unfold" | "unlink" | "user" | "userAvatar" | "users" | "vector" | "videoPlayer" | "wordWrap" | "wordWrapDisabled" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDenseVector" | "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" | "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" | "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" | "watchesApp" | "workplaceSearchApp" | undefined) => void;
|
|
1497
1504
|
export const appendIconComponentCache: (iconTypeToIconComponentMap: {
|
|
1498
1505
|
[iconType: string]: React.ComponentType<{}>;
|
|
1499
1506
|
}) => void;
|
|
@@ -2785,6 +2792,7 @@ declare module '@elastic/eui/src/components/text/text' {
|
|
|
2785
2792
|
size?: TextSize;
|
|
2786
2793
|
/**
|
|
2787
2794
|
* Any of our named colors or a `hex`, `rgb` or `rgba` value.
|
|
2795
|
+
* @default inherit
|
|
2788
2796
|
*/
|
|
2789
2797
|
color?: TextColor | CSSProperties['color'];
|
|
2790
2798
|
grow?: boolean;
|
|
@@ -2800,118 +2808,175 @@ declare module '@elastic/eui/src/components/text' {
|
|
|
2800
2808
|
export type { EuiTextAlignProps } from '@elastic/eui/src/components/text/text_align';
|
|
2801
2809
|
export { EuiTextAlign } from '@elastic/eui/src/components/text/text_align';
|
|
2802
2810
|
|
|
2811
|
+
}
|
|
2812
|
+
declare module '@elastic/eui/src/components/flex/flex_group.styles' {
|
|
2813
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
2814
|
+
export const euiFlexGroupStyles: (euiThemeContext: UseEuiTheme) => {
|
|
2815
|
+
euiFlexGroup: import("@emotion/utils").SerializedStyles;
|
|
2816
|
+
responsive: import("@emotion/utils").SerializedStyles;
|
|
2817
|
+
wrap: import("@emotion/utils").SerializedStyles;
|
|
2818
|
+
gutterSizes: {
|
|
2819
|
+
none: import("@emotion/utils").SerializedStyles;
|
|
2820
|
+
xs: import("@emotion/utils").SerializedStyles;
|
|
2821
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
2822
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
2823
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
2824
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
2825
|
+
};
|
|
2826
|
+
justifyContent: {
|
|
2827
|
+
flexStart: import("@emotion/utils").SerializedStyles;
|
|
2828
|
+
flexEnd: import("@emotion/utils").SerializedStyles;
|
|
2829
|
+
spaceEvenly: import("@emotion/utils").SerializedStyles;
|
|
2830
|
+
spaceBetween: import("@emotion/utils").SerializedStyles;
|
|
2831
|
+
spaceAround: import("@emotion/utils").SerializedStyles;
|
|
2832
|
+
center: import("@emotion/utils").SerializedStyles;
|
|
2833
|
+
};
|
|
2834
|
+
alignItems: {
|
|
2835
|
+
stretch: import("@emotion/utils").SerializedStyles;
|
|
2836
|
+
flexStart: import("@emotion/utils").SerializedStyles;
|
|
2837
|
+
flexEnd: import("@emotion/utils").SerializedStyles;
|
|
2838
|
+
center: import("@emotion/utils").SerializedStyles;
|
|
2839
|
+
baseline: import("@emotion/utils").SerializedStyles;
|
|
2840
|
+
};
|
|
2841
|
+
direction: {
|
|
2842
|
+
row: import("@emotion/utils").SerializedStyles;
|
|
2843
|
+
rowReverse: import("@emotion/utils").SerializedStyles;
|
|
2844
|
+
column: import("@emotion/utils").SerializedStyles;
|
|
2845
|
+
columnReverse: import("@emotion/utils").SerializedStyles;
|
|
2846
|
+
};
|
|
2847
|
+
};
|
|
2848
|
+
|
|
2803
2849
|
}
|
|
2804
2850
|
declare module '@elastic/eui/src/components/flex/flex_group' {
|
|
2805
2851
|
import React, { HTMLAttributes } from 'react';
|
|
2806
2852
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
2807
|
-
export
|
|
2808
|
-
export type
|
|
2809
|
-
export
|
|
2810
|
-
export type
|
|
2811
|
-
export type FlexGroupJustifyContent =
|
|
2853
|
+
export const GUTTER_SIZES: readonly ["none", "xs", "s", "m", "l", "xl"];
|
|
2854
|
+
export type EuiFlexGroupGutterSize = typeof GUTTER_SIZES[number];
|
|
2855
|
+
export const ALIGN_ITEMS: readonly ["stretch", "flexStart", "flexEnd", "center", "baseline"];
|
|
2856
|
+
export type FlexGroupAlignItems = typeof ALIGN_ITEMS[number];
|
|
2857
|
+
export const JUSTIFY_CONTENTS: readonly ["flexStart", "flexEnd", "center", "spaceBetween", "spaceAround", "spaceEvenly"]; type FlexGroupJustifyContent = typeof JUSTIFY_CONTENTS[number];
|
|
2858
|
+
export const DIRECTIONS: readonly ["row", "rowReverse", "column", "columnReverse"]; type FlexGroupDirection = typeof DIRECTIONS[number]; type FlexGroupComponentType = 'div' | 'span';
|
|
2812
2859
|
export interface EuiFlexGroupProps extends CommonProps, HTMLAttributes<HTMLDivElement | HTMLSpanElement> {
|
|
2813
2860
|
alignItems?: FlexGroupAlignItems;
|
|
2814
2861
|
component?: FlexGroupComponentType;
|
|
2815
2862
|
direction?: FlexGroupDirection;
|
|
2816
|
-
gutterSize?:
|
|
2863
|
+
gutterSize?: EuiFlexGroupGutterSize;
|
|
2817
2864
|
justifyContent?: FlexGroupJustifyContent;
|
|
2818
2865
|
responsive?: boolean;
|
|
2819
2866
|
wrap?: boolean;
|
|
2820
|
-
}
|
|
2821
|
-
none: null;
|
|
2822
|
-
xs: string;
|
|
2823
|
-
s: string;
|
|
2824
|
-
m: string;
|
|
2825
|
-
l: string;
|
|
2826
|
-
xl: string;
|
|
2827
|
-
};
|
|
2828
|
-
export const GUTTER_SIZES: ("s" | "xs" | "m" | "l" | "xl" | "none")[];
|
|
2829
|
-
export type EuiFlexGroupGutterSize = keyof typeof gutterSizeToClassNameMap; const alignItemsToClassNameMap: {
|
|
2830
|
-
stretch: null;
|
|
2831
|
-
flexStart: string;
|
|
2832
|
-
flexEnd: string;
|
|
2833
|
-
center: string;
|
|
2834
|
-
baseline: string;
|
|
2835
|
-
};
|
|
2836
|
-
export const ALIGN_ITEMS: ("center" | "baseline" | "stretch" | "flexStart" | "flexEnd")[]; const justifyContentToClassNameMap: {
|
|
2837
|
-
flexStart: null;
|
|
2838
|
-
flexEnd: string;
|
|
2839
|
-
center: string;
|
|
2840
|
-
spaceBetween: string;
|
|
2841
|
-
spaceAround: string;
|
|
2842
|
-
spaceEvenly: string;
|
|
2843
|
-
};
|
|
2844
|
-
export const JUSTIFY_CONTENTS: ("center" | "flexStart" | "flexEnd" | "spaceBetween" | "spaceAround" | "spaceEvenly")[]; const directionToClassNameMap: {
|
|
2845
|
-
row: string;
|
|
2846
|
-
rowReverse: string;
|
|
2847
|
-
column: string;
|
|
2848
|
-
columnReverse: string;
|
|
2849
|
-
};
|
|
2850
|
-
export const DIRECTIONS: ("row" | "column" | "rowReverse" | "columnReverse")[];
|
|
2867
|
+
}
|
|
2851
2868
|
export const EuiFlexGroup: React.ForwardRefExoticComponent<EuiFlexGroupProps & React.RefAttributes<HTMLDivElement | HTMLSpanElement>>;
|
|
2852
2869
|
export {};
|
|
2853
2870
|
|
|
2871
|
+
}
|
|
2872
|
+
declare module '@elastic/eui/src/components/flex/flex_grid.styles' {
|
|
2873
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
2874
|
+
export const euiFlexGridStyles: (euiThemeContext: UseEuiTheme, gridTemplateRows?: number) => {
|
|
2875
|
+
euiFlexGrid: import("@emotion/utils").SerializedStyles;
|
|
2876
|
+
responsive: import("@emotion/utils").SerializedStyles;
|
|
2877
|
+
direction: {
|
|
2878
|
+
row: import("@emotion/utils").SerializedStyles;
|
|
2879
|
+
column: import("@emotion/utils").SerializedStyles;
|
|
2880
|
+
};
|
|
2881
|
+
columnCount: {
|
|
2882
|
+
'1': import("@emotion/utils").SerializedStyles;
|
|
2883
|
+
'2': import("@emotion/utils").SerializedStyles;
|
|
2884
|
+
'3': import("@emotion/utils").SerializedStyles;
|
|
2885
|
+
'4': import("@emotion/utils").SerializedStyles;
|
|
2886
|
+
};
|
|
2887
|
+
gutterSizes: {
|
|
2888
|
+
none: import("@emotion/utils").SerializedStyles;
|
|
2889
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
2890
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
2891
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
2892
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
2893
|
+
};
|
|
2894
|
+
alignItems: {
|
|
2895
|
+
stretch: import("@emotion/utils").SerializedStyles;
|
|
2896
|
+
start: import("@emotion/utils").SerializedStyles;
|
|
2897
|
+
end: import("@emotion/utils").SerializedStyles;
|
|
2898
|
+
center: import("@emotion/utils").SerializedStyles;
|
|
2899
|
+
baseline: import("@emotion/utils").SerializedStyles;
|
|
2900
|
+
};
|
|
2901
|
+
};
|
|
2902
|
+
|
|
2854
2903
|
}
|
|
2855
2904
|
declare module '@elastic/eui/src/components/flex/flex_grid' {
|
|
2856
|
-
import { HTMLAttributes, ReactNode, FunctionComponent } from 'react';
|
|
2905
|
+
import { HTMLAttributes, ReactNode, FunctionComponent, ElementType } from 'react';
|
|
2857
2906
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
2858
|
-
export
|
|
2859
|
-
export type
|
|
2860
|
-
export
|
|
2907
|
+
export const DIRECTIONS: readonly ["row", "column"];
|
|
2908
|
+
export type FlexGridDirection = typeof DIRECTIONS[number];
|
|
2909
|
+
export const ALIGN_ITEMS: readonly ["stretch", "start", "end", "center", "baseline"];
|
|
2910
|
+
export type FlexGridAlignItems = typeof ALIGN_ITEMS[number];
|
|
2911
|
+
export const GUTTER_SIZES: readonly ["none", "s", "m", "l", "xl"];
|
|
2912
|
+
export type FlexGridGutterSize = typeof GUTTER_SIZES[number];
|
|
2861
2913
|
export interface EuiFlexGridProps {
|
|
2862
2914
|
/**
|
|
2863
2915
|
* ReactNode to render as this component's content
|
|
2864
2916
|
*/
|
|
2865
2917
|
children?: ReactNode;
|
|
2866
2918
|
/**
|
|
2867
|
-
* Number of columns `1-4
|
|
2919
|
+
* Number of columns. Accepts `1-4`
|
|
2868
2920
|
*/
|
|
2869
|
-
columns?:
|
|
2921
|
+
columns?: 1 | 2 | 3 | 4;
|
|
2870
2922
|
/**
|
|
2871
2923
|
* Flex layouts default to left-right then top-down (`row`).
|
|
2872
2924
|
* Change this prop to `column` to create a top-down then left-right display.
|
|
2873
|
-
* Only works with column count of `1-4`.
|
|
2874
2925
|
*/
|
|
2875
2926
|
direction?: FlexGridDirection;
|
|
2927
|
+
/**
|
|
2928
|
+
* Aligns grid items vertically
|
|
2929
|
+
*/
|
|
2930
|
+
alignItems?: FlexGridAlignItems;
|
|
2876
2931
|
/**
|
|
2877
2932
|
* Space between flex items
|
|
2878
2933
|
*/
|
|
2879
2934
|
gutterSize?: FlexGridGutterSize;
|
|
2880
2935
|
/**
|
|
2881
|
-
*
|
|
2936
|
+
* Will display each item at full-width on smaller screens
|
|
2882
2937
|
*/
|
|
2883
2938
|
responsive?: boolean;
|
|
2884
2939
|
/**
|
|
2885
2940
|
* The tag to render
|
|
2941
|
+
* @default div
|
|
2886
2942
|
*/
|
|
2887
|
-
component?:
|
|
2888
|
-
}
|
|
2889
|
-
row: null;
|
|
2890
|
-
column: string;
|
|
2891
|
-
};
|
|
2892
|
-
export const DIRECTIONS: ("row" | "column")[]; const gutterSizeToClassNameMap: {
|
|
2893
|
-
none: string;
|
|
2894
|
-
s: string;
|
|
2895
|
-
m: string;
|
|
2896
|
-
l: string;
|
|
2897
|
-
xl: string;
|
|
2898
|
-
};
|
|
2899
|
-
export const GUTTER_SIZES: FlexGridGutterSize[];
|
|
2900
|
-
export const COLUMNS: FlexGridColumns[];
|
|
2943
|
+
component?: ElementType;
|
|
2944
|
+
}
|
|
2901
2945
|
export const EuiFlexGrid: FunctionComponent<CommonProps & HTMLAttributes<HTMLDivElement> & EuiFlexGridProps>;
|
|
2902
|
-
|
|
2946
|
+
|
|
2947
|
+
}
|
|
2948
|
+
declare module '@elastic/eui/src/components/flex/flex_item.styles' {
|
|
2949
|
+
export const euiFlexItemStyles: () => {
|
|
2950
|
+
euiFlexItem: import("@emotion/utils").SerializedStyles;
|
|
2951
|
+
growZero: import("@emotion/utils").SerializedStyles;
|
|
2952
|
+
grow: import("@emotion/utils").SerializedStyles;
|
|
2953
|
+
growSizes: {
|
|
2954
|
+
'1': import("@emotion/utils").SerializedStyles;
|
|
2955
|
+
'2': import("@emotion/utils").SerializedStyles;
|
|
2956
|
+
'3': import("@emotion/utils").SerializedStyles;
|
|
2957
|
+
'4': import("@emotion/utils").SerializedStyles;
|
|
2958
|
+
'5': import("@emotion/utils").SerializedStyles;
|
|
2959
|
+
'6': import("@emotion/utils").SerializedStyles;
|
|
2960
|
+
'7': import("@emotion/utils").SerializedStyles;
|
|
2961
|
+
'8': import("@emotion/utils").SerializedStyles;
|
|
2962
|
+
'9': import("@emotion/utils").SerializedStyles;
|
|
2963
|
+
'10': import("@emotion/utils").SerializedStyles;
|
|
2964
|
+
};
|
|
2965
|
+
};
|
|
2903
2966
|
|
|
2904
2967
|
}
|
|
2905
2968
|
declare module '@elastic/eui/src/components/flex/flex_item' {
|
|
2906
|
-
import { HTMLAttributes, FunctionComponent } from 'react';
|
|
2969
|
+
import { HTMLAttributes, FunctionComponent, ElementType } from 'react';
|
|
2907
2970
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
2908
|
-
export type FlexItemGrowSize = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | true | false | null;
|
|
2909
2971
|
export interface EuiFlexItemProps {
|
|
2910
|
-
grow?:
|
|
2911
|
-
|
|
2972
|
+
grow?: boolean | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | null;
|
|
2973
|
+
/**
|
|
2974
|
+
* @default div
|
|
2975
|
+
*/
|
|
2976
|
+
component?: ElementType;
|
|
2912
2977
|
}
|
|
2913
|
-
export const GROW_SIZES: FlexItemGrowSize[];
|
|
2914
2978
|
export const EuiFlexItem: FunctionComponent<CommonProps & HTMLAttributes<HTMLDivElement | HTMLSpanElement> & EuiFlexItemProps>;
|
|
2979
|
+
export const VALID_GROW_VALUES: readonly [null, undefined, true, false, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
|
|
2915
2980
|
|
|
2916
2981
|
}
|
|
2917
2982
|
declare module '@elastic/eui/src/components/flex' {
|
|
@@ -2922,6 +2987,15 @@ declare module '@elastic/eui/src/components/flex' {
|
|
|
2922
2987
|
export type { EuiFlexItemProps } from '@elastic/eui/src/components/flex/flex_item';
|
|
2923
2988
|
export { EuiFlexItem } from '@elastic/eui/src/components/flex/flex_item';
|
|
2924
2989
|
|
|
2990
|
+
}
|
|
2991
|
+
declare module '@elastic/eui/src/components/form/eui_form_context' {
|
|
2992
|
+
import React from 'react';
|
|
2993
|
+
export interface FormContextValue {
|
|
2994
|
+
defaultFullWidth: boolean;
|
|
2995
|
+
}
|
|
2996
|
+
export const FormContext: React.Context<FormContextValue>;
|
|
2997
|
+
export function useFormContext(): FormContextValue;
|
|
2998
|
+
|
|
2925
2999
|
}
|
|
2926
3000
|
declare module '@elastic/eui/src/components/form/described_form_group/described_form_group' {
|
|
2927
3001
|
import { FunctionComponent, ReactNode, HTMLAttributes } from 'react';
|
|
@@ -2935,17 +3009,21 @@ declare module '@elastic/eui/src/components/form/described_form_group/described_
|
|
|
2935
3009
|
children?: ReactNode;
|
|
2936
3010
|
/**
|
|
2937
3011
|
* Passed to `EuiFlexGroup`.
|
|
3012
|
+
* @default l
|
|
2938
3013
|
*/
|
|
2939
3014
|
gutterSize?: EuiFlexGroupGutterSize;
|
|
2940
3015
|
/**
|
|
2941
3016
|
* Expand to fill 100% of the parent.
|
|
3017
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
2942
3018
|
* Default max-width is 800px.
|
|
3019
|
+
* @default false
|
|
2943
3020
|
*/
|
|
2944
3021
|
fullWidth?: boolean;
|
|
2945
3022
|
/**
|
|
2946
3023
|
* Width ratio of description column compared to field column.
|
|
2947
3024
|
* Can be used in conjunction with `fullWidth` and
|
|
2948
3025
|
* may require `fullWidth` to be applied to child elements.
|
|
3026
|
+
* @default half
|
|
2949
3027
|
*/
|
|
2950
3028
|
ratio?: 'half' | 'third' | 'quarter';
|
|
2951
3029
|
/**
|
|
@@ -2954,6 +3032,7 @@ declare module '@elastic/eui/src/components/form/described_form_group/described_
|
|
|
2954
3032
|
title: EuiTitleProps['children'];
|
|
2955
3033
|
/**
|
|
2956
3034
|
* Adjust the visual `size` of the EuiTitle that wraps `title`.
|
|
3035
|
+
* @default xs
|
|
2957
3036
|
*/
|
|
2958
3037
|
titleSize?: EuiTitleSize;
|
|
2959
3038
|
/**
|
|
@@ -3066,6 +3145,7 @@ declare module '@elastic/eui/src/components/form/form_control_layout/form_contro
|
|
|
3066
3145
|
import React, { Component, HTMLAttributes, ReactElement, ReactNode } from 'react';
|
|
3067
3146
|
import { EuiFormControlLayoutIconsProps } from '@elastic/eui/src/components/form/form_control_layout/form_control_layout_icons';
|
|
3068
3147
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
3148
|
+
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context';
|
|
3069
3149
|
export { ICON_SIDES } from '@elastic/eui/src/components/form/form_control_layout/form_control_layout_icons'; type StringOrReactElement = string | ReactElement; type PrependAppendType = StringOrReactElement | StringOrReactElement[];
|
|
3070
3150
|
export type EuiFormControlLayoutProps = CommonProps & HTMLAttributes<HTMLDivElement> & {
|
|
3071
3151
|
/**
|
|
@@ -3081,6 +3161,11 @@ declare module '@elastic/eui/src/components/form/form_control_layout/form_contro
|
|
|
3081
3161
|
children?: ReactNode;
|
|
3082
3162
|
icon?: EuiFormControlLayoutIconsProps['icon'];
|
|
3083
3163
|
clear?: EuiFormControlLayoutIconsProps['clear'];
|
|
3164
|
+
/**
|
|
3165
|
+
* Expand to fill 100% of the parent.
|
|
3166
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
3167
|
+
* @default false
|
|
3168
|
+
*/
|
|
3084
3169
|
fullWidth?: boolean;
|
|
3085
3170
|
isLoading?: boolean;
|
|
3086
3171
|
isDisabled?: boolean;
|
|
@@ -3098,6 +3183,7 @@ declare module '@elastic/eui/src/components/form/form_control_layout/form_contro
|
|
|
3098
3183
|
inputId?: string;
|
|
3099
3184
|
};
|
|
3100
3185
|
export class EuiFormControlLayout extends Component<EuiFormControlLayoutProps> {
|
|
3186
|
+
static contextType: React.Context<FormContextValue>;
|
|
3101
3187
|
render(): JSX.Element;
|
|
3102
3188
|
renderSideNode(side: 'append' | 'prepend', nodes?: PrependAppendType, inputId?: string): JSX.Element | JSX.Element[] | undefined;
|
|
3103
3189
|
createFormLabel(side: 'append' | 'prepend', string: string, inputId?: string): JSX.Element;
|
|
@@ -3188,7 +3274,15 @@ declare module '@elastic/eui/src/components/form/field_number/field_number' {
|
|
|
3188
3274
|
export type EuiFieldNumberProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'min' | 'max' | 'readOnly' | 'step'> & CommonProps & {
|
|
3189
3275
|
icon?: IconType;
|
|
3190
3276
|
isInvalid?: boolean;
|
|
3277
|
+
/**
|
|
3278
|
+
* Expand to fill 100% of the parent.
|
|
3279
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
3280
|
+
* @default false
|
|
3281
|
+
*/
|
|
3191
3282
|
fullWidth?: boolean;
|
|
3283
|
+
/**
|
|
3284
|
+
* @default false
|
|
3285
|
+
*/
|
|
3192
3286
|
isLoading?: boolean;
|
|
3193
3287
|
readOnly?: boolean;
|
|
3194
3288
|
min?: number;
|
|
@@ -3217,6 +3311,7 @@ declare module '@elastic/eui/src/components/form/field_number/field_number' {
|
|
|
3217
3311
|
controlOnly?: boolean;
|
|
3218
3312
|
/**
|
|
3219
3313
|
* when `true` creates a shorter height input
|
|
3314
|
+
* @default false
|
|
3220
3315
|
*/
|
|
3221
3316
|
compressed?: boolean;
|
|
3222
3317
|
};
|
|
@@ -3235,6 +3330,11 @@ declare module '@elastic/eui/src/components/form/field_password/field_password'
|
|
|
3235
3330
|
import { EuiButtonIconPropsForButton } from '@elastic/eui/src/components/button';
|
|
3236
3331
|
export type EuiFieldPasswordProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'value'> & CommonProps & {
|
|
3237
3332
|
isInvalid?: boolean;
|
|
3333
|
+
/**
|
|
3334
|
+
* Expand to fill 100% of the parent.
|
|
3335
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
3336
|
+
* @default false
|
|
3337
|
+
*/
|
|
3238
3338
|
fullWidth?: boolean;
|
|
3239
3339
|
isLoading?: boolean;
|
|
3240
3340
|
compressed?: boolean;
|
|
@@ -3254,6 +3354,7 @@ declare module '@elastic/eui/src/components/form/field_password/field_password'
|
|
|
3254
3354
|
* Change the `type` of input for manually handling obfuscation.
|
|
3255
3355
|
* The `dual` option adds the ability to toggle the obfuscation of the input by
|
|
3256
3356
|
* adding an icon button as the first `append` element
|
|
3357
|
+
* @default password
|
|
3257
3358
|
*/
|
|
3258
3359
|
type?: 'password' | 'text' | 'dual';
|
|
3259
3360
|
/**
|
|
@@ -3282,15 +3383,21 @@ declare module '@elastic/eui/src/services/browser' {
|
|
|
3282
3383
|
|
|
3283
3384
|
}
|
|
3284
3385
|
declare module '@elastic/eui/src/components/form/field_search/field_search' {
|
|
3285
|
-
import { Component, InputHTMLAttributes, KeyboardEvent } from 'react';
|
|
3386
|
+
import React, { Component, InputHTMLAttributes, KeyboardEvent } from 'react';
|
|
3286
3387
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
3287
3388
|
import { EuiFormControlLayoutProps } from '@elastic/eui/src/components/form/form_control_layout';
|
|
3389
|
+
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context';
|
|
3288
3390
|
export interface EuiFieldSearchProps extends CommonProps, InputHTMLAttributes<HTMLInputElement> {
|
|
3289
3391
|
name?: string;
|
|
3290
3392
|
id?: string;
|
|
3291
3393
|
placeholder?: string;
|
|
3292
3394
|
value?: string;
|
|
3293
3395
|
isInvalid?: boolean;
|
|
3396
|
+
/**
|
|
3397
|
+
* Expand to fill 100% of the parent.
|
|
3398
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
3399
|
+
* @default false
|
|
3400
|
+
*/
|
|
3294
3401
|
fullWidth?: boolean;
|
|
3295
3402
|
isLoading?: boolean;
|
|
3296
3403
|
/**
|
|
@@ -3327,8 +3434,8 @@ declare module '@elastic/eui/src/components/form/field_search/field_search' {
|
|
|
3327
3434
|
value: string;
|
|
3328
3435
|
}
|
|
3329
3436
|
export class EuiFieldSearch extends Component<EuiFieldSearchProps, EuiFieldSearchState> {
|
|
3437
|
+
static contextType: React.Context<FormContextValue>;
|
|
3330
3438
|
static defaultProps: {
|
|
3331
|
-
fullWidth: boolean;
|
|
3332
3439
|
isLoading: boolean;
|
|
3333
3440
|
incremental: boolean;
|
|
3334
3441
|
compressed: boolean;
|
|
@@ -3361,6 +3468,11 @@ declare module '@elastic/eui/src/components/form/field_text/field_text' {
|
|
|
3361
3468
|
export type EuiFieldTextProps = InputHTMLAttributes<HTMLInputElement> & CommonProps & {
|
|
3362
3469
|
icon?: EuiFormControlLayoutProps['icon'];
|
|
3363
3470
|
isInvalid?: boolean;
|
|
3471
|
+
/**
|
|
3472
|
+
* Expand to fill 100% of the parent.
|
|
3473
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
3474
|
+
* @default false
|
|
3475
|
+
*/
|
|
3364
3476
|
fullWidth?: boolean;
|
|
3365
3477
|
isLoading?: boolean;
|
|
3366
3478
|
readOnly?: boolean;
|
|
@@ -3495,7 +3607,8 @@ declare module '@elastic/eui/src/components/progress' {
|
|
|
3495
3607
|
}
|
|
3496
3608
|
declare module '@elastic/eui/src/components/form/file_picker/file_picker' {
|
|
3497
3609
|
import React, { Component, InputHTMLAttributes, ReactNode } from 'react';
|
|
3498
|
-
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
3610
|
+
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
3611
|
+
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context'; const displayToClassNameMap: {
|
|
3499
3612
|
default: null;
|
|
3500
3613
|
large: string;
|
|
3501
3614
|
};
|
|
@@ -3523,12 +3636,18 @@ declare module '@elastic/eui/src/components/form/file_picker/file_picker' {
|
|
|
3523
3636
|
* `large` for taller size
|
|
3524
3637
|
*/
|
|
3525
3638
|
display?: EuiFilePickerDisplay;
|
|
3639
|
+
/**
|
|
3640
|
+
* Expand to fill 100% of the parent.
|
|
3641
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
3642
|
+
* @default false
|
|
3643
|
+
*/
|
|
3526
3644
|
fullWidth?: boolean;
|
|
3527
3645
|
isInvalid?: boolean;
|
|
3528
3646
|
isLoading?: boolean;
|
|
3529
3647
|
disabled?: boolean;
|
|
3530
3648
|
}
|
|
3531
3649
|
export class EuiFilePicker extends Component<EuiFilePickerProps> {
|
|
3650
|
+
static contextType: React.Context<FormContextValue>;
|
|
3532
3651
|
static defaultProps: {
|
|
3533
3652
|
initialPromptText: JSX.Element;
|
|
3534
3653
|
compressed: boolean;
|
|
@@ -3730,6 +3849,14 @@ declare module '@elastic/eui/src/components/form/form' {
|
|
|
3730
3849
|
* Where to display the callout with the list of errors
|
|
3731
3850
|
*/
|
|
3732
3851
|
invalidCallout?: 'above' | 'none';
|
|
3852
|
+
/**
|
|
3853
|
+
* When set to `true`, all the rows/controls in this form will
|
|
3854
|
+
* default to taking up 100% of the width of their continer. You
|
|
3855
|
+
* can specify `fullWidth={false}` on individual rows/controls to
|
|
3856
|
+
* disable this behavior for specific components.
|
|
3857
|
+
* @default false
|
|
3858
|
+
*/
|
|
3859
|
+
fullWidth?: boolean;
|
|
3733
3860
|
};
|
|
3734
3861
|
export const EuiForm: React.ForwardRefExoticComponent<EuiFormProps & React.RefAttributes<HTMLElement>>;
|
|
3735
3862
|
|
|
@@ -3764,8 +3891,9 @@ declare module '@elastic/eui/src/services/objects' {
|
|
|
3764
3891
|
|
|
3765
3892
|
}
|
|
3766
3893
|
declare module '@elastic/eui/src/components/form/form_row/form_row' {
|
|
3767
|
-
import { Component, HTMLAttributes, ReactElement, ReactNode } from 'react';
|
|
3768
|
-
import { ExclusiveUnion, CommonProps } from '@elastic/eui/src/components/common';
|
|
3894
|
+
import React, { Component, HTMLAttributes, ReactElement, ReactNode } from 'react';
|
|
3895
|
+
import { ExclusiveUnion, CommonProps } from '@elastic/eui/src/components/common';
|
|
3896
|
+
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context'; const displayToClassNameMap: {
|
|
3769
3897
|
row: null;
|
|
3770
3898
|
rowCompressed: string;
|
|
3771
3899
|
columnCompressed: string;
|
|
@@ -3790,6 +3918,11 @@ declare module '@elastic/eui/src/components/form/form_row/form_row' {
|
|
|
3790
3918
|
*/
|
|
3791
3919
|
display?: EuiFormRowDisplayKeys;
|
|
3792
3920
|
hasEmptyLabelSpace?: boolean;
|
|
3921
|
+
/**
|
|
3922
|
+
* Expand to fill 100% of the parent.
|
|
3923
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
3924
|
+
* @default false
|
|
3925
|
+
*/
|
|
3793
3926
|
fullWidth?: boolean;
|
|
3794
3927
|
/**
|
|
3795
3928
|
* IDs of additional elements that should be part of children's `aria-describedby`
|
|
@@ -3832,10 +3965,10 @@ declare module '@elastic/eui/src/components/form/form_row/form_row' {
|
|
|
3832
3965
|
} & EuiFormRowCommonProps & Omit<HTMLAttributes<HTMLFieldSetElement>, 'disabled'>;
|
|
3833
3966
|
export type EuiFormRowProps = ExclusiveUnion<LabelProps, LegendProps>;
|
|
3834
3967
|
export class EuiFormRow extends Component<EuiFormRowProps, EuiFormRowState> {
|
|
3968
|
+
static contextType: React.Context<FormContextValue>;
|
|
3835
3969
|
static defaultProps: {
|
|
3836
3970
|
display: string;
|
|
3837
3971
|
hasEmptyLabelSpace: boolean;
|
|
3838
|
-
fullWidth: boolean;
|
|
3839
3972
|
describedByIds: never[];
|
|
3840
3973
|
labelType: string;
|
|
3841
3974
|
hasChildLabel: boolean;
|
|
@@ -4635,8 +4768,8 @@ declare module '@elastic/eui/src/components/observer/resize_observer' {
|
|
|
4635
4768
|
declare module '@elastic/eui/src/components/form/form.styles' {
|
|
4636
4769
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
4637
4770
|
export const euiFormVariables: (euiThemeContext: UseEuiTheme) => {
|
|
4638
|
-
controlLayoutGroupInputHeight: string
|
|
4639
|
-
controlLayoutGroupInputCompressedHeight: string
|
|
4771
|
+
controlLayoutGroupInputHeight: string;
|
|
4772
|
+
controlLayoutGroupInputCompressedHeight: string;
|
|
4640
4773
|
controlLayoutGroupInputCompressedBorderRadius: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
4641
4774
|
controlIconSize: {
|
|
4642
4775
|
s: string;
|
|
@@ -4657,7 +4790,7 @@ declare module '@elastic/eui/src/components/form/form.styles' {
|
|
|
4657
4790
|
controlPlaceholderText: string;
|
|
4658
4791
|
inputGroupLabelBackground: string;
|
|
4659
4792
|
inputGroupBorder: string;
|
|
4660
|
-
maxWidth: string
|
|
4793
|
+
maxWidth: string;
|
|
4661
4794
|
controlHeight: string;
|
|
4662
4795
|
controlCompressedHeight: string;
|
|
4663
4796
|
controlPadding: string;
|
|
@@ -4948,6 +5081,11 @@ declare module '@elastic/eui/src/components/form/range/range_wrapper' {
|
|
|
4948
5081
|
import React, { HTMLAttributes } from 'react';
|
|
4949
5082
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
4950
5083
|
export interface EuiRangeWrapperProps extends CommonProps, HTMLAttributes<HTMLDivElement> {
|
|
5084
|
+
/**
|
|
5085
|
+
* Expand to fill 100% of the parent.
|
|
5086
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
5087
|
+
* @default false
|
|
5088
|
+
*/
|
|
4951
5089
|
fullWidth?: boolean;
|
|
4952
5090
|
compressed?: boolean;
|
|
4953
5091
|
}
|
|
@@ -4961,9 +5099,15 @@ declare module '@elastic/eui/src/components/form/range/range' {
|
|
|
4961
5099
|
import { EuiRangeInputProps } from '@elastic/eui/src/components/form/range/range_input';
|
|
4962
5100
|
import { EuiRangeLevel } from '@elastic/eui/src/components/form/range/range_levels';
|
|
4963
5101
|
import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks';
|
|
5102
|
+
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context';
|
|
4964
5103
|
export interface EuiRangeProps extends CommonProps, Omit<EuiRangeInputProps, 'onChange' | 'digitTolerance' | 'isLoading'> {
|
|
4965
5104
|
compressed?: boolean;
|
|
4966
5105
|
readOnly?: boolean;
|
|
5106
|
+
/**
|
|
5107
|
+
* Expand to fill 100% of the parent.
|
|
5108
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
5109
|
+
* @default false
|
|
5110
|
+
*/
|
|
4967
5111
|
fullWidth?: boolean;
|
|
4968
5112
|
id?: string;
|
|
4969
5113
|
/**
|
|
@@ -5015,11 +5159,11 @@ declare module '@elastic/eui/src/components/form/range/range' {
|
|
|
5015
5159
|
onChange?: (event: React.ChangeEvent<HTMLInputElement> | React.MouseEvent<HTMLButtonElement>, isValid: boolean) => void;
|
|
5016
5160
|
}
|
|
5017
5161
|
export class EuiRange extends Component<EuiRangeProps> {
|
|
5162
|
+
static contextType: React.Context<FormContextValue>;
|
|
5018
5163
|
static defaultProps: {
|
|
5019
5164
|
min: number;
|
|
5020
5165
|
max: number;
|
|
5021
5166
|
step: number;
|
|
5022
|
-
fullWidth: boolean;
|
|
5023
5167
|
compressed: boolean;
|
|
5024
5168
|
isLoading: boolean;
|
|
5025
5169
|
showLabels: boolean;
|
|
@@ -5087,12 +5231,18 @@ declare module '@elastic/eui/src/components/form/range/dual_range' {
|
|
|
5087
5231
|
import { EuiRangeInputProps } from '@elastic/eui/src/components/form/range/range_input';
|
|
5088
5232
|
import { EuiRangeLevel } from '@elastic/eui/src/components/form/range/range_levels';
|
|
5089
5233
|
import { EuiRangeSliderProps } from '@elastic/eui/src/components/form/range/range_slider';
|
|
5090
|
-
import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks';
|
|
5234
|
+
import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks';
|
|
5235
|
+
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context'; type ValueMember = number | string;
|
|
5091
5236
|
export interface EuiDualRangeProps extends Omit<EuiRangeSliderProps, 'onChange' | 'onBlur' | 'onFocus' | 'value' | 'isLoading'> {
|
|
5092
5237
|
value: [ValueMember, ValueMember];
|
|
5093
5238
|
onBlur?: (event: React.FocusEvent<HTMLInputElement> | React.FocusEvent<HTMLDivElement>) => void;
|
|
5094
5239
|
onFocus?: (event: React.FocusEvent<HTMLInputElement> | React.FocusEvent<HTMLDivElement>) => void;
|
|
5095
5240
|
onChange: (values: [ValueMember, ValueMember], isValid: boolean, event?: React.ChangeEvent<HTMLInputElement> | React.MouseEvent<HTMLButtonElement> | React.KeyboardEvent<HTMLInputElement> | React.KeyboardEvent<HTMLDivElement>) => void;
|
|
5241
|
+
/**
|
|
5242
|
+
* Expand to fill 100% of the parent.
|
|
5243
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
5244
|
+
* @default false
|
|
5245
|
+
*/
|
|
5096
5246
|
fullWidth?: boolean;
|
|
5097
5247
|
isInvalid?: boolean;
|
|
5098
5248
|
/**
|
|
@@ -5144,11 +5294,11 @@ declare module '@elastic/eui/src/components/form/range/dual_range' {
|
|
|
5144
5294
|
isLoading?: boolean;
|
|
5145
5295
|
}
|
|
5146
5296
|
export class EuiDualRange extends Component<EuiDualRangeProps> {
|
|
5297
|
+
static contextType: React.Context<FormContextValue>;
|
|
5147
5298
|
static defaultProps: {
|
|
5148
5299
|
min: number;
|
|
5149
5300
|
max: number;
|
|
5150
5301
|
step: number;
|
|
5151
|
-
fullWidth: boolean;
|
|
5152
5302
|
compressed: boolean;
|
|
5153
5303
|
isLoading: boolean;
|
|
5154
5304
|
showLabels: boolean;
|
|
@@ -5223,18 +5373,28 @@ declare module '@elastic/eui/src/components/form/select/select' {
|
|
|
5223
5373
|
text: React.ReactNode;
|
|
5224
5374
|
}
|
|
5225
5375
|
export type EuiSelectProps = Omit<SelectHTMLAttributes<HTMLSelectElement>, 'value'> & CommonProps & {
|
|
5376
|
+
/**
|
|
5377
|
+
* @default []
|
|
5378
|
+
*/
|
|
5226
5379
|
options?: EuiSelectOption[];
|
|
5227
5380
|
isInvalid?: boolean;
|
|
5381
|
+
/**
|
|
5382
|
+
* Expand to fill 100% of the parent.
|
|
5383
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
5384
|
+
* @default false
|
|
5385
|
+
*/
|
|
5228
5386
|
fullWidth?: boolean;
|
|
5229
5387
|
isLoading?: boolean;
|
|
5230
5388
|
/**
|
|
5231
5389
|
* Simulates no selection by creating an empty, selected, hidden first option
|
|
5390
|
+
* @default false
|
|
5232
5391
|
*/
|
|
5233
5392
|
hasNoInitialSelection?: boolean;
|
|
5234
5393
|
inputRef?: Ref<HTMLSelectElement>;
|
|
5235
5394
|
value?: string | number;
|
|
5236
5395
|
/**
|
|
5237
5396
|
* when `true` creates a shorter height input
|
|
5397
|
+
* @default false
|
|
5238
5398
|
*/
|
|
5239
5399
|
compressed?: boolean;
|
|
5240
5400
|
/**
|
|
@@ -5268,9 +5428,23 @@ declare module '@elastic/eui/src/components/form/super_select/super_select_contr
|
|
|
5268
5428
|
'data-test-subj'?: string;
|
|
5269
5429
|
}
|
|
5270
5430
|
export interface EuiSuperSelectControlProps<T> extends CommonProps, Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'value'> {
|
|
5431
|
+
/**
|
|
5432
|
+
* @default false
|
|
5433
|
+
*/
|
|
5271
5434
|
compressed?: boolean;
|
|
5435
|
+
/**
|
|
5436
|
+
* Expand to fill 100% of the parent.
|
|
5437
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
5438
|
+
* @default false
|
|
5439
|
+
*/
|
|
5272
5440
|
fullWidth?: boolean;
|
|
5441
|
+
/**
|
|
5442
|
+
* @default false
|
|
5443
|
+
*/
|
|
5273
5444
|
isInvalid?: boolean;
|
|
5445
|
+
/**
|
|
5446
|
+
* @default false
|
|
5447
|
+
*/
|
|
5274
5448
|
isLoading?: boolean;
|
|
5275
5449
|
readOnly?: boolean;
|
|
5276
5450
|
name?: string;
|
|
@@ -5311,8 +5485,12 @@ declare module '@elastic/eui/src/components/tool_tip/tool_tip.styles' {
|
|
|
5311
5485
|
left: import("@emotion/utils").SerializedStyles;
|
|
5312
5486
|
right: import("@emotion/utils").SerializedStyles;
|
|
5313
5487
|
euiToolTip__arrow: import("@emotion/utils").SerializedStyles;
|
|
5314
|
-
|
|
5315
|
-
|
|
5488
|
+
arrowPositions: {
|
|
5489
|
+
top: import("@emotion/utils").SerializedStyles;
|
|
5490
|
+
bottom: import("@emotion/utils").SerializedStyles;
|
|
5491
|
+
left: import("@emotion/utils").SerializedStyles;
|
|
5492
|
+
right: import("@emotion/utils").SerializedStyles;
|
|
5493
|
+
};
|
|
5316
5494
|
euiToolTip__title: import("@emotion/utils").SerializedStyles;
|
|
5317
5495
|
};
|
|
5318
5496
|
export const euiToolTipAnchorStyles: () => {
|
|
@@ -5350,7 +5528,10 @@ declare module '@elastic/eui/src/components/tool_tip/tool_tip_anchor' {
|
|
|
5350
5528
|
}
|
|
5351
5529
|
declare module '@elastic/eui/src/components/tool_tip/tool_tip_arrow' {
|
|
5352
5530
|
import { HTMLAttributes, FunctionComponent } from 'react';
|
|
5353
|
-
|
|
5531
|
+
import { ToolTipPositions } from '@elastic/eui/src/components/tool_tip/tool_tip_popover';
|
|
5532
|
+
export const EuiToolTipArrow: FunctionComponent<{
|
|
5533
|
+
position: ToolTipPositions;
|
|
5534
|
+
} & HTMLAttributes<HTMLDivElement>>;
|
|
5354
5535
|
|
|
5355
5536
|
}
|
|
5356
5537
|
declare module '@elastic/eui/src/components/tool_tip/tool_tip' {
|
|
@@ -5873,10 +6054,16 @@ declare module '@elastic/eui/src/components/form/text_area/text_area' {
|
|
|
5873
6054
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
5874
6055
|
export type EuiTextAreaProps = TextareaHTMLAttributes<HTMLTextAreaElement> & CommonProps & {
|
|
5875
6056
|
isInvalid?: boolean;
|
|
6057
|
+
/**
|
|
6058
|
+
* Expand to fill 100% of the parent.
|
|
6059
|
+
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
6060
|
+
* @default false
|
|
6061
|
+
*/
|
|
5876
6062
|
fullWidth?: boolean;
|
|
5877
6063
|
compressed?: boolean;
|
|
5878
6064
|
/**
|
|
5879
6065
|
* Which direction, if at all, should the textarea resize
|
|
6066
|
+
* @default vertical
|
|
5880
6067
|
*/
|
|
5881
6068
|
resize?: keyof typeof resizeToClassNameMap;
|
|
5882
6069
|
inputRef?: Ref<HTMLTextAreaElement>;
|
|
@@ -6472,15 +6659,9 @@ declare module '@elastic/eui/src/global_styling/functions/logicals' {
|
|
|
6472
6659
|
|
|
6473
6660
|
}
|
|
6474
6661
|
declare module '@elastic/eui/src/global_styling/functions/math' {
|
|
6475
|
-
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
*
|
|
6479
|
-
* Example usage:
|
|
6480
|
-
* mathWithUnits('4px', (x) => x / 2) = '2px';
|
|
6481
|
-
* mathWithUnits(euiTheme.size.xs, (x) => x + 2) = '6px';
|
|
6482
|
-
*/
|
|
6483
|
-
export const mathWithUnits: (value: string | number | undefined, callback: (x: number) => number, unit?: string) => string | undefined;
|
|
6662
|
+
type ValueTypes = string | number | undefined;
|
|
6663
|
+
export const mathWithUnits: (values: ValueTypes | ValueTypes[], callback: (...args: number[]) => number, unit?: string) => string;
|
|
6664
|
+
export {};
|
|
6484
6665
|
|
|
6485
6666
|
}
|
|
6486
6667
|
declare module '@elastic/eui/src/global_styling/functions/size' {
|
|
@@ -7268,6 +7449,14 @@ declare module '@elastic/eui/src/global_styling/mixins/_padding' {
|
|
|
7268
7449
|
export const PADDING_SIZES: readonly ["none", "xs", "s", "m", "l", "xl"];
|
|
7269
7450
|
export type EuiPaddingSize = typeof PADDING_SIZES[number];
|
|
7270
7451
|
export const euiPaddingSize: ({ euiTheme }: UseEuiTheme, size: EuiPaddingSize) => string | null;
|
|
7452
|
+
export const euiPaddingSizeCSS: (euiThemeContext: UseEuiTheme, side?: "left" | "right" | "top" | "bottom" | "horizontal" | "vertical" | undefined) => {
|
|
7453
|
+
none: null;
|
|
7454
|
+
xs: import("@emotion/utils").SerializedStyles;
|
|
7455
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
7456
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
7457
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
7458
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
7459
|
+
};
|
|
7271
7460
|
export const useEuiPaddingSize: (size: EuiPaddingSize) => string | null;
|
|
7272
7461
|
export const useEuiPaddingCSS: (side?: "left" | "right" | "top" | "bottom" | "horizontal" | "vertical" | undefined) => {
|
|
7273
7462
|
none: null;
|
|
@@ -8246,6 +8435,7 @@ declare module '@elastic/eui/src/components/breadcrumbs/breadcrumb' {
|
|
|
8246
8435
|
isLastBreadcrumb?: boolean;
|
|
8247
8436
|
isOnlyBreadcrumb?: boolean;
|
|
8248
8437
|
highlightLastBreadcrumb?: boolean;
|
|
8438
|
+
truncateLastBreadcrumb?: boolean;
|
|
8249
8439
|
} & Pick<EuiBreadcrumbProps, 'truncate'>;
|
|
8250
8440
|
export const EuiBreadcrumb: FunctionComponent<HTMLAttributes<HTMLLIElement> & _EuiBreadcrumbProps>;
|
|
8251
8441
|
export const EuiBreadcrumbContent: FunctionComponent<EuiBreadcrumbProps & _EuiBreadcrumbProps>;
|
|
@@ -8549,11 +8739,27 @@ declare module '@elastic/eui/src/components/card' {
|
|
|
8549
8739
|
export type { EuiCheckableCardProps } from '@elastic/eui/src/components/card/checkable_card';
|
|
8550
8740
|
export { EuiCheckableCard } from '@elastic/eui/src/components/card/checkable_card';
|
|
8551
8741
|
|
|
8742
|
+
}
|
|
8743
|
+
declare module '@elastic/eui/src/components/code/code_block_line.styles' {
|
|
8744
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
8745
|
+
export const euiCodeBlockLineStyles: (euiThemeContext: UseEuiTheme) => {
|
|
8746
|
+
euiCodeBlock__line: string;
|
|
8747
|
+
hasLineNumbers: string;
|
|
8748
|
+
lineText: {
|
|
8749
|
+
euiCodeBlock__lineText: string;
|
|
8750
|
+
isHighlighted: string;
|
|
8751
|
+
};
|
|
8752
|
+
lineNumber: {
|
|
8753
|
+
euiCodeBlock__lineNumber: string;
|
|
8754
|
+
};
|
|
8755
|
+
};
|
|
8756
|
+
|
|
8552
8757
|
}
|
|
8553
8758
|
declare module '@elastic/eui/src/components/code/utils' {
|
|
8554
8759
|
import { ReactElement, ReactNode, HTMLAttributes } from 'react';
|
|
8555
8760
|
import { AST, RefractorNode } from 'refractor';
|
|
8556
8761
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
8762
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
8557
8763
|
/**
|
|
8558
8764
|
* Utils shared between EuiCode and EuiCodeBlock
|
|
8559
8765
|
*/
|
|
@@ -8577,9 +8783,47 @@ declare module '@elastic/eui/src/components/code/utils' {
|
|
|
8577
8783
|
highlight?: string;
|
|
8578
8784
|
}
|
|
8579
8785
|
export const parseLineRanges: (ranges: string) => number[];
|
|
8580
|
-
export const highlightByLine: (children: string, language: string, data: LineNumbersConfig) => RefractorNode[];
|
|
8786
|
+
export const highlightByLine: (children: string, language: string, data: LineNumbersConfig, euiTheme: UseEuiTheme) => RefractorNode[];
|
|
8581
8787
|
export {};
|
|
8582
8788
|
|
|
8789
|
+
}
|
|
8790
|
+
declare module '@elastic/eui/src/components/code/code_syntax.styles' {
|
|
8791
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
8792
|
+
export const euiCodeSyntaxColors: (euiThemeContext: UseEuiTheme) => {
|
|
8793
|
+
backgroundColor: string;
|
|
8794
|
+
color: string;
|
|
8795
|
+
inlineCodeColor: string;
|
|
8796
|
+
selectedBackgroundColor: string;
|
|
8797
|
+
commentColor: string;
|
|
8798
|
+
selectorTagColor: string;
|
|
8799
|
+
stringColor: string;
|
|
8800
|
+
tagColor: string;
|
|
8801
|
+
nameColor: string;
|
|
8802
|
+
numberColor: string;
|
|
8803
|
+
keywordColor: string;
|
|
8804
|
+
functionTitleColor: string;
|
|
8805
|
+
typeColor: string;
|
|
8806
|
+
attributeColor: string;
|
|
8807
|
+
symbolColor: string;
|
|
8808
|
+
paramsColor: string;
|
|
8809
|
+
metaColor: string;
|
|
8810
|
+
titleColor: string;
|
|
8811
|
+
sectionColor: string;
|
|
8812
|
+
additionColor: string;
|
|
8813
|
+
deletionColor: string;
|
|
8814
|
+
selectorClassColor: string;
|
|
8815
|
+
selectorIdColor: string;
|
|
8816
|
+
};
|
|
8817
|
+
export const euiCodeSyntaxTokens: (euiThemeContext: UseEuiTheme) => string;
|
|
8818
|
+
|
|
8819
|
+
}
|
|
8820
|
+
declare module '@elastic/eui/src/components/code/code.styles' {
|
|
8821
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
8822
|
+
export const euiCodeStyles: (euiThemeContext: UseEuiTheme) => {
|
|
8823
|
+
euiCode: import("@emotion/utils").SerializedStyles;
|
|
8824
|
+
transparentBackground: import("@emotion/utils").SerializedStyles;
|
|
8825
|
+
};
|
|
8826
|
+
|
|
8583
8827
|
}
|
|
8584
8828
|
declare module '@elastic/eui/src/components/code/code' {
|
|
8585
8829
|
import { FunctionComponent } from 'react';
|
|
@@ -8587,6 +8831,24 @@ declare module '@elastic/eui/src/components/code/code' {
|
|
|
8587
8831
|
export type EuiCodeProps = EuiCodeSharedProps;
|
|
8588
8832
|
export const EuiCode: FunctionComponent<EuiCodeProps>;
|
|
8589
8833
|
|
|
8834
|
+
}
|
|
8835
|
+
declare module '@elastic/eui/src/components/code/code_block_overflow' {
|
|
8836
|
+
import { CSSProperties } from 'react';
|
|
8837
|
+
/**
|
|
8838
|
+
* Overflow logic - returns overflow-related state/logic/utils
|
|
8839
|
+
*
|
|
8840
|
+
* Detects whether the code block overflows and returns a tabIndex of 0 if so,
|
|
8841
|
+
* which allows keyboard users to use the up/down arrow keys to scroll through
|
|
8842
|
+
* the container.
|
|
8843
|
+
*/
|
|
8844
|
+
export const useOverflow: ({ overflowHeight, }: {
|
|
8845
|
+
overflowHeight?: string | number | undefined;
|
|
8846
|
+
}) => {
|
|
8847
|
+
setWrapperRef: import("react").Dispatch<import("react").SetStateAction<Element | null>>;
|
|
8848
|
+
tabIndex: 0 | -1;
|
|
8849
|
+
overflowHeightStyles: CSSProperties;
|
|
8850
|
+
};
|
|
8851
|
+
|
|
8590
8852
|
}
|
|
8591
8853
|
declare module '@elastic/eui/src/components/copy/copy' {
|
|
8592
8854
|
import { Component, ReactElement, ReactNode } from 'react';
|
|
@@ -8631,14 +8893,32 @@ declare module '@elastic/eui/src/components/copy' {
|
|
|
8631
8893
|
export type { EuiCopyProps } from '@elastic/eui/src/components/copy/copy';
|
|
8632
8894
|
export { EuiCopy } from '@elastic/eui/src/components/copy/copy';
|
|
8633
8895
|
|
|
8896
|
+
}
|
|
8897
|
+
declare module '@elastic/eui/src/components/code/code_block_copy' {
|
|
8898
|
+
import { ReactNode } from 'react';
|
|
8899
|
+
/**
|
|
8900
|
+
* Hook that returns copy-related state/logic/utils
|
|
8901
|
+
*/
|
|
8902
|
+
export const useCopy: ({ isCopyable, isVirtualized, children, }: {
|
|
8903
|
+
isCopyable: boolean;
|
|
8904
|
+
isVirtualized: boolean;
|
|
8905
|
+
children: ReactNode;
|
|
8906
|
+
}) => {
|
|
8907
|
+
innerTextRef: (node: HTMLElement | Element | null | undefined) => void;
|
|
8908
|
+
copyButton: JSX.Element | null;
|
|
8909
|
+
};
|
|
8910
|
+
|
|
8634
8911
|
}
|
|
8635
8912
|
declare module '@elastic/eui/src/components/overlay_mask/overlay_mask.styles' {
|
|
8636
8913
|
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
8637
8914
|
export const euiOverlayMaskStyles: ({ euiTheme }: UseEuiTheme) => {
|
|
8638
|
-
euiOverlayMask:
|
|
8639
|
-
aboveHeader:
|
|
8640
|
-
belowHeader:
|
|
8915
|
+
euiOverlayMask: string;
|
|
8916
|
+
aboveHeader: string;
|
|
8917
|
+
belowHeader: string;
|
|
8641
8918
|
};
|
|
8919
|
+
|
|
8920
|
+
}
|
|
8921
|
+
declare module '@elastic/eui/src/components/overlay_mask/overlay_mask_body.styles' {
|
|
8642
8922
|
export const euiOverlayMaskBodyStyles: import("@emotion/utils").SerializedStyles;
|
|
8643
8923
|
|
|
8644
8924
|
}
|
|
@@ -8663,7 +8943,7 @@ declare module '@elastic/eui/src/components/overlay_mask/overlay_mask' {
|
|
|
8663
8943
|
*/
|
|
8664
8944
|
maskRef?: Ref<HTMLDivElement> | MutableRefObject<HTMLDivElement>;
|
|
8665
8945
|
}
|
|
8666
|
-
export type EuiOverlayMaskProps = CommonProps & Omit<Partial<Record<keyof HTMLAttributes<HTMLDivElement>, string>>, keyof EuiOverlayMaskInterface> & EuiOverlayMaskInterface;
|
|
8946
|
+
export type EuiOverlayMaskProps = Omit<CommonProps, 'css'> & Omit<Partial<Record<keyof HTMLAttributes<HTMLDivElement>, string>>, keyof EuiOverlayMaskInterface> & EuiOverlayMaskInterface;
|
|
8667
8947
|
export const EuiOverlayMask: FunctionComponent<EuiOverlayMaskProps>;
|
|
8668
8948
|
|
|
8669
8949
|
}
|
|
@@ -8671,13 +8951,129 @@ declare module '@elastic/eui/src/components/overlay_mask' {
|
|
|
8671
8951
|
export type { EuiOverlayMaskProps } from '@elastic/eui/src/components/overlay_mask/overlay_mask';
|
|
8672
8952
|
export { EuiOverlayMask } from '@elastic/eui/src/components/overlay_mask/overlay_mask';
|
|
8673
8953
|
|
|
8954
|
+
}
|
|
8955
|
+
declare module '@elastic/eui/src/components/code/code_block.styles' {
|
|
8956
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
8957
|
+
export const euiCodeBlockStyles: (euiThemeContext: UseEuiTheme) => {
|
|
8958
|
+
euiCodeBlock: import("@emotion/utils").SerializedStyles;
|
|
8959
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
8960
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
8961
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
8962
|
+
transparentBackground: import("@emotion/utils").SerializedStyles;
|
|
8963
|
+
isFullScreen: import("@emotion/utils").SerializedStyles;
|
|
8964
|
+
hasControls: {
|
|
8965
|
+
none: import("@emotion/utils").SerializedStyles;
|
|
8966
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
8967
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
8968
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
8969
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
8970
|
+
};
|
|
8971
|
+
hasBothControls: {
|
|
8972
|
+
none: import("@emotion/utils").SerializedStyles;
|
|
8973
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
8974
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
8975
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
8976
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
8977
|
+
};
|
|
8978
|
+
};
|
|
8979
|
+
export const euiCodeBlockPreStyles: (euiThemeContext: UseEuiTheme) => {
|
|
8980
|
+
euiCodeBlock__pre: import("@emotion/utils").SerializedStyles;
|
|
8981
|
+
padding: {
|
|
8982
|
+
none: import("@emotion/utils").SerializedStyles;
|
|
8983
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
8984
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
8985
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
8986
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
8987
|
+
};
|
|
8988
|
+
whiteSpace: {
|
|
8989
|
+
pre: {
|
|
8990
|
+
pre: import("@emotion/utils").SerializedStyles;
|
|
8991
|
+
controlsOffset: {
|
|
8992
|
+
none: import("@emotion/utils").SerializedStyles;
|
|
8993
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
8994
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
8995
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
8996
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
8997
|
+
};
|
|
8998
|
+
};
|
|
8999
|
+
preWrap: {
|
|
9000
|
+
preWrap: import("@emotion/utils").SerializedStyles;
|
|
9001
|
+
controlsOffset: {
|
|
9002
|
+
none: import("@emotion/utils").SerializedStyles;
|
|
9003
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
9004
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
9005
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
9006
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
9007
|
+
};
|
|
9008
|
+
};
|
|
9009
|
+
};
|
|
9010
|
+
};
|
|
9011
|
+
export const euiCodeBlockCodeStyles: (euiThemeContext: UseEuiTheme) => {
|
|
9012
|
+
euiCodeBlock__code: import("@emotion/utils").SerializedStyles;
|
|
9013
|
+
isVirtualized: import("@emotion/utils").SerializedStyles;
|
|
9014
|
+
};
|
|
9015
|
+
|
|
9016
|
+
}
|
|
9017
|
+
declare module '@elastic/eui/src/components/code/code_block_full_screen' {
|
|
9018
|
+
import { FunctionComponent, KeyboardEvent } from 'react';
|
|
9019
|
+
/**
|
|
9020
|
+
* Hook that returns fullscreen-related state/logic/utils
|
|
9021
|
+
*/
|
|
9022
|
+
export const useFullScreen: ({ overflowHeight, }: {
|
|
9023
|
+
overflowHeight?: string | number | undefined;
|
|
9024
|
+
}) => {
|
|
9025
|
+
fullScreenButton: JSX.Element | null;
|
|
9026
|
+
isFullScreen: boolean;
|
|
9027
|
+
onKeyDown: (event: KeyboardEvent<HTMLElement>) => void;
|
|
9028
|
+
};
|
|
9029
|
+
/**
|
|
9030
|
+
* Portalled full screen wrapper
|
|
9031
|
+
*/
|
|
9032
|
+
export const EuiCodeBlockFullScreenWrapper: FunctionComponent;
|
|
9033
|
+
|
|
9034
|
+
}
|
|
9035
|
+
declare module '@elastic/eui/src/components/code/code_block_controls.styles' {
|
|
9036
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
9037
|
+
export const euiCodeBlockControlsStyles: (euiThemeContext: UseEuiTheme) => {
|
|
9038
|
+
euiCodeBlock__controls: import("@emotion/utils").SerializedStyles;
|
|
9039
|
+
offset: {
|
|
9040
|
+
none: import("@emotion/utils").SerializedStyles;
|
|
9041
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
9042
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
9043
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
9044
|
+
};
|
|
9045
|
+
};
|
|
9046
|
+
|
|
9047
|
+
}
|
|
9048
|
+
declare module '@elastic/eui/src/components/code/code_block_controls' {
|
|
9049
|
+
import { FC, ReactNode } from 'react';
|
|
9050
|
+
import type { EuiCodeBlockPaddingSize } from '@elastic/eui/src/components/code/code_block';
|
|
9051
|
+
export const EuiCodeBlockControls: FC<{
|
|
9052
|
+
controls: ReactNode[];
|
|
9053
|
+
paddingSize: EuiCodeBlockPaddingSize;
|
|
9054
|
+
}>;
|
|
9055
|
+
|
|
9056
|
+
}
|
|
9057
|
+
declare module '@elastic/eui/src/components/code/code_block_virtualized' {
|
|
9058
|
+
import { HTMLAttributes } from 'react';
|
|
9059
|
+
import { RefractorNode } from 'refractor';
|
|
9060
|
+
export const EuiCodeBlockVirtualized: ({ data, rowHeight, overflowHeight, preProps, codeProps, }: {
|
|
9061
|
+
data: RefractorNode[];
|
|
9062
|
+
rowHeight: number;
|
|
9063
|
+
overflowHeight?: string | number | undefined;
|
|
9064
|
+
preProps: HTMLAttributes<HTMLPreElement>;
|
|
9065
|
+
codeProps: HTMLAttributes<HTMLElement>;
|
|
9066
|
+
}) => JSX.Element;
|
|
9067
|
+
|
|
8674
9068
|
}
|
|
8675
9069
|
declare module '@elastic/eui/src/components/code/code_block' {
|
|
8676
9070
|
import { FunctionComponent } from 'react';
|
|
8677
9071
|
import { ExclusiveUnion } from '@elastic/eui/src/components/common';
|
|
8678
|
-
import { EuiCodeSharedProps } from '@elastic/eui/src/components/code/utils';
|
|
8679
|
-
export const FONT_SIZES:
|
|
8680
|
-
export
|
|
9072
|
+
import { EuiCodeSharedProps } from '@elastic/eui/src/components/code/utils';
|
|
9073
|
+
export const FONT_SIZES: readonly ["s", "m", "l"];
|
|
9074
|
+
export type EuiCodeBlockFontSize = typeof FONT_SIZES[number];
|
|
9075
|
+
export const PADDING_SIZES: readonly ["none", "s", "m", "l"];
|
|
9076
|
+
export type EuiCodeBlockPaddingSize = typeof PADDING_SIZES[number]; type VirtualizedOptionProps = ExclusiveUnion<{
|
|
8681
9077
|
isVirtualized: true;
|
|
8682
9078
|
overflowHeight: number | string;
|
|
8683
9079
|
whiteSpace?: 'pre';
|
|
@@ -8691,8 +9087,8 @@ declare module '@elastic/eui/src/components/code/code_block' {
|
|
|
8691
9087
|
highlight?: string;
|
|
8692
9088
|
}
|
|
8693
9089
|
export type EuiCodeBlockProps = EuiCodeSharedProps & {
|
|
8694
|
-
paddingSize?:
|
|
8695
|
-
fontSize?:
|
|
9090
|
+
paddingSize?: EuiCodeBlockPaddingSize;
|
|
9091
|
+
fontSize?: EuiCodeBlockFontSize;
|
|
8696
9092
|
/**
|
|
8697
9093
|
* Specify how `white-space` inside the element is handled.
|
|
8698
9094
|
* `pre` respects line breaks/white space but doesn't force them to wrap the line
|
|
@@ -9355,7 +9751,12 @@ declare module '@elastic/eui/src/components/combo_box/combo_box_options_list/com
|
|
|
9355
9751
|
*/
|
|
9356
9752
|
customOptionText?: string;
|
|
9357
9753
|
fullWidth?: boolean;
|
|
9358
|
-
getSelectedOptionForSearchValue?: (
|
|
9754
|
+
getSelectedOptionForSearchValue?: (params: {
|
|
9755
|
+
isCaseSensitive?: boolean;
|
|
9756
|
+
searchValue: string;
|
|
9757
|
+
selectedOptions: any[];
|
|
9758
|
+
}) => EuiComboBoxOptionOption<T> | undefined;
|
|
9759
|
+
isCaseSensitive?: boolean;
|
|
9359
9760
|
isLoading?: boolean;
|
|
9360
9761
|
listRef: RefCallback<HTMLDivElement>;
|
|
9361
9762
|
matchingOptions: Array<EuiComboBoxOptionOption<T>>;
|
|
@@ -9389,6 +9790,7 @@ declare module '@elastic/eui/src/components/combo_box/combo_box_options_list/com
|
|
|
9389
9790
|
static defaultProps: {
|
|
9390
9791
|
'data-test-subj': string;
|
|
9391
9792
|
rowHeight: number;
|
|
9793
|
+
isCaseSensitive: boolean;
|
|
9392
9794
|
};
|
|
9393
9795
|
updatePosition: () => void;
|
|
9394
9796
|
componentDidMount(): void;
|
|
@@ -9434,9 +9836,24 @@ declare module '@elastic/eui/src/components/combo_box/combo_box_options_list' {
|
|
|
9434
9836
|
}
|
|
9435
9837
|
declare module '@elastic/eui/src/components/combo_box/matching_options' {
|
|
9436
9838
|
import { EuiComboBoxOptionOption } from '@elastic/eui/src/components/combo_box/types';
|
|
9839
|
+
export type SortMatchesBy = 'none' | 'startsWith';
|
|
9840
|
+
interface GetMatchingOptions<T> {
|
|
9841
|
+
options: Array<EuiComboBoxOptionOption<T>>;
|
|
9842
|
+
selectedOptions: Array<EuiComboBoxOptionOption<T>>;
|
|
9843
|
+
searchValue: string;
|
|
9844
|
+
isCaseSensitive?: boolean;
|
|
9845
|
+
isPreFiltered?: boolean;
|
|
9846
|
+
showPrevSelected?: boolean;
|
|
9847
|
+
sortMatchesBy?: SortMatchesBy;
|
|
9848
|
+
}
|
|
9849
|
+
interface GetSelectedOptionForSearchValue<T> extends Pick<GetMatchingOptions<T>, 'isCaseSensitive' | 'searchValue' | 'selectedOptions'> {
|
|
9850
|
+
optionKey?: string;
|
|
9851
|
+
}
|
|
9852
|
+
export const transformForCaseSensitivity: (string: string, isCaseSensitive?: boolean | undefined) => string;
|
|
9437
9853
|
export const flattenOptionGroups: <T>(optionsOrGroups: EuiComboBoxOptionOption<T>[]) => EuiComboBoxOptionOption<T>[];
|
|
9438
|
-
export const getSelectedOptionForSearchValue: <T>(searchValue
|
|
9439
|
-
export const getMatchingOptions: <T>(options
|
|
9854
|
+
export const getSelectedOptionForSearchValue: <T>({ isCaseSensitive, searchValue, selectedOptions, optionKey, }: GetSelectedOptionForSearchValue<T>) => EuiComboBoxOptionOption<T> | undefined;
|
|
9855
|
+
export const getMatchingOptions: <T>({ options, selectedOptions, searchValue, isCaseSensitive, isPreFiltered, showPrevSelected, sortMatchesBy, }: GetMatchingOptions<T>) => EuiComboBoxOptionOption<T>[];
|
|
9856
|
+
export {};
|
|
9440
9857
|
|
|
9441
9858
|
}
|
|
9442
9859
|
declare module '@elastic/eui/src/components/combo_box/combo_box_input/combo_box_pill' {
|
|
@@ -9586,6 +10003,7 @@ declare module '@elastic/eui/src/components/combo_box/combo_box' {
|
|
|
9586
10003
|
* from the tab order with tabindex={-1} so that we can control the keyboard navigation interface.
|
|
9587
10004
|
*/
|
|
9588
10005
|
import { Component, FocusEventHandler, HTMLAttributes, KeyboardEventHandler, RefCallback } from 'react';
|
|
10006
|
+
import { SortMatchesBy } from '@elastic/eui/src/components/combo_box/matching_options';
|
|
9589
10007
|
import { EuiComboBoxInputProps } from '@elastic/eui/src/components/combo_box/combo_box_input/combo_box_input';
|
|
9590
10008
|
import { EuiComboBoxOptionsListProps } from '@elastic/eui/src/components/combo_box/combo_box_options_list/combo_box_options_list';
|
|
9591
10009
|
import { UpdatePositionHandler, OptionHandler, RefInstance, EuiComboBoxOptionOption, EuiComboBoxOptionsListPosition, EuiComboBoxSingleSelectionShape } from '@elastic/eui/src/components/combo_box/types';
|
|
@@ -9655,7 +10073,11 @@ declare module '@elastic/eui/src/components/combo_box/combo_box' {
|
|
|
9655
10073
|
* `startsWith`: moves items that start with search value to top of the list;
|
|
9656
10074
|
* `none`: don't change the sort order of initial object
|
|
9657
10075
|
*/
|
|
9658
|
-
sortMatchesBy:
|
|
10076
|
+
sortMatchesBy: SortMatchesBy;
|
|
10077
|
+
/**
|
|
10078
|
+
* Whether to match options with case sensitivity.
|
|
10079
|
+
*/
|
|
10080
|
+
isCaseSensitive?: boolean;
|
|
9659
10081
|
/**
|
|
9660
10082
|
* Creates an input group with element(s) coming before input. It won't show if `singleSelection` is set to `false`.
|
|
9661
10083
|
* `string` | `ReactElement` or an array of these
|
|
@@ -16183,7 +16605,7 @@ declare module '@elastic/eui/src/themes' {
|
|
|
16183
16605
|
}
|
|
16184
16606
|
declare module '@elastic/eui/src/components/provider/cache/cache_provider' {
|
|
16185
16607
|
import { PropsWithChildren } from 'react';
|
|
16186
|
-
import { EmotionCache } from '@emotion/
|
|
16608
|
+
import { EmotionCache } from '@emotion/css';
|
|
16187
16609
|
export interface EuiCacheProviderProps {
|
|
16188
16610
|
cache?: false | EmotionCache;
|
|
16189
16611
|
}
|
|
@@ -16196,7 +16618,7 @@ declare module '@elastic/eui/src/components/provider/cache' {
|
|
|
16196
16618
|
}
|
|
16197
16619
|
declare module '@elastic/eui/src/components/provider/provider' {
|
|
16198
16620
|
import React, { PropsWithChildren } from 'react';
|
|
16199
|
-
import { EmotionCache } from '@emotion/
|
|
16621
|
+
import { EmotionCache } from '@emotion/css';
|
|
16200
16622
|
import { EuiGlobalStylesProps } from '@elastic/eui/src/global_styling/reset/global_styles';
|
|
16201
16623
|
import { EuiThemeProviderProps, EuiThemeSystem } from '@elastic/eui/src/services';
|
|
16202
16624
|
export interface EuiProviderProps<T> extends Omit<EuiThemeProviderProps<T>, 'children' | 'theme'>, EuiGlobalStylesProps {
|
|
@@ -16483,7 +16905,7 @@ declare module '@elastic/eui/src/components/search_bar/query/ast' {
|
|
|
16483
16905
|
getFieldClauses(field?: string): FieldClause[];
|
|
16484
16906
|
getFieldClause(field: string, predicate: (c: FieldClause) => boolean): FieldClause | undefined;
|
|
16485
16907
|
hasOrFieldClause(field: string, value?: Value): boolean;
|
|
16486
|
-
getOrFieldClause(field: string, value?: Value): FieldClause | undefined;
|
|
16908
|
+
getOrFieldClause(field: string, value?: Value, must?: boolean, operator?: OperatorType): FieldClause | undefined;
|
|
16487
16909
|
addOrFieldValue(field: string, value: Value, must?: boolean, operator?: OperatorType): _AST;
|
|
16488
16910
|
removeOrFieldValue(field: string, value: Value): _AST;
|
|
16489
16911
|
removeOrFieldClauses(field: string): _AST;
|
|
@@ -18625,6 +19047,7 @@ declare module '@elastic/eui/src/components/tour/tour.styles' {
|
|
|
18625
19047
|
};
|
|
18626
19048
|
export const euiTourBeaconStyles: ({ euiTheme }: UseEuiTheme) => {
|
|
18627
19049
|
euiTourBeacon: import("@emotion/utils").SerializedStyles;
|
|
19050
|
+
isOpen: import("@emotion/utils").SerializedStyles;
|
|
18628
19051
|
right: import("@emotion/utils").SerializedStyles;
|
|
18629
19052
|
left: import("@emotion/utils").SerializedStyles;
|
|
18630
19053
|
top: import("@emotion/utils").SerializedStyles;
|
|
@@ -19363,6 +19786,11 @@ declare module '@elastic/eui/src/components/basic_table/in_memory_table' {
|
|
|
19363
19786
|
defaultFields?: string[];
|
|
19364
19787
|
isClauseMatcher?: (...args: any) => boolean;
|
|
19365
19788
|
explain?: boolean;
|
|
19789
|
+
/**
|
|
19790
|
+
* When the search bar Query is controlled and passed to the `search` prop it is by default executed against the items passed to the table to filter them out.
|
|
19791
|
+
* If the filtering is already done before passing the `items` to the table we can disable the execution by setting `enabled` to `false`.
|
|
19792
|
+
*/
|
|
19793
|
+
enabled?: boolean;
|
|
19366
19794
|
};
|
|
19367
19795
|
/**
|
|
19368
19796
|
* Insert content between the search bar and table components.
|
|
@@ -19593,6 +20021,8 @@ declare module '@elastic/eui/src/components/resizable_container/types' {
|
|
|
19593
20021
|
export type PanelModeType = 'collapsible' | 'main' | 'custom';
|
|
19594
20022
|
export type PanelPosition = 'first' | 'middle' | 'last';
|
|
19595
20023
|
export type PanelDirection = 'left' | 'right';
|
|
20024
|
+
export type KeyMoveDirection = 'forward' | 'backward';
|
|
20025
|
+
export type ResizeTrigger = 'pointer' | 'key';
|
|
19596
20026
|
export interface EuiResizablePanelController {
|
|
19597
20027
|
id: string;
|
|
19598
20028
|
size: number;
|
|
@@ -19618,7 +20048,7 @@ declare module '@elastic/eui/src/components/resizable_container/types' {
|
|
|
19618
20048
|
};
|
|
19619
20049
|
}
|
|
19620
20050
|
export type EuiResizableButtonMouseEvent = MouseEvent<HTMLButtonElement> | TouchEvent<HTMLButtonElement>;
|
|
19621
|
-
export type
|
|
20051
|
+
export type EuiResizableButtonKeyEvent = KeyboardEvent<HTMLButtonElement>;
|
|
19622
20052
|
export interface EuiResizableContainerState {
|
|
19623
20053
|
isDragging: boolean;
|
|
19624
20054
|
currentResizerPos: number;
|
|
@@ -19662,7 +20092,7 @@ declare module '@elastic/eui/src/components/resizable_container/types' {
|
|
|
19662
20092
|
payload: {
|
|
19663
20093
|
prevPanelId: string;
|
|
19664
20094
|
nextPanelId: string;
|
|
19665
|
-
direction:
|
|
20095
|
+
direction: KeyMoveDirection;
|
|
19666
20096
|
};
|
|
19667
20097
|
}
|
|
19668
20098
|
export interface ActionResize {
|
|
@@ -19750,9 +20180,10 @@ declare module '@elastic/eui/src/components/resizable_container/context' {
|
|
|
19750
20180
|
declare module '@elastic/eui/src/components/resizable_container/resizable_button' {
|
|
19751
20181
|
import { FunctionComponent, ButtonHTMLAttributes } from 'react';
|
|
19752
20182
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
19753
|
-
import { EuiResizableButtonController, EuiResizableButtonMouseEvent,
|
|
20183
|
+
import { EuiResizableButtonController, EuiResizableButtonMouseEvent, EuiResizableButtonKeyEvent } from '@elastic/eui/src/components/resizable_container/types';
|
|
19754
20184
|
interface EuiResizableButtonControls {
|
|
19755
|
-
onKeyDown: (eve:
|
|
20185
|
+
onKeyDown: (eve: EuiResizableButtonKeyEvent) => void;
|
|
20186
|
+
onKeyUp: (eve: EuiResizableButtonKeyEvent) => void;
|
|
19756
20187
|
onMouseDown: (eve: EuiResizableButtonMouseEvent) => void;
|
|
19757
20188
|
onTouchStart: (eve: EuiResizableButtonMouseEvent) => void;
|
|
19758
20189
|
onFocus: (id: string) => void;
|
|
@@ -19798,6 +20229,35 @@ declare module '@elastic/eui/src/components/resizable_container/resizable_collap
|
|
|
19798
20229
|
};
|
|
19799
20230
|
export const EuiResizableCollapseButton: FunctionComponent<EuiResizableCollapseButtonProps>;
|
|
19800
20231
|
|
|
20232
|
+
}
|
|
20233
|
+
declare module '@elastic/eui/src/components/resizable_container/resizable_panel.styles' {
|
|
20234
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
20235
|
+
export const euiResizablePanelStyles: (euiThemeContext: UseEuiTheme) => {
|
|
20236
|
+
euiResizablePanel: import("@emotion/utils").SerializedStyles;
|
|
20237
|
+
collapsed: import("@emotion/utils").SerializedStyles;
|
|
20238
|
+
paddingSizes: {
|
|
20239
|
+
none: null;
|
|
20240
|
+
xs: import("@emotion/utils").SerializedStyles;
|
|
20241
|
+
s: import("@emotion/utils").SerializedStyles;
|
|
20242
|
+
m: import("@emotion/utils").SerializedStyles;
|
|
20243
|
+
l: import("@emotion/utils").SerializedStyles;
|
|
20244
|
+
xl: import("@emotion/utils").SerializedStyles;
|
|
20245
|
+
};
|
|
20246
|
+
};
|
|
20247
|
+
export const euiResizablePanelContentStyles: (euiThemeContext: UseEuiTheme) => {
|
|
20248
|
+
euiResizablePanel__content: import("@emotion/utils").SerializedStyles;
|
|
20249
|
+
scrollable: import("@emotion/utils").SerializedStyles;
|
|
20250
|
+
collapsedChildren: import("@emotion/utils").SerializedStyles;
|
|
20251
|
+
horizontal: {
|
|
20252
|
+
collapsed: import("@emotion/utils").SerializedStyles;
|
|
20253
|
+
hasCollapsibleButton: import("@emotion/utils").SerializedStyles;
|
|
20254
|
+
};
|
|
20255
|
+
vertical: {
|
|
20256
|
+
collapsed: import("@emotion/utils").SerializedStyles;
|
|
20257
|
+
hasCollapsibleButton: import("@emotion/utils").SerializedStyles;
|
|
20258
|
+
};
|
|
20259
|
+
};
|
|
20260
|
+
|
|
19801
20261
|
}
|
|
19802
20262
|
declare module '@elastic/eui/src/components/resizable_container/resizable_panel' {
|
|
19803
20263
|
import { CSSProperties, ReactNode, FunctionComponent, HTMLAttributes } from 'react';
|
|
@@ -19901,21 +20361,26 @@ declare module '@elastic/eui/src/components/resizable_container/helpers' {
|
|
|
19901
20361
|
export const useContainerCallbacks: ({ initialState, containerRef, onPanelWidthChange, }: Params) => [EuiResizableContainerActions, EuiResizableContainerState];
|
|
19902
20362
|
export {};
|
|
19903
20363
|
|
|
20364
|
+
}
|
|
20365
|
+
declare module '@elastic/eui/src/components/resizable_container/resizable_container.styles' {
|
|
20366
|
+
export const euiResizableContainerStyles: () => {
|
|
20367
|
+
euiResizableContainer: import("@emotion/utils").SerializedStyles;
|
|
20368
|
+
horizontal: import("@emotion/utils").SerializedStyles;
|
|
20369
|
+
vertical: import("@emotion/utils").SerializedStyles;
|
|
20370
|
+
};
|
|
20371
|
+
|
|
19904
20372
|
}
|
|
19905
20373
|
declare module '@elastic/eui/src/components/resizable_container/resizable_container' {
|
|
19906
20374
|
import { ReactNode, CSSProperties, FunctionComponent, HTMLAttributes, ComponentType } from 'react';
|
|
19907
20375
|
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
19908
20376
|
import { EuiResizableButtonProps } from '@elastic/eui/src/components/resizable_container/resizable_button';
|
|
19909
20377
|
import { EuiResizablePanelProps, ToggleCollapseCallback } from '@elastic/eui/src/components/resizable_container/resizable_panel';
|
|
19910
|
-
import { EuiResizableContainerActions } from '@elastic/eui/src/components/resizable_container/types';
|
|
19911
|
-
vertical: string;
|
|
19912
|
-
horizontal: string;
|
|
19913
|
-
};
|
|
20378
|
+
import { EuiResizableContainerActions, ResizeTrigger } from '@elastic/eui/src/components/resizable_container/types';
|
|
19914
20379
|
export interface EuiResizableContainerProps extends HTMLAttributes<HTMLDivElement>, CommonProps {
|
|
19915
20380
|
/**
|
|
19916
20381
|
* Specify the container direction
|
|
19917
20382
|
*/
|
|
19918
|
-
direction?:
|
|
20383
|
+
direction?: 'vertical' | 'horizontal';
|
|
19919
20384
|
/**
|
|
19920
20385
|
* Pure function which accepts Panel and Resizer components in arguments
|
|
19921
20386
|
* and returns a component tree
|
|
@@ -19927,12 +20392,19 @@ declare module '@elastic/eui/src/components/resizable_container/resizable_contai
|
|
|
19927
20392
|
*/
|
|
19928
20393
|
onPanelWidthChange?: ({}: {
|
|
19929
20394
|
[key: string]: number;
|
|
19930
|
-
}) =>
|
|
20395
|
+
}) => void;
|
|
19931
20396
|
onToggleCollapsed?: ToggleCollapseCallback;
|
|
20397
|
+
/**
|
|
20398
|
+
* Called when resizing starts
|
|
20399
|
+
*/
|
|
20400
|
+
onResizeStart?: (trigger: ResizeTrigger) => void;
|
|
20401
|
+
/**
|
|
20402
|
+
* Called when resizing ends
|
|
20403
|
+
*/
|
|
20404
|
+
onResizeEnd?: () => void;
|
|
19932
20405
|
style?: CSSProperties;
|
|
19933
20406
|
}
|
|
19934
20407
|
export const EuiResizableContainer: FunctionComponent<EuiResizableContainerProps>;
|
|
19935
|
-
export {};
|
|
19936
20408
|
|
|
19937
20409
|
}
|
|
19938
20410
|
declare module '@elastic/eui/src/components/resizable_container' {
|
|
@@ -21596,6 +22068,36 @@ declare module '@elastic/eui/src/components/icon/assets/filter' {
|
|
|
21596
22068
|
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
21597
22069
|
export {};
|
|
21598
22070
|
|
|
22071
|
+
}
|
|
22072
|
+
declare module '@elastic/eui/src/components/icon/assets/filterExclude' {
|
|
22073
|
+
import * as React from 'react';
|
|
22074
|
+
interface SVGRProps {
|
|
22075
|
+
title?: string;
|
|
22076
|
+
titleId?: string;
|
|
22077
|
+
}
|
|
22078
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
22079
|
+
export {};
|
|
22080
|
+
|
|
22081
|
+
}
|
|
22082
|
+
declare module '@elastic/eui/src/components/icon/assets/filterIgnore' {
|
|
22083
|
+
import * as React from 'react';
|
|
22084
|
+
interface SVGRProps {
|
|
22085
|
+
title?: string;
|
|
22086
|
+
titleId?: string;
|
|
22087
|
+
}
|
|
22088
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
22089
|
+
export {};
|
|
22090
|
+
|
|
22091
|
+
}
|
|
22092
|
+
declare module '@elastic/eui/src/components/icon/assets/filterInclude' {
|
|
22093
|
+
import * as React from 'react';
|
|
22094
|
+
interface SVGRProps {
|
|
22095
|
+
title?: string;
|
|
22096
|
+
titleId?: string;
|
|
22097
|
+
}
|
|
22098
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
22099
|
+
export {};
|
|
22100
|
+
|
|
21599
22101
|
}
|
|
21600
22102
|
declare module '@elastic/eui/src/components/icon/assets/flag' {
|
|
21601
22103
|
import * as React from 'react';
|
|
@@ -21836,6 +22338,16 @@ declare module '@elastic/eui/src/components/icon/assets/import' {
|
|
|
21836
22338
|
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
21837
22339
|
export {};
|
|
21838
22340
|
|
|
22341
|
+
}
|
|
22342
|
+
declare module '@elastic/eui/src/components/icon/assets/indexTemporary' {
|
|
22343
|
+
import * as React from 'react';
|
|
22344
|
+
interface SVGRProps {
|
|
22345
|
+
title?: string;
|
|
22346
|
+
titleId?: string;
|
|
22347
|
+
}
|
|
22348
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
22349
|
+
export {};
|
|
22350
|
+
|
|
21839
22351
|
}
|
|
21840
22352
|
declare module '@elastic/eui/src/components/icon/assets/index_close' {
|
|
21841
22353
|
import * as React from 'react';
|
|
@@ -21906,6 +22418,16 @@ declare module '@elastic/eui/src/components/icon/assets/index_settings' {
|
|
|
21906
22418
|
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
21907
22419
|
export {};
|
|
21908
22420
|
|
|
22421
|
+
}
|
|
22422
|
+
declare module '@elastic/eui/src/components/icon/assets/infinity' {
|
|
22423
|
+
import * as React from 'react';
|
|
22424
|
+
interface SVGRProps {
|
|
22425
|
+
title?: string;
|
|
22426
|
+
titleId?: string;
|
|
22427
|
+
}
|
|
22428
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
22429
|
+
export {};
|
|
22430
|
+
|
|
21909
22431
|
}
|
|
21910
22432
|
declare module '@elastic/eui/src/components/icon/assets/inputOutput' {
|
|
21911
22433
|
import * as React from 'react';
|
|
@@ -23416,6 +23938,26 @@ declare module '@elastic/eui/src/components/icon/assets/snowflake' {
|
|
|
23416
23938
|
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
23417
23939
|
export {};
|
|
23418
23940
|
|
|
23941
|
+
}
|
|
23942
|
+
declare module '@elastic/eui/src/components/icon/assets/sortAscending' {
|
|
23943
|
+
import * as React from 'react';
|
|
23944
|
+
interface SVGRProps {
|
|
23945
|
+
title?: string;
|
|
23946
|
+
titleId?: string;
|
|
23947
|
+
}
|
|
23948
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
23949
|
+
export {};
|
|
23950
|
+
|
|
23951
|
+
}
|
|
23952
|
+
declare module '@elastic/eui/src/components/icon/assets/sortDescending' {
|
|
23953
|
+
import * as React from 'react';
|
|
23954
|
+
interface SVGRProps {
|
|
23955
|
+
title?: string;
|
|
23956
|
+
titleId?: string;
|
|
23957
|
+
}
|
|
23958
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
23959
|
+
export {};
|
|
23960
|
+
|
|
23419
23961
|
}
|
|
23420
23962
|
declare module '@elastic/eui/src/components/icon/assets/sortLeft' {
|
|
23421
23963
|
import * as React from 'react';
|
|
@@ -24677,9 +25219,9 @@ declare module '@elastic/eui' {
|
|
|
24677
25219
|
"euiCardSelect.selected": any;
|
|
24678
25220
|
"euiCardSelect.unavailable": any;
|
|
24679
25221
|
"euiCardSelect.select": any;
|
|
24680
|
-
"
|
|
24681
|
-
"
|
|
24682
|
-
"
|
|
25222
|
+
"euiCodeBlockCopy.copy": any;
|
|
25223
|
+
"euiCodeBlockFullScreen.fullscreenCollapse": any;
|
|
25224
|
+
"euiCodeBlockFullScreen.fullscreenExpand": any;
|
|
24683
25225
|
"euiColorPickerSwatch.ariaLabel": any;
|
|
24684
25226
|
"euiColorPicker.popoverLabel": any;
|
|
24685
25227
|
"euiColorPicker.colorLabel": any;
|