@elastic/eui 70.4.0 → 71.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 +10673 -5106
- package/dist/eui_charts_theme.js.map +1 -1
- package/dist/eui_theme_dark.css +10 -715
- package/dist/eui_theme_dark.json +2 -161
- package/dist/eui_theme_dark.json.d.ts +0 -159
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +10 -715
- package/dist/eui_theme_light.json +2 -161
- package/dist/eui_theme_light.json.d.ts +0 -159
- 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/badge.styles.js +2 -2
- 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 +14 -6
- package/es/components/breadcrumbs/breadcrumb.js +2 -1
- package/es/components/breadcrumbs/breadcrumb.styles.js +3 -3
- package/es/components/breadcrumbs/breadcrumbs.a11y.js +58 -0
- 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.styles.js +2 -2
- 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.a11y.js +154 -0
- package/es/components/card/card.js +1 -1
- package/es/components/code/code.styles.js +2 -1
- package/es/components/code/code_block_virtualized.js +30 -12
- package/es/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/es/components/color_picker/color_picker.a11y.js +73 -0
- package/es/components/color_picker/color_stops/color_stops.js +23 -21
- package/es/components/combo_box/combo_box.a11y.js +112 -0
- package/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- 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/control_bar/control_bar.a11y.js +143 -0
- package/es/components/copy/copy.a11y.js +73 -0
- 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/drag_and_drop/drag_and_drop.a11y.js +114 -0
- package/es/components/empty_prompt/empty_prompt.js +1 -1
- package/es/components/expression/expression.styles.js +3 -3
- package/es/components/facet/facet_button.js +1 -1
- package/es/components/form/field_number/field_number.js +1 -1
- package/es/components/form/field_text/field_text.js +2 -2
- package/es/components/form/form_control_layout/form_control_layout.js +2 -2
- package/es/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
- package/es/components/form/form_control_layout/form_control_layout_icons.js +2 -2
- package/es/components/form/range/dual_range.js +237 -189
- package/es/components/form/range/dual_range.styles.js +15 -0
- package/es/components/form/range/range.js +137 -92
- package/es/components/form/range/range.styles.js +98 -0
- package/es/components/form/range/range_draggable.js +23 -24
- package/es/components/form/range/range_draggable.styles.js +52 -0
- package/es/components/form/range/range_highlight.js +62 -29
- package/es/components/form/range/range_highlight.styles.js +34 -0
- package/es/components/form/range/range_input.js +18 -8
- package/es/components/form/range/range_input.styles.js +14 -0
- package/es/components/form/range/range_label.js +11 -6
- package/es/components/form/range/range_label.styles.js +20 -0
- package/es/components/form/range/range_levels.js +101 -93
- package/es/components/form/range/range_levels.styles.js +36 -0
- package/es/components/form/range/range_levels_colors.js +43 -0
- package/es/components/form/range/range_slider.js +28 -25
- package/es/components/form/range/range_slider.styles.js +28 -0
- package/es/components/form/range/range_thumb.js +7 -9
- package/es/components/form/range/range_thumb.styles.js +35 -0
- package/es/components/form/range/range_ticks.js +80 -76
- package/es/components/form/range/range_ticks.styles.js +83 -0
- package/es/components/form/range/range_tooltip.js +41 -45
- package/es/components/form/range/range_tooltip.styles.js +46 -0
- package/es/components/form/range/range_track.js +151 -155
- package/es/components/form/range/range_track.styles.js +19 -0
- package/es/components/form/range/range_wrapper.js +7 -11
- package/es/components/form/range/range_wrapper.styles.js +40 -0
- package/es/components/form/range/types.js +1 -0
- 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/article.js +43 -0
- package/es/components/icon/assets/discuss.js +41 -0
- package/es/components/icon/assets/dotInCircle.js +43 -0
- package/es/components/icon/assets/issue.js +51 -0
- package/es/components/icon/icon.js +1 -1
- package/es/components/icon/icon_map.js +3 -0
- package/es/components/key_pad_menu/key_pad_menu_item.js +1 -1
- package/es/components/list_group/list_group.js +2 -2
- package/es/components/list_group/list_group_item.js +2 -2
- package/es/components/list_group/list_group_item.styles.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/loading/loading_spinner.styles.js +8 -4
- package/es/components/markdown_editor/markdown_editor.js +2 -2
- 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/markdown_editor/markdown_format.styles.js +2 -2
- package/es/components/modal/modal.a11y.js +1 -1
- package/es/components/modal/modal_header.styles.js +2 -1
- package/es/components/notification/notification_event.js +2 -2
- package/es/components/notification/notification_event_meta.js +1 -1
- package/es/components/page/page_header/page_header_content.js +1 -1
- package/es/components/pagination/pagination.a11y.js +58 -0
- package/es/components/pagination/pagination_button.js +1 -1
- package/es/components/popover/popover_footer.styles.js +2 -2
- package/es/components/popover/popover_title.styles.js +2 -2
- 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/side_nav/side_nav.a11y.js +323 -0
- 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.styles.js +3 -1
- package/es/components/timeline/timeline_item_icon.js +1 -1
- package/es/components/toast/global_toast_list.js +1 -1
- package/es/components/toast/toast.js +1 -1
- package/es/components/token/token.styles.js +4 -2
- package/es/components/tool_tip/icon_tip.js +1 -1
- package/es/components/tool_tip/tool_tip.styles.js +3 -1
- package/es/global_styling/functions/index.js +1 -0
- package/es/global_styling/functions/logical_shorthands.js +179 -0
- package/es/global_styling/functions/logicals.js +61 -5
- package/es/global_styling/functions/logicals.json +12 -1
- package/es/services/theme/hooks.js +14 -17
- package/eui.d.ts +555 -319
- package/i18ntokens.json +16 -16
- package/lib/components/avatar/avatar.js +1 -1
- package/lib/components/badge/badge.js +1 -1
- package/lib/components/badge/badge.styles.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 +14 -6
- package/lib/components/breadcrumbs/breadcrumb.js +2 -1
- package/lib/components/breadcrumbs/breadcrumb.styles.js +2 -2
- package/lib/components/breadcrumbs/breadcrumbs.a11y.js +65 -0
- 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.styles.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.a11y.js +159 -0
- package/lib/components/card/card.js +1 -1
- package/lib/components/code/code.styles.js +3 -1
- package/lib/components/code/code_block_virtualized.js +31 -12
- package/lib/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/lib/components/color_picker/color_picker.a11y.js +73 -0
- package/lib/components/color_picker/color_stops/color_stops.js +23 -21
- package/lib/components/combo_box/combo_box.a11y.js +114 -0
- package/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- 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/control_bar/control_bar.a11y.js +148 -0
- package/lib/components/copy/copy.a11y.js +78 -0
- 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/drag_and_drop/drag_and_drop.a11y.js +122 -0
- package/lib/components/empty_prompt/empty_prompt.js +1 -1
- package/lib/components/expression/expression.styles.js +2 -2
- package/lib/components/facet/facet_button.js +1 -1
- package/lib/components/form/field_number/field_number.js +1 -1
- package/lib/components/form/field_text/field_text.js +2 -2
- package/lib/components/form/form_control_layout/form_control_layout.js +2 -2
- package/lib/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
- package/lib/components/form/form_control_layout/form_control_layout_icons.js +2 -2
- package/lib/components/form/range/dual_range.js +245 -192
- package/lib/components/form/range/dual_range.styles.js +26 -0
- package/lib/components/form/range/range.js +143 -95
- package/lib/components/form/range/range.styles.js +135 -0
- package/lib/components/form/range/range_draggable.js +30 -23
- package/lib/components/form/range/range_draggable.styles.js +58 -0
- package/lib/components/form/range/range_highlight.js +72 -29
- package/lib/components/form/range/range_highlight.styles.js +54 -0
- package/lib/components/form/range/range_input.js +27 -8
- package/lib/components/form/range/range_input.styles.js +24 -0
- package/lib/components/form/range/range_label.js +12 -6
- package/lib/components/form/range/range_label.styles.js +32 -0
- package/lib/components/form/range/range_levels.js +106 -95
- package/lib/components/form/range/range_levels.styles.js +52 -0
- package/lib/components/form/range/range_levels_colors.js +60 -0
- package/lib/components/form/range/range_slider.js +31 -24
- package/lib/components/form/range/range_slider.styles.js +44 -0
- package/lib/components/form/range/range_thumb.js +9 -9
- package/lib/components/form/range/range_thumb.styles.js +40 -0
- package/lib/components/form/range/range_ticks.js +88 -78
- package/lib/components/form/range/range_ticks.styles.js +89 -0
- package/lib/components/form/range/range_tooltip.js +53 -49
- package/lib/components/form/range/range_tooltip.styles.js +61 -0
- package/lib/components/form/range/range_track.js +149 -156
- package/lib/components/form/range/range_track.styles.js +30 -0
- package/lib/components/form/range/range_wrapper.js +9 -11
- package/lib/components/form/range/range_wrapper.styles.js +43 -0
- package/lib/components/form/range/types.js +5 -0
- 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/article.js +50 -0
- package/lib/components/icon/assets/discuss.js +48 -0
- package/lib/components/icon/assets/dotInCircle.js +50 -0
- package/lib/components/icon/assets/issue.js +59 -0
- package/lib/components/icon/icon.js +1 -1
- package/lib/components/icon/icon_map.js +3 -0
- package/lib/components/icon/svgs/article.svg +10 -0
- package/lib/components/icon/svgs/discuss.svg +4 -0
- package/lib/components/icon/svgs/dotInCircle.svg +4 -0
- package/lib/components/key_pad_menu/key_pad_menu_item.js +1 -1
- package/lib/components/list_group/list_group.js +2 -2
- package/lib/components/list_group/list_group_item.js +2 -2
- package/lib/components/list_group/list_group_item.styles.js +1 -1
- 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/loading/loading_spinner.styles.js +7 -3
- package/lib/components/markdown_editor/markdown_editor.js +2 -2
- 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/markdown_editor/markdown_format.styles.js +1 -1
- package/lib/components/modal/modal.a11y.js +1 -1
- package/lib/components/modal/modal_header.styles.js +3 -1
- package/lib/components/notification/notification_event.js +2 -2
- package/lib/components/notification/notification_event_meta.js +1 -1
- package/lib/components/page/page_header/page_header_content.js +1 -1
- package/lib/components/pagination/pagination.a11y.js +60 -0
- package/lib/components/popover/popover_footer.styles.js +1 -1
- package/lib/components/popover/popover_title.styles.js +1 -1
- 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/side_nav/side_nav.a11y.js +328 -0
- 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.styles.js +3 -1
- package/lib/components/timeline/timeline_item_icon.js +1 -1
- package/lib/components/toast/global_toast_list.js +1 -1
- package/lib/components/toast/toast.js +1 -1
- package/lib/components/token/token.styles.js +3 -1
- package/lib/components/tool_tip/icon_tip.js +1 -1
- package/lib/components/tool_tip/tool_tip.styles.js +3 -1
- package/lib/global_styling/functions/index.js +13 -0
- package/lib/global_styling/functions/logical_shorthands.js +187 -0
- package/lib/global_styling/functions/logicals.js +70 -11
- package/lib/global_styling/functions/logicals.json +12 -1
- package/lib/services/theme/hooks.js +14 -17
- package/optimize/es/components/badge/badge.styles.js +2 -2
- package/optimize/es/components/breadcrumbs/breadcrumb.js +2 -1
- package/optimize/es/components/breadcrumbs/breadcrumb.styles.js +3 -3
- package/optimize/es/components/breadcrumbs/breadcrumbs.a11y.js +58 -0
- package/optimize/es/components/button/button_display/_button_display.styles.js +2 -2
- package/optimize/es/components/card/card.a11y.js +144 -0
- package/optimize/es/components/code/code.styles.js +2 -1
- package/optimize/es/components/code/code_block_virtualized.js +26 -12
- package/optimize/es/components/color_picker/color_picker.a11y.js +63 -0
- package/optimize/es/components/color_picker/color_stops/color_stops.js +23 -21
- package/optimize/es/components/combo_box/combo_box.a11y.js +102 -0
- package/optimize/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- package/optimize/es/components/control_bar/control_bar.a11y.js +133 -0
- package/optimize/es/components/copy/copy.a11y.js +63 -0
- package/optimize/es/components/drag_and_drop/drag_and_drop.a11y.js +104 -0
- package/optimize/es/components/expression/expression.styles.js +3 -3
- package/optimize/es/components/form/range/dual_range.js +159 -151
- package/optimize/es/components/form/range/dual_range.styles.js +15 -0
- package/optimize/es/components/form/range/range.js +66 -57
- package/optimize/es/components/form/range/range.styles.js +98 -0
- package/optimize/es/components/form/range/range_draggable.js +23 -18
- package/optimize/es/components/form/range/range_draggable.styles.js +52 -0
- package/optimize/es/components/form/range/range_highlight.js +61 -24
- package/optimize/es/components/form/range/range_highlight.styles.js +34 -0
- package/optimize/es/components/form/range/range_input.js +13 -4
- package/optimize/es/components/form/range/range_input.styles.js +14 -0
- package/optimize/es/components/form/range/range_label.js +7 -5
- package/optimize/es/components/form/range/range_label.styles.js +20 -0
- package/optimize/es/components/form/range/range_levels.js +87 -66
- package/optimize/es/components/form/range/range_levels.styles.js +36 -0
- package/optimize/es/components/form/range/range_levels_colors.js +43 -0
- package/optimize/es/components/form/range/range_slider.js +24 -11
- package/optimize/es/components/form/range/range_slider.styles.js +28 -0
- package/optimize/es/components/form/range/range_thumb.js +7 -3
- package/optimize/es/components/form/range/range_thumb.styles.js +35 -0
- package/optimize/es/components/form/range/range_ticks.js +61 -52
- package/optimize/es/components/form/range/range_ticks.styles.js +83 -0
- package/optimize/es/components/form/range/range_tooltip.js +40 -37
- package/optimize/es/components/form/range/range_tooltip.styles.js +46 -0
- package/optimize/es/components/form/range/range_track.js +116 -131
- package/optimize/es/components/form/range/range_track.styles.js +19 -0
- package/optimize/es/components/form/range/range_wrapper.js +7 -4
- package/optimize/es/components/form/range/range_wrapper.styles.js +40 -0
- package/optimize/es/components/form/range/types.js +1 -0
- package/optimize/es/components/icon/assets/article.js +39 -0
- package/optimize/es/components/icon/assets/discuss.js +37 -0
- package/optimize/es/components/icon/assets/dotInCircle.js +39 -0
- package/optimize/es/components/icon/assets/issue.js +47 -0
- package/optimize/es/components/icon/icon_map.js +3 -0
- package/optimize/es/components/list_group/list_group_item.styles.js +2 -2
- package/optimize/es/components/loading/loading_spinner.styles.js +8 -4
- package/optimize/es/components/markdown_editor/markdown_editor.js +1 -1
- package/optimize/es/components/markdown_editor/markdown_format.styles.js +2 -2
- package/optimize/es/components/modal/modal.a11y.js +1 -1
- package/optimize/es/components/modal/modal_header.styles.js +2 -1
- package/optimize/es/components/pagination/pagination.a11y.js +48 -0
- package/optimize/es/components/popover/popover_footer.styles.js +2 -2
- package/optimize/es/components/popover/popover_title.styles.js +2 -2
- package/optimize/es/components/side_nav/side_nav.a11y.js +313 -0
- package/optimize/es/components/text/text.styles.js +3 -1
- package/optimize/es/components/token/token.styles.js +4 -2
- package/optimize/es/components/tool_tip/tool_tip.styles.js +3 -1
- package/optimize/es/global_styling/functions/index.js +1 -0
- package/optimize/es/global_styling/functions/logical_shorthands.js +169 -0
- package/optimize/es/global_styling/functions/logicals.js +47 -5
- package/optimize/es/global_styling/functions/logicals.json +12 -1
- package/optimize/es/services/theme/hooks.js +14 -17
- package/optimize/lib/components/badge/badge.styles.js +1 -1
- package/optimize/lib/components/breadcrumbs/breadcrumb.js +2 -1
- package/optimize/lib/components/breadcrumbs/breadcrumb.styles.js +2 -2
- package/optimize/lib/components/breadcrumbs/breadcrumbs.a11y.js +65 -0
- package/optimize/lib/components/button/button_display/_button_display.styles.js +1 -1
- package/optimize/lib/components/card/card.a11y.js +159 -0
- package/optimize/lib/components/code/code.styles.js +3 -1
- package/optimize/lib/components/code/code_block_virtualized.js +27 -19
- package/optimize/lib/components/color_picker/color_picker.a11y.js +71 -0
- package/optimize/lib/components/color_picker/color_stops/color_stops.js +23 -21
- package/optimize/lib/components/combo_box/combo_box.a11y.js +114 -0
- package/optimize/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- package/optimize/lib/components/control_bar/control_bar.a11y.js +148 -0
- package/optimize/lib/components/copy/copy.a11y.js +78 -0
- package/optimize/lib/components/drag_and_drop/drag_and_drop.a11y.js +122 -0
- package/optimize/lib/components/expression/expression.styles.js +2 -2
- package/optimize/lib/components/form/range/dual_range.js +165 -152
- package/optimize/lib/components/form/range/dual_range.styles.js +26 -0
- package/optimize/lib/components/form/range/range.js +71 -60
- package/optimize/lib/components/form/range/range.styles.js +135 -0
- package/optimize/lib/components/form/range/range_draggable.js +30 -17
- package/optimize/lib/components/form/range/range_draggable.styles.js +58 -0
- package/optimize/lib/components/form/range/range_highlight.js +71 -24
- package/optimize/lib/components/form/range/range_highlight.styles.js +54 -0
- package/optimize/lib/components/form/range/range_input.js +22 -4
- package/optimize/lib/components/form/range/range_input.styles.js +24 -0
- package/optimize/lib/components/form/range/range_label.js +8 -5
- package/optimize/lib/components/form/range/range_label.styles.js +32 -0
- package/optimize/lib/components/form/range/range_levels.js +94 -72
- package/optimize/lib/components/form/range/range_levels.styles.js +52 -0
- package/optimize/lib/components/form/range/range_levels_colors.js +60 -0
- package/optimize/lib/components/form/range/range_slider.js +28 -10
- package/optimize/lib/components/form/range/range_slider.styles.js +44 -0
- package/optimize/lib/components/form/range/range_thumb.js +9 -3
- package/optimize/lib/components/form/range/range_thumb.styles.js +40 -0
- package/optimize/lib/components/form/range/range_ticks.js +73 -57
- package/optimize/lib/components/form/range/range_ticks.styles.js +89 -0
- package/optimize/lib/components/form/range/range_tooltip.js +47 -38
- package/optimize/lib/components/form/range/range_tooltip.styles.js +61 -0
- package/optimize/lib/components/form/range/range_track.js +118 -139
- package/optimize/lib/components/form/range/range_track.styles.js +30 -0
- package/optimize/lib/components/form/range/range_wrapper.js +9 -4
- package/optimize/lib/components/form/range/range_wrapper.styles.js +43 -0
- package/optimize/lib/components/form/range/types.js +5 -0
- package/optimize/lib/components/icon/assets/article.js +49 -0
- package/optimize/lib/components/icon/assets/discuss.js +47 -0
- package/optimize/lib/components/icon/assets/dotInCircle.js +49 -0
- package/optimize/lib/components/icon/assets/issue.js +58 -0
- package/optimize/lib/components/icon/icon_map.js +3 -0
- package/optimize/lib/components/icon/svgs/article.svg +10 -0
- package/optimize/lib/components/icon/svgs/discuss.svg +4 -0
- package/optimize/lib/components/icon/svgs/dotInCircle.svg +4 -0
- package/optimize/lib/components/list_group/list_group_item.styles.js +1 -1
- package/optimize/lib/components/loading/loading_spinner.styles.js +7 -3
- package/optimize/lib/components/markdown_editor/markdown_editor.js +1 -1
- package/optimize/lib/components/markdown_editor/markdown_format.styles.js +1 -1
- package/optimize/lib/components/modal/modal.a11y.js +1 -1
- package/optimize/lib/components/modal/modal_header.styles.js +3 -1
- package/optimize/lib/components/pagination/pagination.a11y.js +60 -0
- package/optimize/lib/components/popover/popover_footer.styles.js +1 -1
- package/optimize/lib/components/popover/popover_title.styles.js +1 -1
- package/optimize/lib/components/side_nav/side_nav.a11y.js +328 -0
- package/optimize/lib/components/text/text.styles.js +3 -1
- package/optimize/lib/components/token/token.styles.js +3 -1
- package/optimize/lib/components/tool_tip/tool_tip.styles.js +3 -1
- package/optimize/lib/global_styling/functions/index.js +13 -0
- package/optimize/lib/global_styling/functions/logical_shorthands.js +184 -0
- package/optimize/lib/global_styling/functions/logicals.js +58 -11
- package/optimize/lib/global_styling/functions/logicals.json +12 -1
- package/optimize/lib/services/theme/hooks.js +14 -17
- package/package.json +3 -5
- package/src/components/color_picker/color_stops/_color_stops.scss +1 -1
- package/src/components/form/_index.scss +0 -1
- package/src/global_styling/mixins/_range.scss +41 -4
- package/src/global_styling/variables/_form.scss +2 -4
- package/src/themes/amsterdam/global_styling/mixins/_index.scss +1 -1
- package/src/themes/amsterdam/overrides/_color_stops.scss +1 -1
- package/src/themes/amsterdam/overrides/_index.scss +0 -9
- package/test-env/components/avatar/avatar.js +1 -1
- package/test-env/components/badge/badge.js +1 -1
- package/test-env/components/badge/badge.styles.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 +14 -6
- package/test-env/components/breadcrumbs/breadcrumb.js +2 -1
- package/test-env/components/breadcrumbs/breadcrumb.styles.js +2 -2
- package/test-env/components/breadcrumbs/breadcrumbs.a11y.js +65 -0
- 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.styles.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.a11y.js +159 -0
- package/test-env/components/card/card.js +1 -1
- package/test-env/components/code/code.styles.js +3 -1
- package/test-env/components/code/code_block_virtualized.js +27 -19
- package/test-env/components/collapsible_nav/collapsible_nav_group/collapsible_nav_group.js +1 -1
- package/test-env/components/color_picker/color_picker.a11y.js +71 -0
- package/test-env/components/color_picker/color_stops/color_stops.js +23 -21
- package/test-env/components/combo_box/combo_box.a11y.js +114 -0
- package/test-env/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- 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/control_bar/control_bar.a11y.js +148 -0
- package/test-env/components/copy/copy.a11y.js +78 -0
- 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/drag_and_drop/drag_and_drop.a11y.js +122 -0
- package/test-env/components/empty_prompt/empty_prompt.js +1 -1
- package/test-env/components/expression/expression.styles.js +2 -2
- package/test-env/components/facet/facet_button.js +1 -1
- package/test-env/components/form/field_number/field_number.js +1 -1
- package/test-env/components/form/field_text/field_text.js +2 -2
- package/test-env/components/form/form_control_layout/form_control_layout.js +2 -2
- package/test-env/components/form/form_control_layout/form_control_layout_custom_icon.js +1 -1
- package/test-env/components/form/form_control_layout/form_control_layout_icons.js +2 -2
- package/test-env/components/form/range/dual_range.js +244 -190
- package/test-env/components/form/range/dual_range.styles.js +26 -0
- package/test-env/components/form/range/range.js +143 -95
- package/test-env/components/form/range/range.styles.js +135 -0
- package/test-env/components/form/range/range_draggable.js +30 -23
- package/test-env/components/form/range/range_draggable.styles.js +58 -0
- package/test-env/components/form/range/range_highlight.js +72 -29
- package/test-env/components/form/range/range_highlight.styles.js +54 -0
- package/test-env/components/form/range/range_input.js +27 -8
- package/test-env/components/form/range/range_input.styles.js +24 -0
- package/test-env/components/form/range/range_label.js +12 -6
- package/test-env/components/form/range/range_label.styles.js +32 -0
- package/test-env/components/form/range/range_levels.js +103 -83
- package/test-env/components/form/range/range_levels.styles.js +52 -0
- package/test-env/components/form/range/range_levels_colors.js +60 -0
- package/test-env/components/form/range/range_slider.js +31 -24
- package/test-env/components/form/range/range_slider.styles.js +44 -0
- package/test-env/components/form/range/range_thumb.js +9 -9
- package/test-env/components/form/range/range_thumb.styles.js +40 -0
- package/test-env/components/form/range/range_ticks.js +88 -78
- package/test-env/components/form/range/range_ticks.styles.js +89 -0
- package/test-env/components/form/range/range_tooltip.js +53 -49
- package/test-env/components/form/range/range_tooltip.styles.js +61 -0
- package/test-env/components/form/range/range_track.js +143 -151
- package/test-env/components/form/range/range_track.styles.js +30 -0
- package/test-env/components/form/range/range_wrapper.js +9 -11
- package/test-env/components/form/range/range_wrapper.styles.js +43 -0
- package/test-env/components/form/range/types.js +5 -0
- 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/article.js +49 -0
- package/test-env/components/icon/assets/discuss.js +47 -0
- package/test-env/components/icon/assets/dotInCircle.js +49 -0
- package/test-env/components/icon/assets/issue.js +58 -0
- package/test-env/components/icon/icon_map.js +3 -0
- package/test-env/components/key_pad_menu/key_pad_menu_item.js +1 -1
- package/test-env/components/list_group/list_group.js +2 -2
- package/test-env/components/list_group/list_group_item.js +2 -2
- package/test-env/components/list_group/list_group_item.styles.js +1 -1
- 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/loading/loading_spinner.styles.js +7 -3
- package/test-env/components/markdown_editor/markdown_editor.js +2 -2
- 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/markdown_editor/markdown_format.styles.js +1 -1
- package/test-env/components/modal/modal.a11y.js +1 -1
- package/test-env/components/modal/modal_header.styles.js +3 -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/page/page_header/page_header_content.js +1 -1
- package/test-env/components/pagination/pagination.a11y.js +60 -0
- package/test-env/components/popover/popover_footer.styles.js +1 -1
- package/test-env/components/popover/popover_title.styles.js +1 -1
- 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/side_nav/side_nav.a11y.js +328 -0
- 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.styles.js +3 -1
- package/test-env/components/timeline/timeline_item_icon.js +1 -1
- package/test-env/components/toast/global_toast_list.js +1 -1
- package/test-env/components/toast/toast.js +1 -1
- package/test-env/components/token/token.styles.js +3 -1
- package/test-env/components/tool_tip/icon_tip.js +1 -1
- package/test-env/components/tool_tip/tool_tip.styles.js +3 -1
- package/test-env/global_styling/functions/index.js +13 -0
- package/test-env/global_styling/functions/logical_shorthands.js +184 -0
- package/test-env/global_styling/functions/logicals.js +58 -11
- package/test-env/global_styling/functions/logicals.json +12 -1
- package/test-env/services/theme/hooks.js +14 -17
- package/src/components/form/range/_dual_range.scss +0 -7
- package/src/components/form/range/_index.scss +0 -13
- package/src/components/form/range/_range.scss +0 -7
- package/src/components/form/range/_range_draggable.scss +0 -35
- package/src/components/form/range/_range_highlight.scss +0 -25
- package/src/components/form/range/_range_input.scss +0 -10
- package/src/components/form/range/_range_label.scss +0 -18
- package/src/components/form/range/_range_levels.scss +0 -43
- package/src/components/form/range/_range_slider.scss +0 -133
- package/src/components/form/range/_range_thumb.scss +0 -19
- package/src/components/form/range/_range_ticks.scss +0 -88
- package/src/components/form/range/_range_tooltip.scss +0 -97
- package/src/components/form/range/_range_track.scss +0 -15
- package/src/components/form/range/_range_wrapper.scss +0 -20
- package/src/themes/amsterdam/global_styling/mixins/_range.scss +0 -57
- package/src/themes/amsterdam/overrides/_breadcrumbs.scss +0 -0
- package/src/themes/amsterdam/overrides/_range.scss +0 -3
- package/src/themes/amsterdam/overrides/_range_draggable.scss +0 -25
- package/src/themes/amsterdam/overrides/_range_highlight.scss +0 -31
- package/src/themes/amsterdam/overrides/_range_levels.scss +0 -32
- package/src/themes/amsterdam/overrides/_range_slider.scss +0 -54
- package/src/themes/amsterdam/overrides/_range_thumb.scss +0 -22
- package/src/themes/amsterdam/overrides/_range_ticks.scss +0 -42
- package/src/themes/amsterdam/overrides/_range_tooltip.scss +0 -3
- package/src/themes/amsterdam/overrides/_range_track.scss +0 -110
package/eui.d.ts
CHANGED
|
@@ -954,6 +954,7 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
954
954
|
arrowUp: string;
|
|
955
955
|
arrowStart: string;
|
|
956
956
|
arrowEnd: string;
|
|
957
|
+
article: string;
|
|
957
958
|
asterisk: string;
|
|
958
959
|
auditbeatApp: string;
|
|
959
960
|
beaker: string;
|
|
@@ -1011,11 +1012,13 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
1011
1012
|
desktop: string;
|
|
1012
1013
|
devToolsApp: string;
|
|
1013
1014
|
discoverApp: string;
|
|
1015
|
+
discuss: string;
|
|
1014
1016
|
document: string;
|
|
1015
1017
|
documentEdit: string;
|
|
1016
1018
|
documentation: string;
|
|
1017
1019
|
documents: string;
|
|
1018
1020
|
dot: string;
|
|
1021
|
+
dotInCircle: string;
|
|
1019
1022
|
doubleArrowLeft: string;
|
|
1020
1023
|
doubleArrowRight: string;
|
|
1021
1024
|
download: string;
|
|
@@ -1458,7 +1461,7 @@ declare module '@elastic/eui/src/components/icon/icon' {
|
|
|
1458
1461
|
import { WithEuiThemeProps } from '@elastic/eui/src/services';
|
|
1459
1462
|
export { COLORS } from '@elastic/eui/src/components/icon/named_colors';
|
|
1460
1463
|
import { NamedColor } from '@elastic/eui/src/components/icon/named_colors';
|
|
1461
|
-
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" | "filterInCircle" | "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")[];
|
|
1464
|
+
export const TYPES: ("string" | "number" | "function" | "article" | "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" | "discuss" | "document" | "documentEdit" | "documentation" | "documents" | "dot" | "dotInCircle" | "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" | "filterInCircle" | "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")[];
|
|
1462
1465
|
export type EuiIconType = keyof typeof typeToPathMap;
|
|
1463
1466
|
export type IconType = EuiIconType | string | ComponentType;
|
|
1464
1467
|
export type IconColor = string | NamedColor;
|
|
@@ -1501,7 +1504,7 @@ declare module '@elastic/eui/src/components/icon/icon' {
|
|
|
1501
1504
|
isLoading: boolean;
|
|
1502
1505
|
neededLoading: boolean;
|
|
1503
1506
|
}
|
|
1504
|
-
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" | "filterInCircle" | "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;
|
|
1507
|
+
export const clearIconComponentCache: (iconType?: "string" | "number" | "function" | "article" | "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" | "discuss" | "document" | "documentEdit" | "documentation" | "documents" | "dot" | "dotInCircle" | "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" | "filterInCircle" | "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;
|
|
1505
1508
|
export const appendIconComponentCache: (iconTypeToIconComponentMap: {
|
|
1506
1509
|
[iconType: string]: React.ComponentType<{}>;
|
|
1507
1510
|
}) => void;
|
|
@@ -4921,308 +4924,387 @@ declare module '@elastic/eui/src/components/popover' {
|
|
|
4921
4924
|
export { EuiWrappingPopover } from '@elastic/eui/src/components/popover/wrapping_popover';
|
|
4922
4925
|
|
|
4923
4926
|
}
|
|
4924
|
-
declare module '@elastic/eui/src/components/form/range/
|
|
4925
|
-
import
|
|
4926
|
-
|
|
4927
|
-
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
|
-
|
|
4927
|
+
declare module '@elastic/eui/src/components/form/range/range_levels_colors' {
|
|
4928
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
4929
|
+
import type { EuiRangeLevel } from '@elastic/eui/src/components/form/range/types';
|
|
4930
|
+
export const LEVEL_COLORS: readonly ["primary", "success", "warning", "danger"];
|
|
4931
|
+
export type EuiRangeLevelColor = typeof LEVEL_COLORS[number];
|
|
4932
|
+
export const isNamedLevelColor: (color?: string | undefined) => boolean;
|
|
4933
|
+
export const euiRangeLevelColor: (color: EuiRangeLevelColor | string, euiTheme: UseEuiTheme['euiTheme']) => string;
|
|
4934
|
+
export const getLevelColor: (levels: EuiRangeLevel[], value: number) => "primary" | "success" | "warning" | "danger" | import("csstype").Property.Color | undefined;
|
|
4935
|
+
|
|
4936
|
+
}
|
|
4937
|
+
declare module '@elastic/eui/src/components/form/range/types' {
|
|
4938
|
+
import type { ReactNode, CSSProperties, InputHTMLAttributes } from 'react';
|
|
4939
|
+
import type { CommonProps } from '@elastic/eui/src/components/common';
|
|
4940
|
+
import type { EuiFormControlLayoutProps } from '@elastic/eui/src/components/form/form_control_layout';
|
|
4941
|
+
import type { EuiRangeLevelColor } from '@elastic/eui/src/components/form/range/range_levels_colors';
|
|
4942
|
+
/**
|
|
4943
|
+
* Internal type atoms split up both for easier categorization
|
|
4944
|
+
* and for easier reusing/picking
|
|
4945
|
+
*/
|
|
4946
|
+
export interface _SharedRangeValuesProps {
|
|
4934
4947
|
max: number;
|
|
4935
4948
|
min: number;
|
|
4936
|
-
|
|
4949
|
+
/**
|
|
4950
|
+
* The number to increment or decrement between each interval
|
|
4951
|
+
* @default 1
|
|
4952
|
+
*/
|
|
4953
|
+
step?: number;
|
|
4937
4954
|
}
|
|
4938
|
-
export
|
|
4939
|
-
|
|
4940
|
-
}
|
|
4941
|
-
declare module '@elastic/eui/src/components/form/range/range_input' {
|
|
4942
|
-
import { FunctionComponent } from 'react';
|
|
4943
|
-
import { EuiFieldNumberProps } from '@elastic/eui/src/components/form/field_number';
|
|
4944
|
-
export interface EuiRangeInputProps extends Omit<EuiFieldNumberProps, 'max' | 'min' | 'value'> {
|
|
4945
|
-
autoSize?: boolean;
|
|
4946
|
-
digitTolerance: number;
|
|
4947
|
-
max: number;
|
|
4948
|
-
min: number;
|
|
4949
|
-
side?: 'min' | 'max';
|
|
4955
|
+
export interface _SingleRangeValue extends _SharedRangeValuesProps {
|
|
4950
4956
|
value: string | number;
|
|
4957
|
+
onChange?: (event: _SingleRangeChangeEvent, isValid: boolean) => void;
|
|
4951
4958
|
}
|
|
4952
|
-
export
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
4959
|
+
export interface _DualRangeValue extends _SharedRangeValuesProps {
|
|
4960
|
+
value: [_SingleRangeValue['value'], _SingleRangeValue['value']];
|
|
4961
|
+
onChange: (values: [_SingleRangeValue['value'], _SingleRangeValue['value']], isValid: boolean, event?: _DualRangeChangeEvent) => void;
|
|
4962
|
+
}
|
|
4963
|
+
export interface _SharedRangesValues extends _SharedRangeValuesProps {
|
|
4964
|
+
value?: _SingleRangeValue['value'] | _DualRangeValue['value'];
|
|
4965
|
+
}
|
|
4966
|
+
export type _SingleRangeChangeEvent = React.ChangeEvent<HTMLInputElement> | React.KeyboardEvent<HTMLInputElement> | React.MouseEvent<HTMLButtonElement>;
|
|
4967
|
+
export type _DualRangeChangeEvent = _SingleRangeChangeEvent | React.KeyboardEvent<HTMLDivElement>;
|
|
4968
|
+
export interface _SharedRangeDataStructures {
|
|
4958
4969
|
/**
|
|
4959
|
-
*
|
|
4970
|
+
* Specified ticks at specified values
|
|
4960
4971
|
*/
|
|
4961
|
-
|
|
4962
|
-
disabled?: boolean;
|
|
4963
|
-
side?: 'min' | 'max';
|
|
4964
|
-
}
|
|
4965
|
-
export const EuiRangeLabel: FunctionComponent<EuiRangeLabelProps>;
|
|
4966
|
-
|
|
4967
|
-
}
|
|
4968
|
-
declare module '@elastic/eui/src/components/form/range/range_levels' {
|
|
4969
|
-
import { CSSProperties, FunctionComponent } from 'react';
|
|
4970
|
-
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
4971
|
-
export type EuiRangeLevelColor = 'primary' | 'success' | 'warning' | 'danger';
|
|
4972
|
-
export const LEVEL_COLORS: EuiRangeLevelColor[];
|
|
4973
|
-
export interface EuiRangeLevel extends CommonProps {
|
|
4974
|
-
min: number;
|
|
4975
|
-
max: number;
|
|
4972
|
+
ticks?: EuiRangeTick[];
|
|
4976
4973
|
/**
|
|
4977
|
-
*
|
|
4974
|
+
* Modifies the number of tick marks and at what interval
|
|
4978
4975
|
*/
|
|
4979
|
-
|
|
4980
|
-
}
|
|
4981
|
-
export interface EuiRangeLevelsProps {
|
|
4976
|
+
tickInterval?: number;
|
|
4982
4977
|
/**
|
|
4978
|
+
* Create colored indicators for certain intervals.
|
|
4983
4979
|
* An array of #EuiRangeLevel objects
|
|
4984
4980
|
*/
|
|
4985
4981
|
levels?: EuiRangeLevel[];
|
|
4986
|
-
max: number;
|
|
4987
|
-
min: number;
|
|
4988
|
-
showTicks?: boolean;
|
|
4989
|
-
compressed?: boolean;
|
|
4990
4982
|
}
|
|
4991
|
-
export
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
isLoading?: boolean;
|
|
5005
|
-
hasFocus?: boolean;
|
|
4983
|
+
export interface _SharedRangeVisualConfiguration {
|
|
4984
|
+
/**
|
|
4985
|
+
* Pass `true` to displays an extra input control for direct manipulation.
|
|
4986
|
+
* Pass `"inputWithPopover"` to only show the input but show the range in a dropdown.
|
|
4987
|
+
*/
|
|
4988
|
+
showInput?: boolean | 'inputWithPopover';
|
|
4989
|
+
/**
|
|
4990
|
+
* Shows static min/max labels on the sides of the range slider
|
|
4991
|
+
*/
|
|
4992
|
+
showLabels?: boolean;
|
|
4993
|
+
/**
|
|
4994
|
+
* Shows a thick line from min to value
|
|
4995
|
+
*/
|
|
5006
4996
|
showRange?: boolean;
|
|
4997
|
+
/**
|
|
4998
|
+
* Shows clickable tick marks and labels at the given interval (`step`/`tickInterval`)
|
|
4999
|
+
*/
|
|
5007
5000
|
showTicks?: boolean;
|
|
5008
|
-
disabled?: boolean;
|
|
5009
|
-
tabIndex?: number;
|
|
5010
|
-
onChange?: ChangeEventHandler<HTMLInputElement>;
|
|
5011
|
-
};
|
|
5012
|
-
export const EuiRangeSlider: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & CommonProps & {
|
|
5013
|
-
id?: string | undefined;
|
|
5014
|
-
name?: string | undefined;
|
|
5015
|
-
min: number;
|
|
5016
|
-
max: number;
|
|
5017
|
-
step?: number | undefined;
|
|
5018
|
-
compressed?: boolean | undefined;
|
|
5019
|
-
isLoading?: boolean | undefined;
|
|
5020
|
-
hasFocus?: boolean | undefined;
|
|
5021
|
-
showRange?: boolean | undefined;
|
|
5022
|
-
showTicks?: boolean | undefined;
|
|
5023
|
-
disabled?: boolean | undefined;
|
|
5024
|
-
tabIndex?: number | undefined;
|
|
5025
|
-
onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
5026
|
-
} & React.RefAttributes<HTMLInputElement>>;
|
|
5027
|
-
|
|
5028
|
-
}
|
|
5029
|
-
declare module '@elastic/eui/src/components/form/range/range_ticks' {
|
|
5030
|
-
import { ButtonHTMLAttributes, MouseEventHandler, FunctionComponent, ReactNode } from 'react';
|
|
5031
|
-
export interface EuiRangeTick {
|
|
5032
|
-
value: number;
|
|
5033
|
-
label: ReactNode;
|
|
5034
5001
|
}
|
|
5035
|
-
export
|
|
5036
|
-
|
|
5037
|
-
tickSequence: number[];
|
|
5038
|
-
value?: number | string | Array<string | number>;
|
|
5039
|
-
min: number;
|
|
5040
|
-
max: number;
|
|
5041
|
-
compressed?: boolean;
|
|
5042
|
-
interval?: number;
|
|
5043
|
-
disabled?: boolean;
|
|
5044
|
-
onChange?: MouseEventHandler<HTMLButtonElement>;
|
|
5045
|
-
};
|
|
5046
|
-
export const EuiRangeTicks: FunctionComponent<EuiRangeTicksProps>;
|
|
5047
|
-
|
|
5048
|
-
}
|
|
5049
|
-
declare module '@elastic/eui/src/components/form/range/range_tooltip' {
|
|
5050
|
-
import { FunctionComponent, ReactNode } from 'react';
|
|
5051
|
-
export interface EuiRangeTooltipProps {
|
|
5052
|
-
value?: number | string;
|
|
5053
|
-
valueAppend?: ReactNode;
|
|
5054
|
-
valuePrepend?: ReactNode;
|
|
5055
|
-
max: number;
|
|
5056
|
-
min: number;
|
|
5002
|
+
export interface _SharedRangeInputProps {
|
|
5003
|
+
id?: string;
|
|
5057
5004
|
name?: string;
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
export const EuiRangeTooltip: FunctionComponent<EuiRangeTooltipProps>;
|
|
5062
|
-
|
|
5063
|
-
}
|
|
5064
|
-
declare module '@elastic/eui/src/components/form/range/range_track' {
|
|
5065
|
-
import { Component, MouseEventHandler, HTMLAttributes } from 'react';
|
|
5066
|
-
import { EuiRangeLevel, LEVEL_COLORS } from '@elastic/eui/src/components/form/range/range_levels';
|
|
5067
|
-
import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks';
|
|
5068
|
-
export { LEVEL_COLORS };
|
|
5069
|
-
export interface EuiRangeTrackProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
5070
|
-
min: number;
|
|
5071
|
-
max: number;
|
|
5072
|
-
step?: number;
|
|
5073
|
-
value?: number | string | Array<string | number>;
|
|
5005
|
+
/**
|
|
5006
|
+
* Only impacts ticks rendered by `showTicks` or inputs rendered by `showInput`.
|
|
5007
|
+
*/
|
|
5074
5008
|
compressed?: boolean;
|
|
5009
|
+
/**
|
|
5010
|
+
* Only impacts inputs rendered by the `showInput` prop.
|
|
5011
|
+
* The range slider itself remains interactable unless `disabled` is applied.
|
|
5012
|
+
*/
|
|
5013
|
+
readOnly?: boolean;
|
|
5014
|
+
/**
|
|
5015
|
+
* Disables both the range track and any input(s)
|
|
5016
|
+
*/
|
|
5075
5017
|
disabled?: boolean;
|
|
5076
|
-
showTicks?: boolean;
|
|
5077
|
-
tickInterval?: number;
|
|
5078
|
-
ticks?: EuiRangeTick[];
|
|
5079
|
-
onChange?: MouseEventHandler<HTMLButtonElement>;
|
|
5080
|
-
levels?: EuiRangeLevel[];
|
|
5081
|
-
}
|
|
5082
|
-
export class EuiRangeTrack extends Component<EuiRangeTrackProps> {
|
|
5083
|
-
validateValueIsInStep: (value: number) => number;
|
|
5084
|
-
calculateSequence: (min: EuiRangeTrackProps['min'], max: EuiRangeTrackProps['max'], interval?: EuiRangeTrackProps['tickInterval']) => number[];
|
|
5085
|
-
calculateTicks: (min: EuiRangeTrackProps['min'], max: EuiRangeTrackProps['max'], step?: EuiRangeTrackProps['step'], tickInterval?: EuiRangeTrackProps['tickInterval'], customTicks?: EuiRangeTick[] | undefined) => number[];
|
|
5086
|
-
render(): JSX.Element;
|
|
5087
|
-
}
|
|
5088
|
-
|
|
5089
|
-
}
|
|
5090
|
-
declare module '@elastic/eui/src/components/form/range/range_wrapper' {
|
|
5091
|
-
import React, { HTMLAttributes } from 'react';
|
|
5092
|
-
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
5093
|
-
export interface EuiRangeWrapperProps extends CommonProps, HTMLAttributes<HTMLDivElement> {
|
|
5094
5018
|
/**
|
|
5095
5019
|
* Expand to fill 100% of the parent.
|
|
5096
5020
|
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
5097
5021
|
* @default false
|
|
5098
5022
|
*/
|
|
5099
5023
|
fullWidth?: boolean;
|
|
5100
|
-
|
|
5024
|
+
/**
|
|
5025
|
+
* Only impacts inputs rendered when the `showInput` prop is set to `"inputWithPopover"`
|
|
5026
|
+
*/
|
|
5027
|
+
isLoading?: boolean;
|
|
5028
|
+
/**
|
|
5029
|
+
* Only impacts inputs rendered by the `showInput` prop
|
|
5030
|
+
*/
|
|
5031
|
+
isInvalid?: boolean;
|
|
5101
5032
|
}
|
|
5102
|
-
export
|
|
5103
|
-
|
|
5104
|
-
}
|
|
5105
|
-
declare module '@elastic/eui/src/components/form/range/range' {
|
|
5106
|
-
|
|
5107
|
-
import React, { Component, ReactNode } from 'react';
|
|
5108
|
-
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
5109
|
-
import { EuiRangeInputProps } from '@elastic/eui/src/components/form/range/range_input';
|
|
5110
|
-
import { EuiRangeLevel } from '@elastic/eui/src/components/form/range/range_levels';
|
|
5111
|
-
import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks';
|
|
5112
|
-
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context';
|
|
5113
|
-
export interface EuiRangeProps extends CommonProps, Omit<EuiRangeInputProps, 'onChange' | 'digitTolerance' | 'isLoading'> {
|
|
5114
|
-
compressed?: boolean;
|
|
5115
|
-
readOnly?: boolean;
|
|
5033
|
+
export type _SharedRangeInputSide = {
|
|
5116
5034
|
/**
|
|
5117
|
-
*
|
|
5118
|
-
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
5119
|
-
* @default false
|
|
5035
|
+
* @default 'max'
|
|
5120
5036
|
*/
|
|
5121
|
-
|
|
5122
|
-
|
|
5037
|
+
side?: 'min' | 'max';
|
|
5038
|
+
};
|
|
5039
|
+
/**
|
|
5040
|
+
* Externally exported props types
|
|
5041
|
+
*/
|
|
5042
|
+
export interface EuiRangeProps extends CommonProps, Omit<InputHTMLAttributes<HTMLInputElement>, 'value' | 'min' | 'max' | 'step' | 'onChange'>, _SingleRangeValue, _SharedRangeDataStructures, _SharedRangeVisualConfiguration, _SharedRangeInputProps {
|
|
5123
5043
|
/**
|
|
5124
|
-
*
|
|
5044
|
+
* Shows a tooltip styled value
|
|
5125
5045
|
*/
|
|
5126
|
-
|
|
5127
|
-
step?: number;
|
|
5046
|
+
showValue?: boolean;
|
|
5128
5047
|
/**
|
|
5129
|
-
*
|
|
5130
|
-
* Pass `'inputWithPopover'` to only show the input but show the range in a dropdown.
|
|
5048
|
+
* Appends to the tooltip
|
|
5131
5049
|
*/
|
|
5132
|
-
|
|
5050
|
+
valueAppend?: ReactNode;
|
|
5133
5051
|
/**
|
|
5134
|
-
*
|
|
5052
|
+
* Prepends to the tooltip
|
|
5135
5053
|
*/
|
|
5136
|
-
|
|
5054
|
+
valuePrepend?: ReactNode;
|
|
5137
5055
|
/**
|
|
5138
|
-
*
|
|
5056
|
+
* Only impacts the input rendered by the `showInput` prop.
|
|
5057
|
+
* `string` | `ReactElement` or an array of these
|
|
5139
5058
|
*/
|
|
5140
|
-
|
|
5059
|
+
prepend?: EuiFormControlLayoutProps['prepend'];
|
|
5141
5060
|
/**
|
|
5142
|
-
*
|
|
5061
|
+
* Only impacts the input rendered by the `showInput` prop.
|
|
5062
|
+
* `string` | `ReactElement` or an array of these
|
|
5143
5063
|
*/
|
|
5144
|
-
|
|
5064
|
+
append?: EuiFormControlLayoutProps['append'];
|
|
5065
|
+
}
|
|
5066
|
+
export interface EuiDualRangeProps extends CommonProps, Omit<InputHTMLAttributes<HTMLInputElement>, 'value' | 'min' | 'max' | 'step' | 'onChange'>, _DualRangeValue, _SharedRangeDataStructures, _SharedRangeVisualConfiguration, _SharedRangeInputProps {
|
|
5145
5067
|
/**
|
|
5146
|
-
*
|
|
5068
|
+
* Creates a draggble highlighted range area
|
|
5147
5069
|
*/
|
|
5148
|
-
|
|
5070
|
+
isDraggable?: boolean;
|
|
5071
|
+
onBlur?: (event: React.FocusEvent<HTMLInputElement> | React.FocusEvent<HTMLDivElement>) => void;
|
|
5072
|
+
onFocus?: (event: React.FocusEvent<HTMLInputElement> | React.FocusEvent<HTMLDivElement>) => void;
|
|
5149
5073
|
/**
|
|
5150
|
-
*
|
|
5074
|
+
* Only impacts inputs rendered when the `showInput` prop is set to `"inputWithPopover"`.
|
|
5075
|
+
* `string` | `ReactElement` or an array of these
|
|
5151
5076
|
*/
|
|
5152
|
-
|
|
5077
|
+
prepend?: EuiFormControlLayoutProps['prepend'];
|
|
5153
5078
|
/**
|
|
5154
|
-
*
|
|
5079
|
+
* Only impacts inputs rendered when the `showInput` prop is set to `"inputWithPopover"`.
|
|
5080
|
+
* `string` | `ReactElement` or an array of these
|
|
5155
5081
|
*/
|
|
5156
|
-
|
|
5082
|
+
append?: EuiFormControlLayoutProps['append'];
|
|
5157
5083
|
/**
|
|
5158
|
-
*
|
|
5084
|
+
* Intended to be used with aria attributes. Some attributes may be overwritten.
|
|
5159
5085
|
*/
|
|
5160
|
-
|
|
5086
|
+
minInputProps?: Omit<InputHTMLAttributes<HTMLInputElement>, 'max' | 'min' | 'value' | 'step' | 'disabled' | 'readonly' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'onKeyDown' | 'onMouseDown'>;
|
|
5161
5087
|
/**
|
|
5162
|
-
*
|
|
5088
|
+
* Intended to be used with aria attributes. Some attributes may be overwritten.
|
|
5163
5089
|
*/
|
|
5164
|
-
|
|
5090
|
+
maxInputProps?: EuiDualRangeProps['minInputProps'];
|
|
5091
|
+
}
|
|
5092
|
+
export interface EuiRangeTick {
|
|
5093
|
+
value: number;
|
|
5094
|
+
label: ReactNode;
|
|
5095
|
+
}
|
|
5096
|
+
export interface EuiRangeLevel extends CommonProps, Pick<_SharedRangeValuesProps, 'min' | 'max'> {
|
|
5097
|
+
/**
|
|
5098
|
+
* Accepts one of `["primary", "success", "warning", "danger"]` or a valid CSS color value.
|
|
5099
|
+
*/
|
|
5100
|
+
color: EuiRangeLevelColor | CSSProperties['color'];
|
|
5101
|
+
}
|
|
5102
|
+
|
|
5103
|
+
}
|
|
5104
|
+
declare module '@elastic/eui/src/components/form/range/range.styles' {
|
|
5105
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5106
|
+
export const euiRangeVariables: (euiThemeContext: UseEuiTheme) => {
|
|
5107
|
+
trackColor: string;
|
|
5108
|
+
highlightColor: string;
|
|
5109
|
+
focusColor: string;
|
|
5110
|
+
thumbHeight: string;
|
|
5111
|
+
thumbWidth: string;
|
|
5112
|
+
thumbBorderWidth: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
5113
|
+
thumbBorderColor: string;
|
|
5114
|
+
thumbBackgroundColor: string;
|
|
5115
|
+
trackWidth: string;
|
|
5116
|
+
trackHeight: string;
|
|
5117
|
+
trackBorderWidth: string;
|
|
5118
|
+
trackBorderColor: string;
|
|
5119
|
+
trackBorderRadius: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
5120
|
+
tickHeight: string;
|
|
5121
|
+
tickWidth: string;
|
|
5122
|
+
disabledOpacity: number;
|
|
5123
|
+
highlightHeight: string;
|
|
5124
|
+
height: string;
|
|
5125
|
+
compressedHeight: string;
|
|
5126
|
+
trackTopPositionWithTicks: string;
|
|
5127
|
+
trackBottomPositionWithTicks: string;
|
|
5128
|
+
trackTopPositionWithoutTicks: string;
|
|
5129
|
+
levelsZIndex: number;
|
|
5130
|
+
highlightZIndex: number;
|
|
5131
|
+
thumbZIndex: number;
|
|
5132
|
+
};
|
|
5133
|
+
export const euiRangeTrackPerBrowser: (content: string) => string;
|
|
5134
|
+
export const euiRangeThumbBorder: (euiThemeContext: UseEuiTheme) => string;
|
|
5135
|
+
export const euiRangeThumbBoxShadow: (euiThemeContext: UseEuiTheme) => string;
|
|
5136
|
+
export const euiRangeThumbFocusBoxShadow: (euiThemeContext: UseEuiTheme) => string;
|
|
5137
|
+
export const euiRangeThumbStyle: (euiThemeContext: UseEuiTheme) => string;
|
|
5138
|
+
export const euiRangeThumbPerBrowser: (content: string) => string;
|
|
5139
|
+
export const euiRangeThumbFocus: (euiThemeContext: UseEuiTheme, color?: string | undefined) => string;
|
|
5140
|
+
export const euiRangeStyles: ({ euiTheme }: UseEuiTheme) => {
|
|
5141
|
+
euiRange: import("@emotion/utils").SerializedStyles;
|
|
5142
|
+
hasInput: import("@emotion/utils").SerializedStyles;
|
|
5143
|
+
euiRange__horizontalSpacer: import("@emotion/utils").SerializedStyles;
|
|
5144
|
+
euiRange__slimHorizontalSpacer: import("@emotion/utils").SerializedStyles;
|
|
5145
|
+
};
|
|
5146
|
+
|
|
5147
|
+
}
|
|
5148
|
+
declare module '@elastic/eui/src/components/form/range/range_draggable.styles' {
|
|
5149
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5150
|
+
export const euiRangeDraggableStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5151
|
+
euiRangeDraggable: import("@emotion/utils").SerializedStyles;
|
|
5152
|
+
hasTicks: import("@emotion/utils").SerializedStyles;
|
|
5153
|
+
disabled: import("@emotion/utils").SerializedStyles;
|
|
5154
|
+
};
|
|
5155
|
+
export const euiRangeDraggableInnerStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5156
|
+
euiRangeDraggable__inner: import("@emotion/utils").SerializedStyles;
|
|
5157
|
+
enabled: import("@emotion/utils").SerializedStyles;
|
|
5158
|
+
disabled: import("@emotion/utils").SerializedStyles;
|
|
5159
|
+
};
|
|
5160
|
+
|
|
5161
|
+
}
|
|
5162
|
+
declare module '@elastic/eui/src/components/form/range/range_draggable' {
|
|
5163
|
+
import { FunctionComponent, HTMLAttributes } from 'react';
|
|
5164
|
+
import type { EuiDualRangeProps } from '@elastic/eui/src/components/form/range/types';
|
|
5165
|
+
export interface EuiRangeDraggableProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>, Pick<EuiDualRangeProps, 'min' | 'max' | 'value' | 'disabled' | 'showTicks'> {
|
|
5166
|
+
lowerPosition: string;
|
|
5167
|
+
upperPosition: string;
|
|
5168
|
+
onChange: (x: number, isFirstInteraction?: boolean) => void;
|
|
5169
|
+
}
|
|
5170
|
+
export const EuiRangeDraggable: FunctionComponent<EuiRangeDraggableProps>;
|
|
5171
|
+
|
|
5172
|
+
}
|
|
5173
|
+
declare module '@elastic/eui/src/components/form/range/range_highlight.styles' {
|
|
5174
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5175
|
+
export const euiRangeHighlightStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5176
|
+
euiRangeHighlight: import("@emotion/utils").SerializedStyles;
|
|
5177
|
+
hasTicks: import("@emotion/utils").SerializedStyles;
|
|
5178
|
+
};
|
|
5179
|
+
export const euiRangeHighlightProgressStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5180
|
+
euiRangeHighlight__progress: import("@emotion/utils").SerializedStyles;
|
|
5181
|
+
};
|
|
5182
|
+
export const euiRangeHighlightLevelsWrapperStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5183
|
+
euiRangeHighlight__levelsWrapper: import("@emotion/utils").SerializedStyles;
|
|
5184
|
+
};
|
|
5185
|
+
export const euiRangeHighlightLevelsStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5186
|
+
euiRangeHighlight__levels: import("@emotion/utils").SerializedStyles;
|
|
5187
|
+
};
|
|
5188
|
+
|
|
5189
|
+
}
|
|
5190
|
+
declare module '@elastic/eui/src/components/form/range/range_levels.styles' {
|
|
5191
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5192
|
+
export const euiRangeLevelsStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5193
|
+
euiRangeLevels: import("@emotion/utils").SerializedStyles;
|
|
5194
|
+
hasRange: import("@emotion/utils").SerializedStyles;
|
|
5195
|
+
hasTicks: import("@emotion/utils").SerializedStyles;
|
|
5196
|
+
};
|
|
5197
|
+
export const euiRangeLevelStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5198
|
+
euiRangeLevel: import("@emotion/utils").SerializedStyles;
|
|
5199
|
+
primary: import("@emotion/utils").SerializedStyles;
|
|
5200
|
+
success: import("@emotion/utils").SerializedStyles;
|
|
5201
|
+
warning: import("@emotion/utils").SerializedStyles;
|
|
5202
|
+
danger: import("@emotion/utils").SerializedStyles;
|
|
5203
|
+
customColor: import("@emotion/utils").SerializedStyles;
|
|
5204
|
+
};
|
|
5205
|
+
|
|
5206
|
+
}
|
|
5207
|
+
declare module '@elastic/eui/src/components/form/range/range_levels' {
|
|
5208
|
+
import { CSSProperties, FunctionComponent } from 'react';
|
|
5209
|
+
import type { EuiRangeProps } from '@elastic/eui/src/components/form/range/types';
|
|
5210
|
+
export interface EuiRangeLevelsProps extends Pick<EuiRangeProps, 'levels' | 'min' | 'max' | 'showTicks' | 'showRange'> {
|
|
5211
|
+
trackWidth: number;
|
|
5212
|
+
style?: CSSProperties;
|
|
5213
|
+
}
|
|
5214
|
+
export const EuiRangeLevels: FunctionComponent<EuiRangeLevelsProps>;
|
|
5215
|
+
|
|
5216
|
+
}
|
|
5217
|
+
declare module '@elastic/eui/src/components/form/range/range_highlight' {
|
|
5218
|
+
import React, { FunctionComponent } from 'react';
|
|
5219
|
+
import type { EuiRangeProps } from '@elastic/eui/src/components/form/range/types';
|
|
5220
|
+
export interface EuiRangeHighlightProps extends Pick<EuiRangeProps, 'min' | 'max' | 'levels' | 'showTicks'> {
|
|
5221
|
+
className?: string;
|
|
5222
|
+
background?: string;
|
|
5223
|
+
trackWidth: number;
|
|
5224
|
+
lowerValue: number;
|
|
5225
|
+
upperValue: number;
|
|
5226
|
+
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
5227
|
+
}
|
|
5228
|
+
export const EuiRangeHighlight: FunctionComponent<EuiRangeHighlightProps>;
|
|
5229
|
+
|
|
5230
|
+
}
|
|
5231
|
+
declare module '@elastic/eui/src/components/form/range/range_input.styles' {
|
|
5232
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5233
|
+
export const euiRangeInputStyles: ({ euiTheme }: UseEuiTheme) => {
|
|
5234
|
+
euiRangeInput: import("@emotion/utils").SerializedStyles;
|
|
5235
|
+
};
|
|
5236
|
+
|
|
5237
|
+
}
|
|
5238
|
+
declare module '@elastic/eui/src/components/form/range/range_input' {
|
|
5239
|
+
import { FunctionComponent } from 'react';
|
|
5240
|
+
import { EuiFieldNumberProps } from '@elastic/eui/src/components/form/field_number';
|
|
5241
|
+
import type { _SingleRangeValue, _SharedRangeInputSide } from '@elastic/eui/src/components/form/range/types';
|
|
5242
|
+
export interface EuiRangeInputProps extends Omit<EuiFieldNumberProps, 'max' | 'min' | 'value' | 'step'>, Omit<_SingleRangeValue, 'onChange'>, _SharedRangeInputSide {
|
|
5243
|
+
autoSize?: boolean;
|
|
5244
|
+
digitTolerance: number;
|
|
5245
|
+
}
|
|
5246
|
+
export const EuiRangeInput: FunctionComponent<EuiRangeInputProps>;
|
|
5247
|
+
|
|
5248
|
+
}
|
|
5249
|
+
declare module '@elastic/eui/src/components/form/range/range_label.styles' {
|
|
5250
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5251
|
+
export const euiRangeLabelStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5252
|
+
euiRangeLabel: import("@emotion/utils").SerializedStyles;
|
|
5253
|
+
min: import("@emotion/utils").SerializedStyles;
|
|
5254
|
+
max: import("@emotion/utils").SerializedStyles;
|
|
5255
|
+
isDisabled: import("@emotion/utils").SerializedStyles;
|
|
5256
|
+
};
|
|
5257
|
+
|
|
5258
|
+
}
|
|
5259
|
+
declare module '@elastic/eui/src/components/form/range/range_label' {
|
|
5260
|
+
import { FunctionComponent } from 'react';
|
|
5261
|
+
import type { _SharedRangeInputProps, _SharedRangeInputSide } from '@elastic/eui/src/components/form/range/types';
|
|
5262
|
+
export interface EuiRangeLabelProps extends Pick<_SharedRangeInputProps, 'disabled'>, _SharedRangeInputSide {
|
|
5165
5263
|
/**
|
|
5166
|
-
*
|
|
5264
|
+
* ReactNode to render as this component's content
|
|
5167
5265
|
*/
|
|
5168
|
-
|
|
5169
|
-
onChange?: (event: React.ChangeEvent<HTMLInputElement> | React.MouseEvent<HTMLButtonElement>, isValid: boolean) => void;
|
|
5170
|
-
}
|
|
5171
|
-
export class EuiRange extends Component<EuiRangeProps> {
|
|
5172
|
-
static contextType: React.Context<FormContextValue>;
|
|
5173
|
-
static defaultProps: {
|
|
5174
|
-
min: number;
|
|
5175
|
-
max: number;
|
|
5176
|
-
step: number;
|
|
5177
|
-
compressed: boolean;
|
|
5178
|
-
isLoading: boolean;
|
|
5179
|
-
showLabels: boolean;
|
|
5180
|
-
showInput: boolean;
|
|
5181
|
-
showRange: boolean;
|
|
5182
|
-
showTicks: boolean;
|
|
5183
|
-
showValue: boolean;
|
|
5184
|
-
levels: never[];
|
|
5185
|
-
};
|
|
5186
|
-
preventPopoverClose: boolean;
|
|
5187
|
-
state: {
|
|
5188
|
-
id: string;
|
|
5189
|
-
isPopoverOpen: boolean;
|
|
5190
|
-
};
|
|
5191
|
-
handleOnChange: (e: React.ChangeEvent<HTMLInputElement> | React.MouseEvent<HTMLButtonElement>) => void;
|
|
5192
|
-
get isValid(): boolean;
|
|
5193
|
-
onInputFocus: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
5194
|
-
onInputBlur: (e: React.FocusEvent<HTMLInputElement>) => NodeJS.Timeout;
|
|
5195
|
-
closePopover: () => void;
|
|
5196
|
-
render(): JSX.Element;
|
|
5266
|
+
children: string | number;
|
|
5197
5267
|
}
|
|
5268
|
+
export const EuiRangeLabel: FunctionComponent<EuiRangeLabelProps>;
|
|
5198
5269
|
|
|
5199
5270
|
}
|
|
5200
|
-
declare module '@elastic/eui/src/components/form/range/
|
|
5201
|
-
import {
|
|
5202
|
-
export
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5271
|
+
declare module '@elastic/eui/src/components/form/range/range_slider.styles' {
|
|
5272
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5273
|
+
export const euiRangeSliderStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5274
|
+
euiRangeSlider: import("@emotion/utils").SerializedStyles;
|
|
5275
|
+
hasTicks: import("@emotion/utils").SerializedStyles;
|
|
5276
|
+
hasRange: import("@emotion/utils").SerializedStyles;
|
|
5277
|
+
hasLevels: import("@emotion/utils").SerializedStyles;
|
|
5278
|
+
};
|
|
5279
|
+
export const euiRangeSliderThumbStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5280
|
+
thumb: import("@emotion/utils").SerializedStyles;
|
|
5281
|
+
};
|
|
5282
|
+
|
|
5283
|
+
}
|
|
5284
|
+
declare module '@elastic/eui/src/components/form/range/range_slider' {
|
|
5285
|
+
import React, { ChangeEventHandler, InputHTMLAttributes } from 'react';
|
|
5286
|
+
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
5287
|
+
import type { EuiRangeProps, EuiRangeLevel } from '@elastic/eui/src/components/form/range/types';
|
|
5288
|
+
export interface EuiRangeSliderProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'min' | 'max' | 'step'>, CommonProps, Pick<EuiRangeProps, 'id' | 'name' | 'tabIndex' | 'min' | 'max' | 'step' | 'disabled' | 'isLoading' | 'showRange' | 'showTicks'> {
|
|
5289
|
+
onChange?: ChangeEventHandler<HTMLInputElement>;
|
|
5290
|
+
thumbColor?: EuiRangeLevel['color'];
|
|
5212
5291
|
}
|
|
5213
|
-
export const
|
|
5292
|
+
export const EuiRangeSlider: React.ForwardRefExoticComponent<EuiRangeSliderProps & React.RefAttributes<HTMLInputElement>>;
|
|
5293
|
+
|
|
5294
|
+
}
|
|
5295
|
+
declare module '@elastic/eui/src/components/form/range/range_thumb.styles' {
|
|
5296
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5297
|
+
export const euiRangeThumbStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5298
|
+
euiRangeThumb: import("@emotion/utils").SerializedStyles;
|
|
5299
|
+
hasTicks: import("@emotion/utils").SerializedStyles;
|
|
5300
|
+
};
|
|
5214
5301
|
|
|
5215
5302
|
}
|
|
5216
5303
|
declare module '@elastic/eui/src/components/form/range/range_thumb' {
|
|
5217
5304
|
import { FunctionComponent, HTMLAttributes } from 'react';
|
|
5218
5305
|
import { CommonProps, ExclusiveUnion } from '@elastic/eui/src/components/common';
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
max: number;
|
|
5222
|
-
value?: number | string;
|
|
5223
|
-
disabled?: boolean;
|
|
5224
|
-
showInput?: boolean;
|
|
5225
|
-
showTicks?: boolean;
|
|
5306
|
+
import type { EuiRangeProps } from '@elastic/eui/src/components/form/range/types';
|
|
5307
|
+
interface BaseProps extends CommonProps, Pick<EuiRangeProps, 'min' | 'max' | 'value' | 'disabled' | 'showInput' | 'showTicks'> {
|
|
5226
5308
|
}
|
|
5227
5309
|
interface ButtonLike extends BaseProps, HTMLAttributes<HTMLButtonElement> {
|
|
5228
5310
|
}
|
|
@@ -5232,78 +5314,92 @@ declare module '@elastic/eui/src/components/form/range/range_thumb' {
|
|
|
5232
5314
|
export const EuiRangeThumb: FunctionComponent<EuiRangeThumbProps>;
|
|
5233
5315
|
export {};
|
|
5234
5316
|
|
|
5317
|
+
}
|
|
5318
|
+
declare module '@elastic/eui/src/components/form/range/range_ticks.styles' {
|
|
5319
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5320
|
+
export const euiRangeTicksStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5321
|
+
euiRangeTicks: import("@emotion/utils").SerializedStyles;
|
|
5322
|
+
isCustom: import("@emotion/utils").SerializedStyles;
|
|
5323
|
+
regular: import("@emotion/utils").SerializedStyles;
|
|
5324
|
+
compressed: import("@emotion/utils").SerializedStyles;
|
|
5325
|
+
};
|
|
5326
|
+
export const euiRangeTickStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5327
|
+
euiRangeTick: import("@emotion/utils").SerializedStyles;
|
|
5328
|
+
compressed: import("@emotion/utils").SerializedStyles;
|
|
5329
|
+
regular: import("@emotion/utils").SerializedStyles;
|
|
5330
|
+
selected: import("@emotion/utils").SerializedStyles;
|
|
5331
|
+
isCustom: import("@emotion/utils").SerializedStyles;
|
|
5332
|
+
hasPseudoTickMark: import("@emotion/utils").SerializedStyles;
|
|
5333
|
+
euiRangeTick__pseudo: import("@emotion/utils").SerializedStyles;
|
|
5334
|
+
isMin: import("@emotion/utils").SerializedStyles;
|
|
5335
|
+
isMax: import("@emotion/utils").SerializedStyles;
|
|
5336
|
+
};
|
|
5337
|
+
|
|
5338
|
+
}
|
|
5339
|
+
declare module '@elastic/eui/src/components/form/range/range_ticks' {
|
|
5340
|
+
import { ButtonHTMLAttributes, MouseEventHandler, FunctionComponent } from 'react';
|
|
5341
|
+
import type { _SharedRangesValues, _SharedRangeDataStructures, _SharedRangeInputProps } from '@elastic/eui/src/components/form/range/types';
|
|
5342
|
+
export interface EuiRangeTicksProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'value'>, _SharedRangesValues, Pick<_SharedRangeInputProps, 'compressed' | 'disabled'>, Pick<_SharedRangeDataStructures, 'ticks' | 'tickInterval'> {
|
|
5343
|
+
tickSequence: number[];
|
|
5344
|
+
trackWidth: number;
|
|
5345
|
+
onChange?: MouseEventHandler<HTMLButtonElement>;
|
|
5346
|
+
}
|
|
5347
|
+
export const EuiRangeTicks: FunctionComponent<EuiRangeTicksProps>;
|
|
5348
|
+
|
|
5349
|
+
}
|
|
5350
|
+
declare module '@elastic/eui/src/components/form/range/range_track.styles' {
|
|
5351
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5352
|
+
export const euiRangeTrackStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5353
|
+
euiRangeTrack: import("@emotion/utils").SerializedStyles;
|
|
5354
|
+
hasTicks: import("@emotion/utils").SerializedStyles;
|
|
5355
|
+
disabled: import("@emotion/utils").SerializedStyles;
|
|
5356
|
+
hasLevels: import("@emotion/utils").SerializedStyles;
|
|
5357
|
+
};
|
|
5358
|
+
|
|
5359
|
+
}
|
|
5360
|
+
declare module '@elastic/eui/src/components/form/range/range_track' {
|
|
5361
|
+
import React, { FunctionComponent, MouseEventHandler, HTMLAttributes, ReactNode } from 'react';
|
|
5362
|
+
import type { _SharedRangesValues, _SharedRangeDataStructures, _SharedRangeVisualConfiguration, _SharedRangeInputProps } from '@elastic/eui/src/components/form/range/types';
|
|
5363
|
+
export interface EuiRangeTrackProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>, _SharedRangesValues, _SharedRangeDataStructures, Pick<_SharedRangeVisualConfiguration, 'showTicks' | 'showRange'>, Pick<_SharedRangeInputProps, 'compressed' | 'disabled'> {
|
|
5364
|
+
onChange?: MouseEventHandler<HTMLButtonElement>;
|
|
5365
|
+
children?: ReactNode | ((trackWidth: number) => React.ReactNode);
|
|
5366
|
+
}
|
|
5367
|
+
export const EuiRangeTrack: FunctionComponent<EuiRangeTrackProps>;
|
|
5368
|
+
|
|
5369
|
+
}
|
|
5370
|
+
declare module '@elastic/eui/src/components/form/range/range_wrapper.styles' {
|
|
5371
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5372
|
+
export const euiRangeWrapperStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5373
|
+
euiRangeWrapper: import("@emotion/utils").SerializedStyles;
|
|
5374
|
+
regular: import("@emotion/utils").SerializedStyles;
|
|
5375
|
+
compressed: import("@emotion/utils").SerializedStyles;
|
|
5376
|
+
fullWidth: import("@emotion/utils").SerializedStyles;
|
|
5377
|
+
};
|
|
5378
|
+
|
|
5379
|
+
}
|
|
5380
|
+
declare module '@elastic/eui/src/components/form/range/range_wrapper' {
|
|
5381
|
+
import React, { HTMLAttributes } from 'react';
|
|
5382
|
+
import { CommonProps } from '@elastic/eui/src/components/common';
|
|
5383
|
+
import type { _SharedRangeInputProps } from '@elastic/eui/src/components/form/range/types';
|
|
5384
|
+
export interface EuiRangeWrapperProps extends CommonProps, HTMLAttributes<HTMLDivElement>, Pick<_SharedRangeInputProps, 'fullWidth' | 'compressed'> {
|
|
5385
|
+
}
|
|
5386
|
+
export const EuiRangeWrapper: React.ForwardRefExoticComponent<EuiRangeWrapperProps & React.RefAttributes<HTMLDivElement>>;
|
|
5387
|
+
|
|
5388
|
+
}
|
|
5389
|
+
declare module '@elastic/eui/src/components/form/range/dual_range.styles' {
|
|
5390
|
+
export const euiDualRangeStyles: () => {
|
|
5391
|
+
euiDualRange: import("@emotion/utils").SerializedStyles;
|
|
5392
|
+
euiDualRange__slider: import("@emotion/utils").SerializedStyles;
|
|
5393
|
+
};
|
|
5394
|
+
|
|
5235
5395
|
}
|
|
5236
5396
|
declare module '@elastic/eui/src/components/form/range/dual_range' {
|
|
5237
5397
|
|
|
5238
5398
|
import React, { Component } from 'react';
|
|
5239
|
-
import {
|
|
5240
|
-
import {
|
|
5241
|
-
import {
|
|
5242
|
-
|
|
5243
|
-
import { EuiRangeSliderProps } from '@elastic/eui/src/components/form/range/range_slider';
|
|
5244
|
-
import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks';
|
|
5245
|
-
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context'; type ValueMember = number | string;
|
|
5246
|
-
export interface EuiDualRangeProps extends Omit<EuiRangeSliderProps, 'onChange' | 'onBlur' | 'onFocus' | 'value' | 'isLoading'> {
|
|
5247
|
-
value: [ValueMember, ValueMember];
|
|
5248
|
-
onBlur?: (event: React.FocusEvent<HTMLInputElement> | React.FocusEvent<HTMLDivElement>) => void;
|
|
5249
|
-
onFocus?: (event: React.FocusEvent<HTMLInputElement> | React.FocusEvent<HTMLDivElement>) => void;
|
|
5250
|
-
onChange: (values: [ValueMember, ValueMember], isValid: boolean, event?: React.ChangeEvent<HTMLInputElement> | React.MouseEvent<HTMLButtonElement> | React.KeyboardEvent<HTMLInputElement> | React.KeyboardEvent<HTMLDivElement>) => void;
|
|
5251
|
-
/**
|
|
5252
|
-
* Expand to fill 100% of the parent.
|
|
5253
|
-
* Defaults to `fullWidth` prop of `<EuiForm>`.
|
|
5254
|
-
* @default false
|
|
5255
|
-
*/
|
|
5256
|
-
fullWidth?: boolean;
|
|
5257
|
-
isInvalid?: boolean;
|
|
5258
|
-
/**
|
|
5259
|
-
* Create colored indicators for certain intervals
|
|
5260
|
-
*/
|
|
5261
|
-
levels?: EuiRangeLevel[];
|
|
5262
|
-
/**
|
|
5263
|
-
* Shows static min/max labels on the sides of the range slider
|
|
5264
|
-
*/
|
|
5265
|
-
showLabels?: boolean;
|
|
5266
|
-
/**
|
|
5267
|
-
* Pass `true` to displays an extra input control for direct manipulation.
|
|
5268
|
-
* Pass `'inputWithPopover'` to only show the input but show the range in a dropdown.
|
|
5269
|
-
*/
|
|
5270
|
-
showInput?: EuiRangeProps['showInput'];
|
|
5271
|
-
/**
|
|
5272
|
-
* Modifies the number of tick marks and at what interval
|
|
5273
|
-
*/
|
|
5274
|
-
tickInterval?: number;
|
|
5275
|
-
/**
|
|
5276
|
-
* Specified ticks at specified values
|
|
5277
|
-
*/
|
|
5278
|
-
ticks?: EuiRangeTick[];
|
|
5279
|
-
/**
|
|
5280
|
-
* Creates an input group with element(s) coming before input. Will only show if `showInput = inputWithPopover`.
|
|
5281
|
-
* `string` | `ReactElement` or an array of these
|
|
5282
|
-
*/
|
|
5283
|
-
prepend?: EuiFormControlLayoutProps['prepend'];
|
|
5284
|
-
/**
|
|
5285
|
-
* Creates an input group with element(s) coming after input. Will only show if `showInput = inputWithPopover`.
|
|
5286
|
-
* `string` | `ReactElement` or an array of these
|
|
5287
|
-
*/
|
|
5288
|
-
append?: EuiFormControlLayoutProps['append'];
|
|
5289
|
-
/**
|
|
5290
|
-
* Intended to be uses with aria attributes. Some attributes may be overwritten.
|
|
5291
|
-
*/
|
|
5292
|
-
minInputProps?: Partial<EuiRangeInputProps>;
|
|
5293
|
-
/**
|
|
5294
|
-
* Intended to be uses with aria attributes. Some attributes may be overwritten.
|
|
5295
|
-
*/
|
|
5296
|
-
maxInputProps?: Partial<EuiRangeInputProps>;
|
|
5297
|
-
/**
|
|
5298
|
-
* Creates a draggble highlighted range area
|
|
5299
|
-
*/
|
|
5300
|
-
isDraggable?: boolean;
|
|
5301
|
-
/**
|
|
5302
|
-
* Will only show if `showInput = inputWithPopover`
|
|
5303
|
-
*/
|
|
5304
|
-
isLoading?: boolean;
|
|
5305
|
-
}
|
|
5306
|
-
export class EuiDualRange extends Component<EuiDualRangeProps> {
|
|
5399
|
+
import { WithEuiThemeProps } from '@elastic/eui/src/services';
|
|
5400
|
+
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context';
|
|
5401
|
+
import type { EuiDualRangeProps, _SingleRangeValue } from '@elastic/eui/src/components/form/range/types'; type ValueMember = _SingleRangeValue['value'];
|
|
5402
|
+
export class EuiDualRangeClass extends Component<EuiDualRangeProps & WithEuiThemeProps> {
|
|
5307
5403
|
static contextType: React.Context<FormContextValue>;
|
|
5308
5404
|
static defaultProps: {
|
|
5309
5405
|
min: number;
|
|
@@ -5319,7 +5415,6 @@ declare module '@elastic/eui/src/components/form/range/dual_range' {
|
|
|
5319
5415
|
};
|
|
5320
5416
|
state: {
|
|
5321
5417
|
id: string;
|
|
5322
|
-
hasFocus: boolean;
|
|
5323
5418
|
rangeSliderRefAvailable: boolean;
|
|
5324
5419
|
isPopoverOpen: boolean;
|
|
5325
5420
|
rangeWidth: undefined;
|
|
@@ -5330,8 +5425,8 @@ declare module '@elastic/eui/src/components/form/range/dual_range' {
|
|
|
5330
5425
|
handleRangeSliderRefUpdate: (ref: HTMLInputElement | null) => void;
|
|
5331
5426
|
private leftPosition;
|
|
5332
5427
|
private dragAcc;
|
|
5333
|
-
get lowerValue():
|
|
5334
|
-
get upperValue():
|
|
5428
|
+
get lowerValue(): string | number;
|
|
5429
|
+
get upperValue(): string | number;
|
|
5335
5430
|
get lowerValueIsValid(): boolean;
|
|
5336
5431
|
get upperValueIsValid(): boolean;
|
|
5337
5432
|
get isValid(): boolean;
|
|
@@ -5354,7 +5449,6 @@ declare module '@elastic/eui/src/components/form/range/dual_range' {
|
|
|
5354
5449
|
calculateThumbPositionStyle: (value: number, width?: number | undefined) => {
|
|
5355
5450
|
left: string;
|
|
5356
5451
|
};
|
|
5357
|
-
toggleHasFocus: (shouldFocused?: boolean) => void;
|
|
5358
5452
|
onThumbFocus: (e: React.FocusEvent<HTMLDivElement>) => void;
|
|
5359
5453
|
onThumbBlur: (e: React.FocusEvent<HTMLDivElement>) => void;
|
|
5360
5454
|
onInputFocus: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
@@ -5365,14 +5459,72 @@ declare module '@elastic/eui/src/components/form/range/dual_range' {
|
|
|
5365
5459
|
handleDrag: (x: number, isFirstInteraction?: boolean | undefined) => void;
|
|
5366
5460
|
render(): JSX.Element;
|
|
5367
5461
|
}
|
|
5462
|
+
export const EuiDualRange: React.ForwardRefExoticComponent<Omit<EuiDualRangeProps, "theme"> & React.RefAttributes<Omit<EuiDualRangeProps, "theme">>>;
|
|
5368
5463
|
export {};
|
|
5369
5464
|
|
|
5465
|
+
}
|
|
5466
|
+
declare module '@elastic/eui/src/components/form/range/range_tooltip.styles' {
|
|
5467
|
+
import { UseEuiTheme } from '@elastic/eui/src/services';
|
|
5468
|
+
export const euiRangeTooltipStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5469
|
+
euiRangeTooltip: import("@emotion/utils").SerializedStyles;
|
|
5470
|
+
};
|
|
5471
|
+
export const euiRangeTooltipValueStyles: (euiThemeContext: UseEuiTheme) => {
|
|
5472
|
+
euiRangeTooltip__value: import("@emotion/utils").SerializedStyles;
|
|
5473
|
+
left: import("@emotion/utils").SerializedStyles;
|
|
5474
|
+
right: import("@emotion/utils").SerializedStyles;
|
|
5475
|
+
hasTicks: import("@emotion/utils").SerializedStyles;
|
|
5476
|
+
};
|
|
5477
|
+
|
|
5478
|
+
}
|
|
5479
|
+
declare module '@elastic/eui/src/components/form/range/range_tooltip' {
|
|
5480
|
+
import { FunctionComponent } from 'react';
|
|
5481
|
+
import type { EuiRangeProps } from '@elastic/eui/src/components/form/range/types';
|
|
5482
|
+
export interface EuiRangeTooltipProps extends Pick<EuiRangeProps, 'min' | 'max' | 'value' | 'valueAppend' | 'valuePrepend' | 'showTicks'> {
|
|
5483
|
+
name?: string;
|
|
5484
|
+
}
|
|
5485
|
+
export const EuiRangeTooltip: FunctionComponent<EuiRangeTooltipProps>;
|
|
5486
|
+
|
|
5487
|
+
}
|
|
5488
|
+
declare module '@elastic/eui/src/components/form/range/range' {
|
|
5489
|
+
|
|
5490
|
+
import React, { Component } from 'react';
|
|
5491
|
+
import { WithEuiThemeProps } from '@elastic/eui/src/services';
|
|
5492
|
+
import { FormContextValue } from '@elastic/eui/src/components/form/eui_form_context';
|
|
5493
|
+
import type { EuiRangeProps } from '@elastic/eui/src/components/form/range/types';
|
|
5494
|
+
export class EuiRangeClass extends Component<EuiRangeProps & WithEuiThemeProps> {
|
|
5495
|
+
static contextType: React.Context<FormContextValue>;
|
|
5496
|
+
static defaultProps: {
|
|
5497
|
+
min: number;
|
|
5498
|
+
max: number;
|
|
5499
|
+
step: number;
|
|
5500
|
+
compressed: boolean;
|
|
5501
|
+
isLoading: boolean;
|
|
5502
|
+
showLabels: boolean;
|
|
5503
|
+
showInput: boolean;
|
|
5504
|
+
showRange: boolean;
|
|
5505
|
+
showTicks: boolean;
|
|
5506
|
+
showValue: boolean;
|
|
5507
|
+
levels: never[];
|
|
5508
|
+
};
|
|
5509
|
+
preventPopoverClose: boolean;
|
|
5510
|
+
state: {
|
|
5511
|
+
id: string;
|
|
5512
|
+
isPopoverOpen: boolean;
|
|
5513
|
+
};
|
|
5514
|
+
handleOnChange: (e: React.ChangeEvent<HTMLInputElement> | React.MouseEvent<HTMLButtonElement>) => void;
|
|
5515
|
+
get isValid(): boolean;
|
|
5516
|
+
onInputFocus: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
5517
|
+
onInputBlur: (e: React.FocusEvent<HTMLInputElement>) => NodeJS.Timeout;
|
|
5518
|
+
closePopover: () => void;
|
|
5519
|
+
render(): JSX.Element;
|
|
5520
|
+
}
|
|
5521
|
+
export const EuiRange: React.ForwardRefExoticComponent<Omit<EuiRangeProps, "theme"> & React.RefAttributes<Omit<EuiRangeProps, "theme">>>;
|
|
5522
|
+
|
|
5370
5523
|
}
|
|
5371
5524
|
declare module '@elastic/eui/src/components/form/range' {
|
|
5372
|
-
export type { EuiDualRangeProps } from '@elastic/eui/src/components/form/range/dual_range';
|
|
5373
5525
|
export { EuiDualRange } from '@elastic/eui/src/components/form/range/dual_range';
|
|
5374
|
-
export type { EuiRangeProps } from '@elastic/eui/src/components/form/range/range';
|
|
5375
5526
|
export { EuiRange } from '@elastic/eui/src/components/form/range/range';
|
|
5527
|
+
export type { EuiRangeProps, EuiDualRangeProps, EuiRangeTick, EuiRangeLevel, } from '@elastic/eui/src/components/form/range/types';
|
|
5376
5528
|
|
|
5377
5529
|
}
|
|
5378
5530
|
declare module '@elastic/eui/src/components/form/select/select' {
|
|
@@ -6524,6 +6676,7 @@ declare module '@elastic/eui/src/themes/amsterdam/global_styling/variables/_brea
|
|
|
6524
6676
|
|
|
6525
6677
|
}
|
|
6526
6678
|
declare module '@elastic/eui/src/global_styling/functions/logicals' {
|
|
6679
|
+
import { CSSProperties } from 'react';
|
|
6527
6680
|
/**
|
|
6528
6681
|
* EUI utilizes logical CSS properties to enable directional writing-modes.
|
|
6529
6682
|
* To encourage use of logical properties, we provide a few helper utilities to
|
|
@@ -6595,6 +6748,7 @@ declare module '@elastic/eui/src/global_styling/functions/logicals' {
|
|
|
6595
6748
|
"border-top-right-radius": string;
|
|
6596
6749
|
"border-bottom-left-radius": string;
|
|
6597
6750
|
"border-bottom-right-radius": string;
|
|
6751
|
+
_shorthands: string[];
|
|
6598
6752
|
};
|
|
6599
6753
|
export const LOGICAL_PROPERTIES: ("left" | "right" | "top" | "width" | "height" | "max-height" | "max-width" | "min-height" | "min-width" | "bottom" | "horizontal" | "vertical" | "margin-left" | "margin-right" | "margin-top" | "margin-bottom" | "margin-horizontal" | "margin-vertical" | "padding-left" | "padding-right" | "padding-top" | "padding-bottom" | "padding-horizontal" | "padding-vertical" | "overflow-x" | "overflow-y" | "border-horizontal" | "border-horizontal-color" | "border-horizontal-width" | "border-horizontal-style" | "border-vertical" | "border-vertical-color" | "border-vertical-width" | "border-vertical-style" | "border-bottom" | "border-bottom-color" | "border-bottom-style" | "border-bottom-width" | "border-top" | "border-top-color" | "border-top-style" | "border-top-width" | "border-right" | "border-right-color" | "border-right-style" | "border-right-width" | "border-left" | "border-left-color" | "border-left-style" | "border-left-width" | "border-top-left-radius" | "border-top-right-radius" | "border-bottom-left-radius" | "border-bottom-right-radius")[];
|
|
6600
6754
|
export type LogicalProperties = typeof LOGICAL_PROPERTIES[number];
|
|
@@ -6625,6 +6779,14 @@ declare module '@elastic/eui/src/global_styling/functions/logicals' {
|
|
|
6625
6779
|
export const logicalStyle: (property: LogicalProperties, value?: any) => {
|
|
6626
6780
|
[x: string]: any;
|
|
6627
6781
|
};
|
|
6782
|
+
/**
|
|
6783
|
+
* Given a style object with any amount of unknown CSS properties,
|
|
6784
|
+
* find ones that can be converted to logical properties and convert them
|
|
6785
|
+
*
|
|
6786
|
+
* @param styleObject - A React object of camelCased styles
|
|
6787
|
+
* @returns `object`
|
|
6788
|
+
*/
|
|
6789
|
+
export const logicalStyles: (styleObject: CSSProperties) => Record<string, string | number | undefined>;
|
|
6628
6790
|
/**
|
|
6629
6791
|
*
|
|
6630
6792
|
* @param width A string value for the LTR width
|
|
@@ -6667,6 +6829,33 @@ declare module '@elastic/eui/src/global_styling/functions/logicals' {
|
|
|
6667
6829
|
textAlign: string;
|
|
6668
6830
|
};
|
|
6669
6831
|
|
|
6832
|
+
}
|
|
6833
|
+
declare module '@elastic/eui/src/global_styling/functions/logical_shorthands' {
|
|
6834
|
+
export const LOGICAL_SHORTHANDS: string[];
|
|
6835
|
+
export type LogicalShorthands = typeof LOGICAL_SHORTHANDS[number];
|
|
6836
|
+
/**
|
|
6837
|
+
* Unfortunately, shorthand properties that describe boxes
|
|
6838
|
+
* (@see https://developer.mozilla.org/en-US/docs/Web/CSS/Shorthand_properties#edges_of_a_box)
|
|
6839
|
+
* do not currently automatically respond to logical changes in display direction
|
|
6840
|
+
* (@see https://github.com/w3c/csswg-drafts/issues/1282)
|
|
6841
|
+
*
|
|
6842
|
+
* This utility is essentially a stop-gap for those shorthand properties,
|
|
6843
|
+
* converting them to corresponding longer logical `-inline` and `-block` properties
|
|
6844
|
+
*
|
|
6845
|
+
* 🗑 NOTE: This file is in a separate util file from logicals.ts due to its relatively
|
|
6846
|
+
* convoluted logic, & to make deleting it easier when an official CSS spec is implemented.
|
|
6847
|
+
*/
|
|
6848
|
+
export const logicalShorthandCSS: (property: LogicalShorthands, value: string | number) => string;
|
|
6849
|
+
/**
|
|
6850
|
+
* Logical border radius is unfortunately a very special case as it handles corners
|
|
6851
|
+
* and not sides (@see https://developer.mozilla.org/en-US/docs/Web/CSS/Shorthand_properties#corners_of_a_box)
|
|
6852
|
+
* and does not have `-inline` or `-block` shorthands.
|
|
6853
|
+
*
|
|
6854
|
+
* It also needs to account for `/` syntax (horizontal vs vertical radii)
|
|
6855
|
+
* @see https://www.sitepoint.com/setting-css3-border-radius-with-slash-syntax/
|
|
6856
|
+
*/
|
|
6857
|
+
export const logicalBorderRadiusCSS: (value: string, ignoreZeroes?: boolean) => string;
|
|
6858
|
+
|
|
6670
6859
|
}
|
|
6671
6860
|
declare module '@elastic/eui/src/global_styling/functions/math' {
|
|
6672
6861
|
type ValueTypes = string | number | undefined;
|
|
@@ -6766,6 +6955,7 @@ declare module '@elastic/eui/src/global_styling/functions/typography' {
|
|
|
6766
6955
|
}
|
|
6767
6956
|
declare module '@elastic/eui/src/global_styling/functions' {
|
|
6768
6957
|
export * from '@elastic/eui/src/global_styling/functions/logicals';
|
|
6958
|
+
export * from '@elastic/eui/src/global_styling/functions/logical_shorthands';
|
|
6769
6959
|
export * from '@elastic/eui/src/global_styling/functions/math';
|
|
6770
6960
|
export * from '@elastic/eui/src/global_styling/functions/size';
|
|
6771
6961
|
export * from '@elastic/eui/src/global_styling/functions/typography';
|
|
@@ -19934,7 +20124,7 @@ declare module '@elastic/eui/src/components/basic_table/in_memory_table' {
|
|
|
19934
20124
|
} type Pagination = boolean | PaginationOptions;
|
|
19935
20125
|
interface SortingOptions {
|
|
19936
20126
|
sort: PropertySort;
|
|
19937
|
-
} type Sorting = boolean | SortingOptions; type InMemoryTableProps<T> = Omit<EuiBasicTableProps<T>, 'pagination' | 'sorting' | 'noItemsMessage'> & {
|
|
20127
|
+
} type Sorting = boolean | SortingOptions; type InMemoryTableProps<T> = Omit<EuiBasicTableProps<T>, 'pagination' | 'sorting' | 'noItemsMessage' | 'onChange'> & {
|
|
19938
20128
|
message?: ReactNode;
|
|
19939
20129
|
/**
|
|
19940
20130
|
* Configures #Search.
|
|
@@ -19946,6 +20136,12 @@ declare module '@elastic/eui/src/components/basic_table/in_memory_table' {
|
|
|
19946
20136
|
* Set `allowNeutralSort` to false to force column sorting. Defaults to true.
|
|
19947
20137
|
*/
|
|
19948
20138
|
allowNeutralSort?: boolean;
|
|
20139
|
+
/**
|
|
20140
|
+
* `onChange` is not required when `pagination` and/or `sorting` are configured,
|
|
20141
|
+
* but if `onChange` is present it is responsible for handling state for each/both.
|
|
20142
|
+
* See #Criteria or #CriteriaWithPagination
|
|
20143
|
+
*/
|
|
20144
|
+
onChange?: EuiBasicTableProps<T>['onChange'];
|
|
19949
20145
|
/**
|
|
19950
20146
|
* Callback for when table pagination or sorting is changed. This is meant to be informational only, and not used to set any state as the in-memory table already manages this state. See #Criteria or #CriteriaWithPagination.
|
|
19951
20147
|
*/
|
|
@@ -21316,6 +21512,16 @@ declare module '@elastic/eui/src/components/icon/assets/arrow_up' {
|
|
|
21316
21512
|
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
21317
21513
|
export {};
|
|
21318
21514
|
|
|
21515
|
+
}
|
|
21516
|
+
declare module '@elastic/eui/src/components/icon/assets/article' {
|
|
21517
|
+
import * as React from 'react';
|
|
21518
|
+
interface SVGRProps {
|
|
21519
|
+
title?: string;
|
|
21520
|
+
titleId?: string;
|
|
21521
|
+
}
|
|
21522
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
21523
|
+
export {};
|
|
21524
|
+
|
|
21319
21525
|
}
|
|
21320
21526
|
declare module '@elastic/eui/src/components/icon/assets/asterisk' {
|
|
21321
21527
|
import * as React from 'react';
|
|
@@ -21736,6 +21942,16 @@ declare module '@elastic/eui/src/components/icon/assets/desktop' {
|
|
|
21736
21942
|
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
21737
21943
|
export {};
|
|
21738
21944
|
|
|
21945
|
+
}
|
|
21946
|
+
declare module '@elastic/eui/src/components/icon/assets/discuss' {
|
|
21947
|
+
import * as React from 'react';
|
|
21948
|
+
interface SVGRProps {
|
|
21949
|
+
title?: string;
|
|
21950
|
+
titleId?: string;
|
|
21951
|
+
}
|
|
21952
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
21953
|
+
export {};
|
|
21954
|
+
|
|
21739
21955
|
}
|
|
21740
21956
|
declare module '@elastic/eui/src/components/icon/assets/document' {
|
|
21741
21957
|
import * as React from 'react';
|
|
@@ -21786,6 +22002,16 @@ declare module '@elastic/eui/src/components/icon/assets/dot' {
|
|
|
21786
22002
|
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
21787
22003
|
export {};
|
|
21788
22004
|
|
|
22005
|
+
}
|
|
22006
|
+
declare module '@elastic/eui/src/components/icon/assets/dotInCircle' {
|
|
22007
|
+
import * as React from 'react';
|
|
22008
|
+
interface SVGRProps {
|
|
22009
|
+
title?: string;
|
|
22010
|
+
titleId?: string;
|
|
22011
|
+
}
|
|
22012
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
22013
|
+
export {};
|
|
22014
|
+
|
|
21789
22015
|
}
|
|
21790
22016
|
declare module '@elastic/eui/src/components/icon/assets/doubleArrowLeft' {
|
|
21791
22017
|
import * as React from 'react';
|
|
@@ -22646,6 +22872,16 @@ declare module '@elastic/eui/src/components/icon/assets/ip' {
|
|
|
22646
22872
|
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
22647
22873
|
export {};
|
|
22648
22874
|
|
|
22875
|
+
}
|
|
22876
|
+
declare module '@elastic/eui/src/components/icon/assets/issue' {
|
|
22877
|
+
import * as React from 'react';
|
|
22878
|
+
interface SVGRProps {
|
|
22879
|
+
title?: string;
|
|
22880
|
+
titleId?: string;
|
|
22881
|
+
}
|
|
22882
|
+
export const icon: ({ title, titleId, ...props }: React.SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
|
22883
|
+
export {};
|
|
22884
|
+
|
|
22649
22885
|
}
|
|
22650
22886
|
declare module '@elastic/eui/src/components/icon/assets/keyboard' {
|
|
22651
22887
|
import * as React from 'react';
|