diff --git a/x-pack/platform/packages/private/ml/aiops_components/src/progress_controls/progress_controls.tsx b/x-pack/platform/packages/private/ml/aiops_components/src/progress_controls/progress_controls.tsx index 7308185f99b65..820d5b4675580 100644 --- a/x-pack/platform/packages/private/ml/aiops_components/src/progress_controls/progress_controls.tsx +++ b/x-pack/platform/packages/private/ml/aiops_components/src/progress_controls/progress_controls.tsx @@ -139,7 +139,7 @@ export const ProgressControls: FC> = (pr {progress === 1 ? ( - + diff --git a/x-pack/platform/packages/private/ml/data_grid/components/data_grid.tsx b/x-pack/platform/packages/private/ml/data_grid/components/data_grid.tsx index aeb2cdc365a76..4e6f7258f25d0 100644 --- a/x-pack/platform/packages/private/ml/data_grid/components/data_grid.tsx +++ b/x-pack/platform/packages/private/ml/data_grid/components/data_grid.tsx @@ -261,7 +261,7 @@ export const DataGrid: FC = memo( {(copy: () => void) => ( )} @@ -340,7 +340,7 @@ export const DataGrid: FC = memo( }`} data-test-subj={`${dataTestSubj}HistogramButton`} size="xs" - iconType="visBarVertical" + iconType="chartBarVertical" color="text" onClick={toggleChartVisibility} disabled={chartsVisible === undefined} diff --git a/x-pack/platform/packages/private/ml/field_stats_flyout/field_stats_info_button.tsx b/x-pack/platform/packages/private/ml/field_stats_flyout/field_stats_info_button.tsx index 08ec070643fc7..a6176b06285cb 100644 --- a/x-pack/platform/packages/private/ml/field_stats_flyout/field_stats_info_button.tsx +++ b/x-pack/platform/packages/private/ml/field_stats_flyout/field_stats_info_button.tsx @@ -103,7 +103,7 @@ export const FieldStatsInfoButton: FC = (props) => { data-test-subj={`mlInspectFieldStatsButton-${field.id}`} disabled={disabled === true} size="xs" - iconType="fieldStatistics" + iconType="tableInfo" css={{ color: isEmpty ? euiTheme.colors.textDisabled : undefined }} onClick={(ev: React.MouseEvent) => { if (ev.type === 'click') { diff --git a/x-pack/platform/packages/shared/file-upload/src/file_upload_component/new/combined_fields/combined_fields_form.tsx b/x-pack/platform/packages/shared/file-upload/src/file_upload_component/new/combined_fields/combined_fields_form.tsx index 4863e40b60c0e..3d1bfd65a60cc 100644 --- a/x-pack/platform/packages/shared/file-upload/src/file_upload_component/new/combined_fields/combined_fields_form.tsx +++ b/x-pack/platform/packages/shared/file-upload/src/file_upload_component/new/combined_fields/combined_fields_form.tsx @@ -183,7 +183,7 @@ export class CombinedFieldsForm extends Component { onClick={this.togglePopover.bind(null, 'semantic')} size="s" color="text" - iconType="plusInCircleFilled" + iconType="plusCircle" isDisabled={this.isSemanticTextCompatible() === false} > { onClick={this.togglePopover.bind(null, 'geo')} size="s" color="text" - iconType="plusInCircleFilled" + iconType="plusCircle" isDisabled={this.isLatLonCompatible() === false} > = ({ fileClash }) => { return ( - + ); diff --git a/x-pack/platform/packages/shared/file-upload/src/file_upload_component/new/import_errors.tsx b/x-pack/platform/packages/shared/file-upload/src/file_upload_component/new/import_errors.tsx index 837a4228a282d..52f4c8d9ea9e1 100644 --- a/x-pack/platform/packages/shared/file-upload/src/file_upload_component/new/import_errors.tsx +++ b/x-pack/platform/packages/shared/file-upload/src/file_upload_component/new/import_errors.tsx @@ -18,7 +18,7 @@ export const ImportErrors: FC = () => { {uploadStatus.errors.map((error, index) => ( - +

{JSON.stringify(error)}

diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/multi_select_picker/multi_select_picker.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/multi_select_picker/multi_select_picker.tsx index 8c3c06ba08ce5..52665723f84dd 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/multi_select_picker/multi_select_picker.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/multi_select_picker/multi_select_picker.tsx @@ -35,7 +35,7 @@ const SELECT_PICKER_HEIGHT = '250px'; const NoFilterItems = () => { return ( - +

= ({ randomSampler, reload, id }) => { data-test-subj={getDataTestSubject('aiopsRandomSamplerOptionsButton', id)} onClick={() => setShowSamplingOptionsPopover(!showSamplingOptionsPopover)} iconSide="right" - iconType="arrowDown" + iconType="chevronSingleDown" size="s" > {buttonText} diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/stats_table/data_visualizer_stats_table.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/stats_table/data_visualizer_stats_table.tsx index 0493e59e220cf..5595ff03d4477 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/stats_table/data_visualizer_stats_table.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/stats_table/data_visualizer_stats_table.tsx @@ -161,7 +161,7 @@ const UnmemoizedDataVisualizerTable = ({ defaultMessage: 'Collapse details for all fields', }) } - iconType={expandAll ? 'arrowDown' : 'arrowRight'} + iconType={expandAll ? 'chevronSingleDown' : 'chevronSingleRight'} /> ) : null, align: RIGHT_ALIGNMENT, @@ -170,7 +170,9 @@ const UnmemoizedDataVisualizerTable = ({ render: (item: DataVisualizerTableItem) => { const displayName = item.displayName ?? item.fieldName; if (item.fieldName === undefined) return null; - const direction = expandedRowItemIds.includes(item.fieldName) ? 'arrowDown' : 'arrowRight'; + const direction = expandedRowItemIds.includes(item.fieldName) + ? 'chevronSingleDown' + : 'chevronSingleRight'; return ( ({ name: (

{dimensions.showIcon ? ( - + ) : null} {i18n.translate('xpack.dataVisualizer.dataGrid.distributionsColumnName', { defaultMessage: 'Distributions', @@ -308,7 +310,7 @@ const UnmemoizedDataVisualizerTable = ({ toggleShowDistribution()} aria-label={ !showDistributions diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/top_values/top_values.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/top_values/top_values.tsx index 2eaa590384e59..43f8f9881bc06 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/top_values/top_values.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/top_values/top_values.tsx @@ -245,7 +245,7 @@ export const TopValues: FC = ({ > onAddFilter(fieldName, fieldValue, '+')} aria-label={i18n.translate( 'xpack.dataVisualizer.dataGrid.field.addFilterAriaLabel', @@ -266,7 +266,7 @@ export const TopValues: FC = ({ /> onAddFilter(fieldName, fieldValue, '-')} aria-label={i18n.translate( 'xpack.dataVisualizer.dataGrid.field.removeFilterAriaLabel', diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/charts/data_drift_distribution_chart.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/charts/data_drift_distribution_chart.tsx index 60c0d9f400b54..47fb654ef624c 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/charts/data_drift_distribution_chart.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/charts/data_drift_distribution_chart.tsx @@ -53,12 +53,12 @@ const visualizeComparisonChartIcons = [ { id: DATA_DRIFT_COMPARISON_CHART_TYPE.AREA, label: showAsAreaChartOption, - iconType: 'visArea', + iconType: 'chartArea', }, { id: DATA_DRIFT_COMPARISON_CHART_TYPE.BAR, label: showAsBarChartOption, - iconType: 'visBarVertical', + iconType: 'chartBarVertical', }, ]; diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/data_drift_hint.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/data_drift_hint.tsx index 4bb2bcd59d918..ddd2cda22c5f2 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/data_drift_hint.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/data_drift_hint.tsx @@ -43,7 +43,7 @@ export const DataDriftPromptHint = ({ fill size="m" onClick={refresh} - iconType="visTagCloud" + iconType="chartTagCloud" data-test-subj="runDataDriftAnalysis" aria-label={ANALYZE_DATA_DRIFT_LABEL} > diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/data_drift_overview_table.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/data_drift_overview_table.tsx index 509cbf63cae6d..02c1883273c75 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/data_drift_overview_table.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/data_drift/data_drift_overview_table.tsx @@ -104,7 +104,11 @@ export const DataDriftOverviewTable = ({ }`} onClick={() => toggleDetails(item)} aria-label={itemIdToExpandedRowMapValues[item.featureName] ? COLLAPSE_ROW : EXPAND_ROW} - iconType={itemIdToExpandedRowMapValues[item.featureName] ? 'arrowDown' : 'arrowRight'} + iconType={ + itemIdToExpandedRowMapValues[item.featureName] + ? 'chevronSingleDown' + : 'chevronSingleRight' + } /> ); }, diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/index_data_visualizer/components/data_view_management/data_view_management.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/index_data_visualizer/components/data_view_management/data_view_management.tsx index 177f0b903c3e0..1f438244fbb0d 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/index_data_visualizer/components/data_view_management/data_view_management.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/index_data_visualizer/components/data_view_management/data_view_management.tsx @@ -70,7 +70,7 @@ export function DataVisualizerDataViewManagement(props: DataVisualizerDataViewMa button={ } color="warning" - iconType="alert" + iconType="warning" /> ); diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/index_data_visualizer/embeddables/field_stats/field_stats_initializer_view_type.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/index_data_visualizer/embeddables/field_stats/field_stats_initializer_view_type.tsx index d061fa259ece3..e92749bb7c751 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/index_data_visualizer/embeddables/field_stats/field_stats_initializer_view_type.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/index_data_visualizer/embeddables/field_stats/field_stats_initializer_view_type.tsx @@ -20,7 +20,7 @@ const viewTypeOptions: EuiButtonGroupOptionProps[] = [ defaultMessage="Data view" /> ), - iconType: 'visLine', + iconType: 'chartLine', }, { id: FieldStatsInitializerViewType.ESQL, @@ -30,7 +30,7 @@ const viewTypeOptions: EuiButtonGroupOptionProps[] = [ defaultMessage="ES|QL" /> ), - iconType: 'visTable', + iconType: 'table', }, ]; diff --git a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_points_table.tsx b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_points_table.tsx index 41cfb45e8da4b..0dcf39247ad8e 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_points_table.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_points_table.tsx @@ -234,7 +234,7 @@ export const ChangePointsTable: FC = ({ defaultMessage: 'Filter for value', } ), - icon: 'plusInCircle', + icon: 'plusCircle', color: 'primary', type: 'icon', onClick: (item) => { @@ -262,7 +262,7 @@ export const ChangePointsTable: FC = ({ defaultMessage: 'Filter out value', } ), - icon: 'minusInCircle', + icon: 'minusCircle', color: 'primary', type: 'icon', onClick: (item) => { @@ -324,7 +324,7 @@ export const ChangePointsTable: FC = ({ noItemsMessage={ isLoading ? ( = ({ : i18n.translate('xpack.aiops.changePointDetection.attachChartsLabel', { defaultMessage: 'Attach charts', }), - icon: 'plusInCircle', + icon: 'plusCircle', panel: 'attachMainPanel', 'data-test-subj': 'aiopsChangePointDetectionAttachButton', }, @@ -525,7 +525,7 @@ const FieldPanel: FC = ({ !prevState)} aria-label={i18n.translate('xpack.aiops.changePointDetection.expandConfigLabel', { defaultMessage: 'Expand configuration', @@ -572,7 +572,7 @@ const FieldPanel: FC = ({ display="base" size="s" isSelected={isActionMenuOpen} - iconType="boxesHorizontal" + iconType="boxesVertical" onClick={setIsActionMenuOpen.bind(null, !isActionMenuOpen)} /> } diff --git a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/no_data_warning.tsx b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/no_data_warning.tsx index 92c9b735ad575..833ecd420f645 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/no_data_warning.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/no_data_warning.tsx @@ -15,7 +15,7 @@ export const NoDataFoundWarning = (props: { onRenderComplete?: () => void }) => return ( ), - iconType: 'visLine', + iconType: 'chartLine', }, { id: `table`, @@ -31,7 +31,7 @@ const viewTypeOptions: EuiButtonGroupOptionProps[] = [ defaultMessage="Table" /> ), - iconType: 'visTable', + iconType: 'table', }, ]; diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/attachments_menu.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/attachments_menu.tsx index 354a002327739..bb440ec432b9e 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/attachments_menu.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/attachments_menu.tsx @@ -225,7 +225,7 @@ export const AttachmentsMenu = ({ color="text" display="base" isSelected={isActionMenuOpen} - iconType="boxesHorizontal" + iconType="boxesVertical" onClick={() => setIsActionMenuOpen(!isActionMenuOpen)} /> } diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/category_table.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/category_table.tsx index 7635b4a70f295..0f343b4f5b37e 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/category_table.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/category_table.tsx @@ -107,7 +107,7 @@ export const CategoryTable: FC = ({ defaultMessage: 'Expand', }) } - iconType={itemIdToExpandedRowMap[item.key] ? 'arrowDown' : 'arrowRight'} + iconType={itemIdToExpandedRowMap[item.key] ? 'chevronSingleDown' : 'chevronSingleRight'} /> ), 'data-test-subj': 'aiopsLogPatternsExpandRowToggle', diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/table_header.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/table_header.tsx index 82a8d99f7337e..1ab7c7e7be2f0 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/table_header.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/table_header.tsx @@ -75,7 +75,7 @@ export const OpenInDiscoverButtons: FC<{ openInDiscover: OpenInDiscover; showTex data-test-subj="aiopsLogPatternAnalysisOpenInDiscoverIncludeButton" size="s" onClick={() => openFunction(QUERY_MODE.INCLUDE, true)} - iconType="plusInCircle" + iconType="plusCircle" iconSide="left" > {labels.multiSelect.in} @@ -88,7 +88,7 @@ export const OpenInDiscoverButtons: FC<{ openInDiscover: OpenInDiscover; showTex data-test-subj="aiopsLogPatternAnalysisOpenInDiscoverExcludeButton" size="s" onClick={() => openFunction(QUERY_MODE.EXCLUDE, true)} - iconType="minusInCircle" + iconType="minusCircle" iconSide="left" > {labels.multiSelect.out} diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/use_actions.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/use_actions.tsx index cb7567743d9ed..2019515840415 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/use_actions.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/category_table/use_actions.tsx @@ -54,7 +54,7 @@ export function useActions( { name: openInDiscoverLabels.singleSelect.in, description: openInDiscoverLabels.singleSelect.in, - icon: 'plusInCircle', + icon: 'plusCircle', type: 'icon', 'data-test-subj': 'aiopsLogPatternsActionFilterInButton', onClick: (category) => @@ -63,7 +63,7 @@ export function useActions( { name: openInDiscoverLabels.singleSelect.out, description: openInDiscoverLabels.singleSelect.out, - icon: 'minusInCircle', + icon: 'minusCircle', type: 'icon', 'data-test-subj': 'aiopsLogPatternsActionFilterOutButton', onClick: (category) => diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/embeddable_menu.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/embeddable_menu.tsx index 9303f50fb4796..2ac7b4a6f8e3c 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/embeddable_menu.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/embeddable_menu.tsx @@ -60,7 +60,7 @@ export const EmbeddableMenu: FC = ({ togglePopover()} // @ts-expect-error - subdued does work color="subdued" diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/selected_patterns.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/selected_patterns.tsx index b2c96973031d3..0cdc06a227bf1 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/selected_patterns.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/selected_patterns.tsx @@ -53,14 +53,14 @@ export const SelectedPatterns: FC<{ openInDiscover: OpenInDiscover }> = ({ openI items={[ openFunction(QUERY_MODE.INCLUDE, false)} > {labels.multiSelect.in} , openFunction(QUERY_MODE.EXCLUDE, false)} > {labels.multiSelect.out} diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/sampling_menu/sampling_menu.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/sampling_menu/sampling_menu.tsx index 7da2736fdd453..b2ebfb61fa8cb 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/sampling_menu/sampling_menu.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/sampling_menu/sampling_menu.tsx @@ -40,7 +40,7 @@ export const SamplingMenu: FC = ({ randomSampler, reload }) => { color="text" iconSide="right" isSelected={showSamplingOptionsPopover} - iconType={showSamplingOptionsPopover ? 'arrowUp' : 'arrowDown'} + iconType={showSamplingOptionsPopover ? 'chevronSingleUp' : 'chevronSingleDown'} > {buttonText} diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/item_filter_popover.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/item_filter_popover.tsx index e270e682e4fdb..5ca940cdd4816 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/item_filter_popover.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/item_filter_popover.tsx @@ -122,7 +122,7 @@ export const ItemFilterPopover: FC = ({ onClick={onItemSelectionButtonClick} disabled={disabled} size="s" - iconType="arrowDown" + iconType="chevronSingleDown" iconSide="right" iconSize="s" color="text" diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_attachments_menu.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_attachments_menu.tsx index 642cd5be95f77..6425476ade0c5 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_attachments_menu.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_attachments_menu.tsx @@ -224,7 +224,7 @@ export const LogRateAnalysisAttachmentsMenu = ({ display="base" size="s" isSelected={isActionMenuOpen} - iconType="boxesHorizontal" + iconType="boxesVertical" onClick={() => setIsActionMenuOpen(!isActionMenuOpen)} /> } diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_results.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_results.tsx index 55f0b0a3ef152..099ef4bc41c13 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_results.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_results.tsx @@ -366,7 +366,7 @@ export const LogRateAnalysisResults: FC = ({ > ), valign: 'top', diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis_results_table/use_copy_to_clipboard_action.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis_results_table/use_copy_to_clipboard_action.tsx index 54ed77ae4ed62..650d464aad4ce 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis_results_table/use_copy_to_clipboard_action.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis_results_table/use_copy_to_clipboard_action.tsx @@ -48,7 +48,7 @@ export const useCopyToClipboardAction = (): TableItemAction => ({ {(copy) => ( 'changePointDetection', + getIconType: () => 'chartChangePoint', getDisplayName: () => i18n.translate('xpack.aiops.embeddableChangePointChartDisplayName', { defaultMessage: 'Change point detection', diff --git a/x-pack/platform/plugins/shared/aiops/public/ui_actions/create_pattern_analysis_action.tsx b/x-pack/platform/plugins/shared/aiops/public/ui_actions/create_pattern_analysis_action.tsx index d807a7d3d4da4..8775d1119a8b2 100644 --- a/x-pack/platform/plugins/shared/aiops/public/ui_actions/create_pattern_analysis_action.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/ui_actions/create_pattern_analysis_action.tsx @@ -36,7 +36,7 @@ export function createAddPatternAnalysisEmbeddableAction( return { id: 'create-pattern-analysis-embeddable', grouping: AIOPS_EMBEDDABLE_GROUPING, - getIconType: () => 'logPatternAnalysis', + getIconType: () => 'pattern', getDisplayName: () => i18n.translate('xpack.aiops.embeddablePatternAnalysisDisplayName', { defaultMessage: 'Pattern analysis', diff --git a/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_alerts_table/alert_actions.tsx b/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_alerts_table/alert_actions.tsx index 9a1288b314b75..dd9baaaf2dbea 100644 --- a/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_alerts_table/alert_actions.tsx +++ b/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_alerts_table/alert_actions.tsx @@ -149,7 +149,7 @@ export const AlertActions: GetAlertsTableProp<'renderActionsCell'> = (props) => color="text" data-test-subj="alertsTableRowActionMore" display="empty" - iconType="boxesHorizontal" + iconType="boxesVertical" onClick={toggleActionsPopover} size="s" /> diff --git a/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_rule/anomaly_kql_filter.tsx b/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_rule/anomaly_kql_filter.tsx index c253d7ae534d0..299d755e7c0df 100644 --- a/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_rule/anomaly_kql_filter.tsx +++ b/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_rule/anomaly_kql_filter.tsx @@ -159,7 +159,7 @@ export const AnomalyKqlFilter: FC = React.memo( {unifiedSearch ? ( = React.memo( defaultMessage: 'Invalid KQL query', })} color="danger" - iconType="alert" + iconType="warning" size="s" > {errors.map((error, index) => ( diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/annotations/annotations_table/annotations_table.js b/x-pack/platform/plugins/shared/ml/public/application/components/annotations/annotations_table/annotations_table.js index fa6b5a87ca9e9..9b2ff03a34b06 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/annotations/annotations_table/annotations_table.js +++ b/x-pack/platform/plugins/shared/ml/public/application/components/annotations/annotations_table/annotations_table.js @@ -514,7 +514,7 @@ class AnnotationsTableUI extends Component { actions.push({ name: viewDataFeedText, description: viewDataFeedText, - icon: 'visAreaStacked', + icon: 'chartAreaStack', type: 'icon', onClick: (annotation) => { this.setState({ diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/anomalies_table_columns.js b/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/anomalies_table_columns.js index 24a8d9abc4076..2bba1c4cee909 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/anomalies_table_columns.js +++ b/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/anomalies_table_columns.js @@ -86,7 +86,7 @@ export function getColumns( render: (item) => ( toggleRow(item)} - iconType={itemIdToExpandedRowMap[item.rowId] ? 'arrowDown' : 'arrowRight'} + iconType={itemIdToExpandedRowMap[item.rowId] ? 'chevronSingleDown' : 'chevronSingleRight'} aria-label={ itemIdToExpandedRowMap[item.rowId] ? i18n.translate('xpack.ml.anomaliesTable.hideDetailsAriaLabel', { diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/detector_cell.js b/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/detector_cell.js index bad65af8c1331..b73ed041b0144 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/detector_cell.js +++ b/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/detector_cell.js @@ -27,7 +27,7 @@ export function DetectorCell({ detectorDescription, numberOfRules }) { defaultMessage="rules have been configured for this detector" /> } - type="controlsHorizontal" + type="controls" css={{ marginLeft: euiTheme.size.xs, }} diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/influencers_cell.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/influencers_cell.tsx index f07d3c5248a87..2e115d1e9144d 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/influencers_cell.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/influencers_cell.tsx @@ -95,7 +95,7 @@ export const InfluencersCell: FC = ({ '+' ); })} - iconType="plusInCircle" + iconType="plusCircle" aria-label={i18n.translate( 'xpack.ml.anomaliesTable.influencersCell.addFilterAriaLabel', { @@ -122,7 +122,7 @@ export const InfluencersCell: FC = ({ '-' ); })} - iconType="minusInCircle" + iconType="minusCircle" aria-label={i18n.translate( 'xpack.ml.anomaliesTable.influencersCell.removeFilterAriaLabel', { diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/links_menu.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/links_menu.tsx index 40880c6d191b8..2220c2d9d841b 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/links_menu.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/anomalies_table/links_menu.tsx @@ -788,7 +788,7 @@ export const LinksMenuUI = (props: LinksMenuProps) => { items.push( { closePopover(); openCustomUrl(customUrl); @@ -898,7 +898,7 @@ export const LinksMenuUI = (props: LinksMenuProps) => { items.push( { closePopover(); viewExamples(); @@ -927,7 +927,7 @@ export const LinksMenuUI = (props: LinksMenuProps) => { items.push( { closePopover(); props.showRuleEditorFlyout(anomaly, focusTrapProps); @@ -981,7 +981,7 @@ export const LinksMenuUI = (props: LinksMenuProps) => { items.push( { closePopover(); const additionalField = getAdditionalField(anomaly); diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/anomaly_results_view_selector/anomaly_results_view_selector.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/anomaly_results_view_selector/anomaly_results_view_selector.tsx index 18b97274d74cb..746ea3fc33ac2 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/anomaly_results_view_selector/anomaly_results_view_selector.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/anomaly_results_view_selector/anomaly_results_view_selector.tsx @@ -64,7 +64,7 @@ export const AnomalyResultsViewSelector: FC = ({ viewId, selectedJobs }) label: i18n.translate('xpack.ml.anomalyResultsViewSelector.anomalyExplorerLabel', { defaultMessage: 'View results in the Anomaly Explorer', }), - iconType: 'visTable', + iconType: 'table', value: ML_PAGES.ANOMALY_EXPLORER, 'data-test-subj': 'mlAnomalyResultsViewSelectorExplorer', }, diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/collapsible_panel/collapsible_panel.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/collapsible_panel/collapsible_panel.tsx index d2413b07f7bfe..29235f969f582 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/collapsible_panel/collapsible_panel.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/collapsible_panel/collapsible_panel.tsx @@ -69,7 +69,7 @@ export const CollapsiblePanel: FC> = ({ }) } color={'text'} - iconType={isOpen ? 'arrowDown' : 'arrowRight'} + iconType={isOpen ? 'chevronSingleDown' : 'chevronSingleRight'} onClick={() => { onToggle(!isOpen); }} diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/create_data_view_button/create_data_view_button.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/create_data_view_button/create_data_view_button.tsx index 02c56fb4008e5..0b19236357022 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/create_data_view_button/create_data_view_button.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/create_data_view_button/create_data_view_button.tsx @@ -46,7 +46,7 @@ export const CreateDataViewButton = ({ diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/__snapshots__/list.test.tsx.snap b/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/__snapshots__/list.test.tsx.snap index af16784e2a516..ba144b99476d0 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/__snapshots__/list.test.tsx.snap +++ b/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/__snapshots__/list.test.tsx.snap @@ -48,7 +48,7 @@ exports[`CustomUrlList renders a list of custom URLs 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="popout" + data-euiicon-type="external" /> @@ -225,7 +225,7 @@ exports[`CustomUrlList renders a list of custom URLs 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="popout" + data-euiicon-type="external" /> @@ -444,7 +444,7 @@ exports[`CustomUrlList renders a list of custom URLs 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="popout" + data-euiicon-type="external" /> diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/list.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/list.tsx index 404292843a3d0..77ace56146175 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/list.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/list.tsx @@ -375,7 +375,7 @@ export const CustomUrlList: FC = ({ size="s" color="primary" onClick={() => onTestButtonClick(index)} - iconType="popout" + iconType="external" aria-label={i18n.translate( 'xpack.ml.customUrlEditorList.testCustomUrlAriaLabel', { diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_urls.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_urls.tsx index bf141a3e8363c..d5c3880d9d7ec 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_urls.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_urls.tsx @@ -279,7 +279,7 @@ export class CustomUrls extends Component { const testButton = ( { <> = ({ entityName, entityValue, filter }) => onClick={blurButtonOnClick(() => { filter(entityName, entityValue, ML_ENTITY_FIELD_OPERATIONS.ADD); })} - iconType="plusInCircle" + iconType="plusCircle" aria-label={i18n.translate('xpack.ml.anomaliesTable.entityCell.addFilterAriaLabel', { defaultMessage: 'Add filter', })} @@ -84,7 +84,7 @@ const RemoveFilter: FC = ({ entityName, entityValue, filter }) onClick={blurButtonOnClick(() => { filter(entityName, entityValue, ML_ENTITY_FIELD_OPERATIONS.REMOVE); })} - iconType="minusInCircle" + iconType="minusCircle" aria-label={i18n.translate('xpack.ml.anomaliesTable.entityCell.removeFilterAriaLabel', { defaultMessage: 'Remove filter', })} diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/feedback_button/feedback_button.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/feedback_button/feedback_button.tsx index 8a70e6a0a068b..0dc9241c08acf 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/feedback_button/feedback_button.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/feedback_button/feedback_button.tsx @@ -105,7 +105,7 @@ export const FeedBackButton: FC = ({ jobIds }) => { aria-label={FEEDBACK_BUTTON_DEFAULT_TEXT} href={href} size="s" - iconType={'popout'} + iconType="external" iconSide="right" target="_blank" data-test-subj={'mlFeatureFeedbackButton'} diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/import_export_jobs/export_jobs_flyout/export_jobs_flyout.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/import_export_jobs/export_jobs_flyout/export_jobs_flyout.tsx index d0d9e5c983972..18e2c14a52f07 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/import_export_jobs/export_jobs_flyout/export_jobs_flyout.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/import_export_jobs/export_jobs_flyout/export_jobs_flyout.tsx @@ -51,7 +51,7 @@ export const ExportJobsFlyout: FC = ({ isDisabled, ...rest }) => { const FlyoutButton: FC<{ isDisabled: boolean; onClick(): void }> = ({ isDisabled, onClick }) => { return ( = ({ isDisabled, onImportComplete }) => const FlyoutButton: FC<{ isDisabled: boolean; onClick(): void }> = ({ isDisabled, onClick }) => { return ( diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/job_messages/job_messages.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/job_messages/job_messages.tsx index 0292f5db04a37..c52dcbdb24732 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/job_messages/job_messages.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/job_messages/job_messages.tsx @@ -119,7 +119,7 @@ export const JobMessages: FC = ({ aria-label={i18n.translate('xpack.ml.jobMessages.toggleInChartAriaLabel', { defaultMessage: 'Toggle in chart', })} - iconType="visAreaStacked" + iconType="chartAreaStack" onClick={() => actionHandler(message)} /> diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/job_selector/group_or_job_selector_menu/get_options_for_job_selector_menu.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/job_selector/group_or_job_selector_menu/get_options_for_job_selector_menu.tsx index 1727286ad1302..eea15c36148fe 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/job_selector/group_or_job_selector_menu/get_options_for_job_selector_menu.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/job_selector/group_or_job_selector_menu/get_options_for_job_selector_menu.tsx @@ -59,7 +59,7 @@ export const getOptionsForJobSelectorMenuItems = ({ } ), disabled: page === ML_PAGES.ANOMALY_EXPLORER && isSingleMetricViewerDisabled, - icon: 'visLine', + icon: 'chartLine', onClick: async () => { const mlLocator = share.url.locators.get(ML_APP_LOCATOR); if (!mlLocator) { @@ -117,7 +117,7 @@ export const getOptionsForJobSelectorMenuItems = ({ }, }), disabled: removeJobIdDisabled, - icon: 'minusInCircle', + icon: 'minusCircle', onClick: () => { if (onRemoveJobId) { onRemoveJobId([jobId]); @@ -138,7 +138,7 @@ export const getOptionsForJobSelectorMenuItems = ({ name: i18n.translate('xpack.ml.overview.anomalyDetection.jobContextMenu.viewDatafeedCounts', { defaultMessage: 'View datafeed counts', }), - icon: 'visAreaStacked', + icon: 'chartAreaStack', onClick: () => { setActiveJobId(jobId); setActiveFlyout(FlyoutType.DATAFEED_CHART); diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/job_selector/group_or_job_selector_menu/group_selector_menu.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/job_selector/group_or_job_selector_menu/group_selector_menu.tsx index 265b94b129f39..d0a6f62a033f3 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/job_selector/group_or_job_selector_menu/group_selector_menu.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/job_selector/group_or_job_selector_menu/group_selector_menu.tsx @@ -78,7 +78,7 @@ export const GroupSelectorMenu = ({ defaultMessage: 'Remove group from {page}', values: { page }, }), - icon: 'minusInCircle', + icon: 'minusCircle', disabled: removeGroupDisabled, onClick: () => { onRemoveJobId([groupId, ...jobIds]); diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/ml_page/side_nav.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/ml_page/side_nav.tsx index c4bbe66891701..b46974eac486d 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/ml_page/side_nav.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/ml_page/side_nav.tsx @@ -194,7 +194,7 @@ export function useSideNavItems(activeRoute: MlRoute | undefined) { ...(CHANGE_POINT_DETECTION_ENABLED ? [ { - id: 'changePointDetection', + id: 'chartChangePoint', pathId: ML_PAGES.AIOPS_CHANGE_POINT_DETECTION_INDEX_SELECT, name: i18n.translate('xpack.ml.navMenu.changePointDetectionLinkText', { defaultMessage: 'Change point detection', diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/model_snapshots/model_snapshots_table.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/model_snapshots/model_snapshots_table.tsx index d5de657394bb6..97db7292fe4b2 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/model_snapshots/model_snapshots_table.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/model_snapshots/model_snapshots_table.tsx @@ -193,7 +193,7 @@ export const ModelSnapshotTable: FC = ({ job, refreshJobList }) => { }), enabled: () => actionsEnabled && canCreateJob && canStartStopDatafeed, type: 'icon', - icon: 'crosshairs', + icon: 'crosshair', onClick: checkJobIsClosed, 'data-test-subj': `mlADModelSnapShotRevertButton`, }, diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/multi_select_picker/multi_select_picker.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/multi_select_picker/multi_select_picker.tsx index 0d3c9894a05a9..a0b93953270b9 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/multi_select_picker/multi_select_picker.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/multi_select_picker/multi_select_picker.tsx @@ -29,7 +29,7 @@ export interface Option { const NoFilterItems = () => { return ( - +

= ({ defaultMessage: 'Explore scatterplot charts in Vega based custom visualization', })} - type="visVega" + type="code" size="l" /> diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/shared/add_inference_pipeline_footer.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/shared/add_inference_pipeline_footer.tsx index 73d5065eab138..cabf1c6ea49d7 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/shared/add_inference_pipeline_footer.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/shared/add_inference_pipeline_footer.tsx @@ -62,7 +62,7 @@ export const AddInferencePipelineFooter: FC = ({ {previousStep !== undefined && pipelineCreated === false ? ( setStep(previousStep as AddInferencePipelineSteps)} > {BACK_BUTTON_LABEL} @@ -73,7 +73,7 @@ export const AddInferencePipelineFooter: FC = ({ {nextStep !== undefined ? ( setStep(nextStep as AddInferencePipelineSteps)} disabled={!isContinueButtonEnabled} diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/back_to_list_panel/back_to_list_panel.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/back_to_list_panel/back_to_list_panel.tsx index 38ffd0192e682..bfca17cb0d5fd 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/back_to_list_panel/back_to_list_panel.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/back_to_list_panel/back_to_list_panel.tsx @@ -22,7 +22,7 @@ export const BackToListPanel: FC = () => { } + icon={} title={i18n.translate('xpack.ml.dataframe.analytics.create.analyticsListCardTitle', { defaultMessage: 'Data Frame Analytics', })} diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/create_analytics_advanced_editor/create_analytics_advanced_editor.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/create_analytics_advanced_editor/create_analytics_advanced_editor.tsx index 2f329be788398..7e3598bfb411a 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/create_analytics_advanced_editor/create_analytics_advanced_editor.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/create_analytics_advanced_editor/create_analytics_advanced_editor.tsx @@ -162,7 +162,7 @@ export const CreateAnalyticsAdvancedEditor: FC = (prop : advancedEditorMessage.error } color={advancedEditorMessage.error !== undefined ? 'danger' : 'primary'} - iconType={advancedEditorMessage.error !== undefined ? 'error' : 'checkInCircleFilled'} + iconType={advancedEditorMessage.error !== undefined ? 'error' : 'checkCircleFill'} size="s" > {advancedEditorMessage.message !== '' && advancedEditorMessage.error !== undefined ? ( diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/runtime_mappings/runtime_mappings.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/runtime_mappings/runtime_mappings.tsx index 68a7b150e7cfa..9d6c4842f4f09 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/runtime_mappings/runtime_mappings.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/runtime_mappings/runtime_mappings.tsx @@ -218,7 +218,7 @@ export const RuntimeMappings: FC = ({ actions, state }) => { {(copy: () => void) => ( )} diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/shared/messages.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/shared/messages.tsx index f08de51150bf2..932c119ebcf23 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/shared/messages.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/shared/messages.tsx @@ -25,7 +25,7 @@ export const Messages: FC = ({ messages }) => { data-test-subj={`analyticsWizardCreationCallout_${i}`} title={requestMessage.message} color={requestMessage.error !== undefined ? 'danger' : 'primary'} - iconType={requestMessage.error !== undefined ? 'error' : 'checkInCircleFilled'} + iconType={requestMessage.error !== undefined ? 'error' : 'checkCircleFill'} size="s" > {requestMessage.error !== undefined && ( diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/view_results_panel/view_results_panel.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/view_results_panel/view_results_panel.tsx index 94ed7e6f9d79e..4d40d44f73e53 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/view_results_panel/view_results_panel.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_creation/components/view_results_panel/view_results_panel.tsx @@ -34,7 +34,7 @@ export const ViewResultsPanel: FC = ({ jobId, analysisType }) => { } + icon={} title={i18n.translate('xpack.ml.dataframe.analytics.create.viewResultsCardTitle', { defaultMessage: 'View Results', })} diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/classification_exploration/column_data.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/classification_exploration/column_data.tsx index 5fe791c52a8bf..ea89fce85672e 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/classification_exploration/column_data.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/classification_exploration/column_data.tsx @@ -102,7 +102,7 @@ export function getTrailingControlColumns( defaultMessage: 'Show actions', } )} - iconType="boxesHorizontal" + iconType="boxesVertical" color="text" onClick={() => setIsPopoverOpen(!isPopoverOpen)} /> diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/expandable_section/expandable_section.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/expandable_section/expandable_section.tsx index 9ba13f16926fe..76884d3d0dac2 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/expandable_section/expandable_section.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/expandable_section/expandable_section.tsx @@ -91,7 +91,7 @@ export const ExpandableSection: FC = ({ diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/expandable_section/expandable_section_results.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/expandable_section/expandable_section_results.tsx index 08f03c8f83a95..7a0e74a7c42b0 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/expandable_section/expandable_section_results.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/expandable_section/expandable_section_results.tsx @@ -317,7 +317,7 @@ export const ExpandableSectionResults: FC = ({ actions.push( { closePopover(); openCustomUrl(item, customUrl); diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_view/use_view_action.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_view/use_view_action.tsx index e61f3de72e8eb..abea6807dd4d5 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_view/use_view_action.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_view/use_view_action.tsx @@ -49,7 +49,7 @@ export const useViewAction = () => { name: (item: DataFrameAnalyticsListRow) => , enabled: (item: DataFrameAnalyticsListRow) => !getViewLinkStatus(item).disabled, description: viewActionButtonText, - icon: 'visTable', + icon: 'table', type: 'icon', onClick: clickHandler, 'data-test-subj': 'mlAnalyticsJobViewButton', diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/analytics_list/use_columns.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/analytics_list/use_columns.tsx index 4bbb2a5d2605a..7010a188139de 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/analytics_list/use_columns.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/analytics_list/use_columns.tsx @@ -220,7 +220,9 @@ export const useColumns = ( values: { analyticsId: item.config.id }, }) } - iconType={expandedRowItemIds.includes(item.config.id) ? 'arrowDown' : 'arrowRight'} + iconType={ + expandedRowItemIds.includes(item.config.id) ? 'chevronSingleDown' : 'chevronSingleRight' + } /> ), 'data-test-subj': 'mlAnalyticsTableRowDetailsToggle', diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/create_analytics_button/create_analytics_button.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/create_analytics_button/create_analytics_button.tsx index 8d2c4e74384f2..1f078db0e0b81 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/create_analytics_button/create_analytics_button.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/create_analytics_button/create_analytics_button.tsx @@ -28,7 +28,7 @@ export const CreateAnalyticsButton: FC = ({ disabled={isDisabled} fill onClick={navigateToSourceSelection} - iconType="plusInCircle" + iconType="plusCircle" size={size} data-test-subj="mlAnalyticsButtonCreate" > diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/empty_prompt/empty_prompt.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/empty_prompt/empty_prompt.tsx index a8fee47f28cbd..98b7bd5b47aed 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/empty_prompt/empty_prompt.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_management/components/empty_prompt/empty_prompt.tsx @@ -96,7 +96,7 @@ export const AnalyticsEmptyPrompt: FC<{ target="_blank" href={docLinks.links.ml.dataFrameAnalytics} data-test-subj="mlAnalyticsReadDocumentationButton" - iconType="popout" + iconType="external" iconSide="left" > = React.memo( } const button = ( - + = React.memo( = React.memo( = ({ hasMissingJob setShowJobTypes(!showJobTypes)} - iconType={showJobTypes ? 'arrowUp' : 'arrowDown'} + iconType={showJobTypes ? 'chevronSingleUp' : 'chevronSingleDown'} aria-label={i18n.translate( 'xpack.ml.dataframe.analyticsMap.legend.showJobTypesAriaLabel', { diff --git a/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/data_drift_index_patterns_editor.tsx b/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/data_drift_index_patterns_editor.tsx index 7909b41c6c195..98da343e835f1 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/data_drift_index_patterns_editor.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/data_drift_index_patterns_editor.tsx @@ -394,7 +394,7 @@ export function DataDriftIndexPatternsEditor({ color="primary" disabled={hasError} onClick={createDataViewAndRedirectToDataDriftPage.bind(null, true)} - iconType="visTagCloud" + iconType="chartTagCloud" data-test-subj="analyzeDataDriftWithoutSavingButton" aria-label={i18n.translate( 'xpack.ml.dataDrift.indexPatternsEditor.analyzeDataDriftWithoutSavingLabel', @@ -416,7 +416,7 @@ export function DataDriftIndexPatternsEditor({ disabled={hasError} fill onClick={createDataViewAndRedirectToDataDriftPage.bind(null, false)} - iconType="visTagCloud" + iconType="chartTagCloud" data-test-subj="analyzeDataDriftButton" aria-label={i18n.translate( 'xpack.ml.dataDrift.indexPatternsEditor.analyzeDataDriftLabel', diff --git a/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/index_patterns_picker.tsx b/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/index_patterns_picker.tsx index fc5afec5263af..a29e602c6ffe0 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/index_patterns_picker.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/index_patterns_picker.tsx @@ -99,7 +99,7 @@ export const DataDriftIndexOrSearchRedirect: FC = () => { navigateToPath(createPath(ML_PAGES.DATA_DRIFT_CUSTOM))} disabled={!canEditDataView} data-test-subj={'dataDriftCreateDataViewButton'} diff --git a/x-pack/platform/plugins/shared/ml/public/application/explorer/anomaly_context_menu.tsx b/x-pack/platform/plugins/shared/ml/public/application/explorer/anomaly_context_menu.tsx index 8a943ec0c20c6..c9b37534452c8 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/explorer/anomaly_context_menu.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/explorer/anomaly_context_menu.tsx @@ -337,7 +337,7 @@ export const AnomalyContextMenu: FC = ({ })} color="text" display="base" - iconType="boxesHorizontal" + iconType="boxesVertical" onClick={setIsMenuOpen.bind(null, !isMenuOpen)} data-test-subj="mlExplorerAnomalyPanelMenu" disabled={chartsCount < 1} diff --git a/x-pack/platform/plugins/shared/ml/public/application/explorer/anomaly_timeline.tsx b/x-pack/platform/plugins/shared/ml/public/application/explorer/anomaly_timeline.tsx index 1cacb9efb48b8..47be193383b4b 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/explorer/anomaly_timeline.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/explorer/anomaly_timeline.tsx @@ -459,7 +459,7 @@ export const AnomalyTimeline: FC = () => { color="text" display="base" isSelected={isMenuOpen} - iconType="boxesHorizontal" + iconType="boxesVertical" onClick={setIsMenuOpen.bind(null, !isMenuOpen)} data-test-subj="mlAnomalyTimelinePanelMenu" /> diff --git a/x-pack/platform/plugins/shared/ml/public/application/explorer/components/severity_legend_control/severity_legend_control.tsx b/x-pack/platform/plugins/shared/ml/public/application/explorer/components/severity_legend_control/severity_legend_control.tsx index d5a039b00122a..ec582f2e914b6 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/explorer/components/severity_legend_control/severity_legend_control.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/explorer/components/severity_legend_control/severity_legend_control.tsx @@ -86,7 +86,7 @@ export const SeverityLegendControl: FC = ({ diff --git a/x-pack/platform/plugins/shared/ml/public/application/explorer/explorer_charts/components/explorer_chart_label/entity_filter/entity_filter.tsx b/x-pack/platform/plugins/shared/ml/public/application/explorer/explorer_charts/components/explorer_chart_label/entity_filter/entity_filter.tsx index dc5a505182c9a..4da81f8489fa8 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/explorer/explorer_charts/components/explorer_chart_label/entity_filter/entity_filter.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/explorer/explorer_charts/components/explorer_chart_label/entity_filter/entity_filter.tsx @@ -52,7 +52,7 @@ export const EntityFilter: FC = ({ action: ML_ENTITY_FIELD_OPERATIONS.ADD, }); })} - iconType="plusInCircle" + iconType="plusCircle" aria-label={i18n.translate('xpack.ml.entityFilter.addFilterAriaLabel', { defaultMessage: 'Add filter for {influencerFieldName} {influencerFieldValue}', values: { influencerFieldName, influencerFieldValue }, @@ -84,7 +84,7 @@ export const EntityFilter: FC = ({ action: ML_ENTITY_FIELD_OPERATIONS.REMOVE, }); })} - iconType="minusInCircle" + iconType="minusCircle" aria-label={i18n.translate('xpack.ml.entityFilter.removeFilterAriaLabel', { defaultMessage: 'Remove filter for {influencerFieldName} {influencerFieldValue}', values: { influencerFieldName, influencerFieldValue }, diff --git a/x-pack/platform/plugins/shared/ml/public/application/explorer/swimlane_pagination.tsx b/x-pack/platform/plugins/shared/ml/public/application/explorer/swimlane_pagination.tsx index 55623e5b55ffc..f295acd668c81 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/explorer/swimlane_pagination.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/explorer/swimlane_pagination.tsx @@ -81,7 +81,7 @@ export const SwimLanePagination: FC = ({ = ({ onClick={() => { handleEndDateChange(CHART_DIRECTION.BACK); }} - iconType="arrowLeft" + iconType="chevronSingleLeft" /> @@ -554,7 +554,7 @@ export const DatafeedChartFlyout: FC = ({ key="messages-results-line" domainType={AnnotationDomainType.XDomain} dataValues={messageData} - marker={} + marker={} markerPosition={Position.Top} style={{ line: { @@ -615,7 +615,7 @@ export const DatafeedChartFlyout: FC = ({ onClick={() => { handleEndDateChange(CHART_DIRECTION.FORWARD); }} - iconType="arrowRight" + iconType="chevronSingleRight" /> diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/job_actions/management.js b/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/job_actions/management.js index cd268ad42e51d..7e7e714f5155f 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/job_actions/management.js +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/job_actions/management.js @@ -167,7 +167,7 @@ export function actionsMenuContent( defaultMessage: 'View datafeed counts', } ), - icon: 'visAreaStacked', + icon: 'chartAreaStack', enabled: () => canGetDatafeeds, available: () => canGetDatafeeds, onClick: (item) => { diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/job_actions/results.js b/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/job_actions/results.js index d4bb5b996368b..a06fc5bfec212 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/job_actions/results.js +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/job_actions/results.js @@ -91,7 +91,7 @@ export function ResultLinks({ jobs }) { > ( this.toggleRow(item)} - iconType={this.state.itemIdToExpandedRowMap[item.id] ? 'arrowDown' : 'arrowRight'} + iconType={ + this.state.itemIdToExpandedRowMap[item.id] + ? 'chevronSingleDown' + : 'chevronSingleRight' + } aria-label={ this.state.itemIdToExpandedRowMap[item.id] ? i18n.translate('xpack.ml.jobsList.collapseJobDetailsAriaLabel', { diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/multi_job_actions/group_selector/new_group_input/new_group_input.js b/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/multi_job_actions/group_selector/new_group_input/new_group_input.js index 4d1670fbab87a..f30007e24f3ff 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/multi_job_actions/group_selector/new_group_input/new_group_input.js +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/multi_job_actions/group_selector/new_group_input/new_group_input.js @@ -108,7 +108,7 @@ export class NewGroupInput extends Component { { return ( = ({ overlayKey, start, end, color, showMar }} markerPosition={Position.Bottom} hideTooltips - marker={showMarker ? : undefined} + marker={showMarker ? : undefined} markerBody={ showMarker ? (

diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/validation_step/skip_validatoin.tsx b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/validation_step/skip_validatoin.tsx index 187229b72636b..a99d8fa9eeb8e 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/validation_step/skip_validatoin.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/validation_step/skip_validatoin.tsx @@ -18,7 +18,7 @@ export const SkipValidationButton: FC<{ nextActive ? null : ( setCurrentStep(WIZARD_STEPS.SUMMARY)} - iconType="arrowRight" + iconType="chevronSingleRight" iconSide="right" data-test-subj="mlJobWizardNavButtonPrevious" > diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/wizard_nav/wizard_nav.tsx b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/wizard_nav/wizard_nav.tsx index 0eb3ba6a6bacd..a2e34ab75e65d 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/wizard_nav/wizard_nav.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/wizard_nav/wizard_nav.tsx @@ -55,7 +55,7 @@ export const PreviousButton: FC = ({ previous, previousActive = t @@ -69,7 +69,7 @@ export const NextButton: FC = ({ next, nextActive = true }) => ( disabled={!nextActive} onClick={next} iconSide="right" - iconType="arrowRight" + iconType="chevronSingleRight" data-test-subj="mlJobWizardNavButtonNext" > diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/recognize/components/create_result_callout.tsx b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/recognize/components/create_result_callout.tsx index effb5ad810cc7..7bd67368c3e35 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/recognize/components/create_result_callout.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/recognize/components/create_result_callout.tsx @@ -35,7 +35,7 @@ export const CreateResultCallout: FC = memo( /> } color="success" - iconType="checkInCircleFilled" + iconType="checkCircleFill" /> )} {saveState === SAVE_STATE.FAILED && ( diff --git a/x-pack/platform/plugins/shared/ml/public/application/memory_usage/nodes_overview/memory_preview_chart.tsx b/x-pack/platform/plugins/shared/ml/public/application/memory_usage/nodes_overview/memory_preview_chart.tsx index e2ac5873418b6..343cb01eacdc2 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/memory_usage/nodes_overview/memory_preview_chart.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/memory_usage/nodes_overview/memory_preview_chart.tsx @@ -150,7 +150,7 @@ export const MemoryPreviewChart: FC = ({ memoryOverview ]} marker={ = ({ compactView = false }) => { defaultMessage: 'Expand', }) } - iconType={itemIdToExpandedRowMap[item.id] ? 'arrowDown' : 'arrowRight'} + iconType={itemIdToExpandedRowMap[item.id] ? 'chevronSingleDown' : 'chevronSingleRight'} /> ), 'data-test-subj': 'mlNodesTableRowDetailsToggle', diff --git a/x-pack/platform/plugins/shared/ml/public/application/model_management/model_actions.tsx b/x-pack/platform/plugins/shared/ml/public/application/model_management/model_actions.tsx index fdb234178b71e..1724ee11ce123 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/model_management/model_actions.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/model_management/model_actions.tsx @@ -157,7 +157,7 @@ export function useModelActions({ defaultMessage: 'Training data can be viewed when data frame analytics job exists.', } ), - icon: 'visTable', + icon: 'table', type: 'icon', available: (item) => isDFAModelItem(item) && !!item.metadata?.analytics_config?.id, enabled: (item) => isDFAModelItem(item) && item.origin_job_exists === true, @@ -272,7 +272,7 @@ export function useModelActions({ } ), 'data-test-subj': 'mlModelsTableRowUpdateDeploymentAction', - icon: 'documentEdit', + icon: 'pencil', type: 'icon', isPrimary: false, available: (item) => @@ -403,7 +403,7 @@ export function useModelActions({ defaultMessage: 'Analyze data drift', }), 'data-test-subj': 'mlModelsAnalyzeDataDriftAction', - icon: 'visTagCloud', + icon: 'chartTagCloud', type: 'icon', isPrimary: true, available: (item) => { diff --git a/x-pack/platform/plugins/shared/ml/public/application/model_management/models_list.tsx b/x-pack/platform/plugins/shared/ml/public/application/model_management/models_list.tsx index 733d911291446..a94f8092f368c 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/model_management/models_list.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/model_management/models_list.tsx @@ -316,7 +316,9 @@ export const ModelsList: FC = ({ defaultMessage: 'Expand', }) } - iconType={itemIdToExpandedRowMap[item.model_id] ? 'arrowDown' : 'arrowRight'} + iconType={ + itemIdToExpandedRowMap[item.model_id] ? 'chevronSingleDown' : 'chevronSingleRight' + } /> ); }, @@ -615,7 +617,7 @@ export const ModelsList: FC = ({ = ({ pipelines, ingestStats absolute: true, }); }} - iconType={'documentEdit'} + iconType={'pencil'} iconSide="left" > { }); test('returns the correct icon for class LOC', () => { - expect(getClassIcon('LOC')).toBe('visMapCoordinate'); + expect(getClassIcon('LOC')).toBe('waypoint'); }); test('returns the correct icon for class ORG', () => { diff --git a/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.tsx b/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.tsx index 3b58b60316bf5..9518aacbc8861 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.tsx @@ -49,7 +49,7 @@ const ENTITY_TYPES: Record = { }, LOC: { label: 'Location', - icon: 'visMapCoordinate', + icon: 'waypoint', colorIndex: 2, }, ORG: { diff --git a/x-pack/platform/plugins/shared/ml/public/application/notifications/components/entity_filter.tsx b/x-pack/platform/plugins/shared/ml/public/application/notifications/components/entity_filter.tsx index ce71073840c79..54e509e9c7943 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/notifications/components/entity_filter.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/notifications/components/entity_filter.tsx @@ -57,7 +57,7 @@ export const EntityFilter: FC = React.memo(({ query, onCha const button = ( !prev)} isSelected={isOpen} diff --git a/x-pack/platform/plugins/shared/ml/public/application/overview/components/analytics_panel/actions.tsx b/x-pack/platform/plugins/shared/ml/public/application/overview/components/analytics_panel/actions.tsx index bcd35bee285e8..8fc73bbf5a176 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/overview/components/analytics_panel/actions.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/overview/components/analytics_panel/actions.tsx @@ -53,7 +53,7 @@ export const ViewLink: FC = ({ item }) => { > { defaultMessage: 'View job', }), type: 'icon', - icon: 'list', + icon: 'listBullet', onClick: async (item) => { const { url } = await mlManagementLocator?.getUrl( { diff --git a/x-pack/platform/plugins/shared/ml/public/application/overview/components/anomaly_detection_panel/actions.tsx b/x-pack/platform/plugins/shared/ml/public/application/overview/components/anomaly_detection_panel/actions.tsx index 35ca02b58a321..5d406a35031c6 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/overview/components/anomaly_detection_panel/actions.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/overview/components/anomaly_detection_panel/actions.tsx @@ -34,7 +34,7 @@ export function useGroupActions(): Array> { defaultMessage: 'View jobs', } ), - icon: 'list', + icon: 'listBullet', type: 'icon', onClick: async (item) => { const { url } = await mlManagementLocator?.getUrl( @@ -60,7 +60,7 @@ export function useGroupActions(): Array> { defaultMessage: 'View in Anomaly Explorer', } ), - icon: 'visTable', + icon: 'table', type: 'icon', onClick: async (item) => { const path = await locator?.getUrl({ diff --git a/x-pack/platform/plugins/shared/ml/public/application/overview/data_visualizer_grid.tsx b/x-pack/platform/plugins/shared/ml/public/application/overview/data_visualizer_grid.tsx index a3f41b1f8d7e6..55b6c3857e667 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/overview/data_visualizer_grid.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/overview/data_visualizer_grid.tsx @@ -46,7 +46,7 @@ export const DataVisualizerGrid: FC<{ isEsqlEnabled: boolean; cardTitleSize?: 's ) : null} { onClick={() => navigateToPath('/aiops/log_categorization_index_select')} data-test-subj="mlOverviewCardLogPatternAnalysisButton" > - + { onClick={() => navigateToPath('/aiops/log_rate_analysis_index_select')} data-test-subj="mlOverviewCardLogRateAnalysisButton" > - + { } )} > - + New event @@ -403,7 +403,7 @@ exports[`EventsTable Renders events table with search bar 1`] = ` > Import events diff --git a/x-pack/platform/plugins/shared/ml/public/application/settings/calendars/edit/events_table/events_table.tsx b/x-pack/platform/plugins/shared/ml/public/application/settings/calendars/edit/events_table/events_table.tsx index 9aa4f940949a4..0b9e00f5783d2 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/settings/calendars/edit/events_table/events_table.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/settings/calendars/edit/events_table/events_table.tsx @@ -171,7 +171,7 @@ export const EventsTable: FC = ({ key="ml_new_event" data-test-subj="mlCalendarNewEventButton" size="s" - iconType="plusInCircle" + iconType="plusCircle" onClick={showNewEventModal} > = ({ key="ml_import_event" data-test-subj="mlCalendarImportEventsButton" size="s" - iconType="importAction" + iconType="download" onClick={showImportModal} > diff --git a/x-pack/platform/plugins/shared/ml/public/application/settings/filter_lists/components/add_item_popover/add_item_popover.js b/x-pack/platform/plugins/shared/ml/public/application/settings/filter_lists/components/add_item_popover/add_item_popover.js index f63176f6e946c..cff0c72c78e13 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/settings/filter_lists/components/add_item_popover/add_item_popover.js +++ b/x-pack/platform/plugins/shared/ml/public/application/settings/filter_lists/components/add_item_popover/add_item_popover.js @@ -81,7 +81,7 @@ export class AddItemPopover extends Component { @@ -166,7 +166,7 @@ exports[`EditFilterListToolbar renders the toolbar with one item selected 1`] = Add item diff --git a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/components/timeseriesexplorer_controls/timeseriesexplorer_controls.tsx b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/components/timeseriesexplorer_controls/timeseriesexplorer_controls.tsx index 7ce750874277a..176346880c206 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/components/timeseriesexplorer_controls/timeseriesexplorer_controls.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/components/timeseriesexplorer_controls/timeseriesexplorer_controls.tsx @@ -290,7 +290,7 @@ export const TimeSeriesExplorerControls: FC = ({ color="text" display="base" isSelected={isMenuOpen} - iconType="boxesHorizontal" + iconType="boxesVertical" onClick={setIsMenuOpen.bind(null, !isMenuOpen)} data-test-subj="mlAnomalyTimelinePanelMenu" size="m" diff --git a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer_embeddable_chart/timeseriesexplorer_title.tsx b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer_embeddable_chart/timeseriesexplorer_title.tsx index f694734a08a7e..748595c6d8519 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer_embeddable_chart/timeseriesexplorer_title.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer_embeddable_chart/timeseriesexplorer_title.tsx @@ -67,7 +67,7 @@ const FilterButton: FC<{ > = ({ @@ -359,7 +359,7 @@ export const JobDetails: FC> = ({ > - + diff --git a/x-pack/platform/plugins/shared/ml/public/embeddables/job_creation/lens/lens_vis_layer_selection_flyout/layer/compatible_layer.tsx b/x-pack/platform/plugins/shared/ml/public/embeddables/job_creation/lens/lens_vis_layer_selection_flyout/layer/compatible_layer.tsx index b55c85821adf7..8a585794e6917 100644 --- a/x-pack/platform/plugins/shared/ml/public/embeddables/job_creation/lens/lens_vis_layer_selection_flyout/layer/compatible_layer.tsx +++ b/x-pack/platform/plugins/shared/ml/public/embeddables/job_creation/lens/lens_vis_layer_selection_flyout/layer/compatible_layer.tsx @@ -79,7 +79,7 @@ export const CompatibleLayer: FC = ({ layer, layerIndex, embeddable }) => - + diff --git a/x-pack/platform/plugins/shared/ml/public/embeddables/job_creation/map/map_vis_layer_selection_flyout/layer/compatible_layer.tsx b/x-pack/platform/plugins/shared/ml/public/embeddables/job_creation/map/map_vis_layer_selection_flyout/layer/compatible_layer.tsx index 92fbc56c98c76..b19a7565f0051 100644 --- a/x-pack/platform/plugins/shared/ml/public/embeddables/job_creation/map/map_vis_layer_selection_flyout/layer/compatible_layer.tsx +++ b/x-pack/platform/plugins/shared/ml/public/embeddables/job_creation/map/map_vis_layer_selection_flyout/layer/compatible_layer.tsx @@ -149,7 +149,7 @@ export const CompatibleLayer: FC = ({ embeddable, layer, layerIndex }) => - + diff --git a/x-pack/platform/plugins/shared/ml/public/maps/anomaly_job_selector_empty_state.tsx b/x-pack/platform/plugins/shared/ml/public/maps/anomaly_job_selector_empty_state.tsx index 93f2a5546a914..8fdb844202178 100644 --- a/x-pack/platform/plugins/shared/ml/public/maps/anomaly_job_selector_empty_state.tsx +++ b/x-pack/platform/plugins/shared/ml/public/maps/anomaly_job_selector_empty_state.tsx @@ -42,7 +42,7 @@ export const AnomalyJobSelectorEmptyState: FC = ({ jobsManagementPath, ca color="primary" href={jobsManagementPath} fill - iconType="plusInCircle" + iconType="plusCircle" isDisabled={!canCreateJobs} data-test-subj="mlMapsCreateNewJobButton" > diff --git a/x-pack/platform/plugins/shared/ml/public/ui_actions/create_anomaly_chart.tsx b/x-pack/platform/plugins/shared/ml/public/ui_actions/create_anomaly_chart.tsx index 04fa7aaeb090d..5dbe4a9a575cb 100644 --- a/x-pack/platform/plugins/shared/ml/public/ui_actions/create_anomaly_chart.tsx +++ b/x-pack/platform/plugins/shared/ml/public/ui_actions/create_anomaly_chart.tsx @@ -45,7 +45,7 @@ export function createAddAnomalyChartsPanelAction( }, ], order: 30, - getIconType: () => 'anomalyChart', + getIconType: () => 'chartAnomaly', getDisplayName: () => i18n.translate('xpack.ml.components.mlAnomalyExplorerEmbeddable.displayName', { defaultMessage: 'Anomaly chart', diff --git a/x-pack/platform/plugins/shared/ml/public/ui_actions/open_in_anomaly_explorer_action.tsx b/x-pack/platform/plugins/shared/ml/public/ui_actions/open_in_anomaly_explorer_action.tsx index 98a44c042db58..940abbcb4f683 100644 --- a/x-pack/platform/plugins/shared/ml/public/ui_actions/open_in_anomaly_explorer_action.tsx +++ b/x-pack/platform/plugins/shared/ml/public/ui_actions/open_in_anomaly_explorer_action.tsx @@ -60,7 +60,7 @@ export function createOpenInExplorerAction( type: OPEN_IN_ANOMALY_EXPLORER_ACTION, order: 40, getIconType(): string { - return 'visTable'; + return 'table'; }, getDisplayName() { return i18n.translate('xpack.ml.actions.openInAnomalyExplorerTitle', { diff --git a/x-pack/platform/test/functional/services/ml/data_visualizer_table.ts b/x-pack/platform/test/functional/services/ml/data_visualizer_table.ts index 2b1d9d76177b6..7f3a039522314 100644 --- a/x-pack/platform/test/functional/services/ml/data_visualizer_table.ts +++ b/x-pack/platform/test/functional/services/ml/data_visualizer_table.ts @@ -111,12 +111,15 @@ export function MachineLearningDataVisualizerTableProvider( if (!(await testSubjects.exists(this.detailsSelector(fieldName)))) { const selector = this.rowSelector( fieldName, - `dataVisualizerDetailsToggle-${fieldName}-arrowRight` + `dataVisualizerDetailsToggle-${fieldName}-chevronSingleRight` ); await testSubjects.moveMouseTo(selector); // move mouse to selector before clicking to ensure a tooltip isn't blocking the button await testSubjects.click(selector); await testSubjects.existOrFail( - this.rowSelector(fieldName, `dataVisualizerDetailsToggle-${fieldName}-arrowDown`), + this.rowSelector( + fieldName, + `dataVisualizerDetailsToggle-${fieldName}-chevronSingleDown` + ), { timeout: 1000, } @@ -130,10 +133,16 @@ export function MachineLearningDataVisualizerTableProvider( await retry.tryForTime(10000, async () => { if (await testSubjects.exists(this.detailsSelector(fieldName))) { await testSubjects.click( - this.rowSelector(fieldName, `dataVisualizerDetailsToggle-${fieldName}-arrowDown`) + this.rowSelector( + fieldName, + `dataVisualizerDetailsToggle-${fieldName}-chevronSingleDown` + ) ); await testSubjects.existOrFail( - this.rowSelector(fieldName, `dataVisualizerDetailsToggle-${fieldName}-arrowRight`), + this.rowSelector( + fieldName, + `dataVisualizerDetailsToggle-${fieldName}-chevronSingleRight` + ), { timeout: 1000, }